diff roche454/sfffile.xml @ 0:f036c7107601

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author edward-kirton
date Tue, 07 Jun 2011 17:50:32 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/roche454/sfffile.xml	Tue Jun 07 17:50:32 2011 -0400
@@ -0,0 +1,29 @@
+<tool id="sfffile" name="Sff File" version="1.0.0">
+<description>Select reads to include or exclude from one or more input Sff files</description>
+<command>sfffile -$include_or_exclude $list_file -o $output
+#for $i in $inputs
+${i.input}
+#end for
+</command>
+<inputs>
+    <repeat name="inputs" title="Input Files">
+        <param name="input" type="data" format="sff" label="Sff file"/>
+    </repeat>
+    <param name="list_file" type="data" format="text" label="List of read IDs"/>
+    <param name="include_or_exclude" type="select" label="Include or exclude the named reads?">
+        <option value='i' selected='true'>include</option>
+        <option value='e'>exclude</option>
+    </param>
+</inputs>
+
+<outputs>
+    <data name="output" format="sff"/>
+</outputs>
+
+<help>
+
+**What it does**
+
+This tool creates an Sff file, either including or excluding named reads.
+</help>
+</tool>