Skip to content

Commit

Permalink
Fix: Browse -> Contamination is not rounded
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasjelonek committed Mar 11, 2024
1 parent aa5dbab commit 677428d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/BrowseView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function parseFiltersFromRoute() {
extract("size", "bakta.stats.size");
extract("contigs", "bakta.stats.no_sequences");
extract("completeness", "checkm2.quality.completeness", true, 1);
extract("contamination", "checkm2.quality.contamination");
extract("contamination", "checkm2.quality.contamination", true, 1);
extract("gc", "bakta.stats.gc", true);
if (!route.query.offset) {
Expand Down

0 comments on commit 677428d

Please sign in to comment.