Hi,

I do not completely follow you, but perhaps you could check out this page: 
http://code.activestate.com/recipes/576869-longest-common-subsequence-problem-solver/
Another source of inspiration could be the levenshtein distance.

 
Regards,
Albert-Jan


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
All right, but apart from the sanitation, the medicine, education, wine, public 
order, irrigation, roads, a 
fresh water system, and public health, what have the Romans ever done for us?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 


>________________________________
> From: Hs Hs <ilhs...@yahoo.com>
>To: "tutor@python.org" <tutor@python.org> 
>Sent: Friday, March 2, 2012 8:11 PM
>Subject: [Tutor] number of mismatches in a string
> 
>
>Hi:
>I have the following table and I am interested in calculating mismatch ratio. 
>I am not completely clear how to do this and any help is deeply appreciated. 
>
>
>Length     Matches
>77      24A0T9T36
>
>71      25^T9^T37
>
>60      25^T9^T26
>62      42A19
>
>
>
>
>
>In length column I have length of the character string. 
>In the second column I have the matches my reference string. 
>
>
>
>
>In fist case, where 77 is length, in matches from left to right, first 24 
>matched my reference string following by a extra character A, a null (does not 
>account to proble) and extra T, 9 matches, extra T and 36 matches.  Totally 
>there are 3 mismatches
>
>
>In case 2, I lost 2 characters (^ = loss of character compared to reference 
>sentence)   - 
>
>
>TOMISAGOODBOY
>T^MISAGOOD^OY   (here I lost 2 characters)  = I have 2 mismatches
>TOMISAGOOODBOOY (here I have 2 extra characters O and O) = I have two 
>mismatches
>
>
>
>
>In case 4: I have 42 matches, extra A and 19 matches = so I have 1 mismatch
>
>
>
>
>How can that mismatch number from matches string.
>1. I have to count how many A or T or G or C (believe me only these 4 letters 
>will appear in this, i will not see Z or B or K etc)
>2. ^T or ^A or ^G or ^C will also be a mismatch
>
>
>
>
>desired output:
>
>
>Length     Matches   mismatches
>77      24A0T9T36    3 
>
>71      25^T9^T37     2
>
>60      25^T9^T26     2
>62      42A19             1
>10      6^TTT1           3
>
>
>
>
>thanks 
>Hs.
>
>
>_______________________________________________
>Tutor maillist  -  Tutor@python.org
>To unsubscribe or change subscription options:
>http://mail.python.org/mailman/listinfo/tutor
>
>
>
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to