From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59865) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzRtp-0002AW-G7 for guix-patches@gnu.org; Mon, 10 Sep 2018 15:31:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzRtm-0002Nb-1y for guix-patches@gnu.org; Mon, 10 Sep 2018 15:31:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59753) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fzRtl-0002NR-T4 for guix-patches@gnu.org; Mon, 10 Sep 2018 15:31:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fzRtl-0006iU-PM for guix-patches@gnu.org; Mon, 10 Sep 2018 15:31:01 -0400 Subject: [bug#32689] [PATCH] gnu: Add r-quic. References: <918DDFCAA65E9447BD6F28DB666521DA991050@DAGONE.mdc-berlin.net> In-Reply-To: <918DDFCAA65E9447BD6F28DB666521DA991050@DAGONE.mdc-berlin.net> Resent-Message-ID: From: pimi Date: Mon, 10 Sep 2018 21:29:51 +0200 Message-ID: <20180910192951.8049-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: 32689@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-quic): New variable. --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index fd4929c0f..d31f1c81a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5592,3 +5592,25 @@ with an initial V-D-J recombination event, starting the first phylogenetic tree. representing one simulated time step. Various mutation events are possible at each time step, contributing to a diverse final repertoire.") (license license:gpl2))) + +(define-public r-quic + (package + (name "r-quic") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "QUIC" version)) + (sha256 + (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c")))) + (properties `((upstream-name . "QUIC"))) + (build-system r-build-system) + (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/") + (synopsis "Regularized sparse inverse covariance matrix estimation") + (description + "This package algorithm implements the l1 regularized Gaussian maximum likelihood +estimation of the inverse of a covariance matrix. It uses Newton's method and +coordinate descent to solve the regularized inverse covariance matrix estimation +problem.") + ;; on the home-page it is mentioned that the release is under GPLv3 or later + (license license:gpl3+))) -- 2.17.1