Skip to content

Commit

Permalink
rm comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Oct 28, 2024
1 parent 6fa36d2 commit 667610b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 667610b

Please sign in to comment.