Correct md5's for previous code change

This commit is contained in:
Guillermo del Angel 2012-04-26 16:20:41 -04:00
parent 972d6531b6
commit 2f86ccb086
1 changed files with 2 additions and 2 deletions

View File

@ -327,13 +327,13 @@ public class UnifiedGenotyperIntegrationTest extends WalkerTest {
public void testMultiSampleIndels() {
WalkerTest.WalkerTestSpec spec1 = new WalkerTest.WalkerTestSpec(
baseCommandIndels + " -I " + validationDataLocation + "low_coverage_CEU.chr1.10k-11k.bam -o %s -L 1:10450700-10551000", 1,
Arrays.asList("9c9ff13dba0898e905ac9e23d30a24b6"));
Arrays.asList("99e278baa2367b2bb016e2f37139d12f"));
List<File> result = executeTest("test MultiSample Pilot1 CEU indels", spec1).getFirst();
WalkerTest.WalkerTestSpec spec2 = new WalkerTest.WalkerTestSpec(
baseCommandIndels + " --genotyping_mode GENOTYPE_GIVEN_ALLELES -alleles " + result.get(0).getAbsolutePath() + " -I " + validationDataLocation +
"low_coverage_CEU.chr1.10k-11k.bam -o %s -L 1:10450700-10551000", 1,
Arrays.asList("300e6274f8c1ce6a577eb06e5b56de90"));
Arrays.asList("c43ac445130161b8250bfbdc6c67782a"));
executeTest("test MultiSample Pilot1 CEU indels using GENOTYPE_GIVEN_ALLELES", spec2);
}