From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55429) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhf-0008CN-LF for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhc-00011c-D7 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:23 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36992) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhc-00011D-87 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:20 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhc-0008Ko-6R for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:20 -0500 Subject: [bug#39416] [PATCH 27/34] gnu: Add package r-ggm Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:19 +0100 Message-Id: <20200204135626.28261-27-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-ggm): New variable. --- gnu/packages/cran.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7b9545ca30..d006c3d663 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19998,3 +19998,26 @@ implemented the recent improvements in the Bayesian graphical models literature, including Mohammadi and Wit (2015) , Mohammadi and Wit (2019) .") (license license:gpl2+))) + +(define-public r-ggm + (package + (name "r-ggm") + (version "2.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "ggm" version)) + (sha256 + (base32 + "1n4y459x2i0jil8chjjqqjs28a8pzfxrws2fcjkg3il7zy0zwbw3")))) + (properties `((upstream-name . "ggm"))) + (build-system r-build-system) + (propagated-inputs `(("r-igraph" ,r-igraph))) + (home-page + "https://cran.r-project.org/package=ggm") + (synopsis + "Functions for graphical Markov models") + (description + "This package provides functions and datasets for maximum likelihood +fitting of some classes of graphical Markov models.") + (license license:gpl2+))) -- 2.20.1