diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-11-03 15:40:46 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-11-03 22:49:10 +0100 |
commit | 4f85beac2d8723752a15cb55a8a69085001c5185 (patch) | |
tree | e89a011551b5a8838891da7d4b8c22f6c1facc73 /gnu/packages/bioconductor.scm | |
parent | bbe7ea0d2751bd2c9b27dc63e963eb16a17539e0 (diff) |
gnu: Add r-msexperiment.
* gnu/packages/bioconductor.scm (r-msexperiment): New variable.
Change-Id: I707addc076f36bab7f6e96953f5fbd614580825e
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 5e44b3ad12..c8498e9097 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -1841,6 +1841,40 @@ LC-MSMS and MRM files from proteomics experiments; and PSI mzIdentML example files for various search engines.") (license license:gpl2+))) +(define-public r-msexperiment + (package + (name "r-msexperiment") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "MsExperiment" version)) + (sha256 + (base32 "06m0i60zh3xjqmsz6dpp0il833xzdfj0fm6xbhl7kmicvfrcnyfg")))) + (properties `((upstream-name . "MsExperiment"))) + (build-system r-build-system) + (propagated-inputs (list r-iranges + r-protgenerics + r-qfeatures + r-s4vectors + r-spectra + r-summarizedexperiment)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/RforMassSpectrometry/MsExperiment") + (synopsis "Infrastructure for Mass Spectrometry experiments") + (description + "This package provides infrastructure to store and manage all aspects +related to a complete proteomics or metabolomics mass spectrometry (MS) +experiment. The @code{MsExperiment} package provides light-weight and +flexible containers for MS experiments building on the new MS infrastructure +provided by the Spectra, QFeatures and related packages. Along with raw data +representations, links to original data files and sample annotations, +additional metadata or annotations can also be stored within the +@code{MsExperiment} container. To guarantee maximum flexibility only minimal +constraints are put on the type and content of the data within the +containers.") + (license license:artistic2.0))) + (define-public r-msigdb (package (name "r-msigdb") |