Skip to content

Commit f78e959

Browse files
committed
Updating SCOPe to version 2.05
1 parent ecff440 commit f78e959

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

biojava-structure/src/main/java/org/biojava/nbio/structure/scop/BerkeleyScopInstallation.java

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@
2828
import java.util.Map;
2929

3030
/**
31-
* The Structural Classification of Proteins at Berkeley Lab and UC Berkeley (<a href="http://scop.berkeley.edu/">http://scop.berkeley.edu/</a>).
31+
* SCOPe:
32+
*
33+
* The Structural Classification of Proteins (extended) at Berkeley Lab and UC Berkeley
34+
* (<a href="http://scop.berkeley.edu/">http://scop.berkeley.edu/</a>).
35+
*
36+
* <p>This provides updates to the MRC SCOP hierarchical classification.
3237
*/
3338
public class BerkeleyScopInstallation extends ScopInstallation {
3439

@@ -37,7 +42,8 @@ public class BerkeleyScopInstallation extends ScopInstallation {
3742
String defaultBerkeleyScopVersion=ScopFactory.LATEST_VERSION;
3843

3944
/**
40-
* A map from SCOP version names which the Berkeley server offers as a download to an array of equivalent deprecated SCOP version names.
45+
* A map from SCOP version names which the Berkeley server offers as a
46+
* download to an array of equivalent deprecated SCOP version names.
4147
*/
4248
public static final Map<String,String[]> EQUIVALENT_VERSIONS = new HashMap<String,String[]>();
4349

biojava-structure/src/main/java/org/biojava/nbio/structure/scop/ScopFactory.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public class ScopFactory {
5353
private static final Logger logger = LoggerFactory.getLogger(ScopFactory.class);
5454

5555
// berkeley 2
56+
public static final String VERSION_2_0_5 = "2.05";
5657
public static final String VERSION_2_0_4 = "2.04";
5758
public static final String VERSION_2_0_3 = "2.03";
5859
public static final String VERSION_2_0_2 = "2.02";
@@ -77,7 +78,7 @@ public class ScopFactory {
7778
public static final String VERSION_1_55 = "1.55";
7879

7980
// The most recent version as of compilation time
80-
public static final String LATEST_VERSION = VERSION_2_0_4;
81+
public static final String LATEST_VERSION = VERSION_2_0_5;
8182

8283
// Hold one instance for each version
8384
private static Map<String,ScopDatabase> versionedScopDBs = new HashMap<String, ScopDatabase>();

0 commit comments

Comments
 (0)