Package: guix-patches;
Reported by: gemmaro <gemmaro.dev <at> gmail.com>
Date: Fri, 7 Jun 2024 13:41:01 UTC
Severity: normal
Tags: patch
To reply to this bug, email your comments to 71414 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
View this report as an mbox folder, status mbox, maintainer mbox
guix-patches <at> gnu.org
:bug#71414
; Package guix-patches
.
(Fri, 07 Jun 2024 13:41:02 GMT) Full text and rfc822 format available.gemmaro <gemmaro.dev <at> gmail.com>
:guix-patches <at> gnu.org
.
(Fri, 07 Jun 2024 13:41:02 GMT) Full text and rfc822 format available.Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: gemmaro <gemmaro.dev <at> gmail.com> To: guix-patches <at> gnu.org Cc: gemmaro <gemmaro.dev <at> gmail.com> Subject: [PATCH] gnu: Add mashmap. Date: Fri, 7 Jun 2024 22:38:32 +0900
* gnu/packages/bioinformatics.scm (mashmap): New variable. Change-Id: I38f984b308db0a3a5756852cd89de25ae0875f76 --- gnu/packages/bioinformatics.scm | 68 +++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index cecd94bbb7..d12ec9a249 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -26,6 +26,7 @@ ;;; Copyright © 2022, 2023 Navid Afkhami <navid.afkhami <at> mdc-berlin.de> ;;; Copyright © 2022 Antero Mejr <antero <at> mailbox.org> ;;; Copyright © 2024 Alexis Simon <alexis.simon <at> runbox.com> +;;; Copyright © 2024 gemmaro <gemmaro.dev <at> gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -172,6 +173,7 @@ (define-module (gnu packages bioinformatics) #:use-module (gnu packages wget) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) + #:use-module (gnu packages xdisorg) #:use-module (guix platform) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) @@ -22617,6 +22619,72 @@ (define-public hh-suite based on the pairwise alignment of hidden Markov models (HMMs).") (license license:gpl3+))) +(define-public mashmap + (package + (name "mashmap") + (version "3.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/marbl/MashMap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iqgcx5jk6asihdvzv2sa5v373y9k9fsd2a2in25ragil8z8nckp")))) + (build-system cmake-build-system) + (arguments + (list + #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (let ((gnuplot (string-append (assoc-ref inputs + "gnuplot") + "/bin/gnuplot")) + (xclip (string-append (assoc-ref inputs "xclip") + "/bin/xclip"))) + (substitute* "scripts/generateDotPlot" + (("gnuplot --version") + (string-append gnuplot " --version")) + (("my \\$cmd = \"gnuplot\";") + (string-append "my $cmd = \"" gnuplot "\";")) + (("xclip -o") + (string-append xclip " -o")))))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (if tests? + (begin + (invoke "../build/bin/mashmap" + "-r" "../source/data/scerevisiae8.fa.gz" + "-q" "../source/data/scerevisiae8.fa.gz" + "--pi" "95" + "-n" "1" + "-Y" "#" + "-o" "scerevisiae8.paf") + (invoke "../source/scripts/test.sh" + "../source/data/scerevisiae8.fa.gz.fai" + "scerevisiae8.paf" "0.92"))))) + (add-after 'install 'install-script + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (install-file "../source/scripts/generateDotPlot" + (string-append out "/share/mashmap")))))))) + (native-inputs (list bedtools util-linux)) + (inputs (list gsl + zlib + htslib + perl + gnuplot + xclip)) + (home-page "https://github.com/marbl/MashMap") + (synopsis "Fast approximate aligner for long DNA sequences") + (description + "MashMap implements a fast and approximate algorithm for computing +local alignment boundaries between long DNA sequences. It can be +useful for mapping genome assembly or long reads (PacBio/ONT) to +reference genome(s).") + (license license:public-domain))) + (define-public wfmash (package (name "wfmash") base-commit: 580d77d0fb12448ef1621699cc0c56e787e2aadb -- 2.45.1
guix-patches <at> gnu.org
:bug#71414
; Package guix-patches
.
(Mon, 17 Jun 2024 03:35:02 GMT) Full text and rfc822 format available.Message #8 received at 71414 <at> debbugs.gnu.org (full text, mbox):
From: gemmaro <gemmaro.dev <at> gmail.com> To: 71414 <at> debbugs.gnu.org Cc: gemmaro <gemmaro.dev <at> gmail.com> Subject: [PATCH v2] gnu: Add mashmap. Date: Mon, 17 Jun 2024 12:32:28 +0900
* gnu/packages/bioinformatics.scm (mashmap): New variable. Change-Id: I8f0a9827faa560765ef50af40b908a745c6e7ddd --- This fixes build failures on some platforms by excluding them. gnu/packages/bioinformatics.scm | 72 +++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index cecd94bbb7..85262b51cf 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -26,6 +26,7 @@ ;;; Copyright © 2022, 2023 Navid Afkhami <navid.afkhami <at> mdc-berlin.de> ;;; Copyright © 2022 Antero Mejr <antero <at> mailbox.org> ;;; Copyright © 2024 Alexis Simon <alexis.simon <at> runbox.com> +;;; Copyright © 2024 gemmaro <gemmaro.dev <at> gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -172,6 +173,7 @@ (define-module (gnu packages bioinformatics) #:use-module (gnu packages wget) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) + #:use-module (gnu packages xdisorg) #:use-module (guix platform) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) @@ -22617,6 +22619,76 @@ (define-public hh-suite based on the pairwise alignment of hidden Markov models (HMMs).") (license license:gpl3+))) +(define-public mashmap + (package + (name "mashmap") + (version "3.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/marbl/MashMap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0iqgcx5jk6asihdvzv2sa5v373y9k9fsd2a2in25ragil8z8nckp")))) + (build-system cmake-build-system) + (arguments + (list + #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (let ((gnuplot (string-append (assoc-ref inputs + "gnuplot") + "/bin/gnuplot")) + (xclip (string-append (assoc-ref inputs "xclip") + "/bin/xclip"))) + (substitute* "scripts/generateDotPlot" + (("gnuplot --version") + (string-append gnuplot " --version")) + (("my \\$cmd = \"gnuplot\";") + (string-append "my $cmd = \"" gnuplot "\";")) + (("xclip -o") + (string-append xclip " -o")))))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (if tests? + (begin + (invoke "../build/bin/mashmap" + "-r" "../source/data/scerevisiae8.fa.gz" + "-q" "../source/data/scerevisiae8.fa.gz" + "--pi" "95" + "-n" "1" + "-Y" "#" + "-o" "scerevisiae8.paf") + (invoke "../source/scripts/test.sh" + "../source/data/scerevisiae8.fa.gz.fai" + "scerevisiae8.paf" "0.92"))))) + (add-after 'install 'install-script + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (install-file "../source/scripts/generateDotPlot" + (string-append out "/share/mashmap")))))))) + (native-inputs (list bedtools util-linux)) + (inputs (list gsl + zlib + htslib + perl + gnuplot + xclip)) + (home-page "https://github.com/marbl/MashMap") + (synopsis "Fast approximate aligner for long DNA sequences") + (description + "MashMap implements a fast and approximate algorithm for computing +local alignment boundaries between long DNA sequences. It can be +useful for mapping genome assembly or long reads (PacBio/ONT) to +reference genome(s).") + ;; Some platforms fail to build/check this pacakge. + ;; armhf-linux: It doesn't have a type __uint128_t. + ;; i686-linux: Check fails due to the differences with bedtools results. + (supported-systems '("x86_64-linux" "aarch64-linux")) + (license license:public-domain))) + (define-public wfmash (package (name "wfmash") base-commit: bd5c61781c13611ed16686513980907c6ee34ae6 -- 2.45.1
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.