view annotateBedWrapper.xml @ 2:21a126fcfd13 draft

Test2
author xiaoyi-cao
date Sun, 02 Dec 2012 14:38:33 -0500
parents 0cba7d8f48ab
children 37d0c1ec2c87
line wrap: on
line source

<tool id="annotateBed" name="annotateBed">

    <description>TYPE_DESCRIPTION_HERE</description>

    <command>
	bedtools annotate 
	$countflag
	-i '$inputRegion'
	-names 
	#for $s in enumerate($annotateColumn)
		${s.colname}
	#end for
	-files
	#for $s in enumerate($annotateColumn)
		${s.colfile}
	#end for
	&gt; '$output'
	</command>

    <inputs>

        <param name="countflag" type="boolean" label="Use count to annotate" truevalue="-count" falsevalue="" />
        <param format="bed" name="inputRegion" type="data" label="The region to be annotated" />
		<repeat name="annotateColumn" title="Column">
			<param name="colname" type="text" label="Column name" />
			<param name="colfile" type="data" format="bed" label="BED file to annotate for the column" />
		</repeat>

    </inputs>
    <outputs>
        <data format="bed" name="output" metadata_source="input" label="${inputRegion.name} annotated" />
    </outputs>

<help>

.. class:: infomark

IMPORTANT INFORMATION

----

WRITE HELP HERE

</help>

</tool>