Mercurial > repos > iuc > ont_fast5_api_compress_fast5
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7147b894702a |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="ont_fast5_api_compress_fast5" name="@TOOL_NAME@ Compress" version="@TOOL_VERSION@+galaxy0" profile="18.01"> | |
3 <description>multi read file(s)</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <version_command><![CDATA[compress_fast5 -v]]></version_command> | |
9 <command detect_errors="exit_code"><![CDATA[ | |
10 ## initialize | |
11 @INITIALIZE@ | |
12 | |
13 ## run | |
14 compress_fast5 | |
15 ## required | |
16 @INPUTPATH@ | |
17 @SAVEPATH@ | |
18 @COMPRESSION@ | |
19 ## optional | |
20 @THREADS@ | |
21 | |
22 ## create tarball | |
23 @TARBALL@ | |
24 ]]></command> | |
25 <inputs> | |
26 <expand macro="input"/> | |
27 <expand macro="compression"> | |
28 <option value="vbz" selected="true">VBZ</option> | |
29 </expand> | |
30 </inputs> | |
31 <outputs> | |
32 <expand macro="output"/> | |
33 </outputs> | |
34 <tests> | |
35 <!-- #1 default --> | |
36 <test expect_num_outputs="1"> | |
37 <param name="input_path" value="multi.fast5.tar"/> | |
38 <output name="out_results"> | |
39 <assert_contents> | |
40 <has_size value="40960"/> | |
41 </assert_contents> | |
42 </output> | |
43 </test> | |
44 <!-- #2 --> | |
45 <test expect_num_outputs="1"> | |
46 <param name="input_path" value="multi.fast5.tar"/> | |
47 <param name="compression" value="vbz_legacy_v0"/> | |
48 <output name="out_results"> | |
49 <assert_contents> | |
50 <has_size value="40960"/> | |
51 </assert_contents> | |
52 </output> | |
53 </test> | |
54 <!-- #3 --> | |
55 <test expect_num_outputs="1"> | |
56 <param name="input_path" value="multi.fast5.tar"/> | |
57 <param name="compression" value="gzip"/> | |
58 <output name="out_results"> | |
59 <assert_contents> | |
60 <has_size value="40960"/> | |
61 </assert_contents> | |
62 </output> | |
63 </test> | |
64 </tests> | |
65 <help><![CDATA[ | |
66 .. class:: infomark | |
67 | |
68 **What it does** | |
69 | |
70 @WID@ | |
71 | |
72 *compress_fast5* copies and converts raw data between vbz and gzip compression formats. | |
73 | |
74 **Input** | |
75 | |
76 Multi read file(s) in FAST5 format that are stored in a flat TAR. | |
77 | |
78 **Output** | |
79 | |
80 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>`_. | |
81 | |
82 .. class:: infomark | |
83 | |
84 **References** | |
85 | |
86 @REFERENCES@ | |
87 ]]></help> | |
88 <expand macro="citations"/> | |
89 </tool> |