diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-19 16:09:38 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-23 23:08:47 +0200 |
commit | 871cb5295c6eccae00f6e1c20c2fbb8024772517 (patch) | |
tree | c5024625b6b3941c32c6ef337afb8d3bbf424574 /gnu | |
parent | 80afaaf4e3851447c0f6e0adfd2e1f96f4d2973b (diff) |
gnu: Add r-setrng.
* gnu/packages/cran.scm (r-setrng): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4229fc2cea..e8a42dd9ab 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21286,6 +21286,28 @@ The bedr package's API enhances access to these tools as well as offers additional utilities for genomic regions processing.") (license license:gpl2))) +(define-public r-setrng + (package + (name "r-setrng") + (version "2022.4-1") + (source (origin + (method url-fetch) + (uri (cran-uri "setRNG" version)) + (sha256 + (base32 + "09089vr5x8snwxh38kdhgpjl3jl7zrk056f6f9a2jg5lsrmnxh31")))) + (properties `((upstream-name . "setRNG"))) + (build-system r-build-system) + (home-page "https://distr.r-forge.r-project.org/") + (synopsis "Set (normal) random number generator and seed") + (description + "This package provides utilities to help set and record the setting of +the seed and the uniform and normal generators used when a random experiment +is run. The utilities can be used in other functions that do random +experiments to simplify recording and/or setting all the necessary information +for reproducibility. See the vignette and reference manual for examples.") + (license license:gpl2))) + (define-public r-sets (package (name "r-sets") |