diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-07 16:19:27 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-07 18:44:04 +0100 |
commit | 61d733490687c5e9e669f1aed429692c992a534a (patch) | |
tree | ba1aecd4ace67f29b4b9c8a0669b8ba162ca0d07 /gnu | |
parent | a6e4413d6435afa27aa30588c6ad1727a47f4222 (diff) | |
download | guix-61d733490687c5e9e669f1aed429692c992a534a.tar guix-61d733490687c5e9e669f1aed429692c992a534a.tar.gz |
gnu: Add r-tidytree.
* gnu/packages/cran.scm (r-tidytree): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 89d88f8f9d..e97e988c10 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8656,3 +8656,31 @@ over-plotting in scatter plots with text.") maps.") ;; Any version of the GPL (license license:gpl3+))) + +(define-public r-tidytree + (package + (name "r-tidytree") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "tidytree" version)) + (sha256 + (base32 + "1sx69wvlp7k761cmglrzq2jxkm2iq27x6bhhdcisj62wryj96wb2")))) + (build-system r-build-system) + (propagated-inputs + `(("r-ape" ,r-ape) + ("r-dplyr" ,r-dplyr) + ("r-lazyeval" ,r-lazyeval) + ("r-magrittr" ,r-magrittr) + ("r-rlang" ,r-rlang) + ("r-tibble" ,r-tibble))) + (home-page "https://github.com/GuangchuangYu/tidytree") + (synopsis "Tidy tool for phylogenetic tree data manipulation") + (description + "Phylogenetic trees generally contain multiple components including nodes, +edges, branches and associated data. This package provides an approach to +convert tree objects to tidy data frames. It also provides tidy interfaces to +manipulate tree data.") + (license license:artistic2.0))) |