annotate arithmetic-kmers.xml @ 2:ee4f9a0cb72a draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/meryl commit 6935ad9dddbbb913817552d682d0b2208481dc7f
author iuc
date Sun, 09 Nov 2025 18:37:06 +0000
parents 8d594609538e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
1 <tool id="meryl_arithmetic_kmers" name="Meryl" version="@TOOL_VERSION@+@GALAXY_TOOL_VERSION@@SUFFIX_VERSION@" profile="@PROFILE@">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
2 <description>apply arithmetic operations to k-mer counts</description>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
3 <macros>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
4 <import>macros.xml</import>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
5 </macros>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
6 <expand macro="edam_ontology"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
7 <xrefs>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
8 <xref type="bio.tools">meryl</xref>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
9 </xrefs>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
10 <expand macro="requirements"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
11 <version_command>meryl --version</version_command>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
12 <command detect_errors="exit_code"><![CDATA[
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
13 export GALAXY_MEMORY_GB=\$((\${GALAXY_MEMORY_MB:-8192}/1024)) &&
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
14 mkdir -p ./temp_db/ &&
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
15 tar -xmf $input_meryldb_02 --use-compress-program="pigz -p \${GALAXY_SLOTS:-1}" -C ./temp_db/ &&
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
16 mv ./temp_db/* tmp.meryl &&
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
17 meryl
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
18 $arithmetic_operations
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
19 $X
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
20 tmp.meryl
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
21 output read-db.meryl &&
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
22 tar -cf read-db.meryldb --use-compress-program="pigz -p \${GALAXY_SLOTS:-1}" read-db.meryl
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
23 ]]></command>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
24 <inputs>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
25 <param name="arithmetic_operations" type="select" label="Arithmetic operations" help="Select an operation to be executed">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
26 <option value="increase">Increase: add x to the count of each k-mer</option>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
27 <option value="decrease">Decrease: subtract x from the count of each k-mer</option>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
28 <option value="multiply">Multiply: multiply the count of each k-mer by x</option>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
29 <option value="divide">Divide: divide the count of each k-mer by x</option>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
30 <option value="divide-round">Divide-round: divide the count of each k-mer by x and round the results</option>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
31 <option value="modulo">Modulo: set the count of each k-mer to the remainder of the count divided by x</option>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
32 </param>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
33 <param name="input_meryldb_02" type="data" format="meryldb" label="Input meryldb" help="Select a meryldb dataset"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
34 <param name="X" type="integer" min="1" max="1000000" value="" optional="true" label="Operand"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
35 </inputs>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
36 <outputs>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
37 <data name="read_db" format="meryldb" from_work_dir="read-db.meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
38 </outputs>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
39 <tests>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
40 <test expect_num_outputs="1">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
41 <param name="X" value="100000"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
42 <param name="input_meryldb_02" value="read-db.meryldb" ftype="meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
43 <param name="arithmetic_operations" value="increase"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
44 <output name="read_db" ftype="meryldb">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
45 <assert_contents>
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
46 <has_size value="58946" delta="3000"/>
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
47 <expand macro="meryldb_archive_assumptions"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
48 </assert_contents>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
49 </output>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
50 </test>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
51 <test expect_num_outputs="1">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
52 <param name="X" value="100"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
53 <param name="input_meryldb_02" value="read-db.meryldb" ftype="meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
54 <param name="arithmetic_operations" value="decrease"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
55 <output name="read_db" ftype="meryldb">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
56 <assert_contents>
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
57 <has_size value="45595" delta="3000"/>
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
58 <expand macro="meryldb_archive_assumptions"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
59 </assert_contents>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
60 </output>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
61 </test>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
62 <test expect_num_outputs="1">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
63 <param name="X" value="3"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
64 <param name="input_meryldb_02" value="read-db.meryldb" ftype="meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
65 <param name="arithmetic_operations" value="multiply"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
66 <output name="read_db" ftype="meryldb">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
67 <assert_contents>
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
68 <has_size value="60645" delta="3000"/>
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
69 <expand macro="meryldb_archive_assumptions"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
70 </assert_contents>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
71 </output>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
72 </test>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
73 <test expect_num_outputs="1">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
74 <param name="X" value="2"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
75 <param name="input_meryldb_02" value="read-db.meryldb" ftype="meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
76 <param name="arithmetic_operations" value="divide"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
77 <output name="read_db" ftype="meryldb">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
78 <assert_contents>
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
79 <has_size value="58481" delta="3000"/>
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
80 <expand macro="meryldb_archive_assumptions"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
81 </assert_contents>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
82 </output>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
83 </test>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
84 <test expect_num_outputs="1">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
85 <param name="X" value="2"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
86 <param name="input_meryldb_02" value="read-db.meryldb" ftype="meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
87 <param name="arithmetic_operations" value="divide-round"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
88 <output name="read_db" ftype="meryldb">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
89 <assert_contents>
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
90 <has_size value="58236" delta="3000"/>
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
91 <expand macro="meryldb_archive_assumptions"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
92 </assert_contents>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
93 </output>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
94 </test>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
95 <test expect_num_outputs="1">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
96 <param name="X" value="3"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
97 <param name="input_meryldb_02" value="read-db.meryldb" ftype="meryldb"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
98 <param name="arithmetic_operations" value="modulo"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
99 <output name="read_db" ftype="meryldb">
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
100 <assert_contents>
1
8d594609538e planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents: 0
diff changeset
101 <has_size value="36971" delta="3000"/>
0
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
102 <expand macro="meryldb_archive_assumptions"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
103 </assert_contents>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
104 </output>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
105 </test>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
106 </tests>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
107 <help>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
108
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
109 .. class:: infomark
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
110
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
111 **Purpose**
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
112
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
113 Meryl is the k-mer counter. This tool applies arithmetic operations on k-mer counts:
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
114
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
115 - Increase: add x to the count of each k-mer
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
116 - Decrease: subsctract x from the count of each k-mer
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
117 - Multiply: multiply the count of each k-mer by x
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
118 - Divide: divide the count of each k-mer by x
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
119 - Divide-round: divide the count of each k-mer by x and round th results
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
120 - Modulo: set the count of each k-mer to the remainder of the count divided by x
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
121 </help>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
122 <expand macro="citations"/>
57343b69e9da planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a95f5b04b1219489a327a622184633a561fe5ac0
iuc
parents:
diff changeset
123 </tool>