Skip to content

Commit

Permalink
Update graph-builder.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gf777 committed May 10, 2024
1 parent 310c3e6 commit 2c2fb5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph-builder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ bool DBG::mergeSubMaps(parallelMap* map1, parallelMap* map2, uint8_t subMapIndex
if (got == submap2.end()) {
submap2.insert(pair);
auto got = map32.find(pair.first); // check if this is already a high-copy kmer
if (got != map32.end())
if (pair.second.cov == 255 || got != map32.end())
overflow = true;
}else{

Expand Down

0 comments on commit 2c2fb5f

Please sign in to comment.