Hello,
I have a multifactor RNA-seq experiment I’m trying to analyze with DESeq2 (Vs. DESeq2_1.8.1). I am not sure how to setup the contrasts to find the right subset of deferentially expressed genes.
This is the design I use:
design = ~ treatment + genotype + genotype:treatment
Treatment factor has 2 levels: “Tret” or “Mock” (Mock is the base level)
Genotype factor has 4 levels: “A”, “B”, “C”, “D”.
My resultsNames(dds)
are therefore:
[1] "Intercept" " treatmentMock "
[3] " treatmentTret " "genotypeA"
[5] "genotypeC" "genotypeD"
[7] "genotypeB" " treatmentMock.A"
[9] " treatmentTret.genotypeA" " treatmentMock.C"
[11] " treatmentTret.genotypeC" " treatmentMock.D"
[13] " treatmentTret.genotypeD" " treatmentMock.B"
[15] " treatmentTret.genotypeB"
I am interested in finding genes with specific deferential expression in C+D genotypes and only in “Tret” condition.
Thanks a lot,
Moran
I'd recommend speaking to a local statistician at your institute. There are lots of specific quantitative choices here which are not really software questions. As in my previous post there are many ways that C and/or D can be different than A and/or B. Additionally there are many ways that C and/or D vs A and/or B can be specific to Tret (DE in Tret and not DE in Mock? If not DE in Mock, this would require you to define a band of LFC which you consider small enough to consider "not DE", or alternatively, what if there is a fold change in Mock but it is significantly higher in Tret and should this count as specific to Tret)