annotate tools/mytools/collapseBed.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="collapseBed" name="collapse">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>intervals</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">collapseBed2.py $input $strand $score > $outfile </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 <param name="input" format="interval" type="data" label="Original file"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 <param name="strand" size="10" type="integer" value="6" label="strand column" help="set 0 to ignore strand information" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <param name="score" size="10" type="integer" value="5" label="for duplicate lines, keep the one with max value in column" help="set 0 to ignore score information" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <data format="input" name="outfile" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 This tool collapses genomic intervals that have the same position (and strandness if specified) and output a set of unique intervals.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 </tool>