Skip to content

Commit

Permalink
FIX: fixed argument type - cov bin-size and bin-count to u64
Browse files Browse the repository at this point in the history
  • Loading branch information
Vini2 committed Jun 23, 2024
1 parent bd316f0 commit 7365158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kmertools/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7365158

Please sign in to comment.