mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
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.
14 lines
335 B
XML
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>
|