美文网首页GEO数据挖掘
第四步:PPI蛋白网络制作

第四步:PPI蛋白网络制作

作者: 碌碌无为的杰少 | 来源:发表于2020-05-27 12:06 被阅读0次

提取symbol数据

load("step4output.Rdata")

gene_up= deg[deg$change == 'up','symbol'] 
gene_down=deg[deg$change == 'down','symbol'] 
write.table(gene_up,
            file="upgene.txt",
            row.names = F,
            col.names = F,
            quote = F)
write.table(gene_down,
            file="downgene.txt",
            row.names = F,
            col.names = F,
            quote = F)
write.table(deg$symbol[1:200],
            file="diffgene.txt",
            row.names = F,
            col.names = F,
            quote = F)
library(dplyr)
if(T){x2 <- deg %>%
 filter(change=="up")%>%
 arrange(desc(logFC))%>%
 head(200) }
gene_up1= x2$symbol
class(gene_up1)
write.table(gene_up1,
            file="upgene1.txt",
            row.names = F,
            col.names = F,
            quote = F)

cytoscape文件准备

tsv = read.table("string_interactions.tsv",comment.char = "!",header = T)
tsv2 = tsv[,c(1,2,ncol(tsv))]
head(tsv2)
write.table(tsv2,
            file = "cyto.txt",
            sep = "\t",
            quote = F,
            row.names = F)

p = deg[deg$change != "stable",c("symbol","logFC","P.Value")]
head(p)
write.table(p,
            file = "deg.txt",
            sep = "\t",
            quote = F,
            row.names = F)
image.png
image.png

相关文章

  • 第四步:PPI蛋白网络制作

    提取symbol数据 cytoscape文件准备

  • 18.PPI制作(1)

    大家好,今天开始新的内容,蛋白-蛋白互作网络(PPI),这里我会更3种方式完成PPI,分别是:string在线制作...

  • 简单了解蛋白质互作网络(PPI)

    蛋白质互作网络(PPI) 蛋白质互作网络(Protein-Protein Interaction Networks...

  • TCGA基因差异表达分析流程(3)

    3.1 蛋白互作网络分析 蛋白质的相互作用(PPI, Protein-protein interaction)是指...

  • R语言可视化STRING分析的蛋白互作网络(PPI)

    使用STRING构建蛋白互作网络(PPI) STRING 链接 https://string-db.org/数据集...

  • STRING

    STRING是一个蛋白数据库,可以直接在上面制作PPI图,和找到蛋白相互间的关系和作用。 String数据库(ht...

  • 蛋白互作网络PPI-1

    String【https://string-db.org/】 2019.11.22 拿到有参转录组的数据,gene...

  • PPI分析

    蛋白质-蛋白质相互作用(protein-protein interaction, PPI)是指两个或两个以上的蛋白...

  • PPI 分析

    蛋白质-蛋白质相互作用(protein-protein interaction, PPI)是指两个或两个以上的蛋白...

  • 蛋白互作网络图PPI-2

    解决问题:1:我想要对连接超过20个以上的节点进行筛选,怎么做? 2:能把这个图分成几个subnetwork吗? ...

网友评论

    本文标题:第四步:PPI蛋白网络制作

    本文链接:https://www.haomeiwen.com/subject/dytyahtx.html