diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-06-05 01:46:54 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-06-05 09:12:39 +0200 |
commit | ce99b4da633c79352dfaf5ae2c1c2bab3d773908 (patch) | |
tree | 344862c78b87c2ca92281bf4d8f9649bcd733341 | |
parent | ab66c9a2cda10edfbf5f2f11481d4d2d1d604bf5 (diff) | |
download | guix-ce99b4da633c79352dfaf5ae2c1c2bab3d773908.tar.gz guix-ce99b4da633c79352dfaf5ae2c1c2bab3d773908.zip |
gnu: Add r-restfulr.
* gnu/packages/bioconductor.scm (r-restfulr): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 7a584e4211..56906bddbd 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -3959,6 +3959,33 @@ Alignment / Map), FASTA, binary variant call (BCF) and compressed indexed tab-delimited (tabix) files.") (license license:expat))) +;; This is a CRAN package, but it depends on a Bioconductor package: +;; s4vectors. +(define-public r-restfulr + (package + (name "r-restfulr") + (version "0.0.13") + (source + (origin + (method url-fetch) + (uri (cran-uri "restfulr" version)) + (sha256 + (base32 + "1dk45mzrr6ka92yjz7hfhkj12kpx1wg4szv1h1mg80mgga4ganbv")))) + (properties `((upstream-name . "restfulr"))) + (build-system r-build-system) + (propagated-inputs + `(("r-rcurl" ,r-rcurl) + ("r-rjson" ,r-rjson) + ("r-s4vectors" ,r-s4vectors) + ("r-xml" ,r-xml) + ("r-yaml" ,r-yaml))) + (home-page "https://cran.r-project.org/package=restfulr") + (synopsis "R interface to RESTful web services") + (description + "This package models a RESTful service as if it were a nested R list.") + (license license:artistic2.0))) + (define-public r-rtracklayer (package (name "r-rtracklayer") |