>From 4812d174a235f5f545f5d7109df427fee341813a Mon Sep 17 00:00:00 2001 From: Naga Malleswari Date: Thu, 23 Apr 2020 01:29:26 +0530 Subject: [PATCH 9/9] gnu: Add r-rxnat. * gnu/packages/cran.scm (r-rxnat): New variable. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b6a9a88067..09a561e219 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21375,3 +21375,29 @@ as convex hull of set of points and rays. Also does linear programming and redundant generator elimination. All functions can use exact infinite-precision rational arithmetic.") (license license:gpl2))) + +(define-public r-rxnat + (package + (name "r-rxnat") + (version "1.0.8") + (source + (origin + (method url-fetch) + (uri (cran-uri "Rxnat" version)) + (sha256 + (base32 + "12xcs2l6vn50bwzfmv60j1qahjw2npfm1a3yjhffcxzh6p8chwbg")))) + (properties + `((upstream-name . "Rxnat"))) + (build-system r-build-system) + (propagated-inputs + `(("r-httr" ,r-httr) + ("r-rcurl" ,r-rcurl))) + (native-inputs + `(("r-knitr" ,r-knitr))) + (home-page "https://cran.r-project.org/web/packages/Rxnat") + (synopsis "Queries and extracts Images from Extensible Neuroimaging Archive Toolkit") + (description + "Allows communication with Extensible Neuroimaging Archive Toolkit. +Rxnat uses the XNAT REST API to perform data queries and download images.") + (license license:gpl2))) -- 2.25.1