We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c82c36a commit 1cb3466Copy full SHA for 1cb3466
src/lib.rs
@@ -42,7 +42,6 @@ fn naive_matching(adaptor: &[u8], read: &[u8], min_frac: f64, min_ltrs: usize) -
42
let d_delta = 1f64 - min_frac;
43
44
let i_lim1 = if n > m { 0 } else { m + 1 - n };
45
- // let min_match = (min_frac * n as f64).ceil() as usize;
46
let mut d_max = n as f64 * d_delta;
47
for i in 0..i_lim1 {
48
let mut d: usize = 0;
0 commit comments