mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 05:45:37 +08:00
24 lines
592 B
XML
24 lines
592 B
XML
<?xml version="1.0"?>
|
|
|
|
<tool name="Echo" id="echo1">
|
|
|
|
<description>
|
|
echoes parameters
|
|
</description>
|
|
|
|
<command interpreter="python">echo.py $input $database $output </command>
|
|
|
|
<inputs>
|
|
<param format="tabular" name="input" type="data" label="Input stuff"/>
|
|
<param type="select" name="database" label="Database">
|
|
<option value="alignseq.loc">Human (hg18)</option>
|
|
<option value="faseq.loc">Fly (dm3)</option>
|
|
</param>
|
|
</inputs>
|
|
|
|
<outputs>
|
|
<data format="input" name="output" label="Blat on ${database.value_label}" />
|
|
</outputs>
|
|
|
|
</tool>
|