Skip to content

Commit

Permalink
Fix command line downsmapling parameters to match what they're doing
Browse files Browse the repository at this point in the history
  • Loading branch information
xchang1 committed Jun 3, 2024
1 parent 8e13416 commit b939bfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/subcommand/giraffe_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,16 +184,16 @@ static std::unique_ptr<GroupedOptionGroup> get_options() {
"use maximum of number minimizers calculated by READ_LENGTH / INT and --max-min"
);
comp_opts.add_range(
"downsample-window-count",
"downsample-window-length",
&MinimizerMapper::minimizer_downsampling_max_window_length,
MinimizerMapper::default_minimizer_downsampling_max_window_length,
"downsample minimizers with windows of length read_length/INT, 0 for no downsampling"
"maximum window length for downsampling"
);
comp_opts.add_range(
"downsample-window-length",
"downsample-window-count",
&MinimizerMapper::minimizer_downsampling_window_count,
MinimizerMapper::default_minimizer_downsampling_window_count,
"maximum window length for downsampling"
"downsample minimizers with windows of length read_length/INT, 0 for no downsampling"
);
comp_opts.add_range(
"distance-limit", 'D',
Expand Down

0 comments on commit b939bfb

Please sign in to comment.