diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2023-03-20 17:00:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-20 18:25:10 +0100 |
commit | 40b79eafeec423e8f35d90fed6df0377a0729634 (patch) | |
tree | 143b5b057dae977f75bef72a715eae0d3e2344d7 /gnu | |
parent | 628c22ec9e635b42608d9aa396fa12fb4f38a493 (diff) | |
download | guix-40b79eafeec423e8f35d90fed6df0377a0729634.tar guix-40b79eafeec423e8f35d90fed6df0377a0729634.tar.gz |
gnu: Add r-affylmgui.
* gnu/packages/bioconductor.scm (r-affylmgui): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index f37cc98e3e..64f8f839c2 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2125,6 +2125,38 @@ employed to first background subtract intensities before calculating concentrations on behal of the Langmuir model.") (license license:gpl3))) +(define-public r-affylmgui + (package + (name "r-affylmgui") + (version "1.72.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "affylmGUI" version)) + (sha256 + (base32 "0jds73pxqf522wcg8qd4b4k1qbhn51av5md1nhgcdnb6is0lzvxi")))) + (properties `((upstream-name . "affylmGUI"))) + (build-system r-build-system) + (propagated-inputs + (list r-affy + r-affyio + r-affyplm + r-annotationdbi + r-biocgenerics + r-biocmanager + r-gcrma + r-limma + r-r2html + r-tkrplot + r-xtable)) + (home-page "https://bioinf.wehi.edu.au/affylmGUI/") + (synopsis "GUI for limma package with Affymetrix microarrays") + (description + "This package provides a @acronym{GUI, Graphical User Interface} for +analysis of Affymetrix microarray gene expression data using the affy and +limma packages.") + (license license:gpl2+))) + (define-public r-affyplm (package (name "r-affyplm") |