gnu: bwa-meth: Capture one more reference to "bwa".

Reported by: Alexander.Blume <Alexander.Blume@mdc-berlin.de>

* gnu/packages/bioinformatics.scm (bwa-meth)[arguments]: Capture invocation of
"bwa index" to retain reference to "bwa" package.
master
Ricardo Wurmus 2019-09-05 12:03:38 +02:00
parent 0e8b91dbc4
commit 79c6d8781b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 2 additions and 2 deletions

View File

@ -1767,8 +1767,8 @@ well as many of the command line options.")
(add-after 'unpack 'keep-references-to-bwa
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "bwameth.py"
(("bwa mem")
(string-append (which "bwa") " mem"))
(("bwa (mem|index)" _ command)
(string-append (which "bwa") " " command))
;; There's an ill-advised check for "samtools" on PATH.
(("^checkX.*") ""))
#t)))))