diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-19 15:26:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-19 15:29:23 +0200 |
commit | 5566f691a28789e8a73be3b9549db0296b30c665 (patch) | |
tree | fa5f51f22b528691fdaf098e34265b840a9bc849 /gnu/packages/bioconductor.scm | |
parent | 16a05db0ac8e9d405895e120f419ed25bb8d108d (diff) | |
download | guix-5566f691a28789e8a73be3b9549db0296b30c665.tar.gz guix-5566f691a28789e8a73be3b9549db0296b30c665.zip |
gnu: Add r-qfeatures.
* gnu/packages/bioconductor.scm (r-qfeatures): New variable.
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 73068bab4a..d9d9274095 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -10416,6 +10416,41 @@ arrays (expression/SNP/tiling/exon) at probe-level. It currently supports Affymetrix (CEL files) and NimbleGen arrays (XYS files).") (license license:lgpl2.0+))) +(define-public r-qfeatures + (package + (name "r-qfeatures") + (version "1.10.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "QFeatures" version)) + (sha256 + (base32 + "1xnmd14nf4cqbfxkjsl6af312k7l27ars5g8qdnljylkn8kq276z")))) + (properties `((upstream-name . "QFeatures"))) + (build-system r-build-system) + (propagated-inputs (list r-annotationfilter + r-biobase + r-biocgenerics + r-igraph + r-iranges + r-lazyeval + r-mscoreutils + r-multiassayexperiment + r-plotly + r-protgenerics + r-s4vectors + r-summarizedexperiment)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/RforMassSpectrometry/QFeatures") + (synopsis "Quantitative features for mass spectrometry data") + (description + "The QFeatures infrastructure enables the management and processing of +quantitative features for high-throughput mass spectrometry assays. It +provides a familiar Bioconductor user experience to manages quantitative data +across different assay levels (such as peptide spectrum matches, peptides and +proteins) in a coherent and tractable format.") + (license license:artistic2.0))) + (define-public r-quantsmooth (package (name "r-quantsmooth") |