Mercurial > repos > iuc > bedtools
annotate bedpeToBam.xml @ 9:2ab422b551df draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit bad476ff5076338f3eebdf0c25bb5a6c745e5592
author | iuc |
---|---|
date | Wed, 14 Sep 2016 17:30:10 -0400 |
parents | 607c0576c6ab |
children | 44867b59dbf2 |
rev | line source |
---|---|
4
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
1 <tool id="bedtools_bedpetobam" name="BEDPE to BAM" version="@WRAPPER_VERSION@.0"> |
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
2 <description>converter</description> |
0 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <command> | |
1 | 9 <![CDATA[ |
0 | 10 bedtools bedpetobam |
1 | 11 -mapq $mapq |
12 -i '$input' | |
13 -g $genome | |
14 > '$output' | |
15 ]]> | |
0 | 16 </command> |
17 <inputs> | |
1 | 18 <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file"/> |
0 | 19 <expand macro="genome" /> |
1 | 20 <param name="mapq" type="integer" value="255" |
21 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" | |
22 help="(-mapq)" /> | |
0 | 23 </inputs> |
24 <outputs> | |
1 | 25 <data format="bam" name="output" metadata_source="input"/> |
0 | 26 </outputs> |
1 | 27 <tests> |
28 <test> | |
29 <param name="input" value="bedpeToBamBed1.bed" ftype="bed" /> | |
30 <param name="genome" value="mm9.len"/> | |
31 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="bam" /> | |
32 </test> | |
33 </tests> | |
0 | 34 <help> |
1 | 35 <![CDATA[ |
0 | 36 **What it does** |
37 | |
38 Converts feature records to BAM format. | |
39 | |
40 .. class:: warningmark | |
41 | |
42 BED files must be at least BED4 to create BAM (needs name field). | |
43 | |
44 @REFERENCES@ | |
1 | 45 ]]> |
0 | 46 </help> |
47 <expand macro="citations" /> | |
48 </tool> |