Hello, I'm trying to use DESeq2 to analyze some OTU data from phyloseq and despite going through some of the vignettes I'm getting turned around with how I should set up the design/contrast arguments in DESeq()...this probably is because I'm relatively new to R. I'll provide an example of what my data set is like and what I'm trying to do. It's possible DESeq2 isn't appropriate for my analyses, but it seems like it should be. Is there a table somewhere that clearly lays out: Test desired vs. Design (contrast) Formula?
My experiment: I have 3 biological sample types (Type: "A","B","C"), and for each sample type I have a time 0, untreated sample ("A.Control", "B.Control", "C.Control"). I then have 16 treatments of each of the three samples measured at two time points. For simplicity, I've collapsed these 2 variables into a single set of variables (Treatment: "Treat1_time1","Treat1_time2","Treat2_time1",Treat2_time2"......) for each of A, B, C. My goal is to calculate fold change and significance of each treatment at each time vs both the control (time 0) and other treatments. Because my samples are biologically distinct, I want to treat them as paired to account for sample differences at Time 0. I've done the paired analysis of two samples (I think..) by using the design ~Type + Treatment, but I'm not positive on how to do this across all samples, or if that's the appropriate way to address my question. For instance, before trying out DESeq2, I was trying to determine signifance between treatments after correcting normalized counts based on respective time 0 values (i.e., {A.Treat1_time1 - A.Control, B.Treat1_time1 - B.Control, C.Treat1_time1 - C.Control} vs {A.Treat2_time1 - A.Control, B.Treat2_time1 - B.Control, C.Treat2_time1 - C.Control} ).
I read that it's possible to subtract controls via the design equation, but it wasn't clear to me how to do this.
Thank you for any help, please let me know if you need additional/different information or clarification (if there's a specific vignette that answers this that I overlooked, please let me know).