We recently commissioned some RNASeq work and I am getting my first taste of using bioconductor. This is probably a bit of a silly question for all you experts, but I just cannot seem to figure it out: Our experiment involved two cell lines that were each treated with four compounds. Each treatment was done in triplicate and there are untreated controls in triplicate as well. We are interested in comparing differential expression between the treatments vs. control in each cell line as well as comparing the same treatment between the two cell lines.
My coldata table looks something like this:
Now to my questions:
Any feedback, pointers, or advice greatly appreciated!
My coldata table looks something like this:
HTML Code:
cell compound rep c1c1_1 c1 c1 1 c1c1_2 c1 c1 2 c1c1_3 c1 c1 3 c1c2_1 c1 c2 1 ... c2c3_3 c2 c3 3 c2c4_1 c2 c4 1 c2c4_2 c2 c4 2 c2c4_3 c2 c4 3 c2cc_1 c2 cc 1 c2cc_2 c2 cc 2 c2cc_3 c2 cc 3
- Does it make sense to work with both cell lines in the same DESeqDataSet object?
- If yes, would '~cell + cell:compound' be a reasonable design?
- When comparing results between cell lines, I assume I need to compare fold-changes. Are there methods in bioconductor that can compare two DESeqResults objects?
Any feedback, pointers, or advice greatly appreciated!
Comment