Cordial greeting
Someone could help me with the script to calculate intramodular connectivity for RNA-seq data?
This is the code that I have so far, is this correct?
module = c("indianred4");
# Select module probes
probes = colnames(datExpr)
inModule = (moduleColors==module);
modProbes = probes[inModule];
# Recalculate intramodular connectivity (IMConn)
IMConn = softConnectivity(datExpr[, modProbes]);
# Select the corresponding Topological Overlap
length(inModule)
modTOM = TOM[inModule, inModule];
dimnames(modTOM) = list(modProbes, modProbes)
TOM.mat = as.matrix(mod)
Thanks
Thanks Dr. Langfelder, I have one last question, how can I visualize this intramodular connectivity, for example using Cytoscape?
Thanks