gnu: Add r-parallelmap.

* gnu/packages/cran.scm (r-parallelmap): New variable.
This commit is contained in:
Navid Afkhami 2023-06-23 13:48:47 +00:00 committed by Ricardo Wurmus
parent 143ecd555a
commit 155e3f2e87
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2434,6 +2434,30 @@ (define-public r-paramhelpers
evaluations is also provided.")
(license license:bsd-2)))
(define-public r-parallelmap
(package
(name "r-parallelmap")
(version "1.5.1")
(source (origin
(method url-fetch)
(uri (cran-uri "parallelMap" version))
(sha256
(base32
"1qg7zpz5sd9jp8wzjqahkhipwj1jn192llwg06q4gv9mlcsac261"))))
(properties `((upstream-name . "parallelMap")))
(build-system r-build-system)
(propagated-inputs (list r-bbmisc r-checkmate))
(home-page "https://parallelmap.mlr-org.com")
(synopsis "Unified interface to parallelization backends")
(description
"This package provides a unified parallelization framework for multiple
backends. This package is designed for internal package and interactive
usage. The main operation is parallel mapping over lists. It supports local,
multicore, mpi and BatchJobs mode. It allows tagging of the parallel
operation with a level name that can be later selected by the user to switch
on parallel execution for exactly this operation.")
(license license:bsd-2)))
(define-public r-pheatmap
(package
(name "r-pheatmap")