diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2022-06-28 17:13:54 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-10-27 15:30:25 +0200 |
commit | f31b494bb69068b5d3bdd75351c5497962e2d2fd (patch) | |
tree | 50be5e1d6c2b9585796f0cd104442568b1a23254 | |
parent | 3417a280805d8d52ee1471ef27aa7b66cccc473d (diff) | |
download | guix-f31b494bb69068b5d3bdd75351c5497962e2d2fd.tar.gz |
gnu: Add r-basespacer.
* gnu/packages/bioconductor.scm (r-basespacer): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index b45da78f68..784ddbfae3 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2357,6 +2357,29 @@ BaalChIP is able to account for copy number differences between the two alleles, a known phenotypical feature of cancer samples.") (license license:artistic2.0))) +(define-public r-basespacer + (package + (name "r-basespacer") + (version "1.40.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "BaseSpaceR" version)) + (sha256 + (base32 + "0jyw4pnybsd6ywpaamk5ywkrcib2z48farsnszmwq97zlbmra7fj")))) + (properties `((upstream-name . "BaseSpaceR"))) + (build-system r-build-system) + (propagated-inputs (list r-rcurl r-rjsonio)) + (home-page "https://bioconductor.org/packages/BaseSpaceR") + (synopsis "R SDK for BaseSpace RESTful API") + (description + "This package provides an R interface to Illumina's BaseSpace cloud +computing environment, enabling the fast development of data analysis and +visualization tools. Besides providing an easy to use set of tools for +manipulating the data from BaseSpace, it also facilitates the access to R's +rich environment of statistical and data analysis tools.") + (license license:asl2.0))) + (define-public r-biocversion (package (name "r-biocversion") |