Adding performance test for case with very high coverage (> 600,000x) over an interval

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5336 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2011-02-28 19:48:56 +00:00
parent c7a51f0de7
commit 5ac9af472c
1 changed files with 15 additions and 0 deletions

View File

@ -6,6 +6,21 @@ import org.testng.annotations.Test;
import java.util.ArrayList;
public class IndelRealignerPerformanceTest extends WalkerTest {
@Test
public void testHighCoverage() {
WalkerTestSpec spec = new WalkerTestSpec(
"-R " + b36KGReference +
" -T IndelRealigner" +
" -I " + validationDataLocation + "indelRealignerTest.pilot1.veryHighCoverage.bam" +
" -L 20:49,500-55,500" +
" -o /dev/null" +
" -targetIntervals " + validationDataLocation + "indelRealignerTest.pilot1.ceu.intervals",
0,
new ArrayList<String>(0));
executeTest("testIndelRealignerHighCoverage", spec);
}
@Test
public void testRealigner() {
WalkerTestSpec spec1 = new WalkerTestSpec(