Okay, so if I got this correctly, I want to do something like
dds$group <- factor(paste0(dds$strain, dds$condition))
design(dds) <- ~ group
dds <- DESeq(dds)
results(dds, contrast=c("group", "BX", "AX"))
and this should give me the results table for strain B vs strain A for condition X? Right?
If so, this should be simple enough and I can use this to get all the comparisons I need.
Thanks a lot.