gnu: pigx-rnaseq: Adjust to upgrade of salmon.

* gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Add phase
"use-latest-salmon".
This commit is contained in:
Ricardo Wurmus 2021-06-07 16:49:12 +02:00
parent bb38287570
commit be067c908c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -10371,6 +10371,13 @@ (define-public pigx-rnaseq
`(#:parallel-tests? #f ; not supported
#:phases
(modify-phases %standard-phases
;; See https://github.com/BIMSBbioinfo/pigx_rnaseq/issues/96
(add-after 'unpack 'use-latest-salmon
(lambda _
(substitute* "snakefile.py"
(("\"sa.bin\"") "\"pos.bin\""))
(substitute* "tests/test_salmon/test_salmon_index.sh.in"
(("sa.bin") "pos.bin"))))
;; "test.sh" runs STAR, which requires excessive amounts of memory.
(add-after 'unpack 'disable-resource-intensive-test
(lambda _