diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-12-18 14:07:08 +0100 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-01-07 17:18:16 +0100 |
commit | e91d362e48b148b8537e852210a673d9b9058bdf (patch) | |
tree | 55f5c8200b572357e7f5943e03e4c54d63de366a /gnu | |
parent | c465fa72ed004ebdb18ae67309da85826d426d67 (diff) | |
download | patches-e91d362e48b148b8537e852210a673d9b9058bdf.tar patches-e91d362e48b148b8537e852210a673d9b9058bdf.tar.gz |
gnu: Add BiocParallel.
* gnu/packages/bioinformatics.scm (r-biocparallel): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index c8c74ff902..8163d5cc54 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3545,6 +3545,30 @@ users direct access to a diverse set of data and enable a wide range of powerful online queries from gene annotation to database mining.") (license license:artistic2.0))) +(define-public r-biocparallel + (package + (name "r-biocparallel") + (version "1.4.3") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "BiocParallel" version)) + (sha256 + (base32 + "1f5mndx66vampcsq0n66afg6x851crl0h3nyv2nyp9bsgzj9cdzq")))) + (properties + `((upstream-name . "BiocParallel"))) + (build-system r-build-system) + (propagated-inputs + `(("r-futile-logger" ,r-futile-logger) + ("r-snow" ,r-snow))) + (home-page "http://bioconductor.org/packages/BiocParallel") + (synopsis "Bioconductor facilities for parallel evaluation") + (description + "This package provides modified versions and novel implementation of +functions for parallel evaluation, tailored to use with Bioconductor +objects.") + (license (list license:gpl2+ license:gpl3+)))) + (define-public r-qtl (package (name "r-qtl") |