Skip to content

Commit 37b7b7b

Browse files
authored
Fix issue with detecting tags if the beginning of multiple tags are similar
Fix issue #51
1 parent 2bb75cf commit 37b7b7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SplitCode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4979,7 +4979,7 @@ struct SplitCode {
49794979
std::vector<placement_struct> placement_vec;
49804980
std::string from_header_str;
49814981

4982-
std::vector<std::unordered_set<size_t>> k_expansions; // Keeps track of all possible substring/k-mer lengths for each file (file number is the index)
4982+
std::vector<std::set<size_t>> k_expansions; // Keeps track of all possible substring/k-mer lengths for each file (file number is the index)
49834983

49844984
bool init;
49854985
bool discard_check;

0 commit comments

Comments
 (0)