gnu: Add r-rpx.

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

Change-Id: Id8b70a61d2657dfe5588f1cb67074d6fe5f1988c
This commit is contained in:
Ricardo Wurmus 2024-11-29 18:45:47 +01:00 committed by Andreas Enge
parent af5bf52c3a
commit 94a0d33650
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -9882,6 +9882,29 @@ (define-public r-rnbeads
DNA methylation data at the genome scale.")
(license license:gpl3)))
(define-public r-rpx
(package
(name "r-rpx")
(version "2.14.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "rpx" version))
(sha256
(base32 "0w2nxcd2v8rc3spi0rb96d3r7hp2dh7f7k50n0mik626fy1i0yc5"))))
(properties `((upstream-name . "rpx")))
(build-system r-build-system)
;; Tests require Internet access.
(arguments (list #:tests? #false))
(propagated-inputs (list r-biocfilecache r-curl r-jsonlite r-rcurl r-xml2))
(native-inputs (list r-biostrings r-knitr r-testthat r-tibble))
(home-page "https://github.com/lgatto/rpx")
(synopsis "R interface to the ProteomeXchange Repository")
(description
"The rpx package implements an interface to proteomics data submitted to
the @code{ProteomeXchange} consortium.")
(license license:gpl2)))
(define-public r-impute
(package
(name "r-impute")