1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-07-25 00:14:09 +02:00

gnu: Add r-convert.

* gnu/packages/bioconductor.scm (r-convert): New variable.

Change-Id: Ib8a83b25e93e3971b6d383798290d97597ce1869
This commit is contained in:
Ricardo Wurmus
2025-11-21 22:04:51 +01:00
parent f54b8586a6
commit 6e98baa91e
+19
View File
@@ -6244,6 +6244,25 @@ enables efficient recovery of the @code{DelayedArray's} contents in other
languages and analysis frameworks.")
(license license:gpl3)))
(define-public r-convert
(package
(name "r-convert")
(version "1.86.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "convert" version))
(sha256
(base32 "0y3932nyp4fdp4yjnzskg1cg4rsg0yc36cl5qqrj2svxh5d4s7b8"))))
(properties `((upstream-name . "convert")))
(build-system r-build-system)
(propagated-inputs (list r-biobase r-limma r-marray))
(home-page "http://bioinf.wehi.edu.au/limma/convert.html")
(synopsis "Convert microarray data objects")
(description "This package defines coerce methods for microarray data
objects.")
(license license:lgpl2.0+)))
(define-public r-coregx
(package
(name "r-coregx")