How to incorporate covariate factors into design to analyse a continuous variable?
1
0
Entering edit mode
Diren • 0
@25c6b1e1
Last seen 8 months ago
Germany

I want to analyse the relationship between a continuous variable "age" with the methylation of CpG sites.

To do this I created a design matrix to analyse in limma with design <- model.matrix(~ age, df)

But now I want to include a confounder such as sex (used as a factor). When I use design <- model.matrix(~ age + sex, df) I am unclear how to interpret the resulting topTable of significant sites as there is a columns of the table are "age, sexMale, AveExpr, F, P.Value, adj.P.Val".

What does the adj.P.Val indicate here? I have read the limma workflow and have not been able to determine the answer.

Greatly appreciate any help with this.

DifferentialMethylation limma • 488 views
ADD COMMENT
0
Entering edit mode
@gordon-smyth
Last seen 39 minutes ago
WEHI, Melbourne, Australia

adj.P.Val is the p-value adjusted for multiple testing. If topTable() is run with default settings, then the adj.P.Val is the false discovery rate (FDR).

If you want to test for age adjusted for confounders,, then you need to run topTable with coef="age". From what you say, it sounds like you have left the coef argument blank. If you specify coef explicitly, then the resulting topTable will have exactly the same columns regardless of the number of confounders.

ADD COMMENT

Login before adding your answer.

Traffic: 727 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