diff myTools/toolExample.xml @ 0:65489579eace draft

Uploaded
author jeltje
date Wed, 07 Jan 2015 14:10:22 -0500
parents
children a5f711786a86
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/myTools/toolExample.xml	Wed Jan 07 14:10:22 2015 -0500
@@ -0,0 +1,30 @@
+<tool id="fa_gc_content_1" name="Compute GC content">
+  <description>for each sequence in a file</description>
+  <command interpreter="perl">toolExample.pl $input $output</command>
+  <inputs>
+    <param format="fasta" name="input" type="data" label="Source file"/>
+  </inputs>
+  <outputs>
+    <data format="tabular" name="output" />
+  </outputs>
+
+  <tests>
+    <test>
+      <param name="input" value="input.fa"/>
+      <output name="out_file1" file="testoutput.txt"/>
+    </test>
+  </tests>
+
+  <help>
+This tool computes GC content from a FASTA file.
+  </help>
+
+<tests>
+    <test>
+      <param name="input1" value="in.fa" />
+      <output name="output" file="out.txt" />     
+    </test>
+</tests>
+
+</tool>
+