Entering edit mode
pchiang5
•
0
@pchiang5-9743
Last seen 8.8 years ago
Hi folks,
Currently I am able to extract a table of counts normalized by size factors:
normalized_counts = counts(dds, normalized=TRUE)
However, these counts are still before fitting in the analysis.
Is it possible to obtain the post-fitting counts from DESeq2 analysis?
Thanks
If you want to visualize the expression across samples, and perhaps remove fixed effects associated with batches, you could use the VST or rlog transformation (see vignette), then apply limma's
removeBatchEffect()
to the transformed counts (accessible viaassay(object)
following a transformation).It worked! Thank you Michael.