I am looking for a way to find the total number of mismatches between two strings in python. My input is a list that looks like this
['sequence=AGATGG', 'sequence=AGCTAG', 'sequence=TGCTAG',
'sequence=AGGTAG', 'sequence=AGCTAG', 'sequence=AGAGAG']
and I for each string, I want to see how many differences it would have from the sequence "sequence=AGATAA"
. so if the input was the [0]
from the list above, the output would read like this:
sequence=AGATGG, 2
I cannot figure out whether to split each of the letters into individual lists or if I should try and compare the whole string somehow. Any help is useful, thanks