Issue with normalization in DESeq2
1
0
Entering edit mode
jmoehlin • 0
@jmoehlin-18418
Last seen 5.4 years ago

Dear all,

I would like to make a differential analysis with DESeq2 for RNA-seq data.

I wanted to watch the effect of the normalization. You can find below, my R code. 

 

dds <- DESeq(ddsHTSeq)

dds <- estimateSizeFactors(dds)

countNorm <- counts(dds, normalized=TRUE)

countUnnorm <- counts(dds, normalized=FALSE)

 

res1 <- results(dds, independentFiltering=FALSE, normalized = TRUE)

res2 <- results(dds, independentFiltering=FALSE, normalized = FALSE)

 

I made 2 boxplots with countNorm and countUnnorm. On boxplots, we can see that the normalization is working.

But when I made 2 volcano plots with res1 and res2 both volcanos are identical. Furthermore when I have a look on res1 and res2, both are identical (I mean same values for baseMean, log2FoldChance, lfcSE, stat, pvalue).

 

I would like to know why res1 (with normalization) and res2 (without normalization) are identical ?

Could you please help me ?

 

Thank in advance,

Regards,

 

Julien

deseq2 normalization rnaseq • 546 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 6 minutes ago
United States

Check ?results. “normalized” is not one of its arguments. If you ever have questions about the behavior of a function relative to its arguments, the function help page is a good first place to check.

ADD COMMENT

Login before adding your answer.

Traffic: 798 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6