mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 18:38:57 -05:00
gnu: Add r-scaledmatrix.
* gnu/packages/bioconductor.scm (r-scaledmatrix): New variable.
This commit is contained in:
parent
efefb2be3a
commit
fd4fa40ac4
1 changed files with 28 additions and 0 deletions
|
@ -5647,6 +5647,34 @@ (define-public r-biocneighbors
|
|||
achieved for all methods using the BiocParallel framework.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-scaledmatrix
|
||||
(package
|
||||
(name "r-scaledmatrix")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "ScaledMatrix" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1j96fvw1waqxbv5c8myfmhsidq370z03yz13yqmrs4nn1rpn1a06"))))
|
||||
(properties `((upstream-name . "ScaledMatrix")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-delayedarray" ,r-delayedarray)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-s4vectors" ,r-s4vectors)))
|
||||
(native-inputs `(("r-knitr" ,r-knitr)))
|
||||
(home-page "https://github.com/LTLA/ScaledMatrix")
|
||||
(synopsis "Create a DelayedMatrix of scaled and centered values")
|
||||
(description
|
||||
"This package provides delayed computation of a matrix of scaled and
|
||||
centered values. The result is equivalent to using the @code{scale} function
|
||||
but avoids explicit realization of a dense matrix during block processing.
|
||||
This permits greater efficiency in common operations, most notably matrix
|
||||
multiplication.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-biocsingular
|
||||
(package
|
||||
(name "r-biocsingular")
|
||||
|
|
Loading…
Reference in a new issue