Fixing bad VCFIntegration tests
-- Left disabled a test that should have been enabled -- Didn't add the md5 to the test I actually added -- Now VCFIntegrationTests should be working!
This commit is contained in:
parent
9bad51877e
commit
50de1a3eab
|
|
@ -9,7 +9,7 @@ import java.util.List;
|
||||||
|
|
||||||
public class VCFIntegrationTest extends WalkerTest {
|
public class VCFIntegrationTest extends WalkerTest {
|
||||||
|
|
||||||
@Test(enabled = false)
|
@Test(enabled = true)
|
||||||
public void testReadingAndWritingWitHNoChanges() {
|
public void testReadingAndWritingWitHNoChanges() {
|
||||||
|
|
||||||
String md5ofInputVCF = "a990ba187a69ca44cb9bc2bb44d00447";
|
String md5ofInputVCF = "a990ba187a69ca44cb9bc2bb44d00447";
|
||||||
|
|
@ -35,7 +35,7 @@ public class VCFIntegrationTest extends WalkerTest {
|
||||||
String baseCommand = "-R " + b37KGReference + " -NO_HEADER -o %s ";
|
String baseCommand = "-R " + b37KGReference + " -NO_HEADER -o %s ";
|
||||||
|
|
||||||
String test1 = baseCommand + "-T SelectVariants -V " + testVCF;
|
String test1 = baseCommand + "-T SelectVariants -V " + testVCF;
|
||||||
WalkerTestSpec spec1 = new WalkerTestSpec(test1, 1, Arrays.asList(""));
|
WalkerTestSpec spec1 = new WalkerTestSpec(test1, 1, Arrays.asList("76075307afd26b4db6234795d9fb3c2f"));
|
||||||
executeTest("Test reading and writing breakpoint VCF", spec1);
|
executeTest("Test reading and writing breakpoint VCF", spec1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue