diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/dada2-filter-and-trim.xml	Tue May 01 19:10:14 2018 -0400
@@ -0,0 +1,31 @@
+<tool id="dada2-filter-and-trim" name="dada2: Filter and Trim" version="1.8">
+  <description>
+    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.
+  </description>
+  <requirements>
+    <requirement type="package" version="1.8">bioconductor-dada2</requirement>
+    <requirement type="package" version="1.3.2">r-optparse</requirement>
+  </requirements>
+  <edam_operations>
+    <edam_operation>operation_3192</edam_operation>
+    <edam_operation>operation_3695</edam_operation>
+  </edam_operations>
+  <command detect_errors="exit_code"><![CDATA[
+    Rscript dada2-filter-and-trim.R \
+    --fwd '$fwd' \
+    --rev '$rev' \
+    --filt '$filt' \
+    --filt.rev '$filt.rev' \
+  ]]></command>
+  <inputs>
+    <param name="fwd" type="data" multiple="True"/>
+    <param name="rev" type="data" multiple="True"/>
+  </inputs>
+  <outputs>
+    <data name="filt" format="fastqsanger.gz" />
+    <data name="filt.rev" format="fastqsanger.gz" />
+  </outputs>
+  <citations>
+    <citation type="doi">10.1038/nmeth.3869</citation>
+  </citations>
+</tool>