Deseq2 multiple comarison
2
1
Entering edit mode
7.6 years ago
1769mkc ★ 1.2k

I m using deseq2 for my samples such as Wild type[untreated] , and two treated condition [with vitamin D] and Retinoic acid

and my samples are in replicates ,I want to compare the differential expression between WT vs treated[Vitamin D] and WT vs Retinoic acid .so here is my code im using but Im not sure if its doing what i want to do..

condition <- factor(c(rep("WT", 2), rep("AT", 2),rep("VD",2))))`


(coldata <- data.frame(row.names=colnames(countdata), condition))`
dds <- DESeqDataSetFromMatrix(countData=countdata, colData=coldata, design=~condition)
dds

Any suggestion or help would be highly appreciated

rna-seq R • 2.5k views
ADD COMMENT
0
Entering edit mode

You'll get more support on bioconductor for this question.

ADD REPLY
5
Entering edit mode
7.6 years ago

Looks good to me. From the dds table, you will just need to extract the contrasts now (VD vs wt and AT vs WT) using the results() function documented here.

ADD COMMENT
5
Entering edit mode
7.6 years ago

Given your design, you'll want to ensure that WT is the base level for comparisons, which it's currently not.

condition <- factor(c(rep("WT", 2), rep("AT", 2),rep("VD",2))), levels=c("WT", "AT", "VD"))

Now when you use results() the coefficients (2 will be AT vs. WT and 3 will be VD vs WT) will be the comparisons you want.

ADD COMMENT
0
Entering edit mode

okay let me try this and i will let you know..

ADD REPLY
0
Entering edit mode

can you explain me "(2 will be AT vs. WT and 3 will be VD vs WT" why?

ADD REPLY
1
Entering edit mode

This requires knowing how the model matrix will end up getting made. R will create the intercept from the base level of the factor, so all comparisons will be versus it. The other coefficients will be ordered according to the factor levels.

ADD REPLY

Login before adding your answer.

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