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)'
See this thread: Computing statistical cutoff from global pairwise alignment scores
I am really thankful, I will read this thread.
I am really appreciate. I will examine these links.