comparison macros.xml @ 1:03da093291cf draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/paffy commit 9eb0e8172b3ac29d96aa9f28a89bc1d60fc11ec6
author iuc
date Thu, 05 Mar 2026 14:19:03 +0000
parents 0f451c5e1128
children
comparison
equal deleted inserted replaced
0:0f451c5e1128 1:03da093291cf
3 <requirements> 3 <requirements>
4 <requirement type="package" version="@TOOL_VERSION@">cactus</requirement> 4 <requirement type="package" version="@TOOL_VERSION@">cactus</requirement>
5 </requirements> 5 </requirements>
6 </xml> 6 </xml>
7 <token name="@TOOL_VERSION@">2.9.9</token> 7 <token name="@TOOL_VERSION@">2.9.9</token>
8 <token name="@VERSION_SUFFIX@">0</token> 8 <token name="@VERSION_SUFFIX@">1</token>
9 <token name="@PROFILE@">25.1</token> 9 <token name="@PROFILE@">25.1</token>
10 <token name="@UNCOMPRESS_PAF@"><![CDATA[ 10 <token name="@UNCOMPRESS_PAF@"><![CDATA[
11 #if $input_paf.is_of_type('paf.gz') 11 #if $input_paf.is_of_type('paf.gz')
12 gunzip -c '$input_paf' | 12 gunzip -c '$input_paf' |
13 #else 13 #else
40 #for $i, $fasta_file in enumerate($input_fasta): 40 #for $i, $fasta_file in enumerate($input_fasta):
41 'input_${i}.fasta' 41 'input_${i}.fasta'
42 #end for 42 #end for
43 ]]> 43 ]]>
44 </token> 44 </token>
45 <token name="@COMPRESS_FASTA@"><![CDATA[
46 #if $compression.type == 'gz':
47 | gzip -c > '$out_file'
48 #else if $compression.type == 'bz2':
49 | bzip2 -c > '$out_file'
50 #else:
51 > '$out_file'
52 #end if
53 ]]>
54 </token>
55 <xml name="stdio"> 45 <xml name="stdio">
56 <stdio> 46 <stdio>
57 <!-- Anything other than zero is an error --> 47 <!-- Anything other than zero is an error -->
58 <exit_code range="1:"/> 48 <exit_code range="1:"/>
59 <exit_code range=":-1"/> 49 <exit_code range=":-1"/>
78 <option value="gz">Compress output to .gz</option> 68 <option value="gz">Compress output to .gz</option>
79 </param> 69 </param>
80 <when value=""/> 70 <when value=""/>
81 <when value="gz"/> 71 <when value="gz"/>
82 </conditional> 72 </conditional>
83 </xml> 73 </xml>
84 <xml name="params_conditional_compression_fasta">
85 <conditional name="compression">
86 <param name="type" type="select" label="Compress output">
87 <option value="" selected="true">Don't compress output (default)</option>
88 <option value="gz">Compress output to .gz</option>
89 <option value="bz2">Compress output to .bz2</option>
90 </param>
91 <when value=""/>
92 <when value="gz"/>
93 <when value="bz2"/>
94 </conditional>
95 </xml>
96 <xml name="creator"> 74 <xml name="creator">
97 <creator> 75 <creator>
98 <person givenName="Niklas" familyName="Mayle" url="https://github.com/Maed0x"/> 76 <person givenName="Niklas" familyName="Mayle" url="https://github.com/Maed0x"/>
99 <person givenName="Saim" familyName="Momin" url="https://github.com/SaimMomin12"/> 77 <person givenName="Saim" familyName="Momin" url="https://github.com/SaimMomin12"/>
100 <organization name="Galaxy Europe" url="https://galaxyproject.org/eu/"/> 78 <organization name="Galaxy Europe" url="https://galaxyproject.org/eu/"/>