The Worldwide Protein Data Bank collects, organises and disseminates data on biological macromolecular structures. The wwPDB Partners are: PDBeRCSB PDB, PDBjBMRBEMDB. Currently the PDB contains over 234,000 data files of which 73,617 are human sequences.

I’ve previously written scripts to interact with RCSB PDB, but the api has recently changed and so these needed updating. The PDBe maintains a REST API as programmatic way to obtain information from the PDB and provides comprehensive documentation.

Getting information

This first script takes as input a PDB ID and uses the Summary call to return a json containing a summary of properties of a PDB entry, such as the title of the entry, list of depositors, date of deposition, date of release, date of latest revision, experimental method etc.

PDBeinfo Vortex script

The first part of the script is simply a boilerplate containing useful Python and Vortex imports. The dialog box asks the user to select the column containing the PDB ID, this is converted to lowercase because it is in lowercase in the returned data json. The next part loops through the workspace using the pdbid to generate the api_url, urllib2 is then used to post the url and capture the response. The returned json is then parsed to select a couple of values. The new columns are generated and the appropriate data is entered. The result is shown below. The script could be modified to include extra values from the json.

Ligands Vortex script

Whilst the above script gives information about the structure it does not detail the associated ligands. This script pulls the ligand information (This api call provides a a list of modelled instances of ligands, i.e. ‘bound’ molecules that are not waters.).

PDB2Ligands Vortex script

The majority of the script is similar to the previous script, in this case however there are likely to be multiple ligands so we loop through the json and then convert the resulting list of ligand ID to a string for inserting into the Vortex workspace. The result is shown below

The two vortex scripts can be downloaded here.

Related Posts