Skip to content

Commit

Permalink
Update src/ska_dict.rs
Browse files Browse the repository at this point in the history
Co-authored-by: John Lees <[email protected]>
  • Loading branch information
apollis44 and johnlees authored May 28, 2024
1 parent 56209ce commit 12f9703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ska_dict.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ where
let mut step: usize = 1;

if proportion_reads.is_some() {
step = (1 as f64 / proportion_reads.unwrap()).round() as usize;
step = (1.0 / proportion_reads.unwrap()).round() as usize;
}

let mut reader =
Expand Down

0 comments on commit 12f9703

Please sign in to comment.