view tools/concatenator/concatenator.xml @ 0:6a73638d707c draft

Initial Upload
author matnguyen
date Fri, 16 Nov 2018 15:28:27 -0500
parents
children
line wrap: on
line source

<tool id="concatenator" name="Concatenator" version="1.0.0">
    <description>creates a list of accessions and the associated path to their variant calls</description>
    <requirements>
        <requirement type="package" version="0.0.1">pathogist</requirement>
    </requirements>

    <command><![CDATA[
        $__tool_directory__/concatenator -n #for $path in $paths# ${path.element_identifier} #end for#
        -i #for $path in $paths# $path #end for#
    ]]></command>

    <inputs>
        <param name="paths" type="data" label="Collection of calls" help="" optional="False" multiple="True"/>
    </inputs>

    <outputs>
        <data name="output" label="Paths of ${on_string}" format="txt" from_work_dir="paths.txt"/>
    </outputs>

    <help>

    </help>

    <citations>

    </citations>
</tool>