17
|
1 <tool id="bgzip" name="Bgzip" version="1.0.0">
|
|
2 <description>Run bgzip compression on file </description>
|
29
|
3 <requirements>
|
|
4 <requirement type="package" version="0.2.6">tabix</requirement>
|
|
5 </requirements>
|
17
|
6 <command>
|
|
7 bgzip -c -f $input> $output
|
|
8 </command>
|
|
9 <inputs>
|
|
10 <param name="input" type="data" label="Input file" />
|
|
11 </inputs>
|
|
12 <outputs>
|
|
13 <data name="output" format="bgzip" label="${tool.name} on ${on_string}">
|
|
14 <change_format>
|
|
15 <when input="$input.ext" value="vcf" format="vcf_bgzip" />
|
|
16 </change_format>
|
|
17 </data>
|
|
18 </outputs>
|
|
19 <help>
|
|
20 **About this tool**
|
|
21
|
|
22 **Bgzip**: Block compression/decompression utility. Outputs compressed (bgzipped) version of input file.
|
|
23
|
|
24 More info here: http://www.htslib.org/doc/tabix.html
|
|
25 </help>
|
|
26 </tool>
|