I need to compare 2 sequences and find an edit distance. Edits can include deletion and insertion operations (with modification weight 1 per symbol), and block move operations (with weight 0.1 per symbol)
For example:
A B C D E F G H
F G H A B C Y D X E
Block FGH was moved here.
Is there any existing algorithm to solve this task efficiently?
I need to compare 2 sequences and find an edit distance. Edits can include
Share
The abstract for Block Edit Models for Approximate String Matching looks promising.