All Projects → stephenturner → Qqman

stephenturner / Qqman

Licence: gpl-3.0
An R package for creating Q-Q and manhattan plots from GWAS results

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Qqman

Bgdata
A Suite of Packages for Analysis of Big Genomic Data
Stars: ✭ 19 (-83.48%)
Mutual labels:  cran, genomics
Crypto
Cryptocurrency Historical Market Data R Package
Stars: ✭ 112 (-2.61%)
Mutual labels:  cran
Colourlovers
🎨 📦 R Client for the COLOURlovers API
Stars: ✭ 92 (-20%)
Mutual labels:  cran
Msprime
Simulate genealogical trees and genomic sequence data using population genetic models
Stars: ✭ 103 (-10.43%)
Mutual labels:  genomics
Gcp For Bioinformatics
GCP Essentials for Bioinformatics Researchers
Stars: ✭ 95 (-17.39%)
Mutual labels:  genomics
Startup
🔧 R package: startup - Friendly R Startup Configuration
Stars: ✭ 107 (-6.96%)
Mutual labels:  cran
Refinr
Cluster and merge similar char values: an R implementation of Open Refine clustering algorithms
Stars: ✭ 91 (-20.87%)
Mutual labels:  cran
Imputets
CRAN R Package: Time Series Missing Value Imputation
Stars: ✭ 114 (-0.87%)
Mutual labels:  cran
Cgranges
A C/C++ library for fast interval overlap queries (with a "bedtools coverage" example)
Stars: ✭ 111 (-3.48%)
Mutual labels:  genomics
Genomics
A collection of scripts and notes related to genomics and bioinformatics
Stars: ✭ 101 (-12.17%)
Mutual labels:  genomics
Smudgeplot
Inference of ploidy and heterozygosity structure using whole genome sequencing data
Stars: ✭ 98 (-14.78%)
Mutual labels:  genomics
Rintrojs
Wrapper for the Intro.js library
Stars: ✭ 96 (-16.52%)
Mutual labels:  cran
Slivar
variant expressions, annotation, and filtering for great good.
Stars: ✭ 110 (-4.35%)
Mutual labels:  genomics
Mschart
📊 mschart: office charts from R
Stars: ✭ 94 (-18.26%)
Mutual labels:  cran
Rinside
Seamless embedding of R in C++ programs
Stars: ✭ 112 (-2.61%)
Mutual labels:  cran
Changepoint
A place for the development version of the changepoint package on CRAN.
Stars: ✭ 90 (-21.74%)
Mutual labels:  cran
Ariba
Antimicrobial Resistance Identification By Assembly
Stars: ✭ 96 (-16.52%)
Mutual labels:  genomics
Shiny.i18n
Shiny applications internationalisation made easy
Stars: ✭ 104 (-9.57%)
Mutual labels:  cran
Cooler
A cool place to store your Hi-C
Stars: ✭ 112 (-2.61%)
Mutual labels:  genomics
Mlr
Machine Learning in R
Stars: ✭ 1,542 (+1240.87%)
Mutual labels:  cran

qqman: An R package for creating Q-Q and manhattan plots from GWAS results.

CRAN_Status_Badge

DOI

qqman.gif

Citation

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.

Installation

Install the stable release from CRAN:

install.packages("qqman")

Or install directly from github using devtools

library(devtools)
install_github("stephenturner/qqman")

Or install the most recent development release with devtools (note, there be dragons here):

library(devtools)
install_github("stephenturner/qqman", ref="dev")

Load the package each time you use it:

library(qqman)

Usage

See the online package vignette for more examples:

vignette("manhattan")

Take a look at the built-in data:

head(gwasResults)

Basic manhattan plot using built-in data:

manhattan(gwasResults)

Basic Q-Q plot using built-in data:

qq(gwasResults$P)

Get help:

?manhattan
?qq

Notes

  • This release is substantially simplified for the sake of maintainability and creating an R package. The old code that allows confidence intervals on the Q-Q plot and allows more flexible annotation and highlighting is still available at the version 0.0.0 tag.
  • Special thanks to Dan Capurso and Tim Knutsen for useful contributions and bugfixes.
  • Thanks to all the blog commenters for pointing out bugs and other issues.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].