gnu: Add r-keggrest.

* gnu/packages/bioinformatics.scm (r-keggrest): New variable.
This commit is contained in:
Ricardo Wurmus 2017-11-07 12:38:55 +01:00
parent a9540107c6
commit 3121814ef1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -9430,6 +9430,30 @@ (define-public r-fastseg
microarrays or GRanges for sequencing data.")
(license license:lgpl2.0+)))
(define-public r-keggrest
(package
(name "r-keggrest")
(version "1.18.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "KEGGREST" version))
(sha256
(base32
"1i3i88lj57wvpgjf75a23msgfsjv8pr2b4j1faga276p4fsblkhj"))))
(properties `((upstream-name . "KEGGREST")))
(build-system r-build-system)
(propagated-inputs
`(("r-biostrings" ,r-biostrings)
("r-httr" ,r-httr)
("r-png" ,r-png)))
(home-page "https://bioconductor.org/packages/KEGGREST")
(synopsis "Client-side REST access to KEGG")
(description
"This package provides a package that provides a client interface to the
@dfn{Kyoto Encyclopedia of Genes and Genomes} (KEGG) REST server.")
(license license:artistic2.0)))
(define-public r-qvalue
(package
(name "r-qvalue")