GNU bug report logs - #38489
[PATCH] gnu: Add r-qtl2.

Previous Next

Package: guix-patches;

Reported by: Efraim Flashner <efraim <at> flashner.co.il>

Date: Wed, 4 Dec 2019 08:59:02 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 38489 in the body.
You can then email your comments to 38489 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#38489; Package guix-patches. (Wed, 04 Dec 2019 08:59:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Efraim Flashner <efraim <at> flashner.co.il>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 04 Dec 2019 08:59:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: guix-patches <at> gnu.org
Cc: Efraim Flashner <efraim <at> flashner.co.il>
Subject: [PATCH] gnu: Add r-qtl2.
Date: Wed,  4 Dec 2019 10:57:35 +0200
* 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)))
+
 (define-public r-zlibbioc
   (package
     (name "r-zlibbioc")
-- 
2.24.0





Information forwarded to guix-patches <at> gnu.org:
bug#38489; Package guix-patches. (Fri, 06 Dec 2019 18:15:02 GMT) Full text and rfc822 format available.

Message #8 received at 38489 <at> debbugs.gnu.org (full text, mbox):

From: zimoun <zimon.toutoune <at> gmail.com>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: 38489 <at> debbugs.gnu.org
Subject: Re: [bug#38489] [PATCH] gnu: Add r-qtl2.
Date: Fri, 6 Dec 2019 19:14:20 +0100
Hi Efraim,

On Wed, 4 Dec 2019 at 10:03, Efraim Flashner <efraim <at> flashner.co.il> 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




Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Tue, 10 Dec 2019 11:14:02 GMT) Full text and rfc822 format available.

Notification sent to Efraim Flashner <efraim <at> flashner.co.il>:
bug acknowledged by developer. (Tue, 10 Dec 2019 11:14:02 GMT) Full text and rfc822 format available.

Message #13 received at 38489-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: zimoun <zimon.toutoune <at> gmail.com>
Cc: 38489-done <at> debbugs.gnu.org
Subject: Re: [bug#38489] [PATCH] gnu: Add r-qtl2.
Date: Tue, 10 Dec 2019 13:12:59 +0200
[Message part 1 (text/plain, inline)]
Thanks. Patch pushed.


-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 07 Jan 2020 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 104 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.