diff options
author | pjotrp | 2017-02-27 09:14:09 +0000 |
---|---|---|
committer | pjotrp | 2017-02-27 09:14:09 +0000 |
commit | f43620688152570f2c50e907ad7be4b392e748c6 (patch) | |
tree | f40f0c87931602fd52a9b491f92ccb3bafe2bac9 /gn | |
parent | 335efa9bebd01e75b36fb5505f4843f0cc795a36 (diff) | |
download | guix-bioinformatics-f43620688152570f2c50e907ad7be4b392e748c6.tar.gz |
r-qvalue: added
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/phewas.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gn/packages/phewas.scm b/gn/packages/phewas.scm index c5e8812..7dadb04 100644 --- a/gn/packages/phewas.scm +++ b/gn/packages/phewas.scm @@ -87,6 +87,27 @@ ".") (license license:expat))) +(define-public r-qvalue + (package + (name "r-qvalue") + (version "2.6.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "qvalue" version)) + (sha256 + (base32 + "1dijh11v1kr29gnikq09pkdvm3qwmp1a406ahx9l4j6mgn8hlsfq")))) + (build-system r-build-system) + (propagated-inputs + `(("r-reshape2" ,r-reshape2) + ("r-ggplot2" ,r-ggplot2))) + (home-page "http://bioconductor.org/packages/qvalue") + (synopsis "") + (description + ".") + (license license:expat))) + (define-public r-phewas ; GN2 (package (name "r-phewas") @@ -99,6 +120,7 @@ ("r-data-table" ,r-data-table) ("r-fgsea" ,r-fgsea) ("r-limma" ,r-limma) + ("r-qvalue" ,r-qvalue) )) (arguments `(#:guile ,%bootstrap-guile |