Mercurial > repos > iuc > ont_fast5_api_compress_fast5
diff compress_fast5.xml @ 0:7147b894702a draft
"planemo upload for repository https://github.com/nanoporetech/ont_fast5_api/ commit a5d038871ff0e1b133039b59183dee795449b383"
author | iuc |
---|---|
date | Fri, 12 Jun 2020 15:08:47 -0400 |
parents | |
children | 52da1e2c82d3 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/compress_fast5.xml Fri Jun 12 15:08:47 2020 -0400 @@ -0,0 +1,89 @@ +<?xml version="1.0"?> +<tool id="ont_fast5_api_compress_fast5" name="@TOOL_NAME@ Compress" version="@TOOL_VERSION@+galaxy0" profile="18.01"> + <description>multi read file(s)</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> + <version_command><![CDATA[compress_fast5 -v]]></version_command> + <command detect_errors="exit_code"><![CDATA[ +## initialize +@INITIALIZE@ + +## run +compress_fast5 +## required +@INPUTPATH@ +@SAVEPATH@ +@COMPRESSION@ +## optional +@THREADS@ + +## create tarball +@TARBALL@ + ]]></command> + <inputs> + <expand macro="input"/> + <expand macro="compression"> + <option value="vbz" selected="true">VBZ</option> + </expand> + </inputs> + <outputs> + <expand macro="output"/> + </outputs> + <tests> + <!-- #1 default --> + <test expect_num_outputs="1"> + <param name="input_path" value="multi.fast5.tar"/> + <output name="out_results"> + <assert_contents> + <has_size value="40960"/> + </assert_contents> + </output> + </test> + <!-- #2 --> + <test expect_num_outputs="1"> + <param name="input_path" value="multi.fast5.tar"/> + <param name="compression" value="vbz_legacy_v0"/> + <output name="out_results"> + <assert_contents> + <has_size value="40960"/> + </assert_contents> + </output> + </test> + <!-- #3 --> + <test expect_num_outputs="1"> + <param name="input_path" value="multi.fast5.tar"/> + <param name="compression" value="gzip"/> + <output name="out_results"> + <assert_contents> + <has_size value="40960"/> + </assert_contents> + </output> + </test> + </tests> + <help><![CDATA[ +.. class:: infomark + +**What it does** + +@WID@ + +*compress_fast5* copies and converts raw data between vbz and gzip compression formats. + +**Input** + +Multi read file(s) in FAST5 format that are stored in a flat TAR. + +**Output** + +Multi read FAST5 file(s) containing compressed reads that are stored in a flat TAR. Further detail of HDF5 data management strategies can be found `here <https://support.hdfgroup.org/HDF5/doc/Advanced/FileSpaceManagement/FileSpaceManagement.pdf>`_. + +.. class:: infomark + +**References** + +@REFERENCES@ + ]]></help> + <expand macro="citations"/> +</tool> \ No newline at end of file