[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/09: gnu: bowtie: Update to 2.3.4.3.
From: |
Ricardo Wurmus |
Subject: |
09/09: gnu: bowtie: Update to 2.3.4.3. |
Date: |
Sat, 20 Oct 2018 17:40:12 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 21c837405a7d46590fbe1d9e45e16a56f182e451
Author: Ricardo Wurmus <address@hidden>
Date: Sat Oct 20 23:04:02 2018 +0200
gnu: bowtie: Update to 2.3.4.3.
* gnu/packages/bioinformatics.scm (bowtie): Update to 2.3.4.3.
[source]: Fetch from git.
[inputs]: Replace python-2 with python-wrapper; move perl, perl-clone,
perl-test-deep, and perl-test-simple from here...
[native-inputs]: ...to here.
[arguments]: Simplify check phase.
---
gnu/packages/bioinformatics.scm | 41 ++++++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 66e0686..7c58ab2 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1273,15 +1273,16 @@ errors at the end of reads.")
(define-public bowtie
(package
(name "bowtie")
- (version "2.3.2")
+ (version "2.3.4.3")
(source (origin
- (method url-fetch)
- (uri (string-append
"https://github.com/BenLangmead/bowtie2/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/BenLangmead/bowtie2.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "0hwa5r9qbglppb7sz5z79rlmmddr3n51n468jb3wh8rwjgn3yr90"))
+ "1zl3cf327y2p7p03cavymbh7b00djc7lncfaqih33n96iy9q8ibp"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -1291,14 +1292,6 @@ errors at the end of reads.")
(("-DBUILD_TIME=.*") "-DBUILD_TIME=\"\\\"0\\\"\""))
#t))))
(build-system gnu-build-system)
- (inputs
- `(("perl" ,perl)
- ("perl-clone" ,perl-clone)
- ("perl-test-deep" ,perl-test-deep)
- ("perl-test-simple" ,perl-test-simple)
- ("python" ,python-2)
- ("tbb" ,tbb)
- ("zlib" ,zlib)))
(arguments
'(#:make-flags
(list "allall"
@@ -1308,11 +1301,21 @@ errors at the end of reads.")
(modify-phases %standard-phases
(delete 'configure)
(replace 'check
- (lambda* (#:key outputs #:allow-other-keys)
- (zero? (system* "perl"
- "scripts/test/simple_tests.pl"
- "--bowtie2=./bowtie2"
- "--bowtie2-build=./bowtie2-build")))))))
+ (lambda _
+ (invoke "perl"
+ "scripts/test/simple_tests.pl"
+ "--bowtie2=./bowtie2"
+ "--bowtie2-build=./bowtie2-build")
+ #t)))))
+ (inputs
+ `(("tbb" ,tbb)
+ ("zlib" ,zlib)
+ ("python" ,python-wrapper)))
+ (native-inputs
+ `(("perl" ,perl)
+ ("perl-clone" ,perl-clone)
+ ("perl-test-deep" ,perl-test-deep)
+ ("perl-test-simple" ,perl-test-simple)))
(home-page "http://bowtie-bio.sourceforge.net/bowtie2/index.shtml")
(synopsis "Fast and sensitive nucleotide sequence read aligner")
(description
- branch master updated (bfa47f1 -> 21c8374), Ricardo Wurmus, 2018/10/20
- 03/09: gnu: clipper: Update to 1.2.1., Ricardo Wurmus, 2018/10/20
- 08/09: gnu: blast+: Use INVOKE and return #T unconditionally., Ricardo Wurmus, 2018/10/20
- 09/09: gnu: bowtie: Update to 2.3.4.3.,
Ricardo Wurmus <=
- 01/09: gnu: Add bedtools-2.26., Ricardo Wurmus, 2018/10/20
- 06/09: gnu: bedops: Use INVOKE., Ricardo Wurmus, 2018/10/20
- 04/09: gnu: aragorn: Use invoke and simplify., Ricardo Wurmus, 2018/10/20
- 02/09: gnu: python-pybedtools: Update to 0.7.10., Ricardo Wurmus, 2018/10/20
- 05/09: gnu: bamm: Fetch from git and use INVOKE., Ricardo Wurmus, 2018/10/20
- 07/09: gnu: bedops: Update to 2.4.35., Ricardo Wurmus, 2018/10/20