Hi everyone
I have 2 dataset, one is RNA-seq data from TCGA and another is microarray data. For RNA-seq, I filter low expressed gene and normalization by using DESeq2
dds75<-dds[rowsums(counts(dds)>=10)>=475,]
vst(dds75)
Everything went well for RNA-seq but for microarray data I normalize data using gcRMA but i am not sure how to filter low expressed gene prior to do WGCNA because DESeq2 can’t apply to microarray array data.
Hi Kevin, first of all, thanks for your suggestion. I did follow your suggestion to not filter the gene and remove the control probe from the dataset prior to running WGCNA (as i understand the control probe name start with AFFY). the problem is that during runing WGCNA, i noticed the distribution of data to detect outliers using
The distribution is not a bell shape and reassure to detect outliers
After that I exclude some samples above the height cut off and then run the
pickSoftThreshold
and get this result Do you have any suggestion to fix this problem?Thanks again for helping me.