I am familiar with the notation
>>>dna = ....
>>>Ecori = "ATGATG"... .
>>>find(dna, Ecori)
>>>find(dna,Eco ri, 2)
My question is how to i find the second undefined base 'n'
ie.
>>>seq = 'ATGATGnATGnATG '
>>>find(seq, 'n')
6
>>>find(seq, 'n', 2)
6 Does not work - Should say 10
>>>dna = ....
>>>Ecori = "ATGATG"... .
>>>find(dna, Ecori)
>>>find(dna,Eco ri, 2)
My question is how to i find the second undefined base 'n'
ie.
>>>seq = 'ATGATGnATGnATG '
>>>find(seq, 'n')
6
>>>find(seq, 'n', 2)
6 Does not work - Should say 10
Comment