comparison bedToBam.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_bedtobam" name="BED to BAM" version="@WRAPPER_VERSION@.0"> 1 <tool id="bedtools_bedtobam" name="BED 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 bedtobam 10 bedtools bedtobam
11 $bed12 11 $bed12
12 -mapq $mapq 12 -mapq $mapq
13 -g $genome 13 -g @GENOME_FILE@
14 -i '$input' 14 -i '$input'
15 > '$output' 15 > '$output'
16 ]]> 16 ]]>
17 </command> 17 </command>
18 <inputs> 18 <inputs>
19 <param format="bed" name="input" type="data" label="Convert the following BED file to BAM"/> 19 <param format="bed" name="input" type="data" label="Convert the following BED file to BAM"/>
20 <param name="bed12" type="boolean" truevalue="-bed12" falsevalue="" checked="false" 20 <param name="bed12" type="boolean" truevalue="-bed12" falsevalue="" checked="false"
21 label="Indicate that the input BED file is in BED12 (a.k.a 'blocked' BED) format" 21 label="Indicate that the input BED file is in BED12 (a.k.a 'blocked' BED) format"
22 help="If Selected, bedToBam will convert blocked BED features (e.g., gene annotaions) into 'spliced' BAM alignments by creating an appropriate CIGAR string. (-bed12)"/> 22 help="If Selected, bedToBam will convert blocked BED features (e.g., gene annotaions) into 'spliced' BAM alignments by creating an appropriate CIGAR string. (-bed12)"/>
23 <expand macro="genome" /> 23 <expand macro="input_conditional_genome_file" />
24 <param name="mapq" type="integer" value="255" 24 <param name="mapq" type="integer" value="255"
25 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" help="(-mapq)"/> 25 label="Set a mapping quality (SAM MAPQ field) value for all BED entries" help="(-mapq)"/>
26 </inputs> 26 </inputs>
27 <outputs> 27 <outputs>
28 <data format="bam" name="output" metadata_source="input" label="${input.name} (as BAM)"/> 28 <data format="bam" name="output" metadata_source="input" label="${input.name} (as BAM)"/>
29 </outputs> 29 </outputs>
30 <tests> 30 <tests>
31 <test> 31 <test>
32 <param name="input" value="bedToBam1.bed" ftype="bed" /> 32 <param name="input" value="bedToBam1.bed" ftype="bed" />
33 <param name="genome_file_opts_selector" value="hist" />
33 <param name="genome" value="mm9_chr1.len" ftype="tabular" /> 34 <param name="genome" value="mm9_chr1.len" ftype="tabular" />
34 <output name="output" file="bedToBam_result.bam" lines_diff="4" ftype="bam" /> 35 <output name="output" file="bedToBam_result.bam" lines_diff="4" ftype="bam" />
35 </test> 36 </test>
36 </tests> 37 </tests>
37 <help> 38 <help>