use of com.hartwig.hmftools.healthchecker.result.SingleValueResult in project hmftools by hartwigmedical.
the class AmberCheckerTest method extractDataFromAmberWorksForSomatic.
@Test
public void extractDataFromAmberWorksForSomatic() throws IOException {
final RunContext runContext = TestRunContextFactory.forSomaticTest(BASE_DIRECTORY, REF_SAMPLE, TUMOR_SAMPLE);
final BaseResult result = checker.run(runContext);
assertEquals(CheckType.AMBER, result.checkType());
final HealthCheck check = ((SingleValueResult) result).check();
assertCheck(check, "0.4951");
}
Aggregations