Hi,
I am currently using DESeq (1.18.0) for an RNASeq analysis, in the
tutorial script, should the "estimateDispersions" function be taking normalized counts or non-normalized counts as input? Is it already using normalized counts without adding “/normalized=TRUE/” in the example script?
raw.counts<-newCountDataSetFromHTSeqCount(sampleTable=sampleTable, directory="./data/htseq")
cds<-estimateSizeFactors(raw.counts)
cds<-estimateDispersions(cds)
difftest<- nbinomTest(cds, "A", "B”)
normalized.counts<-counts(cds, normalized=TRUE)
Thank you very much!