Closed luizirber closed 1 week ago
Attention: Patch coverage is 75.00000%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 86.46%. Comparing base (
e86c8a8
) to head (d488294
). Report is 1 commits behind head on latest.
Files with missing lines | Patch % | Lines |
---|---|---|
src/core/src/sketch/minhash.rs | 75.00% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
While debugging https://github.com/sourmash-bio/sourmash_plugin_branchwater/issues/503 the flamegraph showed ~26% of the time was spent on calculating MD5.
WHY????
Turns out cloning and converting to
KmerMinHash
toKmerMinHashBTree
triggered recalculation of the MD5 sum, even if it was already present (or... not needed). Oops!