Statistical test for separation of groups in PCA and DESeq2 design with confounders
Hi,
I have a simple methodological question regarding RNA-seq analysis. For my project there are 3 confounders known.
Question 1: If two groups of samples appear separated in a PCA plot of bulk RNA-seq data, what statistical test is typically used to quantify whether this separation between groups is significant? Is PCA visualization alone acceptable?
Question 2: When performing DESeq2 analysis, if there are known confounders (e.g., subtype, region & alteration(fusion, mutation)), should these variables be included in the design formula, for example:
design = ~ confounder1 + confounder2 + confounder3
instead of using only:
design = ~ confounder1
Thanks for any guidance.
• 219 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Hello,
For Question 1:
A PCA is generally more for exploratory data analysis, giving you an idea of possible groupings, or even outliers. It should NOT be used alone to show differences between groups. As for statistical tests, you can try the Mann-Whitney U test, which is a non-parametric which tests for significant differences between 2 independent groups, just ensure your data meets any other assumptions of the test.
Question 2:
Yes, if you have known confounders, you should include them in your design formula, as you showed in your first example (design = ~ confounder1 + confounder2 + confounder3). Including the confounders will takes into account the effects of these variables in your differential expression results, especially if these are biological factors that could affect gene expression.