diff options
author | Roel Janssen <roel@gnu.org> | 2021-05-26 09:13:08 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2021-05-26 09:13:08 +0200 |
commit | 189311660bab43952c4bd266317d892dc5fae5ce (patch) | |
tree | 9d92754fe3fc333168c6a6b86aba37b7154730ca | |
parent | 458126a2370706a35cf6a272b2c7a988c75ab375 (diff) | |
download | guix-189311660bab43952c4bd266317d892dc5fae5ce.tar.gz |
gnu: Add r-aneufinderdata.
* gnu/packages/bioconductor.scm (r-aneufinderdata): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 45e31a5760..b4ea90592b 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2016, 2017, 2018, 2020 Roel Janssen <roel@gnu.org> +;;; Copyright © 2016, 2017, 2018, 2020, 2021 Roel Janssen <roel@gnu.org> ;;; Copyright © 2016 Pjotr Prins <pjotr.guix@thebird.nl> ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il> @@ -934,6 +934,22 @@ datasets which are derived from the Allen Brain Atlas: All datasets are restricted to protein coding genes.") (license license:gpl2+))) +(define-public r-aneufinderdata + (package + (name "r-aneufinderdata") + (version "1.18.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "AneuFinderData" version 'experiment)) + (sha256 + (base32 + "02vb3kmza5hv8bc424fdmfif608xvpdb759w8882kac8izpv29ks")))) + (build-system r-build-system) + (home-page "https://bioconductor.org/packages/AneuFinderData/") + (synopsis "Data package for @code{AneuFinder}") + (description "This package contains data used by @code{AneuFinder}.") + (license license:artistic2.0))) + (define-public r-arrmdata (package (name "r-arrmdata") |