Hi,
I am working on a set of RNAseq data that has the following design:
- patients are randomized to different treatment groups: control, trt1 and trt2
- each patient has pre and post treatment RNAseq data: time0 , time1
I am interested in getting treatment effect (not time effect). The model mentioned in DESeq2, edgeR and Limma helps to get time effect which is not the interest.
Any suggestion how to get treatment effect for RNAseq data with this design?
Thank you very much!
Hi Kevin,
Thank you very much for your timely reply and great suggestions. I think the second suggestion is the answer I am looking for. However, each patient has pre, post paired design, I am wondering whether we have to consider this in the model?
Thank you very much!
So, you want to adjust for the patient-specific effects, too? - then you can include
PatientID
as a covariate.Hi Kevin, really appreciate your suggestion! I will try it out. Thank you very much!
Cool. The model may then simply be
~ PatientID + treatment
. This model is then effectively a paired analysis and looking at the effect of treatment. Time is captured to some level viaPatientID
. These model formulae can be somewhat confusing and you should always get multiple opinions.