calculating alignment score with EMBOSS needle
1
0
Entering edit mode
7.7 years ago
Fadel ▴ 20

Im trying to implement Needleman-Wunch algorithm with affine gap penalties, and to do so I compare my results with EMBOSS needle output. Yet I have a problem with calculating the best score.

using DNAFULL matrix and gapopen = 10, gap extend= 1

Seq1: TGCTAGTATAAACCTTATGGTATCTGCAGCAGAGGTTTCTTTAATCTCTCAATAGTAGATGCTTTGAAAC Seq2: TTATCTATAATTTGGTATTGTAATGACAGTTTGTGTTTGGTTTTTTCTTCAGTAT

and the result score is 52, while we have

matches 36 * 5 = 180

mismatches 10 *(-4) = -40

gap-o 9 *(-10) = -90

gap-e 24 *(-1) = -24

the score should be 26 but I got 52 which I couldn't understand why! I appreciate any explanation :))

screenshot

alignment EMBOSS • 3.2k views
ADD COMMENT
2
Entering edit mode
7.7 years ago
Asaf 10k

End gaps are not scored so you have 8*(-10) + 8*(-1) = -88 instead of -114 which brings you exactly to 52.

ADD COMMENT
0
Entering edit mode

thanks Asaf, so I can say that the best score is not calculated from the scoring matrix directly by taking the value of the most right, most low cell ?

ADD REPLY
1
Entering edit mode

It's taken from the maximal value in the most right column or the lowest row.

ADD REPLY
0
Entering edit mode

its much more clean now, thanks again Asaf.

ADD REPLY

Login before adding your answer.

Traffic: 1528 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6