Optimal string alignment #402
Answered
by
maxbachmann
Shuricks2015
asked this question in
Q&A
|
First of all thanks for the amazing work. I had a problem today where I got an unexpected result on first view. Now the result I get back is that the best alignment is "asses", which I find counterintuitive as you would only need to change a single letter in "cabes" to get to "cases". I searched and found that it is most likely due to the internal use of Indel-distance, as it is similar to Levenshtein with a substitution weight of 2. I want to get the optimal alignment using the Levenshtein distance metric. Is there any way that I can achieve that? |
Answered by
maxbachmann
Aug 22, 2024
Replies: 1 comment
|
As you noted this is caused by the use of the Indel similarity. There is already #401 which asks for the same feature. |
0 replies
Answer selected by
Shuricks2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As you noted this is caused by the use of the Indel similarity. There is already #401 which asks for the same feature.