annotate mytools/closestBed.xml @ 9:87eb5c5ddfe9

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