Using limma to model gene expression changes with age
1
1
Entering edit mode
KCLiv ▴ 20
@kcliv-16251
Last seen 3.1 years ago

I have been using limma to perform linear regression to find genes differentially expressed with age, also include sex in the model.

Here is my model.

design <- model.matrix(~0 + age + sex)

My questions are:

1. I just want to make sure whether the model is make sense?

2. Does the logFC got from topTable mean the fold change of gene expression for each year of age?

 

Kind regards,

Kasit

 

limma linear model • 1.7k views
ADD COMMENT
3
Entering edit mode
@gordon-smyth
Last seen 3 minutes ago
WEHI, Melbourne, Australia

No it's not right as it is. You need just

design <- model.matrix(~ age + sex)

The "0+" is only used when you have a factor and want to keep all the factor levels explicitly. It is out of place with a continuous covariate like age.

ADD COMMENT
0
Entering edit mode

Just corrected it.

Thank you very much

ADD REPLY

Login before adding your answer.

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