WGCNA(2b):分步法完成网络构建和模块检测

在前两篇帖子中介绍了数据的导入清洗,以及一步法构建网络,这篇文章将介绍网络构建的第二种方法,分步法。
WGCNA(1):R包安装及数据导入清洗 - 简书 (jianshu.com)
WGCNA(2a):一步法完成网络构建和模块检测 - 简书 (jianshu.com)

参考材料还是官方说明书:
https://horvath.genetics.ucla.edu/html/CoexpressionNetwork/Rpackages/WGCNA/Tutorials/FemaleLiver-02-networkConstr-man.pdf

1. 准备工作

$ cd ~/WGCNA

$ R
> library(WGCNA)
> enableWGCNAThreads(15)

#载入第一步中的表达量和表型值
> lnames = load(file = "WGCNA0.3-dataInput.RData")
> lnames
[1] "datExpr"  "datTraits"

2. 分步法构建基因网络和模块识别

2.1 确定合适的软阈值:网络拓扑分析

# 设置网络构建参数选择范围
> powers = c(c(1:10), seq(from = 12, to=20, by=2)) 
> powers
 [1]  1  2  3  4  5  6  7  8  9 10 12 14 16 18 20
# 计算无尺度分布拓扑矩阵
> sft = pickSoftThreshold(datExpr, powerVector = powers, verbose = 5)

软阈值计算结果可视化

> pdf(" Analysis of network topology for various soft-thresholding powers.pdf",width = 9, height=5)
#一页多图,一行2列
> par(mfrow = c(1,2))
#字号
> cex1 = 0.9
# Scale-free topology fit index as a function of the soft-thresholding power(左图)
> plot(sft$fitIndices[,1], -sign(sft$fitIndices[,3])*sft$fitIndices[,2], xlab="Soft Threshold (power)",ylab="Scale Free Topology Model Fit,signed R^2",type="n",main = paste("Scale independence"))
> text(sft$fitIndices[,1], -sign(sft$fitIndices[,3])*sft$fitIndices[,2], labels=powers,cex=cex1,col="red") 
#查看最佳软阈值
> sft$powerEstimate
[1] 6 
# this line corresponds to using an R^2 cut-off of h
> abline(h=0.90,col="red")
# Mean connectivity as a function of the soft-thresholding power(右图)
> plot(sft$fitIndices[,1], sft$fitIndices[,5], xlab="Soft Threshold (power)",ylab="Mean Connectivity", type="n", main = paste("Mean connectivity"))
> text(sft$fitIndices[,1], sft$fitIndices[,5], labels=powers, cex=cex1,col="red")
> dev.off()
Figure 1: Analysis of network topology for various soft-thresholding powers. The left panel shows the scale-free fit index (y-axis) as a function of the soft-thresholding power (x-axis). The right panel displays the mean connectivity (degree, y-axis) as a function of the soft-thresholding power (x-axis).

2.2 共表达相似性和邻接性

通过上述计算得知,最佳软阈值为6。

> softPower = 6
> adjacency = adjacency(datExpr, power = softPower)

2.3 拓扑覆盖矩阵TOM

为了减小噪声和虚假关联的影响,我们将邻接变换为拓扑重叠矩阵,并计算相应的不相似度。

> TOM = TOMsimilarity(adjacency)
> dissTOM = 1-TOM

2.4 通过TOM进行聚类

现在使用层次聚类来产生基因的层次聚类树(树状图)。注意,我们使用了hclust函数,它提供了比标准hclust函数更快的分层集群例程。

# 调用层次聚类函数
> geneTree = hclust(as.dist(dissTOM), method = "average")
# 聚类结果绘图
> pdf(" Gene clustering on TOM-based dissimilarity.pdf",width = 12, height=9)
> plot(geneTree, xlab="", sub="", main = "Gene clustering on TOM-based dissimilarity", labels = FALSE, hang = 0.04)
> dev.off()

在下图中,每个短分枝代表一个基因,相邻的基因表示他们高度共表达。聚类方法是dynamicTreeCut包中的Dynamic TreeCut。


Figure 2: Clustering dendrogram of genes, with dissimilarity based on topological overlap
# 由于基因数目比较多,我们喜欢大的模块,所以我们把最小模块的大小设置得比较高,这个数值要根据自己的数据进行修改
> minModuleSize = 200
# 模块识别使用动态树切割,这里敏感度deepSplit我设置了1,需要根据自己数据进行调试,默认是2
> dynamicMods = cutreeDynamic(dendro = geneTree, distM = dissTOM, deepSplit = 1, pamRespectsDendro = FALSE, minClusterSize = minModuleSize) 
# 查看模块数
> table(dynamicMods)
# 转换数字标签为颜色
> dynamicColors = labels2colors(dynamicMods)
# 查看颜色
> table(dynamicColors)
# 绘图
> pdf("Gene dendrogram and module colors.pdf",width = 8, height=6)
> plotDendroAndColors(geneTree, dynamicColors, "Dynamic Tree Cut", dendroLabels = FALSE, hang = 0.03, addGuide = TRUE, guideHang = 0.05, main = "Gene dendrogram and module colors")
> dev.off()
Figure 3: Clustering dendrogram of genes, with dissimilarity based on topological overlap, together with assigned module colors.

2.5 合并表达模式相似的模块

量化各个模块的共表达相似性,根据模块间的相关性合并表达模式相似的模块。

# Calculate eigengenes
> MEList = moduleEigengenes(datExpr, colors = dynamicColors)
> MEs = MEList$eigengenes
#  Calculate dissimilarity of module eigengenes
> MEDiss = 1-cor(MEs)
#  Cluster module eigengenes
> METree = hclust(as.dist(MEDiss), method = "average")
# 画图
> pdf("Clustering of module eigengenes.pdf",width = 7, height=6)
> plot(METree, main = "Clustering of module eigengenes", xlab = "", sub = "")

这里选择切割高度0.3,即模块之间相关性达到0.7进行合并,这个系数也要根据自己的数据进行更改,常见的是0.25(Fig.4)。

> MEDissThres = 0.3
# 在树状图中加入切割线
> abline(h=MEDissThres, col = "red")
# 调用自动归并函数
> merge = mergeCloseModules(datExpr, dynamicColors, cutHeight = MEDissThres, verbose = 3)
# 合并模块的颜色
> mergedColors = merge$colors
# 合并后新模块
> mergedMEs = merge$newMEs
Figure 4: Clustering dendrogram of genes, with dissimilarity based on topological overlap, together with assigned merged module colors and the original module colors.

为了查看合并对模块颜色的影响,我们再次绘制了基因树状图,下面依次是原始和合并后的模块颜色(Fig.5)。

> pdf("PlotsgeneDendro3.pdf",width = 12, height=9)
> plotDendroAndColors(geneTree, cbind(dynamicColors, mergedColors), c("Dynamic Tree Cut", "Merged dynamic"), dendroLabels = FALSE, hang = 0.03, addGuide = TRUE, guideHang = 0.05)
> dev.off()

在随后的分析中,我们将在mergedColors中使用合并的模块颜色,保存相关的变量,以便在后续分析中使用。

# 对模块颜色重命名
> moduleColors = mergedColors
# 将颜色转换为数据标签
> colorOrder = c("grey", standardColors(50))
> moduleLabels = match(moduleColors, colorOrder)-1
> MEs = mergedMEs
# 保存模块颜色和标签,以供后续部分使用
> save(MEs, moduleLabels, moduleColors, geneTree, file = "networkConstruction-stepByStep.RData")
Figure 5: Clustering dendrogram of genes, with dissimilarity based on topological overlap, together with assigned merged module colors and the original module colors.
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容