mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add r-mscoreutils.
* gnu/packages/bioconductor.scm (r-mscoreutils): New variable.
This commit is contained in:
parent
1e536c307c
commit
fa2201c108
1 changed files with 31 additions and 0 deletions
|
@ -8829,3 +8829,34 @@ (define-public r-delayedmatrixstats
|
|||
are optimized per data type and for subsetted calculations such that both
|
||||
memory usage and processing time is minimized.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-mscoreutils
|
||||
(package
|
||||
(name "r-mscoreutils")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "MsCoreUtils" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0fa3bcf2cmzf5y8wjs7pnzs26qwgqnrrl4hj4sa4fp9kv8z80630"))))
|
||||
(properties `((upstream-name . "MsCoreUtils")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-mass" ,r-mass)
|
||||
("r-rcpp" ,r-rcpp)
|
||||
("r-s4vectors" ,r-s4vectors)))
|
||||
(native-inputs
|
||||
`(("r-knitr" ,r-knitr)))
|
||||
(home-page "https://github.com/RforMassSpectrometry/MsCoreUtils")
|
||||
(synopsis "Core utils for mass spectrometry data")
|
||||
(description
|
||||
"This package defines low-level functions for mass spectrometry data and
|
||||
is independent of any high-level data structures. These functions include
|
||||
mass spectra processing functions (noise estimation, smoothing, binning),
|
||||
quantitative aggregation functions (median polish, robust summarisation,
|
||||
etc.), missing data imputation, data normalisation (quantiles, vsn, etc.) as
|
||||
well as misc helper functions, that are used across high-level data structure
|
||||
within the R for Mass Spectrometry packages.")
|
||||
(license license:artistic2.0)))
|
||||
|
|
Loading…
Reference in a new issue