| 1 | <?xml version="1.0"?> |
|---|
| 2 | |
|---|
| 3 | <tool name="Echo" id="echo1"> |
|---|
| 4 | |
|---|
| 5 | <description> |
|---|
| 6 | echoes parameters |
|---|
| 7 | </description> |
|---|
| 8 | |
|---|
| 9 | <command interpreter="python">echo.py $input $database $output </command> |
|---|
| 10 | |
|---|
| 11 | <inputs> |
|---|
| 12 | <param format="tabular" name="input" type="data" label="Input stuff"/> |
|---|
| 13 | <param type="select" name="database" label="Database"> |
|---|
| 14 | <option value="alignseq.loc">Human (hg18)</option> |
|---|
| 15 | <option value="faseq.loc">Fly (dm3)</option> |
|---|
| 16 | </param> |
|---|
| 17 | </inputs> |
|---|
| 18 | |
|---|
| 19 | <outputs> |
|---|
| 20 | <data format="input" name="output" label="Blat on ${database.value_label}" /> |
|---|
| 21 | </outputs> |
|---|
| 22 | |
|---|
| 23 | </tool> |
|---|