WGCNA module consensus
Hi I am using WGCNA to create a consensus network from 4 different gene expression data sets. I want to have at least 25% consensus genes between gene expression data sets.
Thank’s
snp
• 4,810 views
•
link
updated
by
Biostar
•
written
by
philipbody •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
WGCNA
written by mavy •hello all, I am working on RNAseq dataset and now I performed the WGCNA using the expression data from deseq2. I wanted to create networks …
-
Construct a gene co-expression network with WGCNA
written by Jenny Han •Hi everyone, I need your help. I have mRNA expression data in each individuals (75 individuals, 12000 gene). And I want to **construct a gene …
-
How to export a network of a specific module to Cytoscape - Consensus modules / multiExpr
written by ApprenticeHi I constructed a consensus network based on six data sets of gene expression profiles. To construct the network, I used blockwiseConsensusModules function of WGCNA …
-
Gene Set (enrichr) and Gene Interaction Data for CEMiTool
written by BELA •Hi All! I am really new to this field, so I hope some Bioinformatics/ Biologist may help me, even if my question probably sounds silly …
-
Consensus WGCNA: differentially connected genes
written by baldauf •Hi, I am still trying to apply the consensus WGCNA to my own data following the Tutorial written by Peter Langfelder and Steve Horvath. I …
-
how to create input file for WGCNA
written by nitishd.dave •I have 25 genes and its pearson coefficient with SOS1 gene and want to create a network correlation with it so, can anyone tell me …
-
Regulatory Network Tool
written by rvrob3000 •Hi everyone, I have been looking for a tool in order to build a gene regulatory network. Long story short, I have a set of …
-
WGCNA: Output gene lists from consensus network modules
written by RossCampbellI am using WGCNA to create a consensus network from two different gene expression data sets. I want to do some downstream analysis with the …
-
Consensus module detection using WGCNA
written by NitinHello, I recently started to work on consensus modules identification using WGCNA (R package). I went through tutorials related to this in WGCNA website In …
-
Wgcna_How To Calculate Eigengenes From Multiple Data Sets (Gene Expression Profiles)?
written by chae •<p>I am trying to figure out some traits using WGCNA methodology. </p> <p>This analysis is based on microarray meta-analysis. Briefly explaining, I did analyze some …
And what's your question?
hi my question is :Is it possible to have the command line that allows at least 25% of consensus genes between data sets,? If yes how ? Thank's
net = blockwiseConsensusModules( multiExpr, power = 6, minModuleSize = 30, minCoreKME = 0.25 ,deepSplit = 2,maxBlockSize = 6000, pamRespectsDendro = FALSE, mergeCutHeight = 0.25, numericLabels = TRUE, minKMEtoStay = 0.25, saveTOMs = TRUE, verbose = 5)
names(net)
Clustering
consTree = hclust(as.dist(1-consensusTOM), method = "average");
We like large modules, so we set the minimum module size relatively high:
minModuleSize = minModuleSize = 30; minCoreKME = 0.25;
Module identification using dynamic tree cut:
unmergedLabels = cutreeDynamic(dendro = consTree, distM = 1-consensusTOM, deepSplit = 2, cutHeight = 0.995, minClusterSize = minModuleSize, pamRespectsDendro = FALSE ); unmergedColors = labels2colors(unmergedLabels)
bnet = blockwiseConsensusModules( multiExpr, maxBlockSize = 6000, power = 6, minModuleSize = 30, minCoreKME = 0.25, deepSplit = 2, pamRespectsDendro = FALSE, mergeCutHeight = 0.25, numericLabels = TRUE, minKMEtoStay = 0, saveTOMs = TRUE, verbose = 5)
hi my question is :Is it possible to have the command line that allows at least 25% of consensus genes between data sets,? If yes how ? Thank's
net = blockwiseConsensusModules( multiExpr, power = 6, minModuleSize = 30, minCoreKME = 0.25 ,deepSplit = 2,maxBlockSize = 6000, pamRespectsDendro = FALSE, mergeCutHeight = 0.25, numericLabels = TRUE, minKMEtoStay = 0.25, saveTOMs = TRUE, verbose = 5)
names(net)
Clustering
consTree = hclust(as.dist(1-consensusTOM), method = "average");
We like large modules, so we set the minimum module size relatively high:
minModuleSize = minModuleSize = 30; minCoreKME = 0.25;
Module identification using dynamic tree cut:
unmergedLabels = cutreeDynamic(dendro = consTree, distM = 1-consensusTOM, deepSplit = 2, cutHeight = 0.995, minClusterSize = minModuleSize, pamRespectsDendro = FALSE ); unmergedColors = labels2colors(unmergedLabels)
bnet = blockwiseConsensusModules( multiExpr, maxBlockSize = 6000, power = 6, minModuleSize = 30, minCoreKME = 0.25, deepSplit = 2, pamRespectsDendro = FALSE, mergeCutHeight = 0.25, numericLabels = TRUE, minKMEtoStay = 0, saveTOMs = TRUE, verbose = 5)