Hi all,
I am try to work with normalization count data using DEseq2. I am trying their tutorial, until the normalization part.
dds <- estimateSizeFactors(dds)
There are different output from their code:
counts(dds, normalized=TRUE)
with when I compute manually:
counts(dds, normalized=FALSE) / sizeFactors(dds)
The author mentioned in this that the normalization data can be computed by divide the counts by sizeFactors(), but why do their function generate differ result compare to when I compute manually.
Does anyone have this issue before?
TRUE!
Thank you so much!