Description Usage Format Source Examples
Risk score parameterised using GWAS meta-analysis results published by the C4D and CARDIoGRAM consortia (C4D Consortium Nature Genetics 2011, Schunkert et al. Nature Genetics 2011). The score is for risk of prevalent coronary artery disease (CAD).
1 |
A data frame suitable for use with other functions in this package, see gtx.params.
The score is called CAD2011, and has coefficients in ln(odds) for CAD per coded allele. For details of how results from the two papers were combined, see manuscript by T. Johnson.
For the publications from which these data were extracted see http://dx.doi.org/10.1038/ng.782 and http://dx.doi.org/10.1038/ng.784.
1 2 3 4 5 6 7 8 | data(cad.scores)
cad.scores$MAF <- pmin(cad.scores$coded.freq, 1-cad.scores$coded.freq)
cad.scores$OR <- exp(abs(cad.scores$coef))
plot(cad.scores$MAF, cad.scores$OR,
xlim = c(0, 0.5), ylim = c(1, max(cad.scores$OR)),
xlab = "Minor allele frequency",
ylab = "Odds ratio effect", las = 1)
text(cad.scores$MAF, cad.scores$OR, cad.scores$name, pos = 1, cex = 0.5)
|
Loading required package: survival
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.