def DNAalg(STR, seq): count = 0 maximum = 0 for i in range(len(seq)): if seq[i:i+len(STR)] == STR: for k in range(i, len(seq), len(STR)):