当前位置:网站首页>KEGG通路的从属/注释信息如何获取
KEGG通路的从属/注释信息如何获取
2022-07-25 20:32:00 【黄思源】
*富集分析经常做,之前只知道GO term有从上到下的层次关系,今天才知道KEGG pathway也有类似的分层关系。
*
起因是我准备更新一下自己的kegg富集结果展示图,之前一直画的这种图,略显朴素了。
正好搜到了这张图,还挺好看的(主要是配色很清新)

这张图并不难(等有空把代码整理出来发给大家),可是这个「kegg pathway annotation」我真没见过呀!去官网看了看,能找到,但没法下载

在朋友圈求助后,费了很大劲才把这个问题解决。中间好几个小伙伴都很热心地给了我帮助,感谢他们!
以下是我整理的KEGG pathway annotation文件的网盘链接,用到的代码和数据也在里面,想改善一下kegg富集图的朋友可以看看。
*链接:https://pan.baidu.com/s/18pwYZGGZSuk2_LGW8_nQFQ 提取码:ihyn (PS: 觉得有用可以给我
*本期推送的第1篇推文点个赞呀,谢谢了!)

整理这个文件的思路如下
浏览器打开这个网页(https://www.genome.jp/kegg/pathway.html),然后查看网页源代码(一般是鼠标右键),就能看到这个:

然后复制粘贴到一个文本文件
kegg_html.txt,删掉前188行左右,后17行左右(删掉的这些行明显不含有用信息),得到kegg_html_copy.txt。然后运行我编写的代码
pre.R就能得到最终表格了
library(tidyverse)
tmp1=readLines("kegg_html_copy.txt")
tmp2=c()
for (li in 1:length(tmp1)) {
if(str_detect(tmp1[li],">[0-9]")) {
tmp2=append(tmp2,tmp1[li])
}
}
###
big_anno=""
small_anno=""
final_lines=c()
for (li in 1:length(tmp2)) {
if (str_detect(tmp2[li],">[0-9]\\. ")) {
tmp_anno=str_extract(tmp2[li],">.*<")
tmp_anno=str_split(tmp_anno,"\\. ")[[1]][2]
tmp_anno=str_split(tmp_anno,"<")[[1]][1]
big_anno=tmp_anno
} else if (str_detect(tmp2[li],">[0-9]\\.[0-9]{1,2} ")) {
tmp_anno2=str_extract(tmp2[li],">.*<")
tmp_anno2=str_replace(tmp_anno2,"^>[0-9]\\.[0-9]{1,2} ","")
tmp_anno2=str_split(tmp_anno2,"<")[[1]][1]
small_anno=tmp_anno2
} else if (str_detect(tmp2[li],">[0-9]{5}")){
element1=str_extract(tmp2[li],">[0-9]{5}")
element1=str_split(element1,">")[[1]][2]
if (!str_detect(tmp2[li],"hsa\\+pathogen")) {
element2=str_extract(tmp2[li],"pathway\\/[a-zA-Z]{2,4}[0-9]{5}")
element2=str_split(element2,"\\/")[[1]][2]
element3=str_extract(tmp2[li],"pathway.*?<") #非贪婪匹配
element3=str_extract(element3,">.*<")
element3=str_split(element3,">")[[1]][2]
element3=str_split(element3,"<")[[1]][1]
} else {
element2="organism:hsa+pathogen"
element3=str_extract(tmp2[li],"hsa\\+pathogen.*?<") #非贪婪匹配
element3=str_extract(element3,">.*<")
element3=str_split(element3,">")[[1]][2]
element3=str_split(element3,"<")[[1]][1]
}
tmp_line=paste(as.character(element1),element2,element3,big_anno,small_anno,sep = ";")
final_lines=append(final_lines,tmp_line)
}else{
print(tmp2[li])
}
}
###
final_df=as.data.frame(final_lines)
colnames(final_df)="V1"
final_df=final_df%>%apply(1, function(x){as.data.frame(str_split(x,";")[[1]])})
final_df=as.data.frame(final_df)
final_df=as.data.frame(t(final_df))
rownames(final_df)=NULL
colnames(final_df)=NULL
colnames(final_df)=c("ID","Pathway Identifier","Pathway","big annotion","small annotion")
###
library(xlsx)
write.xlsx(final_df,file = "kegg_info.xlsx",col.names = T,row.names = F)
边栏推荐
- [today in history] July 19: the father of IMAP agreement was born; Project kotlin made a public appearance; New breakthroughs in CT imaging
- [today in history] July 13: the father of database passed away; Apple buys cups code; IBM chip Alliance
- Technology cloud report: what is the difference between zero trust and SASE? The answer is not really important
- 103. (cesium chapter) cesium honeycomb diagram (square)
- String of sword finger offer question bank summary (II) (C language version)
- Log in to Baidu online disk with cookies (websites use cookies)
- TGA file format (waveform sound file format)
- 【高等数学】【8】微分方程
- [today in history] June 28: musk was born; Microsoft launched office 365; The inventor of Chua's circuit was born
- CarSim仿真快速入门(十六)—CarSim传感器仿真之ADAS Sensor Objects (2)
猜你喜欢

PreScan快速入门到精通第十八讲之PreScan轨迹编辑的特殊功能

参与开源社区还有证书拿?

Do you still have certificates to participate in the open source community?

Network protocol: TCP part2

Leetcode customs clearance: hash table six, this is really a little simple

毕业从事弱电3个月,我为什么会选择转行网络工程师

Remote monitoring solution of intelligent electronic boundary stake Nature Reserve

10. < tag dynamic programming and subsequence, subarray> lt.53. maximum subarray and + lt.392. Judge subsequence DBC
![[tensorrt] dynamic batch reasoning](/img/59/42ed0074de7162887bfe2c81891e20.png)
[tensorrt] dynamic batch reasoning

Clickhouse notes 02 -- installation test clickvisual
随机推荐
[tensorrt] trtexec tool to engine
CarSim simulation quick start (XV) - ADAS sensor objects of CarSim sensor simulation (1)
[today in history] July 8: PostgreSQL release; SUSE acquires the largest service provider of k8s; Activision Blizzard merger
网络爬虫原理解析「建议收藏」
Docker builds redis cluster
Is QQ 32-bit or 64 bit software (where to see whether the computer is 32-bit or 64 bit)
How much memory does bitmap occupy in the development of IM instant messaging?
10.< tag-动态规划和子序列, 子数组>lt.53. 最大子数组和 + lt.392. 判断子序列 dbc
PMP adopts the latest exam outline, here is [agile project management]
Summarize the level of intelligent manufacturing discussion [macro understanding]
Vulnhub | dc: 5 | [actual combat]
接口请求合并的3种技巧,性能直接爆表!
Network RTK UAV test [easy to understand]
Go language go language built-in container
Recommended system topic | Minet: cross domain CTR prediction
Prescan quick start to master the special functions of prescan track editing in lecture 18
2022.7.24-----leetcode.1184
DIY个人服务器(diy存储服务器)
TGA file format (waveform sound file format)
Cloud native guide: what is cloud native infrastructure