comparison bedpeToBam.xml @ 35:b28e0cfa7ba1 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit fe3f54a0d3edb83fcf6752e3b1524c582b4febd5"
author iuc
date Fri, 06 Sep 2019 14:29:59 -0400
parents dde39ba9c031
children 3e38c9b3214f
comparison
equal deleted inserted replaced
34:dde39ba9c031 35:b28e0cfa7ba1
1 <tool id="bedtools_bedpetobam" name="bedtools BEDPE to BAM" version="@TOOL_VERSION@"> 1 <tool id="bedtools_bedpetobam" name="bedtools BEDPE to BAM" version="@TOOL_VERSION@">
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 <!-- bedtobam broken in 2.29.0 <expand macro="requirements" /> -->
7 <requirements>
8 <requirement type="package" version="2.27.1">bedtools</requirement>
9 </requirements>
7 <expand macro="stdio" /> 10 <expand macro="stdio" />
8 <command><![CDATA[ 11 <command><![CDATA[
9 bedtools bedpetobam 12 bedtools bedpetobam
10 -mapq $mapq 13 -mapq $mapq
11 -i '$input' 14 -i '$input'
17 <expand macro="input_conditional_genome_file" /> 20 <expand macro="input_conditional_genome_file" />
18 <param argument="-mapq" type="integer" value="255" 21 <param argument="-mapq" type="integer" value="255"
19 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" /> 22 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" />
20 </inputs> 23 </inputs>
21 <outputs> 24 <outputs>
22 <data name="output" format="bam" metadata_source="input"/> 25 <data name="output" format="unsorted.bam" metadata_source="input"/>
23 </outputs> 26 </outputs>
24 <tests> 27 <tests>
25 <test> 28 <test>
26 <param name="input" value="bedpeToBamBed1.bed" ftype="bed" /> 29 <param name="input" value="bedpeToBamBed1.bed" ftype="bed" />
27 <param name="genome_file_opts_selector" value="hist" /> 30 <param name="genome_file_opts_selector" value="hist" />
28 <param name="genome" value="mm9.len"/> 31 <param name="genome" value="mm9.len"/>
29 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="bam" /> 32 <output name="output" file="bedpeToBam_result1.bam" lines_diff="72" ftype="unsorted.bam" />
30 </test> 33 </test>
31 </tests> 34 </tests>
32 <help><![CDATA[ 35 <help><![CDATA[
33 **What it does** 36 **What it does**
34 37