DESeq2: resultsNames(dds): intercept
1
0
Entering edit mode
waquinon • 0
@waquinon-13674
Last seen 6.7 years ago

Hello,

 

I am new using DESeq2 on R. I always used galaxy. My question is... isn't the comparison supposed to be between 

~condition treated vs. untreated or knockdown vs wildtype?

 

When I use R and type :

> resultsNames(dds)
[1] "Intercept"                      "condition_untreated_vs_treated"

 

> resLFC
log2 fold change (MAP): condition untreated vs treated 
Wald test p-value: condition untreated vs treated 

 

even with the pasilla example, I get untreated vs treated when in the manual appears treated vs untreated. Am I doing something wrong?

One of the genes with the most significant change that I am looking at appears downregulated when I use galaxy, but upregulated when I use R.

Who should I trust?

 

Thank You!

deseq2 pasilla • 2.9k views
ADD COMMENT
2
Entering edit mode
rrcutler ▴ 70
@rrcutler-10667
Last seen 4.2 years ago

It seems that you are having a problem with setting the reference level. You can make sure that the untreated level is the reference level by setting 

dds$condition <- relevel(dds$condition, ref = "untreated")

before running DESeq() as is mentioned in the vignette.

-R

 

ADD COMMENT
0
Entering edit mode

It worked perfectly.

 

Thank you!!!

ADD REPLY

Login before adding your answer.

Traffic: 821 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