Skip to content

Commit

Permalink
Default threshold to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jnalanko committed Mar 1, 2023
1 parent cab9878 commit cd52419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pseudoalign_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ int pseudoalign_main(int argc_given, char** argv_given){
;

options.add_options("Algorithm")
("threshold", "Fraction of k-mer matches required to report a color. If this is equal to 1, the algorithm is implemented with a specialized set intersection method.", cxxopts::value<double>()->default_value("0.7"))
("threshold", "Fraction of k-mer matches required to report a color. If this is equal to 1, the algorithm is implemented with a specialized set intersection method.", cxxopts::value<double>()->default_value("1"))
("include-unknown-kmers", "Include all k-mers in the pseudoalignment, even those which do not occur in the index.", cxxopts::value<bool>()->default_value("false"))
;

Expand Down

0 comments on commit cd52419

Please sign in to comment.