def main(): from sys import argv seq = getSequence(argv[1]) printListOfInts(count_nucleotides(seq))
def main(): from sys import argv s,t = getMultipleSequences(argv[1]) printListOfInts(find_motif(s,t))