The cohort contains 3 patients who each had samples collected before and after an intervention. For each patient, two samples before (1 from tissue A and 1 from tissue B), and two samples from each tissue after the intervention.
Sample meta data:
meta <- data.frame(Patient = c(1,1,1,1,2,2,2,2,3,3,3,3), Tissue = c('A','B','A','B','A','B','A','B','A','B','A','B'), Treatment = c('Pre','Pre','Post','Post','Pre','Pre','Post','Post','Pre','Pre','Post','Post')
meta
Patient Tissue Treatment
1 A Pre
1 B Pre
1 A Post
1 B Post
2 A Pre
2 B Pre
2 A Post
2 B Post
3 A Pre
3 B Pre
3 A Post
3 B Post
I have been using the Sleuth package and performed the following model for each tissue: ~Treatment + Patient. No hits - likely due to low sample size.
It was suggested to me by a colleague to look at each patient and tissue individually. For example, for tissue A, calculate the fold change for pre and post. Is this appropriate? What other analysis designs make sense for these data?
Thanks in advance.