Displays GWAS results over the entire genome.
Get an overview of the in-built Crohn’s GWAS results
(CD_UKBB
):
manhattan(CD_UKBB)
Annotate the lead/index variants (with p-values below 5e-09) with their nearest gene and add a title:
manhattan(CD_UKBB, annotate=5e-09, title="Crohn's disease")
Display genes of interest at the bottom of the Manhattan plot to get a visual representation of their position relative to association peaks:
genes=c("IL23R","NOTCH4","NOD2","JAK2","TTC33")
manhattan(CD_UKBB, annotate=5e-09, title="Crohn's disease", highlight_genes = genes)
View one chromosome only:
manhattan(CD_UKBB, annotate=5e-09, chr="chr1")
Create a Manhattan of multiple GWAS results (in a list) on the same plot
Show three GWASes on the same plot, using different annotation thresholds for each dataset. Also, add genes of interest to the plot Use the ntop argument to control how many GWASes are displayed at the top and bottom of the plot: