annotate bedpeToBam.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_bedpetobam" name="Convert from BEDPE to BAM" 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 bedpetobam
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
10 $ubam
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
11 -mapq $mapq
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
12 -i '$input'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
13 -g $genome
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
14 &gt; '$output'
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
15 </command>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
16 <inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
17 <param format="bed,gff,vcf" name="input" type="data" label="BED/VCF/GFF file"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
18 <expand macro="genome" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
19 <param name="mapq" type="integer" label="Set a mapping quality (SAM MAPQ field) value for all BED entries" value="255" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
20 <param name="ubam" type="boolean" label="Write uncompressed BAM output." truevalue="-ubam" falsevalue="" checked="false"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
21 </inputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
22 <outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
23 <data format="bam" name="output" metadata_source="input" label="${input.name} (as BAM)"/>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
24 </outputs>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
25 <help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
26
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
27 **What it does**
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
28
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
29 Converts feature records to BAM format.
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
30
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
31 .. class:: warningmark
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
32
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
33 BED files must be at least BED4 to create BAM (needs name field).
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
34
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
35 @REFERENCES@
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
36 </help>
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
37 <expand macro="citations" />
b8348686a0b9 Imported from capsule None
iuc
parents:
diff changeset
38 </tool>