Skip to content

Instantly share code, notes, and snippets.

@ChristinaLK
Last active December 18, 2015 05:29
Show Gist options
  • Save ChristinaLK/5733048 to your computer and use it in GitHub Desktop.
Save ChristinaLK/5733048 to your computer and use it in GitHub Desktop.
import readin
import sys
if len(sys.argv) < 2:
print "No Input"
else:
s = readin.readDataFromFile(sys.argv[1])
out_dict = {"A":0,"T":0,"C":0,"G":0}
for i in "ATCG":
out_dict[i] = s.count(i)
print out_dict
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment