Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 756 Bytes

File metadata and controls

32 lines (20 loc) · 756 Bytes

Lists of PDB IDs and PDB Status Information

Get a list of all current PDB IDs

The following code connects to one of the PDB servers and fetches a list of all current PDB IDs.

    SortedSet<String> currentPDBIds = PDBStatus.getCurrentPDBIds();

The current status of a PDB entry

The following provides information about the status of a PDB entry

    Status status = PDBStatus.getStatus("4hhb");

    // get the current ID for an obsolete entry
    String currentID = PDBStatus.getCurrent("1hhb"); 

Navigation: Home | Book 3: The Protein Structure modules | Chapter 17 : status information

Prev: Chapter 16 : Special Cases