From 667610b4087a53ce0329c6eb83d0f06187ea53fb Mon Sep 17 00:00:00 2001 From: "C. Titus Brown" Date: Sun, 27 Oct 2024 17:23:39 -0700 Subject: [PATCH] rm comment --- src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 1f968f3..9d08d59 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -833,10 +833,6 @@ impl Iterator for KmersAndHashesIter { // Extract the current k-mer and its reverse complement let substr = &self.seq[start..start + ksize]; - // let substr_rc = &self.seq_rc[start..start+ksize] - // CTB: this calculates RC each time, instead of doing so - // using a sliding window. It's easy and works, so I'm - // starting here :). let substr_rc = &self.seq_rc[rpos..rpos+ksize]; // Get the next hash value from the hasher