Skip to content

Commit

Permalink
To v 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeiferd committed Sep 11, 2024
1 parent 7263c8c commit 9e676d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ protected boolean matchRead(MyReadEntry entry, int index, boolean reverse) {
CountsPerTaxid stats = null;

long kmer = -1;
for (int i = 0; i <= max; i++) {
for (int i = 0; i < max; i++) {
// TODO: Inline all of this...
if (kmer == -1) {
kmer = reverse ? CGAT.kMerToLongReverse(entry.read, i, k, entry.badPos)
Expand Down

0 comments on commit 9e676d1

Please # to comment.