comparison fastqc_site.xml @ 0:b7c115edd970 draft

planemo upload
author mingchen0919
date Tue, 27 Feb 2018 10:37:12 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b7c115edd970
1 <tool name="Fastqc site" id='aurora_fastqc_site' version="2.1.0">
2 <description>
3 Evaluate short reads with FastQC software on a single or a paired of untrimmed and trimmed reads
4 files.
5 </description>
6 <requirements>
7 <requirement type="package" version="1.15.0.6-0">pandoc</requirement>
8 <requirement type="package" version="1.20.0">r-getopt</requirement>
9 <requirement type="package" version="1.3">r-rmarkdown</requirement>
10 <requirement type="package" version="1.8.4">r-plyr</requirement>
11 <requirement type="package" version="1.1.0">r-stringr</requirement>
12 <requirement type="package" version="0.2">r-dt</requirement>
13 <requirement type="package" version="1.4.2">r-reshape2</requirement>
14 <requirement type="package" version="4.5.6">r-plotly</requirement>
15 <requirement type="package" version="0.3.5">r-htmltools</requirement>
16 <requirement type="package" version="0.11.5">fastqc</requirement>
17 <requirement type="package" version="0.9.10">xorg-libxrender</requirement>
18 <requirement type="package" version="1.2.2">xorg-libsm</requirement>
19 <requirement type="package" version="6.0">unzip</requirement>
20 </requirements>
21 <stdio>
22 <regex match="XXX" source="stderr" level="warning"
23 description="Check the warnings_and_errors.txt file for more details."/>
24 </stdio>
25 <command><![CDATA[
26
27
28 Rscript '${__tool_directory__}/fastqc_site_render.R'
29 -e $echo
30 -r $reads_1
31 -n '$reads_1.name'
32 -R $reads_2
33 -N '$reads_2.name'
34 -c $contaminants
35 -l $limits
36
37 -o $report
38 -d $report.files_path
39 -s $sink_message
40
41 -t '${__tool_directory__}'
42
43 ]]></command>
44 <inputs>
45 <param format="fastq,fastq.gz,fastq.bz2,bam,sam" name="reads_1" type="data" optional="false"
46 label="Short reads before trimming"
47 help="Short reads data from history. This could be reads before trimming."/>
48 <param format="fastq,fastq.gz,fastq.bz2,bam,sam" name="reads_2" type="data" label="Short reads after trimming"
49 help="Short reads data from history. This could be reads after trimming."/>
50 <param name="contaminants" type="data" format="tabular" optional="true" label="Contaminant list"
51 help="Specifies a non-default file which contains the list of adapter sequences which will be explicitly searched against the library. The file must contain sets of named adapters in the form name[tab]sequence. Lines prefixed with a hash will be ignored."/>
52 <param name="limits" type="data" format="txt" optional="true" label="Submodule and Limit specifing file"
53 help="Specifies a non-default file which contains a set of criteria which will be used to determine the warn/error limits for the various modules. This file can also be used to selectively remove some modules from the output all together. The format needs to mirror the default limits.txt file found in the Configuration folder."/>
54 <param type="boolean" name="echo" truevalue="TRUE" falsevalue="FALSE" checked="false"
55 label="Display analysis code in report?"/>
56 </inputs>
57 <outputs>
58 <data format="html" name="report" label="fastqc site"/>
59 <data format="txt" name="sink_message" label="Warnings and Errors" from_work_dir="warnings_and_errors.txt"/>
60 </outputs>
61 <citations>
62 <citation type="bibtex"><![CDATA[
63 @misc{bioinformatics2014fastqc,
64 title={FastQC},
65 author={Bioinformatics, Babraham},
66 year={2014}
67 }
68 ]]></citation>
69 <citation type="bibtex"><![CDATA[
70 @article{allaire2016rmarkdown,
71 title={rmarkdown: Dynamic Documents for R, 2016},
72 author={Allaire, J and Cheng, Joe and Xie, Yihui and McPherson, Jonathan and Chang, Winston and Allen, Jeff
73 and Wickham, Hadley and Atkins, Aron and Hyndman, Rob},
74 journal={R package version 0.9},
75 volume={6},
76 year={2016}
77 }
78 ]]></citation>
79 <citation type="bibtex"><![CDATA[
80 @book{xie2015dynamic,
81 title={Dynamic Documents with R and knitr},
82 author={Xie, Yihui},
83 volume={29},
84 year={2015},
85 publisher={CRC Press}
86 }
87 ]]></citation>
88 <citation type="bibtex"><![CDATA[
89 @misc{plotly2017,
90 title = {plotly: Create Interactive Web Graphics via 'plotly.js'},
91 author = {Carson Sievert and Chris Parmer and Toby Hocking and Scott Chamberlain and Karthik Ram and
92 Marianne Corvellec and Pedro Despouy},
93 year = {2017},
94 note = {R package version 4.6.0},
95 url = {https://CRAN.R-project.org/package=plotly},
96 }
97 ]]></citation>
98 <citation type="bibtex"><![CDATA[
99 @Book{ggplot22016,
100 author = {Hadley Wickham},
101 title = {ggplot2: Elegant Graphics for Data Analysis},
102 publisher = {Springer-Verlag New York},
103 year = {2009},
104 isbn = {978-0-387-98140-6},
105 url = {http://ggplot2.org},
106 }
107 ]]></citation>
108 </citations>
109 </tool>