Hi all. Iam trying to calculate the alignment score of these two sequences
A_TAAG_A
A_G____A
match = 1 mismatch = -1 gap opening = -5 gap continuation = -1
no of matches = 2 no of mismatches = 1
how do i calculate gap penalty ? Could someone please help me out
Cant you calculate the alignment score when there are gaps on the same column on both sequences ?
by the way, a gap is never aligned to a gap in a two-sequence alignment
Your example appears to be improperly aligned.
Technically gaps in the same column could be constituted as a match, but they are also a gap opening penalty. In real alignment scoring you would never place a gap character in the same column in both sequences of a pairwise sequence alignment, you just wouldn't. They are completely meaningless in this context. If I had to calculate the score here I would ignore them.
here the final two A's are matches.
homework example?
ok. Now i edited my question. Yeah its not properly aligned but is it possible to find the alignment score for it ?
@MichaelSchubert Cant you calculate the alignment score when there are gaps on the same column on both sequences ?
I know division by zero is not proper but is it possible?
hey i had this confusion after i played the game pylo. Pylo seemed to calculate the overall alignment score even if there were gaps on the same column.