comparison bedpeToBam.xml @ 0:b8348686a0b9 draft

Imported from capsule None
author iuc
date Tue, 04 Nov 2014 01:45:04 -0500
parents
children 82aac94b06c3
comparison
equal deleted inserted replaced
-1:000000000000 0:b8348686a0b9
1 <tool id="bedtools_bedpetobam" name="Convert from BEDPE to BAM" version="@WRAPPER_VERSION@.0">
2 <description></description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <expand macro="stdio" />
8 <command>
9 bedtools bedpetobam
10 $ubam
11 -mapq $mapq
12 -i '$input'
13 -g $genome
14 &gt; '$output'
15 </command>
16 <inputs>
17 <param format="bed,gff,vcf" name="input" type="data" label="BED/VCF/GFF file"/>
18 <expand macro="genome" />
19 <param name="mapq" type="integer" label="Set a mapping quality (SAM MAPQ field) value for all BED entries" value="255" />
20 <param name="ubam" type="boolean" label="Write uncompressed BAM output." truevalue="-ubam" falsevalue="" checked="false"/>
21 </inputs>
22 <outputs>
23 <data format="bam" name="output" metadata_source="input" label="${input.name} (as BAM)"/>
24 </outputs>
25 <help>
26
27 **What it does**
28
29 Converts feature records to BAM format.
30
31 .. class:: warningmark
32
33 BED files must be at least BED4 to create BAM (needs name field).
34
35 @REFERENCES@
36 </help>
37 <expand macro="citations" />
38 </tool>