comparison bdss_client_render.R @ 7:efb1938c3020 draft

planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_bdss_client commit ea6df97960569d247d64be1549aa90768c9786f4-dirty
author mingchen0919
date Wed, 11 Oct 2017 13:21:54 -0400
parents
children 32e9649f6939
comparison
equal deleted inserted replaced
6:415ebc9016da 7:efb1938c3020
1 ##======= Handle arguments from command line ========
2 # setup R error handline to go to stderr
3 options(show.error.messages=FALSE,
4 error=function(){
5 cat(geterrmessage(), file=stderr())
6 quit("no", 1, F)
7 })
8
9 # we need that to not crash galaxy with an UTF8 error on German LC settings.
10 loc = Sys.setlocale("LC_MESSAGES", "en_US.UTF-8")
11
12 # suppress warning
13 options(warn = -1)
14
15 options(stringsAsFactors=FALSE, useFancyQuotes=FALSE)
16 args = commandArgs(trailingOnly=TRUE)
17
18 suppressPackageStartupMessages({
19 library(getopt)
20 library(tools)
21 })
22
23 #/////////////////////// SINK WARNINGS AND ERRORS TO A FILE FOR DEBUGGING ///////////
24 zz = file('warnings_and_errors.txt')
25 sink(zz)
26 sink(zz, type = 'message')
27
28 # column 1: the long flag name
29 # column 2: the short flag alias. A SINGLE character string
30 # column 3: argument mask
31 # 0: no argument
32 # 1: argument required
33 # 2: argument is optional
34 # column 4: date type to which the flag's argument shall be cast.
35 # possible values: logical, integer, double, complex, character.
36 ##------- 1. input data ---------------------
37 spec_list=list()
38 spec_list$URLs = c('urls', 'i', '1', 'character')
39 spec_list$ECHO = c('echo', 'e', '1', 'character')
40 ##--------2. output report and outputs --------------
41 spec_list$REPORT_HTML = c('report_html', 'r', '1', 'character')
42 spec_list$OUTPUT_DIR = c('output_dir', 'd', '1', 'character')
43 spec_list$SINK_OUTPUT = c('sink_message', 's', '1', 'character')
44 ##--------3. Rmd templates in the tool directory ----------
45 spec_list$bdss_client_sra_se_RMD = c('bdss_client_sra_se_rmd', 't', '1', 'character')
46
47 spec = t(as.data.frame(spec_list))
48 opt = getopt(spec)
49
50 #------ Load libraries ---------
51 library(rmarkdown)
52 library(htmltools)
53 library(dplyr)
54 library(RCurl)
55
56 #----- 1. create the report directory ------------------------
57 dir.create(opt$output_dir)
58
59 #----- 2. generate Rmd files with Rmd templates --------------
60 # a. templates without placeholder variables:
61 # copy templates from tool directory to the working directory.
62 # b. templates with placeholder variables:
63 # substitute variables with user input values and place them in the working directory.
64
65 #----- 01 bdss_client_sra_se.Rmd -----------------------
66 readLines(opt$bdss_client_sra_se_rmd) %>%
67 (function(x) {
68 gsub('URLS', opt$sra_accession, x)
69 }) %>%
70 (function(x) {
71 gsub('ECHO', opt$echo, x)
72 }) %>%
73 (function(x) {
74 gsub('OUTPUT_DIR', opt$output_dir, x)
75 }) %>%
76 (function(x) {
77 fileConn = file('bdss_client_sra_se.Rmd')
78 writeLines(x, con=fileConn)
79 close(fileConn)
80 })
81
82 #------ 3. render all Rmd files --------
83 render('bdss_client_sra_se.Rmd', output_file = opt$report_html)
84
85
86 #-------4. manipulate outputs -----------------------------
87
88
89
90
91
92 sink()
93 #/////////// END OF SINK OUTPUT ///////////////////////////