Skip to content

Commit

Permalink
update query code to use new stHashIterator
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinChu committed Aug 26, 2020
1 parent bc4dd1c commit ff2330b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MIBFQuerySupport.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class MIBFQuerySupport

if (m_miBF.getSeedValues().size() > 0) {
stHashIterator itr(
seq, m_miBF.getSeedValues(), m_miBF.getHashNum(), m_miBF.getKmerSize());
seq, m_miBF.getSeedValues(), m_miBF.getHashNum(), 1, m_miBF.getKmerSize());
while (itr != itr.end()) {
if (m_maxMiss >= m_miBF.atRank(*itr, m_rankPos, m_hits, m_maxMiss)) {
vector<T> results = m_miBF.getData(m_rankPos);
Expand Down

0 comments on commit ff2330b

Please sign in to comment.