Hello!
If I wanted to conduct WGCNA analysis following a salmon/DESeq2 workflow, would it be appropriate to use the matrix generated after applying the vst function on the dds object? Something akin to the following script:
dds<- DESeqDataSetFromTximport(txi, coldata, design = ~ batch + Sex + BW)
keep <- rowSums(counts(dds)>=1) >= 30 #perform some prefiltering
dds <- dds[keep,]
dds <- DESeq(dds)
vsd <- vst(dds, blind = FALSE) #transform while accounting for design
Thanks!
Thanks for the quick response!