mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
20 lines
342 B
XML
20 lines
342 B
XML
<?xml version="1.0"?>
|
|
|
|
<tool name="Echo" id="echo1">
|
|
|
|
<description>
|
|
echoes parameters
|
|
</description>
|
|
|
|
<command interpreter="python">echo.py $input $output </command>
|
|
|
|
<inputs>
|
|
<param format="tabular" name="input" type="data" label="Input stuff"/>
|
|
</inputs>
|
|
|
|
<outputs>
|
|
<data format="input" name="output" />
|
|
</outputs>
|
|
|
|
</tool>
|