comparison fastqc_site.xml @ 7:d820be692d74 draft

planemo upload for repository https://github.com/statonlab/docker-GRReport/tree/master/my_tools/rmarkdown_fastqc_site commit d91f269e8bc09a488ed2e005122bbb4a521f44a0-dirty
author mingchen0919
date Tue, 08 Aug 2017 12:36:13 -0400
parents
children a12e19571cf5
comparison
equal deleted inserted replaced
6:2f4df2be0572 7:d820be692d74
1 <tool id="fastqc_site" name="Fastqc Site" version="1.0.0">
2 <requirements>
3 <requirement type="package" version="1.14.1">bioconductor-deseq2</requirement>
4 <requirement type="package" version="1.20.0">r-getopt</requirement>
5 <requirement type="package" version="1.2">r-rmarkdown</requirement>
6 <requirement type="package" version="1.8.4">r-plyr</requirement>
7 <requirement type="package" version="1.1.0">r-stringr</requirement>
8 <requirement type="package" version="0.5.0">r-highcharter</requirement>
9 <requirement type="package" version="0.2">r-dt</requirement>
10 <requirement type="package" version="1.4.2">r-reshape2</requirement>
11 <requirement type="package" version="4.5.6">r-plotly</requirement>
12 <requirement type="package" version="0.2.0.1">r-formattable</requirement>
13 <requirement type="package" version="0.3.5">r-htmltools</requirement>
14 <requirement type="package" version="0.11.5">fastqc</requirement>
15 </requirements>
16 <description>
17 Implements FastQC analysis and display results in R Markdown website.
18 </description>
19 <stdio>
20 <regex match="Execution halted"
21 source="both"
22 level="fatal"
23 description="Execution halted." />
24 <regex match="Error in"
25 source="both"
26 level="fatal"
27 description="An undefined error occured, please check your intput carefully and contact your administrator." />
28 <regex match="Fatal error"
29 source="both"
30 level="fatal"
31 description="An undefined error occured, please check your intput carefully and contact your administrator." />
32 </stdio>
33 <command>
34 <![CDATA[
35
36 Rscript '${__tool_directory__}/fastqc_site_render.R'
37
38 ## 1. input data
39 -r $reads
40 -e $echo
41
42 ## 2. output report and report site directory
43 -o $fastqc_site
44 -d $fastqc_site.files_path
45
46 ## 3. Rmd templates sitting in the tool directory
47
48 ## _site.yml and index.Rmd template files
49 -s '${__tool_directory__}/_site.yml'
50 -i '${__tool_directory__}/index.Rmd'
51
52 ## other Rmd body template files
53 -p '${__tool_directory__}/01_evaluation_overview.Rmd'
54 -a '${__tool_directory__}/02_fastqc_original_reports.Rmd'
55 -b '${__tool_directory__}/1_per_base_quality_scores.Rmd'
56 -c '${__tool_directory__}/2_per_base_N_content.Rmd'
57 -f '${__tool_directory__}/3_per_sequence_quality_scores.Rmd'
58 -g '${__tool_directory__}/4_per_sequence_GC_content.Rmd'
59 -h '${__tool_directory__}/5_per_base_sequence_content.Rmd'
60
61 ]]>
62 </command>
63 <inputs>
64 <param format="fastq,fastq.gz,fastq.bz2,bam,sam" multiple="true" name="reads" type="data" label="Short reads data from history" />
65 <param type="boolean" name="echo" truevalue="TRUE" falsevalue="FALSE" checked="false" label="Display analysis code in report?" />
66 </inputs>
67 <outputs>
68 <data format="html" name="fastqc_site" label="fastqc site" />
69 </outputs>
70 <citations>
71 <citation type="bibtex">
72 @misc{bioinformatics2014fastqc,
73 title={FastQC},
74 author={Bioinformatics, Babraham},
75 year={2014}
76 }
77 </citation>
78 <citation type="bibtex">
79 @article{allaire2016rmarkdown,
80 title={rmarkdown: Dynamic Documents for R, 2016},
81 author={Allaire, J and Cheng, Joe and Xie, Yihui and McPherson, Jonathan and Chang, Winston and Allen, Jeff and Wickham, Hadley and Atkins, Aron and Hyndman, Rob},
82 journal={R package version 0.9},
83 volume={6},
84 year={2016}
85 }
86 </citation>
87 <citation type="bibtex">
88 @book{xie2015dynamic,
89 title={Dynamic Documents with R and knitr},
90 author={Xie, Yihui},
91 volume={29},
92 year={2015},
93 publisher={CRC Press}
94 }
95 </citation>
96 <citation type="bibtex">
97 @misc{plotly2017,
98 title = {plotly: Create Interactive Web Graphics via 'plotly.js'},
99 author = {Carson Sievert and Chris Parmer and Toby Hocking and Scott Chamberlain and Karthik Ram and Marianne Corvellec and Pedro Despouy},
100 year = {2017},
101 note = {R package version 4.6.0},
102 url = {https://CRAN.R-project.org/package=plotly},
103 }
104 </citation>
105 <citation type="bibtex">
106 @misc{highcharter2017,
107 title = {highcharter: A Wrapper for the 'Highcharts' Library},
108 author = {Joshua Kunst},
109 year = {2017},
110 note = {R package version 0.5.0},
111 url = {https://CRAN.R-project.org/package=highcharter},
112 }
113 </citation>
114 <citation type="bibtex">
115 @misc{formattable2016,
116 title = {formattable: Create 'Formattable' Data Structures},
117 author = {Kun Ren and Kenton Russell},
118 year = {2016},
119 note = {R package version 0.2.0.1},
120 url = {https://CRAN.R-project.org/package=formattable},
121 }
122 </citation>
123 </citations>
124 </tool>