mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add fastp.
* gnu/packages/bioinformatics.scm (fastp): New variable.
This commit is contained in:
parent
26bcd2a2b2
commit
a1b802454a
1 changed files with 36 additions and 0 deletions
|
@ -3450,6 +3450,42 @@ (define-public fastqc
|
||||||
@end itemize\n")
|
@end itemize\n")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public fastp
|
||||||
|
(package
|
||||||
|
(name "fastp")
|
||||||
|
(version "0.14.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/OpenGene/fastp.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1r6ms5zbf5rps4rgp4z73nczadl00b5rqylw8f684isfz27dp0xh"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; there are none
|
||||||
|
#:make-flags
|
||||||
|
(list (string-append "BINDIR=" (assoc-ref %outputs "out") "/bin"))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(add-before 'install 'create-target-dir
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(mkdir-p (string-append (assoc-ref outputs "out") "/bin"))
|
||||||
|
#t)))))
|
||||||
|
(inputs
|
||||||
|
`(("zlib" ,zlib)))
|
||||||
|
(home-page "https://github.com/OpenGene/fastp/")
|
||||||
|
(synopsis "All-in-one FastQ preprocessor")
|
||||||
|
(description
|
||||||
|
"Fastp is a tool designed to provide fast all-in-one preprocessing for
|
||||||
|
FastQ files. This tool has multi-threading support to afford high
|
||||||
|
performance.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public htslib
|
(define-public htslib
|
||||||
(package
|
(package
|
||||||
(name "htslib")
|
(name "htslib")
|
||||||
|
|
Loading…
Reference in a new issue