annotate subtractBed.xml @ 0:4fb5ea02b441 draft

Uploaded
author iuc
date Tue, 15 Jul 2014 14:42:23 -0400
parents
children 7511823bdea1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
1 <tool id="bedtools_subtractbed" name="SubtractBed" 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 bedtools subtract
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
10 $strand
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
11 -a $inputA
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
12 -b $inputB
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
13 -f $overlap
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
14 $removeIfOverlap
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
15 &gt; $output
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
16 </command>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
17 <inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
18 <param format="bed,vcf,gff,gff3" name="inputA" type="data" label="BED/VCF/GFF file"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
19 <param format="bed,gff,vcf,gff3" name="inputB" type="data" label="BED/VCF/GFF file"/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
20 <expand macro="strand2" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
21 <expand macro="overlap" />
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
22
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
23 <param name="strand" type="select" label="Calculation based on strandedness?">
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
24 <option value="" selected="True">Overlaps on either strand</option>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
25 <option value="-s">Only overlaps occurring on the **same** strand.</option>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
26 <option value="-S">Only overlaps occurring on the **opposite** strand.</option>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
27 </param>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
28
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
29 <param name="removeIfOverlap" type="select" label="Calculation based on strandedness?">
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
30 <option value="" selected="True">Dont Remove entire feature on overlap</option>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
31 <option value="-A">Remove entire feature if any overlap. That is, by default, only subtract the portion of A that overlaps B. Here, if any overlap is found (or -f amount), the entire feature is removed.</option>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
32 <option value="-N">Same as -A except when used with -f, the amount is the sum of all features (not any single feature).</option>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
33 </param>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
34 </inputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
35 <outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
36 <data format_source="inputA" name="output" metadata_source="inputA" label=""/>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
37 </outputs>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
38 <help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
39
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
40 **What it does**
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
41
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
42 bedtools subtract searches for features in B that overlap A. If an overlapping feature is found in B, the overlapping portion is removed from A and the remaining portion of A is reported. If a feature in B overlaps all of a feature in A, the A feature will not be reported.
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
43
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
44 .. image:: $PATH_TO_IMAGES/subtract-glyph.png
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
45
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
46 @REFERENCES@
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
47 </help>
4fb5ea02b441 Uploaded
iuc
parents:
diff changeset
48 </tool>