This is a test version of Biostars. For the public version, visit https://www.biostars.org.
transformed read counts in deseq2

How can I extract the normalized and transformed read counts in deseq2 which are used to calculate the log fold change?

deseq2 data read counts

i've tried that function but the data are not transformed. Also i've read that the function (rlog) retrieve the transformed counts but i can't get any result by doing this: write.csv(as.data.frame(rlog(dds, blind=TRUE, fitType = "parametric")), file="transformed.csv")

What function exactly did you try? rlog values are not used for calculating log fold changes.

2 answers

rld <- rlog(dds)
assay(rld)

How to export rld (rlog) or vsd values from DESeq2?

As far as I know essentially all DESeq2 object types are SummarizedExperiment containers and therefore can be accessed with assay to select counts. data.frame(rlog) is not possible as you first have to access the counts inside the SummarizedExperiments container.

you can also extract normalized read count from dds object

res <- as.data.frame(counts(dds, normalized=TRUE))

Log in to answer this question.