gpt4 book ai didi

python - biopython 的 efetch 只返回任何数据库的第一个特征

转载 作者:太空宇宙 更新时间:2023-11-04 05:51:00 25 4
gpt4 key购买 nike

知道为什么这段代码:

handle = Entrez.efetch(db="nuccore", 
id=['556503834'], rettype="gb",
retmode="txt")
print(handle.read())

不返回找到的完整功能 on the ncbi description ?仅返回第一个特征(我的目标是获取 CDS 特征)。

我尝试了其他数据库得出相同的结论。

最佳答案

rettype 更改为 "gbwithparts"

from Bio import Entrez
Entrez.email = "your@mail.com" #put real mail

handle = Entrez.efetch(db="nuccore", id=['556503834'],
rettype="gbwithparts", retmode="txt")
print(handle.read())

注意:可能需要几秒钟

关于python - biopython 的 efetch 只返回任何数据库的第一个特征,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30192495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com