comparison macros.xml @ 12:132036f92aa3 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tool_collections/samtools/bam_to_sam commit 19dd8b645a77899ff98d139d79de824a23f416bb
author iuc
date Wed, 12 Nov 2025 12:58:49 +0000
parents 69aa7277b44c
children
comparison
equal deleted inserted replaced
11:69aa7277b44c 12:132036f92aa3
10 (because their version is ahead of the requirement version .. 10 (because their version is ahead of the requirement version ..
11 please only bump the minor version in order to let the requirement 11 please only bump the minor version in order to let the requirement
12 version catch up eventually). To find the tools check: 12 version catch up eventually). To find the tools check:
13 `grep "<tool" . -r | grep -v VERSION_SUFFIX | cut -d":" -f 1` --> 13 `grep "<tool" . -r | grep -v VERSION_SUFFIX | cut -d":" -f 1` -->
14 <token name="@TOOL_VERSION@">1.22</token> 14 <token name="@TOOL_VERSION@">1.22</token>
15 <token name="@VERSION_SUFFIX@">0</token> 15 <token name="@VERSION_SUFFIX@">1</token>
16 <token name="@PROFILE@">22.05</token> 16 <token name="@PROFILE@">24.0</token>
17 <token name="@FLAGS@"><![CDATA[ 17 <token name="@FLAGS@"><![CDATA[
18 #set $flags = 0 18 #set $flags = 0
19 #if $filter 19 #if $filter
20 #set $flags = sum(map(int, str($filter).split(','))) 20 #set $flags = sum(map(int, str($filter).split(',')))
21 #end if 21 #end if
165 ((addmemory=addmemory*75/100)) && 165 ((addmemory=addmemory*75/100)) &&
166 ]]></token> 166 ]]></token>
167 <xml name="seed_input"> 167 <xml name="seed_input">
168 <param name="seed" type="integer" optional="True" label="Seed for random number generator" help="If empty a random seed is used." /> 168 <param name="seed" type="integer" optional="True" label="Seed for random number generator" help="If empty a random seed is used." />
169 </xml> 169 </xml>
170
171 <!-- Include/exclude by flags + flag options -->
172 <xml name="inclusive_filter_macro" token_argument="">
173 <param name="inclusive_filter" argument="@ARGUMENT@" type="select" multiple="True" label="Require that these flags are set">
174 <expand macro="flag_options" />
175 </param>
176 </xml>
177 <xml name="exclusive_filter_macro" token_argument="">
178 <param name="exclusive_filter" argument="@ARGUMENT@" type="select" multiple="True" label="Exclude reads with any of the following flags set">
179 <expand macro="flag_options" />
180 </param>
181 </xml>
170 <xml name="flag_options" token_s1="false" token_s2="false" token_s4="false" token_s8="false" token_s16="false" token_s32="false" token_s64="false" token_s128="false" token_s256="false" token_s512="false" token_s1024="false" token_s2048="false"> 182 <xml name="flag_options" token_s1="false" token_s2="false" token_s4="false" token_s8="false" token_s16="false" token_s32="false" token_s64="false" token_s128="false" token_s256="false" token_s512="false" token_s1024="false" token_s2048="false">
171 <option value="1" selected="@S1@">Read is paired</option> 183 <option value="1" selected="@S1@">Read is paired</option>
172 <option value="2" selected="@S2@">Read is mapped in a proper pair</option> 184 <option value="2" selected="@S2@">Read is mapped in a proper pair</option>
173 <option value="4" selected="@S4@">Read is unmapped</option> 185 <option value="4" selected="@S4@">Read is unmapped</option>
174 <option value="8" selected="@S8@">Mate is unmapped</option> 186 <option value="8" selected="@S8@">Mate is unmapped</option>