view filter_fasta.xml @ 2:c6b639c23af8 draft

Uploaded
author bornea
date Thu, 04 Aug 2016 16:03:19 -0400
parents c8b26d6d385b
children 533e887cc13b
line wrap: on
line source

<tool id="filter_fasta" name="Filter FASTA">
  <description></description>
  <command interpreter="python">filter_fasta.py $input1 $input2 $output</command>
  <inputs>
    <param format="txt" name="input1" type="data" label="FASTA Database"/>
    <param format="txt" name="input2" type="data" label="Scaffold Report"/>
  </inputs>
  <outputs>
    <data format="txt" name="output" label="Merged Scaffold Report"/>    
  </outputs>
  <stdio>
    <regex match="Error|error"
     source="stdout"
           level="fatal"
           description="Unknown error"/>
    <regex match="Error|error"
     source="stderr"
           level="fatal"
           description="Unknown error"/>
    <regex match="Error: bad bait"
           source="stdout"
           level="fatal"
           description="Error: bad bait"/>
  </stdio> 
  <tests>
    <test>
      <param name="input" value="fa_gc_content_input.fa"/>
      <output name="out_file1" file="fa_gc_content_output.txt"/>
    </test>
  </tests>
  <help>
  </help>
</tool>