diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-08-11 15:17:39 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-08-11 15:22:44 +0200 |
commit | df63e8ba96befa10a17c6d75af9fa96c5ba2e5c5 (patch) | |
tree | 776ad96a1217456ba68c04a16963e6e431873180 /gnu | |
parent | 2a38dfbf17b2438496d2ca4423a22585aa179d37 (diff) | |
download | guix-df63e8ba96befa10a17c6d75af9fa96c5ba2e5c5.tar guix-df63e8ba96befa10a17c6d75af9fa96c5ba2e5c5.tar.gz |
gnu: Add r-mritc.
* gnu/packages/cran.scm (r-mritc): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 61933ecb9f..70e66dbeb4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14134,6 +14134,26 @@ of medical imaging data that follow either the ANALYZE, NIfTI or AFNI formats. This package is part of the Rigorous Analytics bundle.") (license license:bsd-3))) +(define-public r-mritc + (package + (name "r-mritc") + (version "0.5-2") + (source (origin + (method url-fetch) + (uri (cran-uri "mritc" version)) + (sha256 + (base32 + "07b1b2k1ka43ikj2mhwnazw3ig7w10bf759fimxpksvk5k6wanx2")))) + (properties `((upstream-name . "mritc"))) + (build-system r-build-system) + (propagated-inputs (list r-lattice r-misc3d r-oro-nifti)) + (home-page "https://cran.r-project.org/package=mritc") + (synopsis "MRI tissue classification") + (description "This package provides various methods for MRI tissue +classification.") + ;; Any version of the GPL. + (license license:gpl3+))) + (define-public r-sodium (package (name "r-sodium") |