Skip to content

Commit

Permalink
Only keep extra minimizers if they're as good as the ones we kept
Browse files Browse the repository at this point in the history
  • Loading branch information
xchang1 committed Nov 5, 2024
1 parent e667000 commit 8e0373a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minimizer_mapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3685,7 +3685,7 @@ std::vector<MinimizerMapper::Seed> MinimizerMapper::find_seeds(const std::vector
}
worst_kept_hits = std::max(m.hits, worst_kept_hits);
return true;
} else if (m.hits > worst_kept_hits+1) {
} else if (m.hits > worst_kept_hits) {
return false;
} else {
//TODO: Fix funnel stuff
Expand Down

1 comment on commit 8e0373a

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch lr-giraffe. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17104 seconds

Please sign in to comment.