annotate logex.xml @ 2:52ae020a27eb draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit de98c1736ab624bff379c3e83ccfc19cb2995684
author iuc
date Wed, 19 Feb 2025 11:16:37 +0000
parents a919666df221
children f1f6bc33ad2e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
52ae020a27eb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit de98c1736ab624bff379c3e83ccfc19cb2995684
iuc
parents: 1
diff changeset
1 <tool id="fastk_logex" name="FastK Logex" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="24.2" license="MIT">
0
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
2 <description>Performs binary operations on the generated Ktab files from FASTK suite</description>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
3 <macros>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
4 <import>macros.xml</import>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
5 </macros>
1
a919666df221 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 2df03448c35339ea02f112abb0d0f07b5c41d93e
iuc
parents: 0
diff changeset
6 <expand macro="xrefs"/>
0
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
9 mkdir -p logex_ktabs
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
10 && mkdir -p input_files
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
11 && cp '$input_ktab1' input_files/input1.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
12 && ln -s '$input_ktab1_tar' input1.tar
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
13 && tar -xf input1.tar
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
14 && mv ktabfiles ktabfiles_in1
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
15 && mv "\$(find ktabfiles_in1 -type f -name '*.ktab.1')" "ktabfiles_in1/.input1.ktab.1"
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
16 && cp '$input_ktab2' input_files/input2.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
17 && ln -s '$input_ktab2_tar' input2.tar
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
18 && tar -xf input2.tar
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
19 && mv ktabfiles ktabfiles_in2
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
20 && mv "\$(find ktabfiles_in2 -type f -name '*.ktab.1')" "ktabfiles_in2/.input2.ktab.1"
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
21 && mv ktabfiles_in1/.input1.ktab.1 input_files/
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
22 && mv ktabfiles_in2/.input2.ktab.1 input_files/ &&
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
23 #if $operation_selector == 'and':
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
24 Logex -T\${GALAXY_SLOTS:-8} -h 'out = A&.B' input_files/input1.ktab input_files/input2.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
25 #elif $operation_selector == 'or':
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
26 Logex -T\${GALAXY_SLOTS:-8} -h 'out = A|.B' input_files/input1.ktab input_files/input2.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
27 #elif $operation_selector == 'minus':
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
28 Logex -T\${GALAXY_SLOTS:-8} -h 'out = A-B' input_files/input1.ktab input_files/input2.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
29 #elif $operation_selector == 'xor':
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
30 Logex -T\${GALAXY_SLOTS:-8} -h 'out = A^B' input_files/input1.ktab input_files/input2.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
31 #elif $operation_selector == 'unionsum':
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
32 Logex -T\${GALAXY_SLOTS:-8} -h 'out = A&+B' input_files/input1.ktab input_files/input2.ktab
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
33 #end if
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
34 && cp *.ktab logex_ktabs/
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
35 && cp .*.ktab* logex_ktabs/
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
36 && tar -cf logex_ktab.tar input_files/ logex_ktabs/
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
37 ]]></command>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
38 <inputs>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
39 <param name="input_ktab1" type="data" format="fastk_ktab" label="Input FastK ktab file (first)"/>
2
52ae020a27eb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit de98c1736ab624bff379c3e83ccfc19cb2995684
iuc
parents: 1
diff changeset
40 <param name="input_ktab1_tar" type="data" format="fastk_ktab_tar" label="Associated FastK TAR file consisting of intermediate .ktab files"/>
0
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
41 <param name="input_ktab2" type="data" format="fastk_ktab" label="Input FastK ktab file (second)"/>
2
52ae020a27eb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit de98c1736ab624bff379c3e83ccfc19cb2995684
iuc
parents: 1
diff changeset
42 <param name="input_ktab2_tar" type="data" format="fastk_ktab_tar" label="Associated FastK TAR file consisting of intermediate .ktab files"/>
0
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
43 <param name="operation_selector" type="select" label="Select Operation to Perform" help="Select the operation to be performed on the input ktab files.">
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
44 <option value="and">AND</option>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
45 <option value="or">OR</option>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
46 <option value="minus">Minus</option>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
47 <option value="unionsum">Unionsum</option>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
48 <option value="xor">XOR</option>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
49 </param>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
50 </inputs>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
51 <outputs>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
52 <data name="fastk_hist_out" format="fastk_hist" from_work_dir="out.hist" label="${tool.name} on ${on_string}: Logex .hist file"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
53 <data name="fastk_ktab_out" format="fastk_ktab" from_work_dir="out.ktab" label="${tool.name} on ${on_string}: Logex .ktab file"/>
2
52ae020a27eb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit de98c1736ab624bff379c3e83ccfc19cb2995684
iuc
parents: 1
diff changeset
54 <data name="fastk_ktab_files" format="fastk_ktab_tar" from_work_dir="logex_ktab.tar" label="${tool.name} on ${on_string}: FastK Logex ktab files"/>
0
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
55 </outputs>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
56 <tests>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
57 <test expect_num_outputs="3">
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
58 <param name="input_ktab1" value="fastq1.ktab"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
59 <param name="input_ktab1_tar" value="fastk_in1.tar"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
60 <param name="input_ktab2" value="fastq2.ktab"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
61 <param name="input_ktab2_tar" value="fastk_in2.tar"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
62 <param name="operation_selector" value="AND"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
63 <output name="fastk_hist_out" ftype="fastk_hist">
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
64 <assert_contents>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
65 <has_size value="262164"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
66 </assert_contents>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
67 </output>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
68 <output name="fastk_ktab_out" ftype="fastk_ktab">
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
69 <assert_contents>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
70 <has_size value="2064"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
71 </assert_contents>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
72 </output>
2
52ae020a27eb planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit de98c1736ab624bff379c3e83ccfc19cb2995684
iuc
parents: 1
diff changeset
73 <output name="fastk_ktab_files" ftype="fastk_ktab_tar">
0
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
74 <assert_contents>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
75 <has_archive_member path="logex_ktabs/out.ktab"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
76 <has_archive_member path="logex_ktabs/.out.ktab.1"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
77 <has_archive_member path="input_files/input1.ktab"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
78 <has_archive_member path="input_files/.input1.ktab.1"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
79 <has_archive_member path="input_files/input2.ktab"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
80 <has_archive_member path="input_files/.input2.ktab.1"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
81 </assert_contents>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
82 </output>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
83 </test>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
84 </tests>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
85 <help><![CDATA[
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
86
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
87 Logex tool can perform operations such as AND, OR, XOR, Minus and Unionsum on the input given input Ktab files.
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
88
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
89 The tool requires two input Ktab files and their associated files (Generated in the tarball of FASTK tool with .1 extension) as inputs to perform various binary operations.
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
90
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
91 ]]></help>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
92 <expand macro="citations"/>
387a1695d800 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/fastk commit 56658d5048382715413718dd2d41c9751e886608
iuc
parents:
diff changeset
93 </tool>