Checking in to see whether it fails. If I start getting bombarded with Bamboo error reports, I'm commenting it out...

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3346 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2010-05-11 15:39:42 +00:00
parent 572b383fe2
commit 140e43b93b
1 changed files with 15 additions and 0 deletions

View File

@ -32,4 +32,19 @@ public class UnifiedGenotyperPerformanceTest extends WalkerTest {
new ArrayList<String>(0));
executeTest("testUnifiedGenotyperWholeExome", spec);
}
@Test
public void testUnifiedGenotyperWGParallel() {
WalkerTestSpec spec = new WalkerTestSpec(
"-R " + seqLocation + "references/Homo_sapiens_assembly18/v0/Homo_sapiens_assembly18.fasta" +
" -T UnifiedGenotyper" +
" -I " + evaluationDataLocation + "NA12878.GAII.chr1.50MB.bam" +
" -L chr1:1-50,000,000" +
" -nt 10" +
" -varout /dev/null",
0,
new ArrayList<String>(0));
executeTest("testUnifiedGenotyperWGParallel", spec);
}
}