Skip to content

Commit

Permalink
default should be kbest = false
Browse files Browse the repository at this point in the history
  • Loading branch information
milkschen committed Dec 25, 2024
1 parent 27c64bd commit c512842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bt2_search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ static void resetOptions() {
outType = OUTPUT_SAM; // style of output
noRefNames = false; // true -> print reference indexes; not names
khits = 1; // number of hits per read; >1 is much slower
kbest = true; // report the best hits when khits>1
kbest = false;// report the best hits when khits>1
mhits = 50; // stop after finding this many alignments+1
partitionSz = 0; // output a partitioning key in first field
readsPerBatch = 16; // # reads to read from input file at once
Expand Down

0 comments on commit c512842

Please sign in to comment.