view data_path.xml @ 9:5b816b501285 draft default tip

planemo upload
author jowong
date Mon, 26 Nov 2018 02:13:58 -0500
parents 82569b47df8d
children
line wrap: on
line source

<tool id="data_path" name="Data Path" version="1.0.0">
    <description>creates a txt file of the paths of items in a data collection</description>
    <command interpreter="python"><![CDATA[
        data_path.py -i #for $path in $paths# $path.forward #end for# -j #for $path in $paths# $path.reverse #end for#
    ]]></command>
    <inputs>
        <param name="paths" type="data_collection" format="data" label="Collection of files" help="" optional="False" multiple="True"/>
    </inputs>
    <outputs>
        <data name="output" label="Paths of ${on_string}" format="txt" from_work_dir="paths.txt"/>
    </outputs>
    <help>
This tool outputs the paths of the files in a data collection
    </help>
    <citations>
    </citations>
</tool>