Skip to content

Commit 8934e94

Browse files
committed
Bugfix in grabbing dssp files
1 parent 73d99a6 commit 8934e94

File tree

1 file changed

+1
-1
lines changed
  • biojava-structure/src/main/java/org/biojava/nbio/structure/secstruc

1 file changed

+1
-1
lines changed

biojava-structure/src/main/java/org/biojava/nbio/structure/secstruc/DSSPParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public static List<SecStrucState> fetch(String pdb,
118118
URL url = new URL("http://files.rcsb.org/dssp/" +
119119
pdb.toLowerCase().substring(1, 3) + "/" +
120120
pdb.toLowerCase() + "/" +
121-
pdb + ".dssp.gz");
121+
pdb.toLowerCase() + ".dssp.gz");
122122
InputStream in = new GZIPInputStream(url.openStream());
123123
Reader read = new InputStreamReader(in);
124124
BufferedReader reader = new BufferedReader(read);

0 commit comments

Comments
 (0)