gnu: Add r-organismdbi.

* gnu/packages/bioinformatics.scm (r-organismdbi): New variable.
This commit is contained in:
Ricardo Wurmus 2017-11-07 15:33:13 +01:00
parent aa30ab5aee
commit 2f6f61fd8e
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -9643,6 +9643,38 @@ (define-public r-ensembldb
;; No version specified
(license license:lgpl3+)))
(define-public r-organismdbi
(package
(name "r-organismdbi")
(version "1.20.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "OrganismDbi" version))
(sha256
(base32
"0yxvhwn0m53wfwp0zi81x96argdf7cf1lpymc2as51apvfcnjdl8"))))
(properties `((upstream-name . "OrganismDbi")))
(build-system r-build-system)
(propagated-inputs
`(("r-annotationdbi" ,r-annotationdbi)
("r-biobase" ,r-biobase)
("r-biocgenerics" ,r-biocgenerics)
("r-biocinstaller" ,r-biocinstaller)
("r-dbi" ,r-dbi)
("r-genomicfeatures" ,r-genomicfeatures)
("r-genomicranges" ,r-genomicranges)
("r-graph" ,r-graph)
("r-iranges" ,r-iranges)
("r-rbgl" ,r-rbgl)
("r-s4vectors" ,r-s4vectors)))
(home-page "https://bioconductor.org/packages/OrganismDbi")
(synopsis "Software to enable the smooth interfacing of database packages")
(description "The package enables a simple unified interface to several
annotation packages each of which has its own schema by taking advantage of
the fact that each of these packages implements a select methods.")
(license license:artistic2.0)))
(define-public r-qvalue
(package
(name "r-qvalue")