This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Time-series RNA-seq analysis using DESeq2

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). 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 across all time-points.

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)

If I want to identify differentially expressed genes over all time-points, how does it look the above design model.

Thanks!

rna-seq time-course lrt time-series deseq2

0 answers

No answers yet.

Log in to answer this question.