Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hmusta committed Nov 26, 2024
1 parent fd3a981 commit 090a969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metagraph/src/cli/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ Config::Config(int argc, char *argv[]) {
} else if (!strcmp(argv[i], "--prune-unitigs")) {
min_unitig_median_kmer_abundance = atoi(get_value(i++));
} else if (!strcmp(argv[i], "--cleaning-threshold-percentile")) {
fallback_abundance_cutoff = std::stod(get_value(i++));
cleaning_threshold_percentile = std::stod(get_value(i++));
} else if (!strcmp(argv[i], "--fallback")) {
fallback_abundance_cutoff = atoi(get_value(i++));
} else if (!strcmp(argv[i], "--smoothing-window")) {
Expand Down

0 comments on commit 090a969

Please sign in to comment.