From 7365158a8fd89a59f9ca44c941c5f831ec4227bf Mon Sep 17 00:00:00 2001 From: Vijini Mallawaarachchi Date: Sun, 23 Jun 2024 16:24:33 +0930 Subject: [PATCH] FIX: fixed argument type - cov bin-size and bin-count to u64 --- kmertools/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmertools/src/main.rs b/kmertools/src/main.rs index bd61968..aefdc18 100644 --- a/kmertools/src/main.rs +++ b/kmertools/src/main.rs @@ -74,7 +74,7 @@ fn main() { command.output, command.k_size as usize, command.bin_size as usize, - command.bin_size as usize, + command.bin_count as usize, ); if command.threads > 0 { cov.set_threads(command.threads);