we forked MashMap to develop wfmash, a large-sequences aligner designed to accelerate the alignment step in the variation graphs induction.
Digging into how MashMap works, I ran into a possible small bug. If the first kmer of a sequence is considered as a minimizer, it will have position 0, and the same kmer will not be considered in other positions as 0 coincides with the dummy window indicator.
Hi,
we forked
MashMap
to develop wfmash, a large-sequences aligner designed to accelerate the alignment step in the variation graphs induction.Digging into how
MashMap
works, I ran into a possible small bug. If the first kmer of a sequence is considered as a minimizer, it will have position 0, and the same kmer will not be considered in other positions as 0 coincides with the dummy window indicator.Using this sequence
and this command line
I get
with the
master
, andwith the
fix_dummy_window_indicator
.Could you please take a look?