Time-series RNA-seq analysis using DESeq2
1
0
Entering edit mode
Debebe • 0
@b8ee6920
Last seen 7 months ago
Germany

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

time-series DESeq2 RNASeq timecoursedata TimeCourse • 898 views
ADD COMMENT
1
Entering edit mode
ATpoint ★ 4.0k
@atpoint-13662
Last seen 1 day ago
Germany

The LRT here will identify genes with any change across the groups. If you say seasonal changes then you might be more interested in distinct patterns, such as cyclic effects, so with a periodicity. Common approaches for this are cosinor regression, but just four timepoints might not be enough for this. See seasonal and circadian literature for this and this guide https://bioconductor.org/packages/release/workflows/vignettes/RNAseq123/inst/doc/designmatrices.html which is a great reads for different sorts of models. Also be sure to include the individual to the design since this seems like a paired design which is powerful. For hands-on guidance you will need to ask elsewhere since the support site is not meant for this.

ADD COMMENT
0
Entering edit mode

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!!

ADD REPLY
0
Entering edit mode

Then would do Individual+Time as full and Individual as reduced design to account for the paired data.

ADD REPLY
0
Entering edit mode

Thank you again for your reply.

Are you suggesting to do the analysis as shown bleow?

dds <- DESeqDataSetFromMatrix(countData = counts,
           colData = SampleInfo,
           design= ~Individual + Time)
dds <- DESeq(dds, test="LRT", reduced=~Individual)

Br.

ADD REPLY
0
Entering edit mode

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.

ADD REPLY

Login before adding your answer.

Traffic: 450 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6