view data_manager/data_manager_sam_fasta_index_builder.xml @ 4:1865e693d8b2 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/data_managers/data_manager_sam_fasta_index_builder commit 471c497769f0dbfa92ec1a91f4044062cb5f7a83-dirty
author iuc
date Thu, 14 Sep 2017 15:30:56 -0400
parents 1f54e98616af
children cc4ef4d38cf9
line wrap: on
line source

<tool id="sam_fasta_index_builder" name="SAM FASTA index" tool_type="manage_data" version="0.0.2">
    <description>builder</description>
    <requirements>
        <requirement type="package" version="1.5">samtools</requirement>
    </requirements>
    <command detect_errors="exit_code"><![CDATA[
        python '$__tool_directory__/data_manager_sam_fasta_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 fasta_indexes
    ]]></command>
    <inputs>
        <param name="all_fasta_source" type="select" label="Source FASTA Sequence">
            <options from_data_table="all_fasta"/>
        </param>
        <param name="sequence_name" type="text" value="" label="Name of sequence" />
        <param name="sequence_id" type="text" value="" label="ID for sequence" />
    </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>