Skip to content

Commit

Permalink
Add back missing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalker174 committed Dec 3, 2024
1 parent 4785fa8 commit 4050419
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,24 @@ public Object[][] collapseSampleGenotypesTestData() {
createGenotypeTestAttributes(2)
)
},
// het preferred over hom ref even with lower gq
{
"sample",
Lists.newArrayList(
Lists.newArrayList(Allele.REF_N, Allele.REF_N),
Lists.newArrayList(Allele.REF_N, Allele.SV_SIMPLE_INS)
),
Lists.newArrayList(
createGenotypeTestAttributesWithGQ(2, 30),
createGenotypeTestAttributesWithGQ(2, 20)
),
Allele.REF_N,
GenotypeBuilder.create(
"sample",
Lists.newArrayList(Allele.REF_N, Allele.SV_SIMPLE_INS),
createGenotypeTestAttributesWithGQ(2, 20)
)
},
// het preferred over hom-var
{
"sample",
Expand Down

0 comments on commit 4050419

Please sign in to comment.