diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-13 13:01:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-13 13:04:18 +0100 |
commit | 14bba460abe1704ef7c02fb144c047ca0c8b821f (patch) | |
tree | 78e92e4074363bb98bf06b805c8472f5d7f0cd31 /gnu/packages/bioconductor.scm | |
parent | 7097c7009deae1a1b4997e5222fd72b0c6c330f4 (diff) | |
download | guix-14bba460abe1704ef7c02fb144c047ca0c8b821f.tar guix-14bba460abe1704ef7c02fb144c047ca0c8b821f.tar.gz |
gnu: r-biocgenerics: Move to bioconductor.
* gnu/packages/bioinformatics.scm (r-biocgenerics): Move from here...
* gnu/packages/bioconductor.scm (r-biocgenerics): ...to here.
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 22d8b5320b..20aabb0be4 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -228,6 +228,26 @@ database is exposed as a @code{TxDb} object.") (license license:artistic2.0))) +(define-public r-biocgenerics + (package + (name "r-biocgenerics") + (version "0.28.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "BiocGenerics" version)) + (sha256 + (base32 + "0cvpsrhg7sn7lpqgxvqrsagv6j7xj5rafq5xdjfd8zc4gxrs5rb8")))) + (properties + `((upstream-name . "BiocGenerics"))) + (build-system r-build-system) + (home-page "https://bioconductor.org/packages/BiocGenerics") + (synopsis "S4 generic functions for Bioconductor") + (description + "This package provides S4 generic functions needed by many Bioconductor +packages.") + (license license:artistic2.0))) + (define-public r-annotate (package (name "r-annotate") |