Skip to content

Commit 2de5a12

Browse files
committed
TwoBitFile geneAssembly fix
1 parent 79a8ec4 commit 2de5a12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

biojava-genome/src/main/java/org/biojava/nbio/genome/parsers/twobit/SimpleTwoBitFileProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static void downloadIfNoTwoBitFileExists(File twoBitFileLocalLocation, St
3232
public static URL getTwoBitURL(String genomeAssembly) throws MalformedURLException {
3333

3434
String url="";
35-
if (genomeAssembly.equals("hg37")) {
35+
if (genomeAssembly.equals("hg19")) {
3636
url = "http://cdn.rcsb.org//gene/hg37/hg19.2bit";
3737
}
3838
else if (genomeAssembly.equals("hg38")) {

0 commit comments

Comments
 (0)