Skip to content

Instantly share code, notes, and snippets.

@Vini2
Last active September 23, 2020 15:20
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
# Read the file and get the DNA string
file = open('sample_dna.txt', 'r')
dna = file.read()
# Print the original DNA string
print "DNA String: ", dna
# Print the count of each letter
print "Count of A: ", dna.count("A")
print "Count of C: ", dna.count("C")
print "Count of G: ", dna.count("G")
print "Count of T: ", dna.count("T")
# End of program
@Vini2
Copy link
Author

Vini2 commented Aug 11, 2017

Counting DNA Nucleotides
Solution for problem at ROSALIND.info

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment