diff_module | R Documentation |
Inferring differential modules between two list of module groups
diff_module(
Module.group1,
Module.group2,
sim.cutoff = 0.8,
sim.method = "Simpson"
)
Module.group1 |
List object, the first list of module group. |
Module.group2 |
List object, the second list of module group. |
sim.cutoff |
Similarity cutoff between modules, the interval is [0 1]. |
sim.method |
Methods for calculating similatiry between two modules, select one of three methods (Simpson, Jaccard and Lin). Default method is Simpson. |
A list of differential modules
Junpeng Zhang (https://www.researchgate.net/profile/Junpeng-Zhang-2)
library(GSEABase)
data(BRCASampleData)
modulegenes_WGCNA_all <- module_WGCNA(ceRExp, mRExp)
modulegenes_WGCNA_1 <- module_WGCNA(ceRExp[-1, ], mRExp[-1, ])
Differential_module <- diff_module(geneIds(modulegenes_WGCNA_all), geneIds(modulegenes_WGCNA_1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.