mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: pigx-rnaseq: Fix build.
* gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Add phase 'patch-knitr.
This commit is contained in:
parent
1600d5cd3a
commit
0c26c8da9d
1 changed files with 7 additions and 0 deletions
|
@ -10455,6 +10455,13 @@ (define-public pigx-rnaseq
|
||||||
`(#:parallel-tests? #f ; not supported
|
`(#:parallel-tests? #f ; not supported
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
;; knitr 0.39 changes the default behavior of how graphics are
|
||||||
|
;; included.
|
||||||
|
(add-after 'unpack 'patch-knitr
|
||||||
|
(lambda _
|
||||||
|
(substitute* "scripts/runDeseqReport.R"
|
||||||
|
(("outFile <- paste0" m)
|
||||||
|
(string-append "options(knitr.graphics.rel_path = FALSE)\n" m)))))
|
||||||
;; "test.sh" runs the whole pipeline, which takes a long time and
|
;; "test.sh" runs the whole pipeline, which takes a long time and
|
||||||
;; might fail due to OOM. The MultiQC is also resource intensive.
|
;; might fail due to OOM. The MultiQC is also resource intensive.
|
||||||
(add-after 'unpack 'disable-resource-intensive-test
|
(add-after 'unpack 'disable-resource-intensive-test
|
||||||
|
|
Loading…
Reference in a new issue