-
Notifications
You must be signed in to change notification settings - Fork 41
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
SmithWaterman returns incorrect alignments. #104
Comments
That's worrisome. We've never enabled the optimized smith waterman by default in GATK because of some other issues, but I hadn't ever seen it produce grossly incorrect alignments. I was under the impression that it had been tested pretty heavily against the GATK java implementation. I wonder if we produce the same bad alignment... |
I'm confused about this one. Running this code against the GATK java smith waterman implementation produces the same result. It seems to have something to do with the overhang strategy although none of the overhang strategies produce the answer that seems most correct. @davidbenjamin do you have any sense of what's going on here? |
@lbergelson See comments in broadinstitute/gatk#6576. |
Still blocked on broadinstitute/gatk#6576 |
The S/W aligner does not return optimal alignments.
Tested version: 0.8.6
Repo test case:
Actual alignment cigar returned is
11S1M
. This is clearly a sub-optimal alignment.I strongly recommend adding a test suite to exhaustively compare small results against another S/W aligner (e.g. JAligner) to ensure correctness of your implementation.
The text was updated successfully, but these errors were encountered: