Skip to content

Commit

Permalink
some minor test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbenjamin committed Mar 6, 2024
1 parent 3353a1c commit a4a146c
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 110 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ public void testContaminationFilter() {
filteredVariants.get(10).stream().filter(vc -> vc.getFilters().contains(GATKVCFConstants.CONTAMINATION_FILTER_NAME)).count());

final List<VariantContext> missedObviousVariantsAtTenPercent = filteredVariants.get(10).stream()
.filter(vc -> !vc.getFilters().contains(GATKVCFConstants.CONTAMINATION_FILTER_NAME))
.filter(vc -> !vc.isFiltered())
.filter(VariantContext::isBiallelic)
.filter(vc -> {
final int[] AD = vc.getGenotype(0).getAD();
Expand Down
Loading

0 comments on commit a4a146c

Please sign in to comment.