diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-05-21 22:25:39 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-31 15:34:44 +0200 |
commit | 4f030cc0db4806def4bb434817daee0e6c1cfa7d (patch) | |
tree | 9fbd904e4dd27fd6409f604c1db5a68b5c9341c8 /gnu | |
parent | 8c7c78bfced859bc636752b03384f7f380398f71 (diff) | |
download | guix-4f030cc0db4806def4bb434817daee0e6c1cfa7d.tar.gz guix-4f030cc0db4806def4bb434817daee0e6c1cfa7d.zip |
gnu: r-msnbase: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-msnbase): Move from here...
* gnu/packages/bioconductor.scm (r-msnbase): ...to here.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 45 | ||||
-rw-r--r-- | gnu/packages/bioinformatics.scm | 45 |
2 files changed, 45 insertions, 45 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index f16e01261a..0db6590be3 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2517,6 +2517,51 @@ and the assessment of differential expression. The analysis methods apply to different technologies, including microarrays, RNA-seq, and quantitative PCR.") (license license:gpl2+))) +(define-public r-msnbase + (package + (name "r-msnbase") + (version "2.16.1") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "MSnbase" version)) + (sha256 + (base32 + "0hxzs9zzljywqxr7q388hshpy1pdryhl0zkwffqbxpf5pcf92d3h")))) + (properties `((upstream-name . "MSnbase"))) + (build-system r-build-system) + (propagated-inputs + `(("r-affy" ,r-affy) + ("r-biobase" ,r-biobase) + ("r-biocgenerics" ,r-biocgenerics) + ("r-biocparallel" ,r-biocparallel) + ("r-digest" ,r-digest) + ("r-ggplot2" ,r-ggplot2) + ("r-impute" ,r-impute) + ("r-iranges" ,r-iranges) + ("r-lattice" ,r-lattice) + ("r-maldiquant" ,r-maldiquant) + ("r-mass" ,r-mass) + ("r-mzid" ,r-mzid) + ("r-mzr" ,r-mzr) + ("r-pcamethods" ,r-pcamethods) + ("r-plyr" ,r-plyr) + ("r-preprocesscore" ,r-preprocesscore) + ("r-protgenerics" ,r-protgenerics) + ("r-rcpp" ,r-rcpp) + ("r-s4vectors" ,r-s4vectors) + ("r-scales" ,r-scales) + ("r-vsn" ,r-vsn) + ("r-xml" ,r-xml))) + (native-inputs + `(("r-knitr" ,r-knitr))) + (home-page "https://github.com/lgatto/MSnbase") + (synopsis "Base functions and classes for MS-based proteomics") + (description + "This package provides basic plotting, data manipulation and processing +of mass spectrometry based proteomics data.") + (license license:artistic2.0))) + (define-public r-msnid (package (name "r-msnid") diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 478de5634e..e402efa4ad 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -9404,51 +9404,6 @@ the results is also provided. All PCA methods make use of the same data structure (pcaRes) to provide a common interface to the PCA results.") (license license:gpl3+))) -(define-public r-msnbase - (package - (name "r-msnbase") - (version "2.16.1") - (source - (origin - (method url-fetch) - (uri (bioconductor-uri "MSnbase" version)) - (sha256 - (base32 - "0hxzs9zzljywqxr7q388hshpy1pdryhl0zkwffqbxpf5pcf92d3h")))) - (properties `((upstream-name . "MSnbase"))) - (build-system r-build-system) - (propagated-inputs - `(("r-affy" ,r-affy) - ("r-biobase" ,r-biobase) - ("r-biocgenerics" ,r-biocgenerics) - ("r-biocparallel" ,r-biocparallel) - ("r-digest" ,r-digest) - ("r-ggplot2" ,r-ggplot2) - ("r-impute" ,r-impute) - ("r-iranges" ,r-iranges) - ("r-lattice" ,r-lattice) - ("r-maldiquant" ,r-maldiquant) - ("r-mass" ,r-mass) - ("r-mzid" ,r-mzid) - ("r-mzr" ,r-mzr) - ("r-pcamethods" ,r-pcamethods) - ("r-plyr" ,r-plyr) - ("r-preprocesscore" ,r-preprocesscore) - ("r-protgenerics" ,r-protgenerics) - ("r-rcpp" ,r-rcpp) - ("r-s4vectors" ,r-s4vectors) - ("r-scales" ,r-scales) - ("r-vsn" ,r-vsn) - ("r-xml" ,r-xml))) - (native-inputs - `(("r-knitr" ,r-knitr))) - (home-page "https://github.com/lgatto/MSnbase") - (synopsis "Base functions and classes for MS-based proteomics") - (description - "This package provides basic plotting, data manipulation and processing -of mass spectrometry based proteomics data.") - (license license:artistic2.0))) - (define-public r-aroma-light (package (name "r-aroma-light") |