You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Thank you for this library! It works like a charm for many string and sequence problems.
However, when using the Smith-Waterman algorithm for local alignment, I noticed that there is no option to see where the substrings start and end in the original strings. Currently, my solution is to inherit from SmithWaterman class and override both the backtrack and get_alignment methods to store the start and end indices from the score matrix. If you are interested, I could make a PR that implements this feature.
The text was updated successfully, but these errors were encountered:
Hello! Thank you for this library! It works like a charm for many string and sequence problems.
However, when using the Smith-Waterman algorithm for local alignment, I noticed that there is no option to see where the substrings start and end in the original strings. Currently, my solution is to inherit from
SmithWaterman
class and override both thebacktrack
andget_alignment
methods to store the start and end indices from the score matrix. If you are interested, I could make a PR that implements this feature.The text was updated successfully, but these errors were encountered: