gnu: Add r-biodist.

* gnu/packages/bioconductor.scm (r-biodist): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-18 15:25:50 +01:00
parent 0156297f29
commit 77e2de3654
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7382,3 +7382,26 @@ (define-public r-biocworkflowtools
"This package provides functions to ease the transition between "This package provides functions to ease the transition between
Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.") Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.")
(license license:expat))) (license license:expat)))
(define-public r-biodist
(package
(name "r-biodist")
(version "1.58.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "bioDist" version))
(sha256
(base32
"0iabw07px3ybdgbbab0vv350051cm4aq8w47rz9dnmzx4kil9h5q"))))
(properties `((upstream-name . "bioDist")))
(build-system r-build-system)
(propagated-inputs
`(("r-biobase" ,r-biobase)
("r-kernsmooth" ,r-kernsmooth)))
(home-page "https://bioconductor.org/packages/bioDist/")
(synopsis "Different distance measures")
(description
"This package provides a collection of software tools for calculating
distance measures.")
(license license:artistic2.0)))