Use a publicly accessible sequence file

This commit is contained in:
Ron Levine 2014-11-24 11:18:21 -05:00
parent 6ff698c556
commit 34241a62f6
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public class PhasingUtilitiesUnitTest extends BaseTest {
@BeforeClass
public void init() throws FileNotFoundException {
referenceFile = new CachingIndexedFastaSequenceFile(new File("/Users/ronlevine/exampleFASTA/exampleFASTA.fasta"));
referenceFile = new CachingIndexedFastaSequenceFile(new File(b37KGReference));
ref = Allele.create("C", true);
alt = Allele.create("T", true);
}