Deseq2 Interaction Term to catch
1
0
Entering edit mode
guipagui • 0
@guipagui-17517
Last seen 5.6 years ago

Hi,

I read the documentation, vignette, tuto ... but i'm face an issue.

Let's try :

dds <- makeExampleDESeqDataSet(n=10000,m=12)
dds$condition <- factor( c( rep("Ctrl",6), rep("Trt",6) ) )
dds$genotype <- factor(rep(rep(c("WT","MU"),each=3),2))

dds$genotype = relevel( dds$genotype, "WT")

If i want to modelise the effect of treatment for genotypes:

Méthode A :

design(dds) <- ~ genotype + condition + genotype:condition

res = results(dds, name="genotypeMU.conditionTrt")

that's ok but :

Méthode B

dds$group <- factor(paste0(dds$genotype, dds$condition))
design(dds) <- ~ group

res = results(dds, name="group_WTTrt_vs_MUCtrl") doesn't give the same result

What's i'm wrong ?

Thanks,

deseq2 interaction term • 754 views
ADD COMMENT
1
Entering edit mode
@mikelove
Last seen 5 hours ago
United States

Please look at the diagram in the vignette in the section on interactions.

The most recent DESeq2 question on the support site had the exact same question.

Above you are mixing up main effects and interactions. The interaction is not a main effect, but a difference between the two condition effects.

ADD COMMENT
0
Entering edit mode

Thanks a lot,

The test :

res = results(dds, name="genotypeMU.conditionTrt")

answer to question "Effect of treatment for the 2 genotypes" ? is right ?

https://rpubs.com/ge600/deseq2

I don't see how make it with methode B ... ? it's possible ?

ADD REPLY
0
Entering edit mode

No it’s much more difficult to test the interaction with method B.

ADD REPLY

Login before adding your answer.

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