-
Thanks in advance So I provided 2 proteins sequences Sequence 1 sequence 2 And this fucntion to generate a pairwise alignment def pairwise(sequ1, sequ2): The it returns a list of 3 elements, what are each of the elements? If I want to use the alginments later to calculate the pari wise sequence identity which element whould I choose? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sometimes (like in your case) there a multiple optimal alignments possible, i.e. multiple alignments with the same maximum reachable score. Hence, all of the alignments in the returned list are 'correct'. Hence, the decision which alignment to proceed with is arbitrary. I would assume that the sequence identity will be very similar across these alignments. |
Beta Was this translation helpful? Give feedback.
Sometimes (like in your case) there a multiple optimal alignments possible, i.e. multiple alignments with the same maximum reachable score. Hence, all of the alignments in the returned list are 'correct'. Hence, the decision which alignment to proceed with is arbitrary. I would assume that the sequence identity will be very similar across these alignments.