diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-18 15:25:50 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-18 15:29:08 +0100 |
commit | 77e2de365497bf4c8b81cbd78624f78293490485 (patch) | |
tree | 9e02457e3792cba198036fad655ca55a7df86d8d /gnu | |
parent | 0156297f2920a036a7060586ea3286ed5ecbab26 (diff) | |
download | patches-77e2de365497bf4c8b81cbd78624f78293490485.tar patches-77e2de365497bf4c8b81cbd78624f78293490485.tar.gz |
gnu: Add r-biodist.
* gnu/packages/bioconductor.scm (r-biodist): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 7d45a26579..6d91dcf2e4 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -7382,3 +7382,26 @@ accessing web references for elements/sets are also available in BiocSet.") "This package provides functions to ease the transition between Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow.") (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))) |