annotate mytools/closestBed.xml @ 0:39217fa39ff2

Uploaded
author xuebing
date Tue, 13 Mar 2012 23:34:52 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
1 <tool id="closestbed" name="closestBed">
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
2 <description>find closest features</description>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
3 <command>closestBed -a $inputa -b $inputb $strandness -d $no -t $tie> $output_data
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
4 </command>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
5 <inputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
6 <param name="inputa" type="data" format="interval,bam,bed,gff,vcf" label="Input A (-a)"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
7 <param name="inputb" type="data" format="interval,bam,bed,gff,vcf" label="Input B (-b)"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
8 <param name="strandness" type="select" label="Strand requirement" >
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
9 <option value="" selected="true"> none </option>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
10 <option value="-s" > -s: closest feature on the same strand</option>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
11 <option value="-S" > -S: closest feature on the opposite strand </option>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
12 </param>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
13
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
14 <param name="no" label="Only look for non-overlaping features" type="boolean" truevalue="-no" falsevalue="" checked="False"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
15 <param name="tie" type="select" label="Strand requirement" >
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
16 <option value="all" selected="true"> report all ties </option>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
17 <option value="first" > report the first that occurred</option>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
18 <option value="last" > report the last that occurred </option>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
19 </param>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
20 </inputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
21 <outputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
22 <data format="input" name="output_data"/>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
23 </outputs>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
24 <help>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
25
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
26 **What it does**
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
27
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
28 This is a wrapper for closestBed.
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
29
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
30 </help>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
31 </tool>
39217fa39ff2 Uploaded
xuebing
parents:
diff changeset
32