comparison macros.xml @ 4:aaeb63501369 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/cat commit ec15da3a30507841856303de991cbe80c65128fd-dirty
author jjohnson
date Wed, 27 Nov 2019 10:27:23 -0500
parents 18ece3d5bcde
children 226949352e31
comparison
equal deleted inserted replaced
3:18ece3d5bcde 4:aaeb63501369
54 <conditional name="db"> 54 <conditional name="db">
55 <param name="db_src" value="cached"/> 55 <param name="db_src" value="cached"/>
56 <param name="cat_builtin" value="CAT_prepare_test"/> 56 <param name="cat_builtin" value="CAT_prepare_test"/>
57 </conditional> 57 </conditional>
58 </xml> 58 </xml>
59
60 <xml name="use_intermediates"> 59 <xml name="use_intermediates">
61 <conditional name="previous"> 60 <conditional name="previous">
62 <param name="use_previous" type="select" label="Use previous gene prediction and diamond alignment"> 61 <param name="use_previous" type="select" label="Use previous gene prediction and diamond alignment">
63 <option value="no">No</option> 62 <option value="no">No</option>
64 <option value="yes">Yes</option> 63 <option value="yes">Yes</option>
83 </xml> 82 </xml>
84 <token name="@CUSTOM_SETTINGS@"><![CDATA[ 83 <token name="@CUSTOM_SETTINGS@"><![CDATA[
85 --range $range 84 --range $range
86 --fraction $fraction 85 --fraction $fraction
87 ]]></token> 86 ]]></token>
87 <xml name="diamond_options">
88 <conditional name="diamond">
89 <param name="set_diamond_opts" type="select" label="Advanced diamond options">
90 <option value="no">No</option>
91 <option value="yes">Yes</option>
92 </param>
93 <when value="no"/>
94 <when value="yes">
95 <param argument="--sensitive" type="boolean" truevalue="--sensitive" falsevalue="" checked="false"
96 label="Run DIAMOND in sensitive mode (considerably slower)"/>
97 <param argument="--block_size" type="float" value="2.0" min="1" max="10" label="DIAMOND block-size parameter."
98 help="lower will decrease memory and temporary disk space usage, higher will increase performance."/>
99 <param argument="--index_chunks" type="integer" value="4" min="1" max="10" label="DIAMOND index-chunks parameter"
100 help="Set to 1 on high memory machines. The parameter has no effect on temporary disk space usage."/>
101 <param argument="--top" type="integer" value="50" min="1" max="50" label="DIAMOND top parameter"
102 help="Governs hits within range of best hit that are written to the alignment file. This implies you know what you are doing."/>
103 </when>
104 </conditional>
105 </xml>
106 <token name="@DIAMOND_OPTIONS@"><![CDATA[
107 #if $diamond.set_diamond_opts == 'yes':
108 $diamond.sensitive
109 --block_size $diamond.block_size
110 --index_chunks $diamond.index_chunks
111 #if $diamond.top < 50:
112 --I_know_what_Im_doing
113 --top $diamond.top
114 #end if
115 #end if
116 ]]></token>
117
88 <xml name="add_names_options"> 118 <xml name="add_names_options">
89 <param argument="--only_official" type="boolean" truevalue="--only_official" falsevalue="" checked="true" 119 <param argument="--only_official" type="boolean" truevalue="--only_official" falsevalue="" checked="true"
90 label="Only output official level names."/> 120 label="Only output official level names."/>
91 <param argument="--exclude_scores" type="boolean" truevalue="--exclude_scores" falsevalue="" checked="false" 121 <param argument="--exclude_scores" type="boolean" truevalue="--exclude_scores" falsevalue="" checked="false"
92 label="Exclude bit-score support scores in the lineage."/> 122 label="Exclude bit-score support scores in the lineage."/>