diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2024-11-25 11:02:56 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-11-25 13:17:49 +0100 |
commit | 9b1fb12978482ffb6d37c456343f05609b28b3e8 (patch) | |
tree | 449825990c491c67eeba13d739fe0111d433ce87 | |
parent | 827ec92f44d1b1daedc5446146801183560e861b (diff) | |
download | guix-9b1fb12978482ffb6d37c456343f05609b28b3e8.tar.gz guix-9b1fb12978482ffb6d37c456343f05609b28b3e8.zip |
gnu: Add r-rtk.
* gnu/packages/cran.scm (r-rtk): New variable.
Change-Id: I98652c763409ecd4b39d1b5ac8dc3ee8d740ae97
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e0e29dfe37..599238d0d8 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2225,6 +2225,25 @@ bioinformaticians to assemble complex plots for publication.") for authoring journal articles and conference submissions.") (license license:gpl3))) +(define-public r-rtk + (package + (name "r-rtk") + (version "0.2.6.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "rtk" version)) + (sha256 + (base32 "1xafmp5y5p8fnsh16wj8n08x69v2hawnsvsy7g4dcz1i5xkhyc0m")))) + (properties `((upstream-name . "rtk"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp zlib)) + (home-page "https://cran.r-project.org/package=rtk") + (synopsis "Rarefaction tool kit") + (description "This package lets you rarefy data, calculate diversity and +plot the results.") + (license license:gpl2+))) + (define-public r-babelwhale (package (name "r-babelwhale") |