This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Difference in total normalized counts for replicates - DeSeq2

Hello,

I have extracted the normalised counts for my RNAseq samples using Deseq2 with standard recommended command

dds <- estimateSizeFactors(dds)
counts(dds, normalized=TRUE)

However, when I sum up the total number of normalised counts per sample, I am seeing a differences in the latter for replicates. For example, sample A1 total = 40 million, whereas A2 total = 50 million. Is this normal? Why are they so different?

Thanks for any help you can provide.

rna-seq deseq2

FYI, that won't be identical, just in the same vague range.

2 answers

I don't know what variable you are using, but you didn't assign the normalised counts to anything. I guess you want something like:

normcounts <- counts(dds, normalized=TRUE)

Yes, that's correct. Sorry I missed that.

Log in to answer this question.