mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add r-rslurm.
* gnu/packages/cran.scm (r-rslurm): New variable.
This commit is contained in:
parent
62381dce86
commit
ec997158db
1 changed files with 23 additions and 0 deletions
|
@ -11745,6 +11745,29 @@ (define-public r-cmdfun
|
|||
inside R when they might usually leave to execute non-R software.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-rslurm
|
||||
(package
|
||||
(name "r-rslurm")
|
||||
(version "0.6.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "rslurm" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0fn2na8prsaxa03x5wi3105gpsxc35qvgmik7wy3nylvx4wdfv9g"))))
|
||||
(properties `((upstream-name . "rslurm")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs `(("r-whisker" ,r-whisker)))
|
||||
(native-inputs `(("r-knitr" ,r-knitr)))
|
||||
(home-page "http://cyberhelp.sesync.org/rslurm/")
|
||||
(synopsis "Submit R calculations to a Slurm cluster")
|
||||
(description
|
||||
"This package provides functions that simplify submitting R scripts to a
|
||||
Slurm workload manager, in part by automating the division of embarrassingly
|
||||
parallel calculations across cluster nodes.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-weights
|
||||
(package
|
||||
(name "r-weights")
|
||||
|
|
Loading…
Reference in a new issue