Skip to content
This repository has been archived by the owner. It is now read-only.

Download #37

Merged
merged 7 commits into from
Oct 17, 2019
Prev Previous commit
Next Next commit
download: omit filepath when using orca because it always prepends ab…
…solut path.
HendrikSchultheis committed Oct 16, 2019
commit b31580273d413740ee954f11de52b72a97d2eb56
5 changes: 3 additions & 2 deletions R/function.R
Original file line number Diff line number Diff line change
@@ -1246,8 +1246,9 @@ download <- function(file, filename, plot, width, height, ppi = 72, save_plot =
wd <- getwd()
on.exit(setwd(wd)) # make sure working directory will be restored
setwd(tempdir())
plotly::orca(p = plot, file = plot_file_pdf)
plotly::orca(p = plot, file = plot_file_png)
# Omit file path because orca adds it regardles of it already being there.
plotly::orca(p = plot, file = basename(plot_file_pdf))
plotly::orca(p = plot, file = basename(plot_file_png))
setwd(wd)
} else if (class(plot) == "Heatmap") { # TODO: find better way to check for complexHeatmap object
# complexHeatmap