comparison elastic_tool_render.R @ 0:869ad6fe76d0 draft default tip

planemo upload
author mingchen0919
date Tue, 27 Mar 2018 10:03:15 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:869ad6fe76d0
1 ##============ Sink warnings and errors to a file ==============
2 ## use the sink() function to wrap all code within it.
3 ##==============================================================
4 zz = file(Sys.getenv('TOOL_LOG'))
5 sink(zz)
6 sink(zz, type = 'message')
7
8 #------------import libraries--------------------
9 options(stringsAsFactors = FALSE)
10
11 library(rmarkdown)
12 #------------------------------------------------
13
14 #------------------------------------------------
15 options_and_arguments = read.table(paste0(Sys.getenv('REPORT_FILES_PATH'), '/options_and_arguments.txt'),
16 sep = '|', header = TRUE)
17
18
19 #-----------------render Rmd--------------
20 render(paste0(Sys.getenv('TOOL_INSTALL_DIR'), '/elastic_tool.Rmd'),
21 output_file = paste0(Sys.getenv('REPORT_FILES_PATH'), '/report.html'))
22
23 # for some unknow reason, directly using REPORT as the input value for output_file parameter
24 # in the render function can cause empty report file when the tool runs in batch mode.
25 # the solution is to render the rmarkdown to a explicitly specified file and then copy the
26 # file to ${REPORT}
27 system(command = 'cp ${REPORT_FILES_PATH}/report.html ${REPORT}')
28 #------------------------------------------
29
30
31 ##--------end of code rendering .Rmd templates----------------
32 sink()
33 ##=========== End of sinking output=============================