Hello,
I normally run DESeq2 by importing the data with tximport.
However, this time I was given a counts csv file and imported the counts with DESeqDataSetFromMatrix
. I noticed that when I create the dds object with the counts file I get different messages.
When importing files with DESeqDataSetFromMatrix
I get the below:
estimating size factors
estimating dispersions
gene-wise dispersion estimates
mean-dispersion relationship
final dispersion estimates
fitting model and testing
When importing with tximport:
summarizing abundance
summarizing counts
summarizing length
using counts and average transcript lengths from tximport
estimating size factors
using 'avgTxLength' from assays(dds), correcting for library size
estimating dispersions
gene-wise dispersion estimates
mean-dispersion relationship
final dispersion estimates
fitting model and testing
Does that mean that when I import the counts with DESeqDataSetFromMatrix
the counts are not corrected for library size?
Thank you
Curious if anyone has an answer, but you could look at the correlation between the normalized counts from the two import methods and get a quicker answer.