comparison bedpeToBam.xml @ 17:44867b59dbf2 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit cf7a3674bc833bbd5fdd2ad02e724935ffc7a174
author iuc
date Tue, 05 Sep 2017 15:40:14 -0400
parents 607c0576c6ab
children a8eabd2838f6
comparison
equal deleted inserted replaced
16:e0cec48a4695 17:44867b59dbf2
1 <tool id="bedtools_bedpetobam" name="BEDPE to BAM" version="@WRAPPER_VERSION@.0"> 1 <tool id="bedtools_bedpetobam" name="BEDPE to BAM" version="@WRAPPER_VERSION@.1">
2 <description>converter</description> 2 <description>converter</description>
3 <macros> 3 <macros>
4 <import>macros.xml</import> 4 <import>macros.xml</import>
5 </macros> 5 </macros>
6 <expand macro="requirements" /> 6 <expand macro="requirements" />
8 <command> 8 <command>
9 <![CDATA[ 9 <![CDATA[
10 bedtools bedpetobam 10 bedtools bedpetobam
11 -mapq $mapq 11 -mapq $mapq
12 -i '$input' 12 -i '$input'
13 -g $genome 13 -g @GENOME_FILE@
14 > '$output' 14 > '$output'
15 ]]> 15 ]]>
16 </command> 16 </command>
17 <inputs> 17 <inputs>
18 <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file"/> 18 <param name="input" format="bed,gff,vcf" type="data" label="BED/VCF/GFF file"/>
19 <expand macro="genome" /> 19 <expand macro="input_conditional_genome_file" />
20 <param name="mapq" type="integer" value="255" 20 <param name="mapq" type="integer" value="255"
21 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" 21 label="Set a mapping quality (SAM MAPQ field) value for all BED entries"
22 help="(-mapq)" /> 22 help="(-mapq)" />
23 </inputs> 23 </inputs>
24 <outputs> 24 <outputs>
25 <data format="bam" name="output" metadata_source="input"/> 25 <data format="bam" name="output" metadata_source="input"/>
26 </outputs> 26 </outputs>
27 <tests> 27 <tests>
28 <test> 28 <test>
29 <param name="input" value="bedpeToBamBed1.bed" ftype="bed" /> 29 <param name="input" value="bedpeToBamBed1.bed" ftype="bed" />
30 <param name="genome_file_opts_selector" value="hist" />
30 <param name="genome" value="mm9.len"/> 31 <param name="genome" value="mm9.len"/>
31 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="bam" /> 32 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="bam" />
32 </test> 33 </test>
33 </tests> 34 </tests>
34 <help> 35 <help>