annotate tools/dada2-filter-and-trim.xml @ 0:44579a4814b7 draft

planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
author dfornika
date Tue, 01 May 2018 19:10:14 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
1 <tool id="dada2-filter-and-trim" name="dada2: Filter and Trim" version="1.8">
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
2 <description>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
3 Filters and trims an input fastq file(s) (can be compressed) based on several user-definable criteria, and outputs fastq file(s) (compressed by default) containing those trimmed reads which passed the filters. Corresponding forward and reverse fastq file(s) can be provided as input, in which case filtering is performed on the forward and reverse reads independently, and both reads must pass for the read pair to be output.
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
4 </description>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
5 <requirements>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
6 <requirement type="package" version="1.8">bioconductor-dada2</requirement>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
7 <requirement type="package" version="1.3.2">r-optparse</requirement>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
8 </requirements>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
9 <edam_operations>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
10 <edam_operation>operation_3192</edam_operation>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
11 <edam_operation>operation_3695</edam_operation>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
12 </edam_operations>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
13 <command detect_errors="exit_code"><![CDATA[
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
14 Rscript dada2-filter-and-trim.R \
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
15 --fwd '$fwd' \
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
16 --rev '$rev' \
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
17 --filt '$filt' \
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
18 --filt.rev '$filt.rev' \
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
19 ]]></command>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
20 <inputs>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
21 <param name="fwd" type="data" multiple="True"/>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
22 <param name="rev" type="data" multiple="True"/>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
23 </inputs>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
24 <outputs>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
25 <data name="filt" format="fastqsanger.gz" />
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
26 <data name="filt.rev" format="fastqsanger.gz" />
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
27 </outputs>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
28 <citations>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
29 <citation type="doi">10.1038/nmeth.3869</citation>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
30 </citations>
44579a4814b7 planemo upload for repository https://github.com/dfornika/dada2-galaxy commit a2ae309ba8ff0ef18a1e4abbe5d1ef412e4f69a9
dfornika
parents:
diff changeset
31 </tool>