Optimal string alignment #402
-
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? |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
As you noted this is caused by the use of the Indel similarity. There is already #401 which asks for the same feature.