예제 #1
0
파일: DNA.py 프로젝트: cipriGH/problem-sets
def main():
	from sys import argv
	seq = getSequence(argv[1])
	printListOfInts(count_nucleotides(seq))
예제 #2
0
def main():
    from sys import argv
    s,t = getMultipleSequences(argv[1])
    printListOfInts(find_motif(s,t))