Skip to content

Commit

Permalink
Merge pull request #80 from jaebeom-kim/master
Browse files Browse the repository at this point in the history
Fix a typo that caused a Segmentation fault error.
  • Loading branch information
jaebeom-kim authored Aug 2, 2024
2 parents 6f31790 + a34b4bb commit ef9723c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commons/QueryIndexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void QueryIndexer::indexQueryFile(size_t processedQueryNum) {
readNum_2++;
seqCnt_2++;
totalReadLength += kseq_2->entry.sequence.l;
kmerCnt_int_2 = LocalUtil::getQueryKmerNumber<int>(kseq_1->entry.sequence.l, spaceNum);
kmerCnt_int_2 = LocalUtil::getQueryKmerNumber<int>(kseq_2->entry.sequence.l, spaceNum);
} else {
end = true;
}
Expand Down

0 comments on commit ef9723c

Please sign in to comment.