annotate overlapBed.xml @ 0:b8348686a0b9 draft

Imported from capsule None
author iuc
date Tue, 04 Nov 2014 01:45:04 -0500
parents
children 82aac94b06c3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
1 <tool id="bedtools_overlapbed" name="OverlapBed" version="@WRAPPER_VERSION@.0">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
2 <description></description>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
3 <macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
4 <import>macros.xml</import>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
5 </macros>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
6 <expand macro="requirements" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
7 <expand macro="stdio" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
8 <command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
9 overlap
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 -i $inputA
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -cols $cols
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 &gt; $output
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 <param name="cols" type="text" value="" area="True" size="20x10" label="Specify the columns (1-based) for the starts and ends of the features for which you’d like to compute the overlap/distance. The columns must be listed in the following order: start1,end1,start2,end2" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 <data format_source="inputA" name="output" metadata_source="inputA" label="Overlap of ${inputA.name}"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 overlap computes the amount of overlap (in the case of positive values) or distance (in the case of negative values) between feature coordinates occurring on the same input line and reports the result at the end of the same line. In this way, it is a useful method for computing custom overlap scores from the output of other BEDTools.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 @REFERENCES@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 </tool>