view data_manager/gene_transfer_by_path_data_manager.xml @ 0:af7b7c99ae9f draft default tip

Uploaded
author brenninc
date Sun, 08 May 2016 04:08:18 -0400
parents
children
line wrap: on
line source

<tool id="gene_transfer_by_path_manager" name="gene_transfer by path data manager" tool_type="manage_data" version="0.0.1">
    <description>path inputer</description>
    <command interpreter="python">
        path_name_value_key_manager.py 
        --value "${value}" 
        --dbkey "${dbkey}" 
        --name "${name}" 
        --path "${path}" 
        --data_table_name "gene_transfer" 
        --json_output_file "${json_output_file}"
    </command>
    <inputs>
        <param name="value" type="text" value="" label="value field for the entry.  Defaults to name if left blank." />
        <param name="dbkey" type="text" value="" label="dbkey field for the entry.  Defaults to value if left blank." />
        <param name="name" type="text" value="" label="name field for the entry. Defaults to the file name from path if left blank." />
        <param name="path" type="text" value="" label="path field for the entry" />
    </inputs>
    <outputs>
        <data name="json_output_file" format="data_manager_json"/>
    </outputs>

    <help>
Adds a server path to the gene_transfer data table.

The tool will check the path exists but NOT check that it holds the expected data type.

If name is not provided the filename from path less the exstension is used.

If value is not provided, the name will be used (or its default)

If dbkey is not provided, the value will be used (or its default)

    </help>
    <citations>
    </citations>

</tool>