Hello, I want to align two nucleotide sequences using a semi global alignment method where gaps are for free at the end of sequences. I'm using simple scoring scheme i.e constants for match , mismatch and gap. The problem is that I don't know what score shall I choose knowing that by changing the length of aligned sequences is changing also . Below is an example of sequences : 1- longer sequence: cggacgtgccattgcatgccccgggacgc 2- shorter sequence: acgtggattacgagagaga The alignment should look like this `
cgggacgtgccattgcatgccccgggacgc
--- acgtggatt-----------------
*question : how to evaluate the scoring scheme i'm using in order to chose the best ? *
Thanks in advance for any suggestion
What do you mean by what score should you choose? The score for matching, mismatching and gaps?
yes for example match , mismatch gap : +1,-1,-2 is one option but how to evaluate this choice ? and why not + 1,-1,-3 for example etc ..