From 1adaaafad904e0bce837c9f012b1f2bbd58690d5 Mon Sep 17 00:00:00 2001 From: Lucas Robidou Date: Thu, 10 Oct 2024 18:25:37 +0200 Subject: [PATCH] correct short name for the threshold of superkmers --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 40c3e2c..cec260d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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, @@ -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 {