From aa1d419586c387ba07f323196bfb92b6237b032e Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 28 Feb 2024 11:34:03 +0200 Subject: gnu: bowtie1: Update to 1.3.1. * gnu/packages/bioinformatics.scm (bowtie1): Update to 1.3.1. [arguments]: Add test-target. [inputs]: Use newer tbb. Change-Id: I7af6aa248e5db9f91ce84fba9ba741621b110479 --- gnu/packages/bioinformatics.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 3f12b28058..1613961c64 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2015, 2016, 2018, 2019, 2020 Pjotr Prins ;;; Copyright © 2015 Andreas Enge ;;; Copyright © 2016, 2020, 2021 Roel Janssen -;;; Copyright © 2016-2023 Efraim Flashner +;;; Copyright © 2016-2024 Efraim Flashner ;;; Copyright © 2016, 2020, 2022 Marius Bakke ;;; Copyright © 2016, 2018 Raoul Bonnal ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice @@ -3756,14 +3756,14 @@ gapped, local, and paired-end alignment modes.") (define-public bowtie1 (package (name "bowtie1") - (version "1.3.0") + (version "1.3.1") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/bowtie-bio/bowtie/" version "/bowtie-" version "-src.zip")) (sha256 (base32 - "11dbihdnrizc6qhx9xsw77w3q5ssx642alaqzvhxx32ak9glvq04")) + "0q87nhgj9wrnbazcpvqp4594hmyh1isi3s9b2wlghvl4afm1fdg2")) (modules '((guix build utils))) (snippet '(substitute* "Makefile" @@ -3772,7 +3772,8 @@ gapped, local, and paired-end alignment modes.") (("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no "check" target + `(#:tests? #f ; Tests need various perl modules + #:test-target "simple-test" #:make-flags ,#~(list "CC=gcc" "all" (string-append "prefix=" #$output)) @@ -3780,7 +3781,7 @@ gapped, local, and paired-end alignment modes.") (modify-phases %standard-phases (delete 'configure)))) (inputs - (list python-wrapper tbb-2020 zlib)) + (list python-wrapper tbb zlib)) (supported-systems '("x86_64-linux")) (home-page "https://bowtie-bio.sourceforge.net/index.shtml") (synopsis "Fast aligner for short nucleotide sequence reads") -- cgit v1.2.3