guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/18: gnu: Add r-tidytree.


From: guix-commits
Subject: 10/18: gnu: Add r-tidytree.
Date: Mon, 7 Jan 2019 12:44:13 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 61d733490687c5e9e669f1aed429692c992a534a
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Jan 7 16:19:27 2019 +0100

    gnu: Add r-tidytree.
    
    * gnu/packages/cran.scm (r-tidytree): New variable.
---
 gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 89d88f8..e97e988 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]