You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the -p (palindromic matches) and -e (edit distance) features are incompatible.
$ vmatch -l 15 -d index ## length 15, direct matches
--> 5 matches
$ vmatch -l 15 -d -e 5 index ## length 15, matches up to edit distance of 5
--> 661435 matches
$ vmatch -l 15 -p index ## length 15, palindromic (i.e. reverse complement) matches
--> 3 matches
$ vmatch -l 15 -p -e 5 index ## length 15, palindromic matches up to edit distance of 5
--> 0 matches
Am I making a mistake with the syntax?
The text was updated successfully, but these errors were encountered:
alexlenail
changed the title
BUG: -p (palindromic matches) and -e (edit distance) features are incompatible.
BUG: -p (palindromic matches) and -e (edit distance) features have strange relationship.
Jan 11, 2020
There seems to be a relationship between whether this search is allowed, and the prefixlength (-pl) set during mkvtree: decreasing the prefixlength from 5 to 3 allowed me to get results for the query:
It seems the -p (palindromic matches) and -e (edit distance) features are incompatible.
Am I making a mistake with the syntax?
The text was updated successfully, but these errors were encountered: