diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-14 16:36:05 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-15 15:38:51 +0100 |
commit | eb15df8deab4f8a1560389dc41dc51c7270779d8 (patch) | |
tree | 55f4919e6e7a67d7a7dfe3d52bc62aa8fc7b8d55 /gnu | |
parent | f431d5e299b9e00c22b02e9d5464e6d4196561ba (diff) |
gnu: Add r-qqman.
* gnu/packages/cran.scm (r-qqman): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b12d984387..c9dfafa9b1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -18684,3 +18684,25 @@ vectors, which include NAs. Other functions are especially useful in spectroscopy and analyses of environmental data: robust baseline fitting, finding peaks in spectra, converting humidity measures.") (license license:gpl3+))) + +(define-public r-qqman + (package + (name "r-qqman") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "qqman" version)) + (sha256 + (base32 + "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s")))) + (properties `((upstream-name . "qqman"))) + (build-system r-build-system) + (propagated-inputs + `(("r-calibrate" ,r-calibrate))) + (home-page "https://cran.r-project.org/web/packages/qqman/") + (synopsis "Q-Q and Manhattan plots for GWAS data") + (description + "This package allows you to create Q-Q and Manhattan plots for GWAS data +from PLINK results.") + (license license:gpl3))) |