Entering edit mode
2.3 years ago
gupta00aritra
•
0
norm_count[]<- sapply(norm_count, as.numeric)
soft_power <- 3
temp_cor <- cor
cor <- WGCNA::cor
#Memory estimate with respect to blockwise
bwnet<- blockwiseModules(norm_count, maxBlockSize = 18000,
TOMType = "signed",
power = soft_power,
mergeCutHeight = 0.25,
numericLabels = F,
randomSeed = 04321,
minModuleSize = 30,
verbose=3)Warning message:
In blockwiseModules(norm_count, maxBlockSize = 18000, TOMType = "signed", :
blockwiseModules: mergeCloseModules failed with the following error message:
Error in mergeCloseModules(datExpr, colors[gsg$goodGenes], cutHeight = mergeCutHeight, :
Error in moduleEigengenes(expr = exprData[[set]]$data, colors = setColors, :
Color levels are empty. Possible reason: the only color is grey and grey module is excluded from the calculation.
--> returning unmerged colors
Soft-power=3
?How did you come up with this number?
by plotting power vs signed R^2
norm_count
columns correspond to genes and rows to samples.Thank you!
ps. soft power of 3 is too low. For a signed network you should have soft-power threshold > 10
I face the same problem, can you help me