If you’d like to cite qqman (appreciated but not required), please cite the publication below:
Turner, (2018). qqman: an R package for visualizing GWAS results using Q-Q and manhattan plots. Journal of Open Source Software, 3(25), 731, https://doi.org/10.21105/joss.00731
More details are found in the preprint:
Turner, S.D. qqman: an R package for visualizing GWAS results using Q-Q and manhattan plots. biorXiv DOI: 10.1101/005165.
Install the stable release from CRAN:
.packages("qqman") install
Or install directly from github using devtools
(devtools)
library("stephenturner/qqman") install_github
Or install the most recent development release with devtools (note, there be dragons here):
(devtools)
library("stephenturner/qqman", ref="dev") install_github
Load the package each time you use it:
(qqman) library
See the online package vignette for more examples:
("manhattan") vignette
Take a look at the built-in data:
(gwasResults) head
Basic manhattan plot using built-in data:
(gwasResults) manhattan
Basic Q-Q plot using built-in data:
(gwasResults$P) qq
Get help:
?manhattan
?qq