Find list of approximate (within max_distance) matches to string seq1 among options.
seq1 (str) – Target string to look for near matches to.
str
options (List[str]) – Alternatives among which to look for near matches to seq1.
List
max_distance (int) – Maximum Levenshtein distance from seq1 to return.
int
List[str]