view myTools/toolExample.xml @ 1:a5f711786a86 draft default tip

Uploaded
author jeltje
date Wed, 07 Jan 2015 22:03:51 -0500
parents 65489579eace
children
line wrap: on
line source

<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="testinput.fa"/>
      <output name="out_file1" file="testoutput.txt"/>
    </test>
  </tests>

  <help>
This tool computes GC content from a FASTA file.
  </help>
</tool>