view filter_by_an_id.xml @ 0:9156a440afed draft default tip

Improved some datatype handling
author galaxyp
date Thu, 20 Jun 2013 11:09:24 -0400
parents
children
line wrap: on
line source

<tool id="filter_by_an_id" version="0.1" name="Filer FASTA by IDs">
  <description>Extract sequences from a FASTA file based on a list of IDs</description>
  <command interpreter="python">filter_by_an_id.py $identifiers $input $output</command>
  <inputs>
    <param format="fasta" name="input" type="data" label="FASTA sequences"/>
    <param format="txt" name="identifiers" type="data" label="List of IDs to extract sequences for"/>
  </inputs>
  <outputs>
    <data format="fasta" name="output" label="FASTA sequences for ${identifiers.name}"/>
  </outputs>
  <help>
  </help>
</tool>