Hello All,
I am working on time-series RNA-seq data. I have four individuals and collected RNA-seq samples for each individual at 4 different time points (T1, T2, T3 and T4) within one year. The experiments shown below.
> SampleInfo
Individual Time
Sample1.1 Sample1 T1
Sample1.2 Sample1 T2
Sample1.3 Sample1 T3
Sample1.4 Sample1 T4
Sample2.1 Sample2 T1
Sample2.2 Sample2 T2
Sample2.3 Sample2 T3
Sample2.4 Sample2 T4
Sample3.1 Sample3 T1
Sample3.2 Sample3 T2
Sample3.3 Sample3 T3
Sample3.4 Sample3 T4
Sample4.1 Sample4 T1
Sample4.2 Sample4 T2
Sample4.3 Sample4 T3
Sample4.4 Sample4 T4
I would like to identify differentially expressed genes associated with seasonal changes.
For that I use the LRT test and the following model
dds <- DESeqDataSetFromMatrix(countData = counts,
colData = SampleInfo,
design= ~Time)
dds <- DESeq(dds, test="LRT", reduced=~1)
Would this give me genes that are differentially epressed across all time points?
Thanks
I appreciate the comment. Sorry, It is a misunderstanding. I meant to say that differentially epressed genes over all time-points. For the moment we are not focused on seasonal changes.
If I want to identifiy differentially epressed genes over all time-points, how does it look the above design model.
Thanks!!
Then would do Individual+Time as full and Individual as reduced design to account for the paired data.
Thank you again for your reply.
Are you suggesting to do the analysis as shown bleow?
Br.
Yes, that is what I would try first. It's essentially the same as in the vignette with batch http://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#likelihood-ratio-test just that your "batch", so the factor to compensate for, is here the Individual.