Hi everybody,
I recently changed from DESeq to DESeq2 to perform my RNA-Seq analysis.
I would like to know how I could include the baseMean values for the two conditions I am using (as it was automatically done in DESeq).
This is how I performed part of it:
#Differential expression analysis dds <- DESeq(dds) res <- results(dds, cooksCutoff=FALSE) res <- res[order(res$padj),] sizeFactors(dds) head (counts (dds)) head (counts(dds, normalized=TRUE))
head(res)
mcols(res, use.names=TRUE)
dds=estimateDispersions (dds) plotDispEsts( dds )
dds<- DESeq(dds)
#to export table write.csv(as.data.frame(res), file.choose())
Thanks, if you need any other info tell me ;)