WGCNA
1
0
Entering edit mode
@f68bdf4c
Last seen 2 days ago
Norway

I am planning to perform WGCNA analysis on my transcriptomics data, which includes 200 samples and approximately 49,000 genes. The primary goal is to investigate the associations between gene modules and disease status. However, I have encountered some confusion after reviewing several forum posts, and I would like to confirm a few points regarding the workflow.

Through preliminary analysis (PCA plots), I have observed that gender appears to have an effect on the transcriptomic data. Given this, I would like to ask whether it would make sense to first normalize the count data using DESeq2 and VST before performing WGCNA. Specifically, I intend to use the following code:

dds <- DESeqDataSetFromMatrix(countData = raw_counts,
                              colData = metadata,
                              design = ~1)
dds <- DESeq(dds)
exposures_Normalized <- t(assay(vst(dds)))

modules_data <- blockwiseModules(exposures_Normalized,
                                  power = 8, 
                                  networkType = "signed", 
                                  TOMType = "signed",
                                  corType = "bicor")

After performing clustering, I plan to subset the data by gender and examine the correlation between the resulting gene modules and disease traits. I would appreciate any feedback on whether this approach is appropriate or if there are better strategies for handling gender effects in WGCNA.

OR, should I use Gender in the deseq2 design?

Thank you for your time and insights!

WGCNA DESeq2 • 216 views
ADD COMMENT
0
Entering edit mode
ATpoint ★ 4.8k
@atpoint-13662
Last seen 21 hours ago
Germany

I would like to ask whether it would make sense to first normalize the count data using DESeq2 and VST before performing WGCNA.

This is covered in the WGCNA manual, they state that vst is an option. Beyond that, WGCNA is not a Bioconductor package so off-topic here. Please ask at biostars.org after reading the manual carefully.

ADD COMMENT

Login before adding your answer.

Traffic: 400 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6