Mercurial > repos > iuc > bedtools
annotate bedpeToBam.xml @ 21:b3c147390100 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 3113ecabff4cd259d175b638fd5ff14f0fce6da1
author | iuc |
---|---|
date | Wed, 10 Jan 2018 19:30:53 -0500 |
parents | a8eabd2838f6 |
children | 95a3b2c25bd1 |
rev | line source |
---|---|
19
a8eabd2838f6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 542ddc9e98cee5cc2a9e4caae945dee4b2c747b8
iuc
parents:
17
diff
changeset
|
1 <tool id="bedtools_bedpetobam" name="BEDPE to BAM" version="@WRAPPER_VERSION@.0"> |
4
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' | |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
13 -g @GENOME_FILE@ |
1 | 14 > '$output' |
15 ]]> | |
0 | 16 </command> |
17 <inputs> | |
1 | 18 <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file"/> |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
19 <expand macro="input_conditional_genome_file" /> |
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" /> | |
17
44867b59dbf2
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
iuc
parents:
4
diff
changeset
|
30 <param name="genome_file_opts_selector" value="hist" /> |
1 | 31 <param name="genome" value="mm9.len"/> |
32 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="bam" /> | |
33 </test> | |
34 </tests> | |
0 | 35 <help> |
1 | 36 <![CDATA[ |
0 | 37 **What it does** |
38 | |
39 Converts feature records to BAM format. | |
40 | |
41 .. class:: warningmark | |
42 | |
43 BED files must be at least BED4 to create BAM (needs name field). | |
44 | |
45 @REFERENCES@ | |
1 | 46 ]]> |
0 | 47 </help> |
48 <expand macro="citations" /> | |
49 </tool> |