mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: Add r-residualmatrix.
* gnu/packages/bioconductor.scm (r-residualmatrix): New variable.
This commit is contained in:
parent
111aa862ec
commit
278e1c090e
1 changed files with 31 additions and 0 deletions
|
@ -6205,6 +6205,37 @@ (define-public r-icobra
|
||||||
interactive exploration of results.")
|
interactive exploration of results.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-residualmatrix
|
||||||
|
(package
|
||||||
|
(name "r-residualmatrix")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (bioconductor-uri "ResidualMatrix" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0p7va19aw0j6anx7ck879kbi5cn7dy712h5ia94adr38ssismv1v"))))
|
||||||
|
(properties
|
||||||
|
`((upstream-name . "ResidualMatrix")))
|
||||||
|
(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/ResidualMatrix")
|
||||||
|
(synopsis "Create a DelayedMatrix of regression residuals")
|
||||||
|
(description
|
||||||
|
"This package implements tools for delayed computation of a matrix of
|
||||||
|
residuals after fitting a linear model to each column of an input matrix. It
|
||||||
|
also supports partial computation of residuals where selected factors are to
|
||||||
|
be preserved in the output matrix. It implements a number of efficient
|
||||||
|
methods for operating on the delayed matrix of residuals, most notably matrix
|
||||||
|
multiplication and calculation of row/column sums or means.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public r-mast
|
(define-public r-mast
|
||||||
(package
|
(package
|
||||||
(name "r-mast")
|
(name "r-mast")
|
||||||
|
|
Loading…
Reference in a new issue