Files
galaxy/test/functional/tools/data_manager.xml
T
John Chilton b0e43e567e Allow specification of multiple data manager configuration files...
... use this to create API functional tests for data managers.
2014-12-15 00:20:35 -05:00

17 lines
635 B
XML

<tool id="data_manager" name="Test Data Manager" tool_type="manage_data" version="0.0.1">
<configfiles>
<configfile name="static_test_data">{"data_tables": {"testbeta": [{"value": "newvalue", "path": "newvalue.txt"}]}}</configfile>
</configfiles>
<command>
mkdir $out_file.files_path ;
echo "A new value" > $out_file.files_path/newvalue.txt;
cp $static_test_data $out_file
</command>
<inputs>
<param type="text" name="ignored_value" value="" label="Ignored" />
</inputs>
<outputs>
<data name="out_file" format="data_manager_json"/>
</outputs>
</tool>