Skip to content

Using Biopython's Bio.Entrez package to Access NCBI Entrez databases

Notifications You must be signed in to change notification settings

gumption/Using_Biopython_Entrez

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Using Biopython's Bio.Entrez package to Access NCBI's Entrez databases

This IPython Notebook is based on Chapter 9 of the Biopython Tutorial and Cookbook, "Accessing NCBI’s Entrez databases".

Related documents supplied by the National Center for Biotechnology Information (NCBI) include:

The Introduction to the first NCBI document offers the following overview:

The Entrez Programming Utilities (E-utilities) are a set of nine server-side programs that provide a stable interface into the Entrez query and database system at the National Center for Biotechnology Information (NCBI). The E-utilities use a fixed URL syntax that translates a standard set of input parameters into the values necessary for various NCBI software components to search for and retrieve the requested data. The E-utilities are therefore the structured interface to the Entrez system, which currently includes 38 databases covering a variety of biomedical data, including nucleotide and protein sequences, gene records, three-dimensional molecular structures, and the biomedical literature.

My primary goal was to learn how to use Bio.Entrez to conduct citation analysis on PubMed articles. I find the best way to learn how to use nearly any new Python tool is to create an IPython Notebook to experiment with sample code and data. I am sharing this notebook in case others find it useful ... and my intention to share the notebook helps motivate me to learn the material better than I might otherwise.

I have elaborated on some sections in Chapter 9 of the Biopython Tutorial and Cookbook, inserted links to relevant NCBI and Python documentation, adopted more consistent coding and naming conventions (the Biopython document was developed and revised by different people at different times), corrected some errors (e.g., variable names, file names) and added some error checking (try/except statements) in Section 9.12 (Handling Errors) so that all the cells in the notebook can be run without interruption.

I addressed a TODO item in Section 9.15.3 of the Biopython Tutorial and Cookbook - see the section near the bottom, Update: Searching for citations using ELink, EPost and EFetch with history below. I encountered an HTTPError while working out a solution to using ELink and EFetch with the Entrez History server (I initially omitted an EPost call in between those two). Entrez defines an internal _HTTPError exception that does not appear to be intended for reuse, but I found it useful to access that, so I added another new section at the bottom, update on handling HTTPErrors.

To make the notebook as self-contained as possible, I replaced absolute linked references to sections in Chapter 9 with relative links, and then inserted anchors into the corresponding sections in this notebook (using a technique suggested by Sebastian Raschka in his IPython Notebook, Creating a table of contents with internal links in IPython Notebooks and Markdown documents).

The Biopython wiki has instructions for downloading and installing Biopython on various platforms. I use Anaconda on a Mac, and simply used

conda install biopython

on a Terminal command line for my installation.

A final note: when I first tried to run some of the examples in Chapter 9, warning messages indicated that I needed to install the following DTD files, either in a system-wide Python library subfolder (//anaconda/lib/python2.7/site-packages/Bio/Entrez/DTDs) or in a user-specific subfolder (~/.biopython/Bio/Entrez/DTDs). I chose to install them in the system-wide folder:

About

Using Biopython's Bio.Entrez package to Access NCBI Entrez databases

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages