Multiple groups and two methods to analyse them with DESeq2
1
0
Entering edit mode
Mozart ▴ 30
@mozart-20625
Last seen 3.5 years ago

Dear Michael, when it comes to analyse different comparisons in a complex experimental design, generally speaking, there are two apparent solutions:

  1. first one is to consider the whole experiment (i.e. using just one Sample table containing all the samples) and write a string of code to select desired comparisons or,
  2. secondly, select desired group and run the analysis, separately (i.e. duplicating the folder containing just the desired list of samples).

Let's do an example: let's say we have three conditions (wt, ko, wt-treated); then, I want to know the differentially expressed genes coming from wt-treated vs wt condition and ko vs wt condition. If I am following point 1 above, then, I can do the following contrast and get results:

dds$condition <- relevel(dds$condition, ref = "wt")

If I am using the same string of code but, I merely duplicate my folder with aligned files (e.g. just wt and wt-treated) together with another sample table with just the selected comparisons, I may ask myself if I could get differences or not. In that case, I may wondering what's the rationale of choosing one method vs another (regardless the fact the first one is more convenient).

Similar story when we have to calculate PCA plot. If I am subsetting from the whole experiment or if I am picking up just desired samples there are tiny differences in term of maths 'only', I guess. The PCA plots, in other words, look very similar. So, again, given the fact in a certain plot I just want to know the difference between two groups probably method in point number 2 may be better, this time?

thanks in advance, hope I made myself clear.

deseq2 • 757 views
ADD COMMENT
2
Entering edit mode
@mikelove
Last seen 18 hours ago
United States

This is one of the FAQ in the vignette. Could you check there first?

ADD COMMENT

Login before adding your answer.

Traffic: 799 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6