From 6e9a81aabe8d8aa67deb114cc222b5d4b45943b7 Mon Sep 17 00:00:00 2001 From: Mark DePristo Date: Thu, 21 Jun 2012 16:56:56 -0400 Subject: [PATCH] Minor bugfix -- now that the testfile is in our testdata regenerate the idx file as needed to pass tests --- .../sting/gatk/refdata/utils/TestRMDTrackBuilder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/java/test/org/broadinstitute/sting/gatk/refdata/utils/TestRMDTrackBuilder.java b/public/java/test/org/broadinstitute/sting/gatk/refdata/utils/TestRMDTrackBuilder.java index 9d14cd74c..4e6fe5939 100644 --- a/public/java/test/org/broadinstitute/sting/gatk/refdata/utils/TestRMDTrackBuilder.java +++ b/public/java/test/org/broadinstitute/sting/gatk/refdata/utils/TestRMDTrackBuilder.java @@ -58,8 +58,8 @@ public class TestRMDTrackBuilder extends RMDTrackBuilder { Index index; try { // Create a feature reader that creates checkable tribble iterators. + index = loadIndex(inputFile, codec); featureReader = new TestFeatureReader(inputFile.getAbsolutePath(), codec); - index = loadFromDisk(inputFile, Tribble.indexFile(inputFile)); } catch (IOException e) { throw new RuntimeException(e); }