From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33284) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuuzN-0000da-PR for guix-patches@gnu.org; Wed, 29 Aug 2018 03:34:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuuzK-0000nu-JB for guix-patches@gnu.org; Wed, 29 Aug 2018 03:34:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59553) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fuuzK-0000nq-EY for guix-patches@gnu.org; Wed, 29 Aug 2018 03:34:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fuuzK-0000TQ-7T for guix-patches@gnu.org; Wed, 29 Aug 2018 03:34:02 -0400 Subject: [bug#32567] [PATCH] ;;gnu: Add r-abcrf. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33116) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuuyi-0000ac-U2 for guix-patches@gnu.org; Wed, 29 Aug 2018 03:33:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuuye-0000VI-FX for guix-patches@gnu.org; Wed, 29 Aug 2018 03:33:24 -0400 Received: from sinope02.bbbm.mdc-berlin.de ([141.80.25.24]:42848) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuuyc-0000UK-V0 for guix-patches@gnu.org; Wed, 29 Aug 2018 03:33:19 -0400 Received: from localhost (localhost [127.0.0.1]) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTP id D13FF12C656A for ; Wed, 29 Aug 2018 09:33:16 +0200 (CEST) Received: from sinope02.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope02.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6q_Iw9oXTg0s for ; Wed, 29 Aug 2018 09:33:10 +0200 (CEST) Received: from SW-IT-P-CAS2.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Wed, 29 Aug 2018 09:33:09 +0200 (CEST) From: pimi Date: Wed, 29 Aug 2018 09:32:45 +0200 Message-ID: <20180829073245.12728-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32567@debbugs.gnu.org Cc: pimi ;;gnu/packages/cran.scm (r-abcrf): 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 d3a0c4672..ebc15e940 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4965,3 +4965,31 @@ and make comparisons between different methodologies straightforward.") Poisson, and Gamma distribution and estimates the proportional paternity of the second male (P2) based on the best fit distribution.") (license license:gpl2))) + +(define-public r-abcrf + (package + (name "r-abcrf") + (version "1.7.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "abcrf" version)) + (sha256 + (base32 "06vy3inikrr9hv36q4djhrgzi9zizdfnhz17wpra8kadmr7qj441")))) + (build-system r-build-system) + (propagated-inputs + `(("r-mass" ,r-mass) + ("r-matrixstats" ,r-matrixstats) + ("r-ranger" ,r-ranger) + ("r-rcpp" ,r-rcpp) + ("r-rcpparmadillo" ,r-rcpparmadillo) + ("r-readr" ,r-readr) + ("r-stringr" ,r-stringr))) + (home-page "https://cran.r-project.org/web/packages/abcrf/") + (synopsis "Approximate bayesian computation via random forests") + (description + "This package performs approximate bayesian computation (ABC) model choice and +parameter inference via random forests. This machine learning tool named random +forests (RF) can conduct selection among the highly complex models covered by +ABC algorithms.") + (license license:gpl2+))) -- 2.17.1