Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-enable IndexFeatureFile test for uncompressed BCF. #6716

Merged
merged 1 commit into from
Jul 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,7 @@ public void testBCFIndex() {
checkIndex(index, Arrays.asList("1"));
}

// test disabled until https://github.com/samtools/htsjdk/issues/1323 is resolved
@Test(enabled = false)
@Test(expectedExceptions = UserException.CouldNotIndexFile.class)
public void testUncompressedBCF2_2Index() {
final File ORIG_FILE = getTestFile("test_variants_for_index.BCF22uncompressed.bcf");
final File outName = createTempFile("test_variants_for_index.BCF22uncompressed.bcf", ".idx");
Expand All @@ -249,7 +248,7 @@ public void testUncompressedBCF2_2Index() {
"-I", ORIG_FILE.getAbsolutePath(),
"-O", outName.getAbsolutePath()
};
final Object res = this.runCommandLine(args);
this.runCommandLine(args);
}

@Test(expectedExceptions = UserException.NoSuitableCodecs.class)
Expand Down