gnu: trim-galore: Add pigz.
* gnu/packages/bioinformatics.scm (trim-galore)[inputs]: Add pigz. [arguments]: Embed reference to pigz.
This commit is contained in:
parent
5f1e31094d
commit
58d8225ddb
|
@ -10920,7 +10920,11 @@ with narrow binding events such as transcription factor ChIP-seq.")
|
|||
(("\"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 @@ with narrow binding events such as transcription factor ChIP-seq.")
|
|||
(inputs
|
||||
`(("gzip" ,gzip)
|
||||
("perl" ,perl)
|
||||
("pigz" ,pigz)
|
||||
("cutadapt" ,cutadapt)))
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)))
|
||||
|
|
Loading…
Reference in New Issue