How to interpret alignment scores ?
1
0
Entering edit mode
3.9 years ago

Heyy, I am trying to interpret my alignment score but I don"t know how to do this. I had two fasta files and I used Biopyhton two align those and I got a score of 728.0 so what does this mean is it high or low ? if both of them were the same, what would be the score ? My sequence is a nucleotide sequence and I am a newbie in bioinformatics so I hope my question is not inappropriate. My code is below;

from Bio import SeqIO

from Bio import Align

aligner = Align.PairwiseAligner()

hem_1= SeqIO.read("hem_1.fasta", "fasta")

hem_2 = SeqIO.read("hem_2.fasta", "fasta")

score = aligner.score(them_1.seq, hem_2.seq)
print(score)'
alignment • 3.1k views
ADD COMMENT
2
Entering edit mode
ADD REPLY
0
Entering edit mode

I am really thankful, I will read this thread.

ADD REPLY
0
Entering edit mode

I am really appreciate. I will examine these links.

ADD REPLY
4
Entering edit mode
3.9 years ago
Mensur Dlakic ★ 27k

Generally speaking, that is a good score. However, alignment scores are length-dependent, so for a really long alignment - say 10 thousand nucleotides - this would not be a good score. You can in fact see what scores these two sequences would get when aligned against the same sequence by putting the same file name in hem_1 and hem_2. That will give you a feel for what a perfect score should be.

Because alignments scores are length-dependent, a better way to assess relatedness between sequences is by using E-values. Asaf already gave you a link that has some info in that regard, and you may want to check this one as well.

ADD COMMENT

Login before adding your answer.

Traffic: 3164 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