Mercurial > repos > wrtz > bcftools
diff bgzip.xml @ 17:c34371f08c6f draft
Uploaded
author | wrtz |
---|---|
date | Thu, 14 Jan 2016 17:51:28 -0500 |
parents | |
children | 91a6f019e1a9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bgzip.xml Thu Jan 14 17:51:28 2016 -0500 @@ -0,0 +1,23 @@ +<tool id="bgzip" name="Bgzip" version="1.0.0"> + <description>Run bgzip compression on file </description> + <command> + bgzip -c -f $input> $output + </command> + <inputs> + <param name="input" type="data" label="Input file" /> + </inputs> + <outputs> + <data name="output" format="bgzip" label="${tool.name} on ${on_string}"> + <change_format> + <when input="$input.ext" value="vcf" format="vcf_bgzip" /> + </change_format> + </data> + </outputs> + <help> +**About this tool** + +**Bgzip**: Block compression/decompression utility. Outputs compressed (bgzipped) version of input file. + +More info here: http://www.htslib.org/doc/tabix.html + </help> +</tool>