Files
galaxy/test/functional/tools/exit_code_from_file.xml
T
John Chilton ddeff4ec0c New model tool that filters failed datasets out of a collection.
This differs from a traditional tool in that its inputs don't need to be in an 'ok' state and instead of creating new datasets and duplicating data on disk, new HDAs are created from the existing datasets.
2016-06-10 13:34:18 -04:00

14 lines
335 B
XML

<tool id="exit_code_from_file" name="exit_code_from_file">
<command detect_errors="exit_code">
sh -c "exit `cat $input`"
</command>
<inputs>
<param name="input" type="data" label="Exit code file" />
</inputs>
<outputs>
<data name="out_file1" />
</outputs>
<help>
</help>
</tool>