view tag2cluster.xml @ 0:0475e4175855 draft default tip

planemo upload commit 81ece2551cea27cbd0e718ef5b7a2fe8d4abd071-dirty
author yqiancolumbia
date Mon, 30 Apr 2018 05:25:11 -0400
parents
children
line wrap: on
line source

<tool id="tag2cluster" name="Cluster genomic regions">
	<command interpreter="perl">
		/home/galaxy/tools/CTK/tag2cluster.pl -v $bigFile $strand -maxGap $MaxGap $input $output
	</command>
	<inputs>
		<param type="data" format="bed" name="input" label="Input BED file of unique CLIP tags (.gz file accepted)"/>
		
		<param name="bigFile" type="boolean" truevalue="-big" falsevalue="" checked="no" label="This is a big file (over 6M lines)" />
		<param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="yes" label="Same strand required" />
		<param name="MaxGap" type="integer" value="-1" label="The max gap to be considered as an overlap" />

	</inputs>
	<outputs>
		<data name="output" format="bed" />
	</outputs>
	<help>
.. class:: infomark

**What it does**

This tool will cluster overlapping tags or nearby regions into clusters and report tag count in each cluster.
It will take as input files in BED format of unique CLIP tags and output files in BED format of clustered overlapping CLIP tags.

	</help>

</tool>