mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 11:55:27 -05:00
gnu: Add r-paralleldist.
* gnu/packages/cran.scm (r-paralleldist): New variable.
This commit is contained in:
parent
88d0b086a9
commit
7cd1dd3e10
1 changed files with 25 additions and 0 deletions
|
@ -1074,6 +1074,31 @@ (define-public r-pacman
|
|||
functions which can speed up workflow.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-paralleldist
|
||||
(package
|
||||
(name "r-paralleldist")
|
||||
(version "0.2.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "parallelDist" version))
|
||||
(sha256
|
||||
(base32 "01ly4hxwa64a0ya5gla8rvv72s9mcknsfznivjkh937pbjwb7iih"))))
|
||||
(properties `((upstream-name . "parallelDist")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs (list r-rcpp r-rcpparmadillo r-rcppparallel))
|
||||
(home-page "https://github.com/alexeckert/parallelDist")
|
||||
(synopsis "Parallel Distance Matrix Computation using multiple threads")
|
||||
(description
|
||||
"This package provides a fast parallelized alternative to R's native
|
||||
@code{dist} function to calculate distance matrices for continuous, binary,
|
||||
and multi-dimensional input matrices, which supports a broad variety of
|
||||
predefined distance functions from other R packages, as well as user- defined
|
||||
functions written in C++. For ease of use, the @code{parDist} function
|
||||
extends the signature of the @code{dist} function and uses the same parameter
|
||||
naming conventions as distance methods of existing R packages.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-pheatmap
|
||||
(package
|
||||
(name "r-pheatmap")
|
||||
|
|
Loading…
Reference in a new issue