diff options
author | Alexander_Kabui | 2025-09-05 10:06:45 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-09-05 10:24:55 +0300 |
commit | 28803b58e8b2a3dbce839707c503396f59d12d62 (patch) | |
tree | a79f20fe686250556b2df7fef1114f22bed93bb5 | |
parent | ac7a1841b08455cc59a0b006d2c035c86c55fd22 (diff) | |
download | guix-bioinformatics-28803b58e8b2a3dbce839707c503396f59d12d62.tar.gz |
gn: Add r-thor.
* gn/packages/statistics.scm (r-thor): New variable. Reviewed-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | gn/packages/statistics.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gn/packages/statistics.scm b/gn/packages/statistics.scm index c7cce66..8e8483a 100644 --- a/gn/packages/statistics.scm +++ b/gn/packages/statistics.scm @@ -257,3 +257,26 @@ interaction networks.") (("^license-files = .*$") "license = {file = \"LICENSE\"}\n")))) (delete 'check)))))) + + +(define-public r-thor + (package + (name "r-thor") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "thor" version)) + (sha256 + (base32 "1g9204n6khm1k9ifwlmhbycfp996k5c2zpcmk2aqd95iqafpaw4g")))) + (build-system r-build-system) + (propagated-inputs `(("r-r6" ,r-r6) + ("r-storr" ,r-storr))) + (native-inputs (list r-testthat r-knitr)) + (home-page "https://github.com/richfitz/thor") + (synopsis "R binding for the ‘Lightning’ database (LMDB) ") + (description + "This package is an R interface to LMDB. + LMDB is an embedded transactional key-value store and this package provides R mappings to it. + It wraps the entire LMDB interface, except for support for duplicated keys.") + (license license:openldap2.8))) |