Skip to content

Commit

Permalink
fix: header declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
leejoey0921 committed Aug 29, 2024
1 parent b490e6d commit f208e56
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/linclust/kmermatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,11 @@ class CompareResultBySeqId {
};


template <int TYPE, typename T, bool IncludeAdjacentSeq>
size_t assignGroup(KmerPosition<T, IncludeAdjacentSeq> *kmers, size_t splitKmerCount, bool includeOnlyExtendable, int covMode, float covThr,
template <int TYPE, typename T>
size_t assignGroup(KmerPosition<T, false> *kmers, size_t splitKmerCount, bool includeOnlyExtendable, int covMode, float covThr,
SequenceWeights * sequenceWeights, float weightThr, BaseMatrix *subMat, float &hashSeqBuffer);
template <int TYPE, typename T>
size_t assignGroup(KmerPosition<T, true> *kmers, size_t splitKmerCount, bool includeOnlyExtendable, int covMode, float covThr,
SequenceWeights * sequenceWeights, float weightThr, BaseMatrix *subMat, float &hashSeqBuffer);

template <int TYPE, typename T>
Expand Down

0 comments on commit f208e56

Please sign in to comment.