diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-11-12 16:23:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-14 15:13:20 +0100 |
commit | e4f4a04a51c657fd9cedcc8c08e8fad858533777 (patch) | |
tree | 7480f9dc37d85ad723d6349a2fda8afcd997bf90 | |
parent | 10483a64eebf753ae17695d3c027e5fefa0df644 (diff) | |
download | patches-e4f4a04a51c657fd9cedcc8c08e8fad858533777.tar patches-e4f4a04a51c657fd9cedcc8c08e8fad858533777.tar.gz |
gnu: Add r-ouch.
* gnu/packages/cran.scm (r-ouch): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8513dff4f5..6ce9bdd16f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7734,3 +7734,23 @@ levels of activity; statistically compare activity metrics through bootstrapping; and evaluate variation in linear variables with time (or other circular variables).") (license license:gpl3))) + +(define-public r-ouch + (package + (name "r-ouch") + (version "2.11-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "ouch" version)) + (sha256 + (base32 + "0xkwwi62vdahlcg3k32zb1nfwsx87zdssk79mvcxgfsw9bw4gahx")))) + (build-system r-build-system) + (propagated-inputs `(("r-subplex" ,r-subplex))) + (home-page "http://kingaa.github.io/ouch/") + (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses") + (description + "This package provides tools to fit and compare Ornstein-Uhlenbeck models +for evolution along a phylogenetic tree.") + (license license:gpl2+))) |