gnu: trim-galore: Add pigz.

* gnu/packages/bioinformatics.scm (trim-galore)[inputs]: Add pigz.
[arguments]: Embed reference to pigz.
This commit is contained in:
Ricardo Wurmus 2019-03-27 11:32:08 +01:00
parent 5f1e31094d
commit 58d8225ddb
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -10920,7 +10920,11 @@ (define-public trim-galore
(("\"gunzip")
(string-append "\""
(assoc-ref inputs "gzip")
"/bin/gunzip")))
"/bin/gunzip"))
(("\"pigz")
(string-append "\""
(assoc-ref inputs "pigz")
"/bin/pigz")))
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
@ -10932,6 +10936,7 @@ (define-public trim-galore
(inputs
`(("gzip" ,gzip)
("perl" ,perl)
("pigz" ,pigz)
("cutadapt" ,cutadapt)))
(native-inputs
`(("unzip" ,unzip)))