seqA,seqB : str
The strings that shall be compared.
normalized : bool (default=False)
Specify whether the normalized edit distance shall be returned. If no
restrictions are chosen, the edit distance is normalized by dividing by
the length of the longer string. If restriction is set to cv
(consonant-vowel), the edit distance is normalized by the length of the
alignment.
restriction : {‘cv’} (default=’‘)
Specify the restrictions to be used. Currently, only cv is
supported. This prohibits matches of vowels with consonants.
|