Entering edit mode
Hi,
I am using DESeq2
for analyzing Illumina RNASeq
datasets. I follow the below steps;
- Derived raw counts (from featureCounts) > Imported counts to DESeq2
- Normalised the counts via an estimation of size factors
(counts(dds, normalized = TRUE))
- Transformed the data for downstream applications via variance stabilisation (
vst
) or regularised log (rlog
)
vsd <- vst(dds, blind=FALSE)
rld <- rlog(dds, blind=FALSE)
ntd <- normTransform(dds). # this gives log2(n + 1)
My question is if I would like to reverse transform the data in the unlog form - for ntd
I would use; dat_unlog = 2^(ntd - 1)
However, If I am interested to unlog the data - from vst
or rlog
Is it right to use or are there any additional parameters or arguments?
dat_unlog = 2^vst
(OR)
dat_unlog = 2^rlog
Thank you,
Toufiq
Dear Michael Love noted and thank you very much for the prompt response. This was helpful.