Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 748 Bytes

lists.md

File metadata and controls

32 lines (20 loc) · 748 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 Structure Modules | Chapter 18 : Status Information

Prev: Chapter 17 : Special Cases