view tools/data_source/echo.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
line wrap: on
line source

<?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>