-
Notifications
You must be signed in to change notification settings - Fork 210
Reimplement the current alignment::Aligner without breaking API #379
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
base: master
Are you sure you want to change the base?
Conversation
- fix two typos - add internal links - fix format (schematics in code blocks; proper new lines)
repitition of line 559: self.S[k].extend(repeat(MIN_SCORE).take(m + 1));
now passes all tests!
All tests are unchanged and passed.
TODO
|
already checked when creating Scoring
This will partially fix #377 |
I want to deprecate In addition, if the aligner first aligns large sequences and allocates a big |
This is really great work! Has any progress been made on this? |
Faster global, local, semiglobal alignment with less space usage. Related to #354 and #355 (review).
All tests are unchanged and passed. No breaking changes. The API is completely unchanged.
Old(a1b1143):
New:
I didn't implement the "custom" alignment bacause it seemed not very useful. I haven't seen this type of alignment other than in SeqAn and rust-bio. Maybe this will be discussed in another issue.