view data_manager/bowtie_index_builder.xml @ 2:086edfff112b draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_bowtie_index_builder commit 356a04ca3fb988f20fb63ccf053ef9f62a3d002f
author iuc
date Sun, 18 Sep 2016 08:21:09 -0400
parents 0a0c648498e2
children 86e9af693a33
line wrap: on
line source

<tool id="bowtie_index_builder_data_manager" name="Bowtie index" tool_type="manage_data" version="0.0.3">
    <description>builder</description>
    <requirements>
        <requirement type="package" version="1.1.2">bowtie</requirement>
    </requirements>
    <command interpreter="python">
        bowtie_index_builder.py
            "${out_file}"
            --fasta_filename "${all_fasta_source.fields.path}"
            --fasta_dbkey "${all_fasta_source.fields.dbkey}"
            --fasta_description "${all_fasta_source.fields.name}"
            --data_table_name "bowtie_indexes"
    </command>
    <inputs>
        <param name="all_fasta_source" type="select" label="Source FASTA Sequence">
            <options from_data_table="all_fasta"/>
        </param>
        <param type="text" name="sequence_name" value="" label="Name of sequence" help="Leave blank to use all_fasta name" />
        <param type="text" name="sequence_id" value="" label="ID for sequence" help="Leave blank to use all_fasta id "/>
    </inputs>
    <outputs>
        <data name="out_file" format="data_manager_json"/>
    </outputs>
    <help>

.. class:: infomark

**Notice:** If you leave name, description, or id blank, it will be generated automatically. 

    </help>
</tool>