use of com.hartwig.hmftools.common.amber.AmberBAF in project hmftools by hartwigmedical.
the class BAFFactoryTest method testInvalidBAF.
@Test
public void testInvalidBAF() {
final Pileup tumor = PileupFile.fromString("seq2\t156\tA\t10\tCCCCCCCCCC\t*");
final List<AmberBAF> result = VICTIM.create(Collections.singletonList(GOOD_NORMAL), Collections.singletonList(tumor));
assertEquals(0, result.size());
}
Aggregations