mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
- Include deprecated ``interpreter`` tag in XSD. (Closes galaxyproject/planemo#574) - Allow the use of ``$__tool_directory__`` in interpreter command (so we can actually call ``interpreter`` deprecated). - Include sample tools of both of these styles. - General improvements to the version command documentation.
21 lines
615 B
XML
21 lines
615 B
XML
<tool id="version_command_tool_dir" name="version_command_tool_dir" version="1.0.0">
|
|
<version_command>
|
|
python $__tool_directory__/version_command.py
|
|
</version_command>
|
|
<command>
|
|
cp $input $output
|
|
</command>
|
|
<inputs>
|
|
<param name="input" type="data" format="txt" />
|
|
</inputs>
|
|
<outputs>
|
|
<data name="output" format="txt" />
|
|
</outputs>
|
|
<tests>
|
|
<test>
|
|
<param name="input" value="simple_line.txt" />
|
|
<output name="out_file1" checksum="sha1$8156d7ca0f46ed7abac98f82e36cfaddb2aca041" />
|
|
</test>
|
|
</tests>
|
|
</tool>
|