Hi,
I am student in bioinformatics. I had read the nice vignette for DESeq2. There is a lot of nice information. But even if it is great, I still have a question to address and I am not sure which approach I should use. I have already done DESeq2 for one group versus control and it works well. I was reading about conditions... and I am not sure how to treat it when I have 2 different genotypes and I want what they have in Common compare to a control group. Any suggestion?
Thank you very much
If, by common, you mean having an identical difference (upto noise) in both genotypes when compared to control, then you could create another variable along the lines of
condition2 <- ifelse(condition=="control", "control", "common_genotype")
which would 'pool' the two genotypes, but this is probably artificial and what you want is Michael's answer.