annotate tagBed.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_tagbed" name="TagBed" 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 bedtools tag
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 -i $inputA
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -files
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 #for $bed in beds:
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 $bed.input
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 #end for
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 -f $overlap
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 $strand
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 -tag $tag
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 $field
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 &gt; $output
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 <param format="bam" name="inputA" type="data" label="BAM file"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 <repeat name="beds" title="Add files" >
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26 </repeat>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 <expand macro="strand2" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28 <expand macro="overlap" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30 <param name="tag" type="text" value="YB" label="Dictate what the tag should be." />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
31 <param name="field" type="select" label="Use which field from the annotation files to populate tags?">
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
32 <option value="-labels" selected="True">labels</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 <option value="-scores">Scores</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34 <option value="-names">Names</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 <option value="-labels -intervals">Intervals</option>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36 </param>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
38 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
39 <data format="bed" name="output" label="" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
40 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
41 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
42
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
43 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
44
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
45 Annotates a BAM file based on overlaps with multiple BED/GFF/VCF files on the intervals in an input bam file
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
46
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
47 @REFERENCES@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
48
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
49 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
50 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
51 </tool>