从Python Entrez字典返回值

2024-04-29 04:11:11 发布

您现在位置:Python中文网/ 问答频道 /正文

我想从Entrez Gene页面上抓取交互作用表。在

Interactions表是从web服务器填充的,当我试图在R中使用XML包时,我可以得到Entrez gene页面,但是Interactions表体是空的(它没有被web服务器填充)。在

在R中处理web服务器问题可能是可以解决的(我很想知道如何解决),但是Biopython似乎是一条更简单的途径。在

我把下面的内容放在一起,这就给了我想要的一个示例基因:

# Pull the Entrez gene page for MAP1B using Biopython

from Bio import Entrez
Entrez.email = "jamayfie@vasci.umass.edu"
handle = Entrez.efetch(db="gene", id="4131", retmode="xml")
record = Entrez.read(handle)
handle.close()

PPI_Entrez = []
PPI_Sym = []

# Find the Dictionary that contains the Interaction table
    for x in range(1, len(record[0]["Entrezgene_comments"])):
   if ('Gene-commentary_heading', 'Interactions') in record[0]["Entrezgene_comments"][x].items():
       for y in range(0, len(record[0]["Entrezgene_comments"][x]['Gene-commentary_comment'])):
          EntrezID = record[0]["Entrezgene_comments"][x]['Gene-commentary_comment'][y]['Gene-commentary_comment'][1]['Gene-commentary_source'][0]['Other-source_src']['Dbtag']['Dbtag_tag']['Object-id']['Object-id_id']
          PPI_Entrez.append(EntrezID)
          Sym = record[0]["Entrezgene_comments"][x]['Gene-commentary_comment'][y]['Gene-commentary_comment'][1]['Gene-commentary_source'][0]['Other-source_anchor']
          PPI_Sym.append(Sym)

# Return the desired values: I want the Entrez ID and Gene symbol for each interacting protein
PPI_Entrez  # Returns the EntrezID
PPI_Sym  # Returns the gene symbol

这个代码有效,给了我想要的。但我觉得这很难看,我担心如果Entrez基因页面的格式稍有改变,就会破坏代码。特别是,必须有一种比指定完整路径更好的方法来提取所需信息,正如我所做的:

^{pr2}$

但是我不知道如何在字典中搜索,而不指定我要下降的每一级。当我尝试find()之类的函数时,它们会在下一级操作,但不会一直操作到底部。在

是否有一个通配符、Python等价的“/”或一个函数,我可以使用它在不命名完整路径的情况下访问['Object-id_id']?其他关于更清洁的代码的建议也值得赞赏。在


Tags: theidsourceforcomment页面ppientrez
1条回答
网友
1楼 · 发布于 2024-04-29 04:11:11

我不确定Python中的xpath,但是如果代码有效,那么我就不必担心删除完整的路径或者Entrez Gene XML是否会改变。由于您第一次尝试R,您可以使用直接下面的Entrez系统调用或像rentrez这样的包来获取XML。在

doc <- xmlParse( system("efetch -db=gene -id=4131 -format xml", intern=TRUE) )

接下来,获取表中http://www.ncbi.nlm.nih.gov/gene/4131#interactions处的行对应的节点

^{pr2}$

先试试简单的东西

xmlToDataFrame(x[1:4])

  Gene-commentary_type  Gene-commentary_text Gene-commentary_refs Gene-commentary_source                         Gene-commentary_comment
1                   18   Affinity Capture-MS             24457600   BioGRID110304BioGRID   255BioGRID110304255GeneID8726EEDBioGRID114265
2                   18 Reconstituted Complex             20195357   BioGRID110304BioGRID   255BioGRID110304255GeneID2353FOSBioGRID108636
3                   18 Reconstituted Complex             20195357   BioGRID110304BioGRID 255BioGRID110304255GeneID1936EEF1DBioGRID108256
4                   18   Affinity Capture-MS     2345592220562859   BioGRID110304BioGRID  255BioGRID110304255GeneID6789STK4BioGRID112665
  Gene-commentary_create-date Gene-commentary_update-date
1                  2014461120                201410513330
2                201312810490                201410513330
3                201312810490                201410513330
4                 20137710360                201410513330

一些标记,如text、refs、source和dates应该很容易解析

sapply(x, function(x) paste( xpathSApply(x, ".//PubMedId", xmlValue), collapse=", "))

我不确定表中列出的注释或产品、交互体和其他基因是如何存储在XML中的,但我在这里为每个节点提供了一到三个符号和三个ID。在

sapply(x, function(x) paste( xpathSApply(x, ".//Gene-commentary_comment//Other-source_anchor", xmlValue), collapse=" + "))
sapply(x, function(x) paste( xpathSApply(x, ".//Gene-commentary_comment//Object-id_id", xmlValue), collapse=" + "))

最后,因为我认为Entrez基因只是完整地复制了BioGrid,所以你也可以试试这些网站。Biogrid有一个非常简单的Rest服务,但是您必须注册一个密钥。在

url <- "http://webservice.thebiogrid.org/interactions?geneList=MAP1B&taxId=9606&includeHeader=TRUE&accesskey=[ your ACCESSKEY ]"

biogrid <- read.delim(url)
 dim(biogrid)
[1] 58 24

head(biogrid[, c(8:9,12)])
  Official.Symbol.Interactor.A Official.Symbol.Interactor.B      Experimental.System
1                       ANP32A                        MAP1B               Two-hybrid
2                        MAP1B                       ANP32A               Two-hybrid
3                       RASSF1                        MAP1B Affinity Capture-Western
4                       RASSF1                        MAP1B               Two-hybrid
5                       ANP32A                        MAP1B Affinity Capture-Western
6                          GAN                        MAP1B Affinity Capture-Western

相关问题 更多 >