Entering edit mode
bio2001
▴
60
@bio2001-6597
Last seen 7.6 years ago
Hi,
I have been a user of DESeq and recently DESeq2 for my research work.
The latest DESeq2 seem to offer extensive differential testing options
suitable for various experimental designs.
Recently I wanted to use DESeq for a differential gene expression
analysis between two plant genotypes across 4 different time points.
I am basically a biologist and am finding hard to grasp the concepts
of
testing results. I'd be very grateful if you could help me understand
some concepts (especially resultsNames) related to the DESeq2 package.
My experimental design is as below
design<- ~ genotype + time + genotype:time
There are two levels in genotype and 4 levels in time.
Basically I'd like to use binomLRT test to check if there is any
difference in gene expression between the genotypes across the time
points.
dds<-DESeq(dds) (dds is DESeq2 object obtained from,
dds<-DESeqDataSetFromMatrix(countData=counts, colData=coldata,
design=design)
and I am using the reduced model for the liklihood test
ddsLRT<-binomLRT(dds, reduced= genotype + time)
Is the model correct per my research question (is there a (time
influenced) difference between genotypes)?
I am getting the following output for "resultsNames" function for the
objects "dds" and "ddsLRT"
resultsNames(dds)
Intercept time1d time2d time3d time4d gen1 gen2
time1d.gen1 time2d.gen1 time3d.gen1 time4d.gen1
time1d.gen2 time2d.gen2 time3d.gen2 time4d.gen2
resultsNames(ddsLRT)
Intercept time2_vs_time1 time3_vs_time1 time4_vs_time1
gen2_vs_gen1 time2.gen2 time3.gen2 time4.gen2
Now I would use the "results" function with a "contrast" or "name"
argument to get results for specific comparisons.
The basic question is, in order to address my research question which
above options should be used for the "contrast" argument, or the
"name" argument
of the "results" function.
Some points that are unclear for me.
1. Why there is already a _vs_ in some of the names (for ex:
time2_vs_time1
in resultsNames(ddsLRT)).
2. What does it mean to compare say time2_vs_time1 vs time3_vs_time1,
and
time2.gen2 vs time3.gen2 using "contrast" argument?
3. What the comparison results mean, when we use the "name" argument
and
any of the
names say (time1d or time3.gen2)?
A less technical description of the comparisons would be helpful for
biologists that are not very familiar with statistical concepts.
Thanks,
Sridhar Acharya
[[alternative HTML version deleted]]