Mercurial > repos > iuc > meryl_groups_kmers
annotate groups-kmers.xml @ 1:0a1ea8818564 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:36:07 +0000 |
| parents | a3af9d9727ad |
| children |
| rev | line source |
|---|---|
|
0
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
1 <tool id="meryl_groups_kmers" name="Meryl" version="@TOOL_VERSION@+@GALAXY_TOOL_VERSION@@SUFFIX_VERSION@" profile="@PROFILE@"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
2 <description>apply operations on k-mer databases</description> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
3 <macros> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
5 </macros> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
6 <expand macro="edam_ontology"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
7 <xrefs> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
8 <xref type="bio.tools">meryl</xref> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
9 </xrefs> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
10 <expand macro="requirements"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
11 <version_command>meryl --version</version_command> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
12 <command detect_errors="exit_code"><![CDATA[ |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
13 export GALAXY_MEMORY_GB=\$((\${GALAXY_MEMORY_MB:-8192}/1024)) && |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
14 #for $i,$mdb in enumerate($input_meryldb_02) |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
15 mkdir -p ./tmp_folder_$i/ && |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
16 tar -xmf $mdb --use-compress-program="pigz -p \${GALAXY_SLOTS:-1}" -C ./tmp_folder_$i && |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
17 mv ./tmp_folder_$i/* db_'${i}'.meryl && |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
18 #end for |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
19 meryl $groups_operations output read-db.meryl db_* && |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
20 tar -cf read-db.meryldb --use-compress-program="pigz -p \${GALAXY_SLOTS:-1}" read-db.meryl |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
21 ]]></command> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
22 <inputs> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
23 <param name="groups_operations" type="select" label="Operations on sets of k-mers" help="Select an operation to be executed"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
24 <option value="union">Union: return k-mers that occur in any input</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
25 <option value="union-min">Union-min: return k-mers that occur in any input, set the count to the minimum count</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
26 <option value="union-max">Union-max: return k-mers that occur in any input, set the count to the maximum count</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
27 <option value="union-sum">Union-sum: return k-mers that occur in any input, set the count to the sum of the counts</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
28 <option value="intersect">Intersect: return k-mers that occur in all inputs, set the count to the count in the first input</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
29 <option value="intersect-min">Intersect-min: return k-mers that occur in all inputs, set the count to the minimum count</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
30 <option value="intersect-max">Intersect-max: return k-mers that occur in all inputs, set the count to the maximum count</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
31 <option value="intersect-sum">Intersect-sum: return k-mers that occur in all inputs, set the count to the sum of the counts</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
32 <option value="subtract">Subtract: return k-mers that occur in the first input, subtracting counts from the other inputs</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
33 <option value="difference">Difference: return k-mers that occur in the first input, but none of the other inputs</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
34 <option value="symmetric-difference">Symmetric-difference: return k-mers that occur in exactly one input</option> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
35 </param> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
36 <param name="input_meryldb_02" type="data" multiple="true" format="meryldb" label="Input meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
37 </inputs> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
38 <outputs> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
39 <data name="read_db" format="meryldb" from_work_dir="read-db.meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
40 </outputs> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
41 <tests> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
42 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
43 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
44 <param name="groups_operations" value="union"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
45 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
46 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
47 <has_size value="34918" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
48 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
49 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
50 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
51 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
52 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
53 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
54 <param name="groups_operations" value="union-min"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
55 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
56 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
57 <has_size value="59637" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
58 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
59 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
60 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
61 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
62 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
63 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
64 <param name="groups_operations" value="union-max"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
65 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
66 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
67 <has_size value="60705" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
68 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
69 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
70 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
71 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
72 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
73 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
74 <param name="groups_operations" value="union-sum"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
75 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
76 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
77 <has_size value="61311" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
78 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
79 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
80 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
81 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
82 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
83 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
84 <param name="groups_operations" value="intersect"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
85 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
86 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
87 <has_size value="16003" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
88 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
89 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
90 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
91 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
92 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
93 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
94 <param name="groups_operations" value="intersect-min"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
95 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
96 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
97 <has_size value="15413" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
98 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
99 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
100 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
101 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
102 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
103 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
104 <param name="groups_operations" value="intersect-max"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
105 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
106 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
107 <has_size value="15424" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
108 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
109 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
110 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
111 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
112 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
113 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
114 <param name="groups_operations" value="intersect-sum"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
115 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
116 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
117 <has_size value="15965" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
118 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
119 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
120 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
121 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
122 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
123 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
124 <param name="groups_operations" value="subtract"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
125 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
126 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
127 <has_size value="25728" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
128 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
129 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
130 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
131 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
132 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
133 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
134 <param name="groups_operations" value="difference"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
135 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
136 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
137 <has_size value="24666" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
138 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
139 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
140 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
141 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
142 <test expect_num_outputs="1"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
143 <param name="input_meryldb_02" value="output_02.read-db.meryldb,output_03.read-db.meryldb" ftype="meryldb"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
144 <param name="groups_operations" value="symmetric-difference"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
145 <output name="read_db" ftype="meryldb"> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
146 <assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
147 <has_size value="60385" delta="3000"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
148 <expand macro="meryldb_archive_assumptions"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
149 </assert_contents> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
150 </output> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
151 </test> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
152 </tests> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
153 <help> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
154 |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
155 .. class:: infomark |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
156 |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
157 **Purpose** |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
158 |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
159 Meryl is the k-mer counter. Apply operations on multiple k-mer databases. |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
160 |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
161 - Union-min: return k-mers that occur in any input, set the count to the minimum count |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
162 - Union-max: return k-mers that occur in any input, set the count to the maximum count |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
163 - Union-sum: return k-mers that occur in any input, set the count to the sum of the counts |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
164 - Intersect: return k-mers that occur in all inputs, set the count to the count in the first input |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
165 - Intersect-min: return k-mers that occur in all inputs, set the count to the minimum count |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
166 - Intersect-max: return k-mers that occur in all inputs, set the count to the maximum count |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
167 - Intersect-sum: return k-mers that occur in all inputs, set the count to the sum of the counts |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
168 - Subtract: return k-mers that occur in the first input, subtracting counts from the other inputs |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
169 - Difference: return k-mers that occur in the first input, but none of the other inputs |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
170 - Symmetric-difference: return k-mers that occur in exactly one input |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
171 |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
172 </help> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
173 <expand macro="citations"/> |
|
a3af9d9727ad
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meryl commit a3a16149db71f9b72dd7e949df0db08797637312
iuc
parents:
diff
changeset
|
174 </tool> |
