Hi All,
I have expression data for a mutant where a drug is injected over time with increasing dosage (no replicates and no drug was injected at time 0). I would like to identify genes that change in expression significantly over time. I used the following design in DEseq2 where time is assumed to be a continuous variable.
ddsp <- DESeqDataSet(dds, ~ time)
ddsp <- DESeq(ddsp, test="LRT", reduced = ~ 1)
resp <- results(ddsp)
is this the correct design? since I have only one mutant, are there other possible ways to answer the same question?
I have expression data for a mutant where a drug is injected over time with increasing dosage (no replicates and no drug was injected at time 0). I would like to identify genes that change in expression significantly over time. I used the following design in DEseq2 where time is assumed to be a continuous variable.
ddsp <- DESeqDataSet(dds, ~ time)
ddsp <- DESeq(ddsp, test="LRT", reduced = ~ 1)
resp <- results(ddsp)
is this the correct design? since I have only one mutant, are there other possible ways to answer the same question?
Comment