Skip to content

Commit

Permalink
correct short name for the threshold of superkmers
Browse files Browse the repository at this point in the history
  • Loading branch information
lrobidou committed Oct 10, 2024
1 parent 0af4f91 commit 1adaaaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct BuildArgs {
m: usize,
/// Expert parameter: solidity threshold for superkmers
#[arg(short, long, default_value_t = 2)]
superkmer_threshold: Count,
threshold_superkmer: Count,
/// Input file (FASTA/Q, possibly gzipped)
#[arg(short, long)]
input: String,
Expand Down Expand Up @@ -214,7 +214,7 @@ fn main() {
assert!(k % 2 == 1, "k must be odd");
let m = args.m;
assert!(m % 2 == 1, "m must be odd");
let threshold = args.superkmer_threshold;
let threshold = args.threshold_superkmer;

// set the number of threads
if let Some(nb_threads) = args.threads {
Expand Down

0 comments on commit 1adaaaf

Please sign in to comment.