view export_export_fasta.xml @ 12:20e02d166534 draft

"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/chado commit 1640878827bdc3870b6f34eded3a3f7571a1849f"
author gga
date Wed, 21 Aug 2019 05:07:24 -0400
parents 68353384ec7f
children
line wrap: on
line source

<?xml version="1.0"?>
<tool id="export_export_fasta" name="Chado export fasta" version="@WRAPPER_VERSION@">
    <description></description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements"/>
    <code file="chado.py"/>
    <command detect_errors="aggressive"><![CDATA[
@START_PSQL@ &&

chakin export export_fasta
'$organism'

 > '$results'

 @STOP_PSQL@
    ]]></command>
    <inputs>
        <expand macro="psql_target"/>
        <!-- arguments -->
        <param argument="--organism" type="select" dynamic_options="list_organisms()" label="Organism" />
        <expand macro="wait_for"/>

    </inputs>
    <outputs>
        <data format="fasta" name="results"/>
    </outputs>
    <help>
Export reference sequences as fasta.

@HELP@
    </help>
</tool>