Details
-
Type:
Task
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Story Points:3
-
Sprint:Fall 2 2023 Sep 17
Description
The time course data set includes genotypes are, VF36, F3H
For this task, create some code that tests the interaction between temperature and genotype.
Note: We will have results for every time point individually.
Goal: Find genes that respond differently to heat stress depending on genotype.
For example, is there a gene that increases expression in response to heat in the "are" genotype and decreases expression in response to heat in the "VF36" genotype?
Suggestions for how to do these things:
- Read section from DESeq2 manual description testing of interactions between variables: https://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#interactions
- review design creation: https://youtu.be/X6p3E-QTcUc?t=646
- This was also helpful: https://hbctraining.github.io/DGE_workshop/lessons/04_DGE_DESeq2_analysis.html
Designs to try:
~genotype + temperature + genotype:temperature
~time + genotype + temperature + genotype:temperature
Interaction term " : " answers the question is the treatment effect different across genotypes for each gene.
Next step: Write a script and model.matrix( ~time + genotype + temperature + genotype:temperature) to observe the interaction term and determine if design is accurate. Do I need to add time in my design? We will be taking each time point individually and running through analysis so time cannot be included in the design.