We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4c9844 commit 46c4e73Copy full SHA for 46c4e73
structure/lists.md
@@ -0,0 +1,21 @@
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
16
+ Status status = PDBStatus.getStatus("4hhb");
17
18
+ // get the current ID for an obsolete entry
19
+ String currentID = PDBStatus.getCurrent("1hhb");
20
21
0 commit comments