From be23c491cbf702877a2fbaac1b4a2c9320b27d50 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 5 May 2019 23:22:49 +0200 Subject: gnu: Add r-batchtools. * gnu/packages/cran.scm (r-batchtools): New variable. --- gnu/packages/cran.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'gnu/packages/cran.scm') diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cfe64a1429..c6d902a62a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14150,3 +14150,40 @@ the functions can also be applied to other types of categorical data.") linear and generalized linear mixed-effects models in a Bayesian setting. It extends the lme4 package.") (license license:gpl2+))) + +(define-public r-batchtools + (package + (name "r-batchtools") + (version "0.9.11") + (source + (origin + (method url-fetch) + (uri (cran-uri "batchtools" version)) + (sha256 + (base32 + "02mj21ypcjv5fs7ajf63p6bq0cyvihdl55hlpqx6kmsfjin1cr0v")))) + (build-system r-build-system) + (propagated-inputs + `(("r-backports" ,r-backports) + ("r-base64url" ,r-base64url) + ("r-brew" ,r-brew) + ("r-checkmate" ,r-checkmate) + ("r-data-table" ,r-data-table) + ("r-digest" ,r-digest) + ("r-fs" ,r-fs) + ("r-progress" ,r-progress) + ("r-r6" ,r-r6) + ("r-rappdirs" ,r-rappdirs) + ("r-stringi" ,r-stringi) + ("r-withr" ,r-withr))) + (home-page "https://github.com/mllg/batchtools") + (synopsis "Tools for computation on batch systems") + (description + "As a successor of the packages BatchJobs and BatchExperiments, this +package provides a parallel implementation of the Map function for high +performance computing systems managed by various schedulers. A multicore and +socket mode allow the parallelization on a local machines, and multiple +machines can be hooked up via SSH to create a makeshift cluster. Moreover, +the package provides an abstraction mechanism to define large-scale computer +experiments in a well-organized and reproducible way.") + (license license:lgpl3))) -- cgit v1.2.3