From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 15/35] gnu: Add r-ape. Date: Thu, 19 Jan 2017 19:55:10 +0100 Message-ID: <20170119185530.35824-15-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsX-0005tT-Rv for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsX-0004b2-08 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:09 -0500 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:33214) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsW-0004aR-Q6 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:08 -0500 Received: by mail-wm0-x243.google.com with SMTP id r144so1084921wme.0 for ; Thu, 19 Jan 2017 10:56:08 -0800 (PST) In-Reply-To: <20170119185530.35824-1-ilpuccio.febo@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: Raoul Jean Pierre Bonnal * gnu/packages/statistics.scm (r-ape): New variable. --- gnu/packages/statistics.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 336b7c0..9defb9f 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4362,3 +4362,25 @@ regression methodology including model selections and multivariate statistics.") Fixed point clustering.") (license (list license:gpl2+ license:gpl3+)))) + +(define-public r-ape + (package + (name "r-ape") + (version "4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "ape" version)) + (sha256 + (base32 + "017jzwnknwxggpv9lkj9yyc66qv3mcl5psvbbszfivpmj26k79f9")))) + (build-system r-build-system) + (home-page "http://ape-package.ird.fr/") + (synopsis "Analyses of phylogenetics and evolution") + (description + "This package provides functions for reading, writing, plotting, and +manipulating phylogenetic trees, analyses of comparative data in a +phylogenetic framework, ancestral character analyses, analyses of +diversification and macroevolution, computing distances from DNA sequences, +and several other tools.") + (license license:gpl2+))) -- 1.9.1