Mercurial > repos > mingchen0919 > rmarkdown_fastq_dump
comparison fastq_dump_se_render.R @ 0:1a11c4fd13d0 draft
planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastq_dump commit 65063d5b207a70df38a0bcb6fb57a8f9170d9e9b
author | mingchen0919 |
---|---|
date | Wed, 27 Sep 2017 21:41:29 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1a11c4fd13d0 |
---|---|
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$SRA_ACCESSION = c('sra_accession', 'i', '1', 'character') | |
39 spec_list$FORMAT = c('format', 'f', '1', 'character') | |
40 spec_list$ECHO = c('echo', 'e', '1', 'character') | |
41 ##--------2. output report and outputs -------------- | |
42 spec_list$REPORT_HTML = c('report_html', 'r', '1', 'character') | |
43 spec_list$OUTPUT_DIR = c('output_dir', 'd', '1', 'character') | |
44 spec_list$SINK_OUTPUT = c('sink_message', 's', '1', 'character') | |
45 ##--------3. Rmd templates in the tool directory ---------- | |
46 spec_list$FASTQ_DUMP_SE_RMD = c('fastq_dump_se_rmd', 't', '1', 'character') | |
47 | |
48 spec = t(as.data.frame(spec_list)) | |
49 opt = getopt(spec) | |
50 | |
51 #------ Load libraries --------- | |
52 library(rmarkdown) | |
53 library(htmltools) | |
54 library(dplyr) | |
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 fastq_dump_se.Rmd ----------------------- | |
66 readLines(opt$fastq_dump_se_rmd) %>% | |
67 (function(x) { | |
68 gsub('SRA_ACCESSION', opt$sra_accession, x) | |
69 }) %>% | |
70 (function(x) { | |
71 gsub('FORMAT', opt$format, x) | |
72 }) %>% | |
73 (function(x) { | |
74 gsub('ECHO', opt$echo, x) | |
75 }) %>% | |
76 (function(x) { | |
77 gsub('OUTPUT_DIR', opt$output_dir, x) | |
78 }) %>% | |
79 (function(x) { | |
80 fileConn = file('fastq_dump_se.Rmd') | |
81 writeLines(x, con=fileConn) | |
82 close(fileConn) | |
83 }) | |
84 | |
85 #------ 3. render all Rmd files -------- | |
86 render('fastq_dump_se.Rmd', output_file = opt$report_html) | |
87 | |
88 | |
89 #-------4. manipulate outputs ----------------------------- | |
90 | |
91 | |
92 | |
93 | |
94 | |
95 sink() | |
96 #/////////// END OF SINK OUTPUT /////////////////////////// |