Collections:
Fetch Sequences from NCBI with Bio.Entrez.efetch()
How to Fetch Sequences from NCBI with the Bio.Entrez.efetch() function?
✍: FYIcenter.com
Bio.Entrez.efetch() function allows you to fetch DNA or protein
sequences from NCBI databases: PubMed, GenBank, GEO, and many others.
It uses the Entrez Web services provided by www.ncbi.nlm.nih.gov.
Here is an example on how to Fetch Sequences in FASTA format from NCBI with the Bio.Entrez.efetch() function.
fyicenter$ python
>>> from Bio import Entrez
>>> from Bio import SeqIO
>>> Entrez.email = "A.N.Other@example.com"
>>>
>>> with Entrez.efetch(
... db="nucleotide", rettype="fasta", retmode="text", id="6273291"
... ) as handle:
... seq_record = SeqIO.read(handle, "fasta")
...
>>> print(seq_record)
ID: AF191665.1
Name: AF191665.1
Description: AF191665.1 Opuntia marenae rpl16 gene; chloroplast gene for
chloroplast product, partial intron sequence
Number of features: 0
Seq('TATACATTAAAGGAGGGGGATGCGGATAAATGGAAAGGCGAAAGAAAGAAAAAA...AGA')
You can also fetch the same sequence in GenBank format, which contains more properties.
>>> Entrez.email = "A.N.Other@example.com"
>>> with Entrez.efetch(
... db="nucleotide", rettype="gb", retmode="text", id="6273291"
... ) as handle:
... seq_record = SeqIO.read(handle, "gb")
...
>>> print(seq_record)
ID: AF191665.1
Name: AF191665
Description: Opuntia marenae rpl16 gene; chloroplast gene
for chloroplast product, partial intron sequence
Number of features: 3
/molecule_type=DNA
/topology=linear
/data_file_division=PLN
/date=07-NOV-1999
/accessions=['AF191665']
/sequence_version=1
/keywords=['']
/source=chloroplast Grusonia marenae
/organism=Grusonia marenae
/taxonomy=['Eukaryota', 'Viridiplantae', 'Streptophyta', 'Embryophyta', ...]
/references=[Reference(title='Phylogeny of the subfamily Opuntioideae (Cactaceae)', ...), ...]
Seq('TATACATTAAAGGAGGGGGATGCGGATAAATGGAAAGGCGAAAGAAAGAAAAAA...AGA')
>>> print(seq_record.features[0])
type: source
location: [0:902](+)
qualifiers:
Key: db_xref, Value: ['taxon:106980']
Key: mol_type, Value: ['genomic DNA']
Key: note, Value: ['subfamily Opuntioideae; synonym: Marenopuntia marenae, Grusonia marenae']
Key: organelle, Value: ['plastid:chloroplast']
Key: organism, Value: ['Grusonia marenae']
⇒ Search for Related Items in NCBI with Bio.Entrez.elink()
⇐ Retrieve Record Summary with Bio.Entrez.esummary()
2023-08-25, 1219🔥, 0💬
Popular Posts:
How to create and edit a chemical Reaction with Ketcher editor? To help you to create and edit a che...
Molecule Summary: ID: FYI-1004170 Names: InChIKey: YYDUTROASVFJMN-CPNJWEJPS A-NSMILES: C(=N\\Nc3nc(N...
Molecule Summary: ID: FYI-1002018 Names: InChIKey: IVSZLXZYQVIEFR-UHFFFAOYS A-NSMILES: Cc1cccc(C)c1 ...
Molecule Summary: ID: FYI-1002050 Names: MOTRIN; ADVIL; IBUPROFEN; InChIKey: HEFNNWSXXWATRW-UHFFFAOY. ..
Molecule Summary: ID: FYI-1002198 Names: InChIKey: NNZMAUMXMGGQOF-JSKKQJDMS A-NSMILES: COc6cccc(C3C(...