gnu: pigx-rnaseq: Disable memory hungry test.
* gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Add phase to disable a memory hungry test.
This commit is contained in:
parent
77166eb758
commit
fe52a215e5
|
@ -12677,6 +12677,13 @@ once. This package provides tools to perform Drop-seq analyses.")
|
||||||
`(#:parallel-tests? #f ; not supported
|
`(#:parallel-tests? #f ; not supported
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
;; "test.sh" runs STAR, which requires excessive amounts of memory.
|
||||||
|
(add-after 'unpack 'disable-resource-intensive-test
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile.in"
|
||||||
|
(("(^ tests/test_trim_galore/test.sh).*" _ m) m)
|
||||||
|
(("^ test.sh") ""))
|
||||||
|
#t))
|
||||||
(add-after 'install 'wrap-executable
|
(add-after 'install 'wrap-executable
|
||||||
;; Make sure the executable finds all R modules.
|
;; Make sure the executable finds all R modules.
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue