Mercurial > repos > artbio > ont_fast5_api
comparison single_to_multi_fast5.xml @ 0:0fbeff566070 draft default tip
"planemo upload for repository https://github.com/artbio/tools-artbio/tree/master/tools/ont_fast5_api commit 9fb27995131a4106053eb85d687857d2cbd2a5c6"
author | artbio |
---|---|
date | Sat, 22 May 2021 15:11:43 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0fbeff566070 |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="ont_fast5_api_single_to_multi_fast5" name="@TOOL_NAME@ Single to multi" version="@TOOL_VERSION@+galaxy0" profile="18.01"> | |
3 <description>read file(s)</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <version_command><![CDATA[single_to_multi -v]]></version_command> | |
9 <command detect_errors="exit_code"><![CDATA[ | |
10 ## initialize | |
11 @INITIALIZE@ | |
12 | |
13 ## run | |
14 single_to_multi_fast5 | |
15 --recursive | |
16 ## required | |
17 @INPUTPATH@ | |
18 @SAVEPATH@ | |
19 ## optional | |
20 @COMPRESSION@ | |
21 @BATCHSIZE@ | |
22 @THREADS@ | |
23 | |
24 ## create tarball | |
25 @TARBALL@ | |
26 ]]></command> | |
27 <inputs> | |
28 <expand macro="input" label="single"/> | |
29 <expand macro="batch_size"/> | |
30 <expand macro="compression"/> | |
31 </inputs> | |
32 <outputs> | |
33 <expand macro="output"/> | |
34 </outputs> | |
35 <tests> | |
36 <!-- #1 default --> | |
37 <test expect_num_outputs="2"> | |
38 <param name="input_path" value="single.fast5.tar"/> | |
39 <output name="out_results"> | |
40 <assert_contents> | |
41 <has_size value="40960"/> | |
42 </assert_contents> | |
43 </output> | |
44 <output name="summary" format="txt" value="filename_mapping_9.txt" sort="true" /> | |
45 </test> | |
46 <!-- #2 --> | |
47 <test expect_num_outputs="2"> | |
48 <param name="input_path" value="single.fast5.tar"/> | |
49 <param name="batch_size" value="3"/> | |
50 <param name="compression" value="vbz"/> | |
51 <output name="out_results"> | |
52 <assert_contents> | |
53 <has_size value="51200"/> | |
54 </assert_contents> | |
55 </output> | |
56 </test> | |
57 <!-- #3 --> | |
58 <test expect_num_outputs="2"> | |
59 <param name="input_path" value="single.fast5.tar"/> | |
60 <param name="compression" value="vbz_legacy_v0"/> | |
61 <output name="out_results"> | |
62 <assert_contents> | |
63 <has_size value="40960"/> | |
64 </assert_contents> | |
65 </output> | |
66 <output name="summary" format="txt" value="filename_mapping_9.txt" sort="true" /> | |
67 </test> | |
68 <!-- #4 --> | |
69 <test expect_num_outputs="2"> | |
70 <param name="input_path" value="single.fast5.tar"/> | |
71 <param name="compression" value="gzip"/> | |
72 <output name="out_results"> | |
73 <assert_contents> | |
74 <has_size value="40960"/> | |
75 </assert_contents> | |
76 </output> | |
77 <output name="summary" format="txt" value="filename_mapping_9.txt" sort="true" /> | |
78 </test> | |
79 </tests> | |
80 <help><![CDATA[ | |
81 .. class:: infomark | |
82 | |
83 **What it does** | |
84 | |
85 @WID@ | |
86 | |
87 *single_to_multi_fast5* converts single read FAST5 files into multi read FAST5 file(s). | |
88 | |
89 **Input** | |
90 | |
91 Single read files in FAST5 format that are stored in a flat TAR. | |
92 | |
93 **Output** | |
94 | |
95 Multi read file(s) in FAST5 format that are stored in a flat TAR. | |
96 | |
97 .. class:: infomark | |
98 | |
99 **References** | |
100 | |
101 @REFERENCES@ | |
102 ]]></help> | |
103 <expand macro="citations"/> | |
104 </tool> |