Hello, I am trying to determine the best DESeq2 design formula for our study, but I'm unsure what would be the most appropriate for what we want to test.
Our study consists of primary cells from 3 Donors that are cultured in 2 conditions across time. For each cell line and each condition, we have several time points. Donors differ in Sex and Age.
Donor | Sex | Age | Condition | Timepoint |
---|---|---|---|---|
1 | F | 18 | Control | 1 |
1 | F | 18 | Control | 2 |
1 | F | 18 | Control | 3 |
1 | F | 18 | Control | 4 |
1 | F | 18 | Treatment | 1 |
1 | F | 18 | Treatment | 2 |
1 | F | 18 | Treatment | 3 |
1 | F | 18 | Treatment | 4 |
2 | M | 18 | Control | 1 |
2 | M | 18 | Control | 2 |
2 | M | 18 | Control | 3 |
2 | M | 18 | Control | 4 |
2 | M | 18 | Treatment | 1 |
2 | M | 18 | Treatment | 2 |
2 | M | 18 | Treatment | 3 |
2 | M | 18 | Treatment | 4 |
3 | F | 20 | Control | 1 |
3 | F | 20 | Control | 2 |
3 | F | 20 | Control | 3 |
3 | F | 20 | Control | 4 |
3 | F | 20 | Treatment | 1 |
3 | F | 20 | Treatment | 2 |
3 | F | 20 | Treatment | 3 |
3 | F | 20 | Treatment | 4 |
\ We want to evaluate the differential expression of the treatment compared to the control, controlling for the cell line and for the time. That is, if I were to do this manually, I'd compare the the Donor 1-Treatment-Time point 1 to Donor 1-Control-Time point 1, Donor 1-Treatment-Time point 2 to Donor 1-Control-Time point 2, and so on, for each time point, for each donor. We also think Sex and Age of the donor will influence the results.
Should the design be: ~ Condition + Donor + Time + Sex + Age + Condition:Time?
Thank you in advance for any help!