-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scripts: Fix failure to find logo file.
This is necessary due to a breaking change in knitr 0.39.
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# | ||
# Copyright © 2017 Bora Uyar <[email protected]> | ||
# Copyright © 2018 Jonathan Ronen <[email protected]> | ||
# Copyright © 2018 Ricardo Wurmus <[email protected]> | ||
# Copyright © 2018, 2022 Ricardo Wurmus <[email protected]> | ||
# | ||
# This file is part of the PiGx RNAseq Pipeline. | ||
# | ||
|
@@ -74,7 +74,10 @@ runReport <- function(reportFile, | |
logo, | ||
selfContained = TRUE, | ||
quiet = FALSE) { | ||
|
||
|
||
# knitr 0.39 changed the default behavior. | ||
options(knitr.graphics.rel_path = FALSE) | ||
|
||
outFile <- paste0(prefix, '.deseq.report.html') | ||
|
||
htmlwidgets::setWidgetIdSeed(1234) | ||
|