Skip to content

Commit

Permalink
Fix typo in Variant Filter Stats report
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Jun 4, 2024
1 parent 81cac82 commit 0a155c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/genesis/population/filter/variant_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ std::ostream& print_variant_filter_category_stats(
os << "Empty: " << stats[VariantFilterTagCategory::kSamplesFailed] << "\n";
}
if( stats[VariantFilterTagCategory::kNumeric] > 0 || verbose ) {
os << "Numric: " << stats[VariantFilterTagCategory::kNumeric] << "\n";
os << "Numeric: " << stats[VariantFilterTagCategory::kNumeric] << "\n";
}
if( stats[VariantFilterTagCategory::kInvariant] > 0 || verbose ) {
os << "Invariant: " << stats[VariantFilterTagCategory::kInvariant] << "\n";
Expand Down

0 comments on commit 0a155c8

Please sign in to comment.