[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
28/28: gnu: flexbar: Update to 3.4.0.
From: |
Ricardo Wurmus |
Subject: |
28/28: gnu: flexbar: Update to 3.4.0. |
Date: |
Sun, 21 Oct 2018 17:07:02 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit f8ee22fc8b486612a9f041bb351d99ba0ce16dc0
Author: Ricardo Wurmus <address@hidden>
Date: Sun Oct 21 23:05:11 2018 +0200
gnu: flexbar: Update to 3.4.0.
* gnu/packages/bioinformatics.scm (flexbar): Update to 3.4.0.
[source]: Fetch from git.
[arguments]: Adjust check and install phases.
[home-page]: Update to new home at Github.
[license]: Change to bsd-3.
---
gnu/packages/bioinformatics.scm | 39 ++++++++++++++++++++-------------------
1 file changed, 20 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index cdb82ae..96ea07b 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2607,38 +2607,39 @@ results. The FASTX-Toolkit tools perform some of these
preprocessing tasks.")
(define-public flexbar
(package
(name "flexbar")
- (version "2.5")
+ (version "3.4.0")
(source (origin
- (method url-fetch)
- (uri
- (string-append "mirror://sourceforge/flexbar/"
- version "/flexbar_v" version "_src.tgz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/seqan/flexbar.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "13jaykc3y1x8y5nn9j8ljnb79s5y51kyxz46hdmvvjj6qhyympmf"))))
+ "1pq9sxvdnldl14libk234m72dqhwgzs3acgl943wchwdqlcsi5r2"))))
(build-system cmake-build-system)
(arguments
- `(#:configure-flags (list
- (string-append "-DFLEXBAR_BINARY_DIR="
- (assoc-ref %outputs "out")
- "/bin/"))
- #:phases
+ `(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key outputs #:allow-other-keys)
- (setenv "PATH" (string-append
- (assoc-ref outputs "out") "/bin:"
- (getenv "PATH")))
- (chdir "../flexbar_v2.5_src/test")
- (zero? (system* "bash" "flexbar_validate.sh"))))
- (delete 'install))))
+ (setenv "PATH" (string-append (getcwd) ":" (getenv "PATH")))
+ (with-directory-excursion "../source/test"
+ (invoke "bash" "flexbar_test.sh"))
+ #t))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (string-append (assoc-ref outputs "out")))
+ (bin (string-append out "/bin/")))
+ (install-file "flexbar" bin))
+ #t)))))
(inputs
`(("tbb" ,tbb)
("zlib" ,zlib)))
(native-inputs
`(("pkg-config" ,pkg-config)
("seqan" ,seqan)))
- (home-page "http://flexbar.sourceforge.net")
+ (home-page "https://github.com/seqan/flexbar")
(synopsis "Barcode and adapter removal tool for sequencing platforms")
(description
"Flexbar preprocesses high-throughput nucleotide sequencing data
@@ -2647,7 +2648,7 @@ Moreover, trimming and filtering features are provided.
Flexbar increases
read mapping rates and improves genome and transcriptome assemblies. It
supports next-generation sequencing data in fasta/q and csfasta/q format from
Illumina, Roche 454, and the SOLiD platform.")
- (license license:gpl3)))
+ (license license:bsd-3)))
(define-public fraggenescan
(package
- branch master updated (f7618bf -> f8ee22f), Ricardo Wurmus, 2018/10/21
- 28/28: gnu: flexbar: Update to 3.4.0.,
Ricardo Wurmus <=
- 26/28: gnu: khmer: Update to 2.1.2., Ricardo Wurmus, 2018/10/21
- 22/28: gnu: edirect: Update to 10.2.20181018., Ricardo Wurmus, 2018/10/21
- 27/28: gnu: seqan: Update to 2.4.0., Ricardo Wurmus, 2018/10/21
- 24/28: gnu: fasttree: Use INVOKE., Ricardo Wurmus, 2018/10/21
- 23/28: gnu: express-beta-diversity: Update to 1.0.8., Ricardo Wurmus, 2018/10/21
- 20/28: gnu: discrover: Fetch from git., Ricardo Wurmus, 2018/10/21
- 17/28: gnu: Add texlive-latex-readarray., Ricardo Wurmus, 2018/10/21
- 18/28: gnu: Add texlive-latex-verbatimbox., Ricardo Wurmus, 2018/10/21
- 14/28: gnu: diamond: Fetch from git., Ricardo Wurmus, 2018/10/21
- 11/28: gnu: eolie: Update to 0.9.45., Ricardo Wurmus, 2018/10/21