Java Interface to PubChem's Power User Gateway
Tobias Kind writes to say that a PubChem Power User Gateway (PUG) interface is now available for Java. The software, which currently consists of two Java source files, can be downloaded here.
image credit: angiemckaig
The Best API May Be No API At All: PubChem and PDB 2
Both PubChem and the Protein Data Bank (PDB) maintain vast collections of molecular data. Individual users are free to view and search these collections via standard Web browsers. But what are the options if you're developing software to interact with these databases?
Various application programming interfaces (APIs) are available for accessing PubChem and PDB records. For example, PubChem recently introduced its Power User Gateway (PUG), an XML-based query language. But writing APIs is extremely difficult; reconciling the need for simplicity with the need for rich functionality is a tough balancing act. Where do you draw the line?
Recently, Bosco described a remarkably short method to retrieve PDB records using nothing more than standard Python. Given the similarities between Python and Ruby, it seemed reasonable that his method could be adapted to Ruby.
The following Ruby library accepts a PDB identifier and returns the corresponding PDB record:
require 'net/http'
module PDB
# Returns a PDB record for the given id
def self.get_record id
Net::HTTP.get_response('www.rcsb.org', "/pdb/files/#{id}.pdb").body
end
end
$ irb
irb(main):001:0> require 'pdb'
=> true
irb(main):002:0> puts PDB::get_record('1hpn')
HEADER GLYCOSAMINOGLYCAN 17-JAN-95 1HPN
TITLE N.M.R. AND MOLECULAR-MODELLING STUDIES OF THE SOLUTION
TITLE 2 CONFORMATION OF HEPARIN
[truncated]
Several months ago, a D-F article described a related, but somewhat lengthier approach to retrieving PubChem molfiles. Using the same approach we used for PDB, we can create the world's shortest PubChem library:
require 'net/http'
module PubChem
# Returns a molfile for the given PubChem CID
def self.get_molfile cid
Net::HTTP.get_response('pubchem.ncbi.nlm.nih.gov', "/summary/summary.cgi?cid=#{cid}&disopt=DisplaySDF").body
end
end
$ irb
irb(main):001:0> require 'pubchem'
=> true
irb(main):002:0> puts PubChem::get_molfile('969472') #eszopiclone (Lunesta)
969472
-OEChem-08130700422D
44 47 0 1 0 0 0 0 0999 V2000
9.2619 -2.2732 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0
[truncated]
Both of these Ruby libraries leverage one the most versatile and robust protocols ever developed: plain old http. The last few years have witnessed a renaissance in using bare http as platform for building simplified yet powerful Web APIs with less software. Referred to as REST, the approach has gained traction partly in response to the wasteful complexities introduced by various XML-based approaches. Although slow to catch on in cheminformatics, REST has enormous potential in unifying a diverse array of isolated database systems.
One limitation of the approach described here is that the PubChem (or PDB) folks may get upset if you use it a lot. For example, if you examine the PubChem robots.txt file, you'll notice that access to the summary.cgi resource, which our library makes use of, is prohibited to robots:
...
User-agent: *
...
Disallow: /summary/summary.cgi
...What makes a "robot" and does your software qualify for exclusion? The answer is not enirely clear-cut, especially in the era of browser-side scripting.
Regardless, it looks like PubChem's policy was put in place in 2004, long before PubChem had experience with usage patterns for its service. It may be that this restriction could be relaxed without adversely affecting PubChem's ability to operate efficiently. It may even be possible to offer a low-level http retrieval method alongside PubChem's PUG interface on a machine dedicated to automated queries (i.e., Entrez eUtils).
As developers, our mission is to deliver functionality, not to write software. We should extract every possible ounce of value from established protocols and APIs before writing a single line of additional code. REST, and the creative use of good old http, are powerful tools to do so.
Image Credit Dru!
Hacking PubChem: Learning to Speak PUG 1
A previous article introduced PubChem's Power User Gateway (PUG), an XML-based communication channel. Although NIH kindly supplies a commented schema for PUG queries and responses, there's nothing like seeing real examples when learning a new language. This article will describe one method for conveniently generating PUG XML queries.
Let PubChem Build Your Query
One of the options on the PubChem search page is "Save Query." As it turns out, PubChem saves queries in PUG XML (I'll just call it PUGML). In other words, preparing a query using the PubChem search page and saving it gives a simple method for creating PUGML queries. Let's try it.

Using the "Sketch" button, draw the structure of benzimidazole. Under "Search Type", select "Substructure." Now click "Save Query", and you'll download a substructure query for benzimidazole in PUGML:
<?xml version="1.0"?>
<!DOCTYPE PCT-Data PUBLIC "-//NCBI//NCBI PCTools/EN" "http://pubchem.ncbi.nlm.nih.gov/pug/pug.dtd">
<PCT-Data>
<PCT-Data_input>
<PCT-InputData>
<PCT-InputData_query>
<PCT-Query>
<PCT-Query_type>
<PCT-QueryType>
<PCT-QueryType_css>
<PCT-QueryCompoundCS>
<PCT-QueryCompoundCS_query>
<PCT-QueryCompoundCS_query_data>C1=CC=CC2=C1N=C[N]2</PCT-QueryCompoundCS_query_data>
</PCT-QueryCompoundCS_query>
<PCT-QueryCompoundCS_type>
<PCT-QueryCompoundCS_type_subss>
<PCT-CSStructure>
<PCT-CSStructure_bonds value="true"/>
</PCT-CSStructure>
</PCT-QueryCompoundCS_type_subss>
</PCT-QueryCompoundCS_type>
<PCT-QueryCompoundCS_results>2000000</PCT-QueryCompoundCS_results>
</PCT-QueryCompoundCS>
</PCT-QueryType_css>
</PCT-QueryType>
</PCT-Query_type>
</PCT-Query>
</PCT-InputData_query>
</PCT-InputData>
</PCT-Data_input>
</PCT-Data>The PCT-QueryCompoundCS_type_subss element will tell PUG to look for substructures.
Using the Saved Query with PUG
Saving this file as benzimidazole_sss.xml, lets us feed it to PUG:
$ curl -d @benzimidazole_sss.xml "http://pubchem.ncbi.nlm.nih.gov/pug/pug.cgi"
and get the following PUGML response:
<?xml version="1.0"?>
<!DOCTYPE PCT-Data PUBLIC "-//NCBI//NCBI PCTools/EN" "http://pubchem.ncbi.nlm.nih.gov/pug/pug.dtd">
<PCT-Data>
<PCT-Data_output>
<PCT-OutputData>
<PCT-OutputData_status>
<PCT-Status-Message>
<PCT-Status-Message_status>
<PCT-Status value="queued"/>
</PCT-Status-Message_status>
</PCT-Status-Message>
</PCT-OutputData_status>
<PCT-OutputData_output>
<PCT-OutputData_output_waiting>
<PCT-Waiting>
<PCT-Waiting_reqid>62668946396085905</PCT-Waiting_reqid>
<PCT-Waiting_message>Structure search job was submitted</PCT-Waiting_message>
</PCT-Waiting>
</PCT-OutputData_output_waiting>
</PCT-OutputData_output>
</PCT-OutputData>
</PCT-Data_output>
</PCT-Data><PCT-Data>
<PCT-Data_input>
<PCT-InputData>
<PCT-InputData_request>
<PCT-Request>
<PCT-Request_reqid>62668946396085905</PCT-Request_reqid>
<PCT-Request_type value="status"/>
</PCT-Request>
</PCT-InputData_request>
</PCT-InputData>
</PCT-Data_input>
</PCT-Data>$ curl -d @status.xml "http://pubchem.ncbi.nlm.nih.gov/pug/pug.cgi"
gives us the following PUGML:
<?xml version="1.0"?>
<!DOCTYPE PCT-Data PUBLIC "-//NCBI//NCBI PCTools/EN" "http://pubchem.ncbi.nlm.nih.gov/pug/pug.dtd">
<PCT-Data>
<PCT-Data_output>
<PCT-OutputData>
<PCT-OutputData_status>
<PCT-Status-Message>
<PCT-Status-Message_status>
<PCT-Status value="success"/>
</PCT-Status-Message_status>
<PCT-Status-Message_message>Your search has already been completed successfully!.</PCT-Status-Message_message>
</PCT-Status-Message>
</PCT-OutputData_status>
<PCT-OutputData_output>
<PCT-OutputData_output_entrez>
<PCT-Entrez>
<PCT-Entrez_db>pccompound</PCT-Entrez_db>
<PCT-Entrez_query-key>1</PCT-Entrez_query-key>
<PCT-Entrez_webenv>0CPrI_peUmUtWDooyjxpJ1XAXPcOl-ESZZxj8sJV9ZDR8musMjh1oBTib@1EDD43FA66AE1BE0_0001SID</PCT-Entrez_webenv>
</PCT-Entrez>
</PCT-OutputData_output_entrez>
</PCT-OutputData_output>
</PCT-OutputData>
</PCT-Data_output>
</PCT-Data>Last time, we got a URL to download a gzipped SD File. This time, our query specified results to be returned as an Entrez Key through the PCT-Entrez_webenv element. We can construct a URL that will let us view these results:
http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=HistorySearch&WebEnvRq=1&db=pccompound&query_key=1&WebEnv=0CPrI_peUmUtWDooyjxpJ1XAXPcOl-ESZZxj8sJV9ZDR8musMjh1oBTib%401EDD43FA66AE1BE0_0001SIDWhere to Next?
If we wanted to get a gzipped SD File instead, we'd need to edit our original query. But manually editing XML is a lot like mowing a lawn with scissors. What we'd really like is a simple API in a language like Ruby that will let us build sophisticated PUG queries, process the results, and pipe them into other queries with little effort. But that's a story for another time.
Image Credit: sutterbabe68
Hacking PubChem: Power User Gateway 2
If you've been waiting for a simple way to programatically query PubChem without screen scraping, the wait is over. An (apparently) new service called the Power User Gateway (PUG) now offers a direct, XML-based PubChem data channel.
See PUG
Previous articles have discussed various methods for hacking PubChem: screen scraping (link, link); with the Entrez Utilities; and by simply replicating the database. PUG is different in that it is both very simple and apparently quite powerful.
From the PUG documentation:
... There is a single CGI (pug.cgi, referred to hereafter as simply PUG) that is the central gateway to multiple PubChem functions. PUG takes no URL arguments; all communication with PUG is done by XML. To perform any request, you will formulate your input in XML and then HTTP POST it to PUG. The CGI interprets your incoming request, initiates the appropriate action, then returns results (also) in XML format. ...
See PUG Run
Let's perform a simple query using PUG. As the documentation states, all communication with PUG is done through HTTP POST. In contrast to other approaches to interfacing with PubChem, parameters and results are encoded in raw XML, the schema for which is available here. To use PUG your first step is to locate software capable of encoding this form of HTTP request.
cURL is such a utility. Among many capabilities, cURL offers a quick and easy way to POST XML to a server and view the response. For example, to POST the file called foo.xml to PUG, the command would be:
$ curl -d @foo.xml "http://pubchem.ncbi.nlm.nih.gov/pug/pug.cgi"
Our query will request PubChem's first fifty Compounds in sdf.gz format.
<PCT-Data>
<PCT-Data_input>
<PCT-InputData>
<PCT-InputData_download>
<PCT-Download>
<PCT-Download_uids>
<PCT-QueryUids>
<PCT-QueryUids_ids>
<PCT-ID-List>
<PCT-ID-List_db>pccompound</PCT-ID-List_db>
<PCT-ID-List_uids>
<PCT-ID-List_uids_E>1</PCT-ID-List_uids_E>
<PCT-ID-List_uids_E>50</PCT-ID-List_uids_E>
</PCT-ID-List_uids>
</PCT-ID-List>
</PCT-QueryUids_ids>
</PCT-QueryUids>
</PCT-Download_uids>
<PCT-Download_format value="sdf"/>
<PCT-Download_compression value="gzip"/>
</PCT-Download>
</PCT-InputData_download>
</PCT-InputData>
</PCT-Data_input>
</PCT-Data>$ curl -d @pugtest.xml "http://pubchem.ncbi.nlm.nih.gov/pug/pug.cgi"
Run PUG, Run!
After POSTing our query, PUG gives one of two possible responses: we're informed of the status of our query, or we're given a URL to download our results.
Here's an example of a status result:
<?xml version="1.0"?>
<!DOCTYPE PCT-Data PUBLIC "-//NCBI//NCBI PCTools/EN" "http://pubchem.ncbi.nlm.nih.gov/pug/pug.dtd">
<PCT-Data>
<PCT-Data_output>
<PCT-OutputData>
<PCT-OutputData_status>
<PCT-Status-Message>
<PCT-Status-Message_status>
<PCT-Status value="success"/>
</PCT-Status-Message_status>
</PCT-Status-Message>
</PCT-OutputData_status>
<PCT-OutputData_output>
<PCT-OutputData_output_waiting>
<PCT-Waiting>
<PCT-Waiting_reqid>638302818484957496</PCT-Waiting_reqid>
</PCT-Waiting>
</PCT-OutputData_output_waiting>
</PCT-OutputData_output>
</PCT-OutputData>
</PCT-Data_output>
</PCT-Data>The PCT-Waiting_reqid informs us of our query's ID. We could then prepare and POST another query to monitor its status:
<PCT-Data>
<PCT-Data_input>
<PCT-InputData>
<PCT-InputData_request>
<PCT-Request>
<PCT-Request_reqid>638302818484957496</PCT-Request_reqid>
<PCT-Request_type value="status"/>
</PCT-Request>
</PCT-InputData_request>
</PCT-InputData>
</PCT-Data_input>
</PCT-Data>Eventually, we'll get a response containing a PCT-Download_URL_url element. Inside this element is the URL through which we can download our results:
<?xml version="1.0"?>
<!DOCTYPE PCT-Data PUBLIC "-//NCBI//NCBI PCTools/EN" "http://pubchem.ncbi.nlm.nih.gov/pug/pug.dtd">
<PCT-Data>
<PCT-Data_output>
<PCT-OutputData>
<PCT-OutputData_status>
<PCT-Status-Message>
<PCT-Status-Message_status>
<PCT-Status value="success"/>
</PCT-Status-Message_status>
</PCT-Status-Message>
</PCT-OutputData_status>
<PCT-OutputData_output>
<PCT-OutputData_output_download-url>
<PCT-Download-URL>
<PCT-Download-URL_url>ftp://ftp-private.ncbi.nlm.nih.gov/pubchem/.fetch/766964770894289974.sdf.gz</PCT-Download-URL_url>
</PCT-Download-URL>
</PCT-OutputData_output_download-url>
</PCT-OutputData_output>
</PCT-OutputData>
</PCT-Data_output>
</PCT-Data>Conclusions
PUG offers the basic foundation for building a variety of innovative and useful cheminformatics Web services. But before that can happen, high-level APIs will be needed in languages like Ruby, Python, and Java. With these APIs in hand, what kinds of applications will result? Fortunately, imagination is now the only barrier.
Image Credit: shutterbabe68

