使用蛋白质的基因标识符检索DNA序列

问题描述 投票:1回答:2

我使用Biopython尝试检索对应于我有GI的蛋白质的DNA序列(71743840),从NCBI页面这很容易,我只需要查找refseq。我的问题来自使用ncbi fetch实用程序在python中编码时,我无法找到一种方法来检索任何可以帮助我去DNA的字段。

handle = Entrez.efetch(db="nucleotide", id=blast_record.alignments[0].hit_id, rettype="gb", retmode="text")
seq_record=SeqIO.read(handle,"gb")

seq_record.features中有很多信息,但必须有一个更简单明了的方法来做到这一点,任何帮助都将受到赞赏。日Thnx!

python bioinformatics biopython ncbi
2个回答
0
投票

您可以尝试访问SeqRecord的注释:

seq_record=SeqIO.read(handle,"gb")
nucleotide_accession = seq_record.annotations["db_source"]

在你的情况下nucleotide_accession是“REFSEQ:加入NM_000673.4”

现在看看你是否可以解析这些注释。只有这个测试用例:

nucl_id = nucleotide_accession.split()[-1]

handle = Entrez.efetch(db="nucleotide",
                       id=nucl_id,
                       rettype="gb",
                       retmode="text")
seq_record = SeqIO.read(handle, "gb")

0
投票

你可以利用Entrez.elink,请求对应于核苷酸序列的UID的蛋白质序列的UID:

from Bio import Entrez
from Bio import SeqIO
email = '[email protected]'
term = 'NM_207618.2' #fro example, accession/version

### first step, we search for the nucleotide sequence of interest
h_search = Entrez.esearch(
        db='nucleotide', email=email, term=term)
record = Entrez.read(h_search)
h_search.close()

### second step, we fetch the UID of that nt sequence
handle_nt = Entrez.efetch(
        db='nucleotide', email=email, 
        id=record['IdList'][0], rettype='fasta') # here is the UID

### third and most important, we 'link' the UID of the nucleotide
# sequence to the corresponding protein from the appropriate database
results = Entrez.read(Entrez.elink(
        dbfrom='nucleotide', linkname='nucleotide_protein',
        email=email, id=record['IdList'][0]))

### last, we fetch the amino acid sequence
handle_aa = Entrez.efetch(
        db='protein', email=email, 
        id=results[0]['LinkSetDb'][0]['Link'][0]['Id'], # here is the key...
        rettype='fasta')
© www.soinside.com 2019 - 2024. All rights reserved.