Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save def-/1c7210ff7858d2d20374 to your computer and use it in GitHub Desktop.
Save def-/1c7210ff7858d2d20374 to your computer and use it in GitHub Desktop.
const data = "AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC"
var A, C, G, T = 0
for letter in data:
case letter
of 'A': inc A
of 'C': inc C
of 'G': inc G
of 'T': inc T
else: discard
echo A, " ", C, " ", G, " ", T
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment