What is the difference between the following two chunks of code?
geneModuleMembership = as.data.frame(cor(datExpr, MEs, use = "p"));
MMPvalue = as.data.frame(corPvalueStudent(as.matrix(geneModuleMembership), nSamples));
geneTraitSignificance = as.data.frame(cor(datExpr, weight, use = "p"));
GSPvalue = as.data.frame(corPvalueStudent(as.matrix(geneTraitSignificance), nSamples));
and
datKME = signedKME(datExpr, MEs, outputColumnName = "kME")
The first chunk is to calculate Gene Significance GS (the absolute value of the correlation between the gene and the trait) and module membership MM (the correlation of the module eigengene and the gene expression profile). While in the second, the signedKME is used for calculation of (signed) eigengene-based connectivity, also known as module membership.
Is there any difference between them in calculation of module membership? Which one should be used and in what scenario? For hub gene selection, which is better - kME, GS or MM?
I have a question regarding the Gene Significance since I am very confused with my results.
In the module-trait correlation heatmap, the cyan module looks not significant - it has p-value > 0.2 for each trait. I am using this chunk of code for the matrix:
However when I plot the barplots for GeneSignificance (using the chunk of code below), I get completely different results. In case of the mentioned Cyan module it suddenly becomes the most significant one for the trait DG (in the matrix above DG had correlation p-value = 0.4)
What is the reason for this? I am not sure which of these I should use to pick up the significant/relevant modules? My understanding is that the Module-Trait relationship matrix is meant to show which modules are interesting (significantly correlate with the traits). I expected the barplots to confirm the same information, am I wrongly interpreting the Gene Significance?
From the heatmap it clearly looks like the genes in one sample are biasing the CYAN eigengene so I would exclude this module anyway. But I have troubles understanding the plots, why they show different correlations?
https://drive.google.com/file/d/16gKYY2tX58-GBQDP7z78yYsR2AvzIyel/view?usp=sharing