From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55997) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1idI88-0005LB-DC for guix-patches@gnu.org; Fri, 06 Dec 2019 13:15:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1idI86-0006Qa-JT for guix-patches@gnu.org; Fri, 06 Dec 2019 13:15:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41044) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1idI86-0006PP-BQ for guix-patches@gnu.org; Fri, 06 Dec 2019 13:15:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1idI86-0004XV-4G for guix-patches@gnu.org; Fri, 06 Dec 2019 13:15:02 -0500 Subject: [bug#38489] [PATCH] gnu: Add r-qtl2. Resent-Message-ID: MIME-Version: 1.0 References: <20191204085735.23318-1-efraim@flashner.co.il> In-Reply-To: <20191204085735.23318-1-efraim@flashner.co.il> From: zimoun Date: Fri, 6 Dec 2019 19:14:20 +0100 Message-ID: Content-Type: text/plain; charset="UTF-8" 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: Efraim Flashner Cc: 38489@debbugs.gnu.org Hi Efraim, On Wed, 4 Dec 2019 at 10:03, Efraim Flashner wrote: > > * gnu/packages/bioinformatics.scm (r-qtl2): New variable. > --- > gnu/packages/bioinformatics.scm | 29 +++++++++++++++++++++++++++++ > 1 file changed, 29 insertions(+) > > diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm > index b0d070b4e7..522cde959e 100644 > --- a/gnu/packages/bioinformatics.scm > +++ b/gnu/packages/bioinformatics.scm > @@ -8239,6 +8239,35 @@ identify genotyping errors, and to perform single-QTL and two-QTL, > two-dimensional genome scans.") > (license license:gpl3))) > > +(define-public r-qtl2 > + (package > + (name "r-qtl2") > + (version "0.20") > + (source (origin > + (method git-fetch) > + ;; Not yet available in cran. > + (uri (git-reference > + (url "https://github.com/rqtl/qtl2.git") > + (commit version))) > + (file-name (git-file-name name version)) > + (sha256 > + (base32 "0l1asr28q25jzbwrbg5490962sg3y4sjrd0qf09p78ws1aq8vfs0")))) > + (build-system r-build-system) > + (propagated-inputs > + `(("r-data-table" ,r-data-table) > + ("r-jsonlite" ,r-jsonlite) > + ("r-rcpp" ,r-rcpp) > + ("r-rcppeigen" ,r-rcppeigen) > + ("r-rsqlite" ,r-rsqlite) > + ("r-yaml" ,r-yaml))) > + (home-page "https://kbroman.org/qtl2/") > + (synopsis > + "QTL analysis software for high-dimensional data and complex cross designs") > + (description > + "R/qtl2 (aka qtl2) is a reimplementation of the QTL analysis software > +R/qtl, to better handle high-dimensional data and complex cross designs.") > + (license license:gpl3))) > + LGTM. All the best, simon