annotate overlapBed.xml @ 2:effb7b4e45ed draft

Uploaded
author iuc
date Fri, 05 Dec 2014 13:31:24 -0500
parents 7511823bdea1
children 315929597efb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
1 <tool id="bedtools_overlapbed" name="OverlapBed" version="@WRAPPER_VERSION@.0">
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
2 <description></description>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
3 <macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
4 <import>macros.xml</import>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
5 </macros>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
6 <expand macro="requirements" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
7 <expand macro="stdio" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
8 <command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
9 overlap
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
10 -i $inputA
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
11 -cols $cols
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
12 &gt; $output
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
13 </command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
14 <inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
15 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/>
4fb5ea02b441 Uploaded
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" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
17 </inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
18 <outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
19 <data format_source="inputA" name="output" metadata_source="inputA" label="Overlap of ${inputA.name}"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
20 </outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
21 <help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
22
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
23 **What it does**
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
24
4fb5ea02b441 Uploaded
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.
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
26
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
27 @REFERENCES@
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
28 </help>
1
7511823bdea1 Uploaded
iuc
parents: 0
diff changeset
29 <expand macro="citations" />
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
30 </tool>