-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent alignment to alignment score #1
Comments
Thanks for the bug report. I just pushed a fixed for this, and added your example to the unit tests. I moved the |
Thank you, this solves a big part of my problem. Here is the new output
It seems like the last two characters are cut from this alignment, probably because they contain one mismatch and one match so the score is 0 for these two last characters --- and one alignment is returned. I thought I can solve it by letting e.g. mismatch = -1 and match =1. I issued:
|
The problem is that you need to use the
|
Thank you, that solves it! |
Hi,
I'm providing an example with an inconsistent alignment score and the actual alignment below (Original post from mengyao/Complete-Striped-Smith-Waterman-Library#29):
For clarity, below is what I expect the result to look like:
I see that you have removed the
match
andmismatch
options. What are these penalties set to, as the score is now 40?The text was updated successfully, but these errors were encountered: