diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-04-14 13:32:52 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-04-14 13:32:52 +0200 |
commit | ed3697c040da3baf03a94fdac98e6a1a188c13d6 (patch) | |
tree | b8e1d000257efe78add3bfc0c20ff22dcc4c9f3d /gnu | |
parent | 67941709e21c7f14bec0924aa6a893840c70ec68 (diff) | |
download | guix-ed3697c040da3baf03a94fdac98e6a1a188c13d6.tar.gz |
gnu: r-abarray: Move out of experiments section.
* gnu/packages/bioconductor.scm (r-abarray): Move definition out of experiments section.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 5a20fbbc64..61fa6bfde2 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -1102,32 +1102,6 @@ datasets which are derived from the Allen Brain Atlas: All datasets are restricted to protein coding genes.") (license license:gpl2+))) -(define-public r-abarray - (package - (name "r-abarray") - (version "1.62.0") - (source (origin - (method url-fetch) - (uri (bioconductor-uri "ABarray" version)) - (sha256 - (base32 - "0yh7jmkwdg3kmm98ii0cxbla3s5bwy84fpg6xcpggsrriwzwfb5k")))) - (properties `((upstream-name . "ABarray"))) - (build-system r-build-system) - (propagated-inputs (list r-biobase r-multtest)) - (home-page "https://bioconductor.org/packages/ABarray") - (synopsis - "Gene expression analysis for Applied Biosystems Genome Survey Microarray") - (description - "The package @code{ABarray} is designed to work with Applied Biosystems -whole genome microarray platform, as well as any other platform whose data can -be transformed into expression data matrix. Functions include data -preprocessing, filtering, control probe analysis, statistical analysis in one -single function. A @dfn{graphical user interface} (GUI) is also provided. The -raw data, processed data, graphics output and statistical results are organized -into folders according to the analysis settings used.") - (license license:gpl2+))) - (define-public r-absseq (package (name "r-absseq") @@ -1545,6 +1519,32 @@ TCGAbiolinksGUI package.") ;;; Packages +(define-public r-abarray + (package + (name "r-abarray") + (version "1.62.0") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "ABarray" version)) + (sha256 + (base32 + "0yh7jmkwdg3kmm98ii0cxbla3s5bwy84fpg6xcpggsrriwzwfb5k")))) + (properties `((upstream-name . "ABarray"))) + (build-system r-build-system) + (propagated-inputs (list r-biobase r-multtest)) + (home-page "https://bioconductor.org/packages/ABarray") + (synopsis + "Gene expression analysis for Applied Biosystems Genome Survey Microarray") + (description + "The package @code{ABarray} is designed to work with Applied Biosystems +whole genome microarray platform, as well as any other platform whose data can +be transformed into expression data matrix. Functions include data +preprocessing, filtering, control probe analysis, statistical analysis in one +single function. A @dfn{graphical user interface} (GUI) is also provided. The +raw data, processed data, graphics output and statistical results are organized +into folders according to the analysis settings used.") + (license license:gpl2+))) + (define-public r-aneufinder (package (name "r-aneufinder") |