annotate tools/mytools/closestBed.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="closestbed" name="closestBed">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>find closest features</description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command>closestBed -a $inputa -b $inputb $strandness -d $no -t $tie> $output_data
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 <param name="inputa" type="data" format="interval,bam,bed,gff,vcf" label="Input A (-a)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 <param name="inputb" type="data" format="interval,bam,bed,gff,vcf" label="Input B (-b)"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 <param name="strandness" type="select" label="Strand requirement" >
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 <option value="" selected="true"> none </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <option value="-s" > -s: closest feature on the same strand</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <option value="-S" > -S: closest feature on the opposite strand </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 <param name="no" label="Only look for non-overlaping features" type="boolean" truevalue="-no" falsevalue="" checked="False"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 <param name="tie" type="select" label="Strand requirement" >
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 <option value="all" selected="true"> report all ties </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <option value="first" > report the first that occurred</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <option value="last" > report the last that occurred </option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <data format="input" name="output_data"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 This is a wrapper for closestBed.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 </tool>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32