November 2018
Intermediate to advanced
360 pages
9h 36m
English
Now, let's look at how we can search and fetch data from NCBI databases:
from Bio import Entrez, SeqIOEntrez.email = 'put@your.email.here'
We will also import the module to process sequences. Do not forget to put in the correct email address.
handle = Entrez.esearch(db='nucleotide', term='CRT[Gene Name] AND "Plasmodium falciparum"[Organism]')rec_list = Entrez.read(handle)if rec_list['RetMax'] < rec_list['Count']: handle = Entrez.esearch(db='nucleotide', term='CRT[Gene ...