File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,9 +53,12 @@ Chapter 12 - Bonds
5353
5454Chapter 13 - [ Special Cases] ( special.md )
5555
56+ Chapter 14 - [ Lists] ( lists.md ) of PDB IDs and PDB [ status information] ( lists.md ) .
5657Chapter 14 - Working with representative subsets of PDB
5758
5859
60+
61+
5962### Author:
6063
6164[ Andreas Prlić ; ] ( https://github.com/andreasprlic )
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ You can add the BioJava repository by adding the following XML to your project p
2525 -->
2626 <groupId >org.biojava</groupId >
2727 <artifactId >biojava3-structure</artifactId >
28- <version >3.0.8-SNAPSHOT </version >
28+ <version >3.0.8</version >
2929 </dependency >
3030 <!-- if you want to use the visualisation tools you need also this one: -->
3131 <dependency >
3232 <groupId >org.biojava</groupId >
3333 <artifactId >biojava3-structure-gui</artifactId >
34- <version >3.0.8-SNAPSHOT </version >
34+ <version >3.0.8</version >
3535 </dependency >
3636 <!-- other biojava jars as needed -->
3737 </dependencies >
Original file line number Diff line number Diff line change 1+ # Lists of PDB IDs and PDB Status Information
2+
3+ ## Get a list of all current PDB IDs
4+
5+ The following code connects to one of the PDB servers and fetches a list of all current PDB IDs.
6+
7+ ``` java
8+ SortedSet<String > currentPDBIds = PDBStatus . getCurrentPDBIds();
9+ ```
10+
11+ ## The current status of a PDB entry
12+
13+ The following provides information about the status of a PDB entry
14+
15+ ``` java
16+ Status status = PDBStatus . getStatus(" 4hhb" );
17+
18+ // get the current ID for an obsolete entry
19+ String currentID = PDBStatus . getCurrent(" 1hhb" );
20+ ```
21+
You can’t perform that action at this time.
0 commit comments