Mercurial > repos > tiagoantao > raxml
annotate raxml.xml @ 55:730aff7a4ae5 draft default tip
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
| author | tiagoantao |
|---|---|
| date | Sun, 22 Nov 2015 15:46:25 -0500 |
| parents | 6e672cd847df |
| children |
| rev | line source |
|---|---|
| 0 | 1 <tool id="raxml" name="Phyogenetic reconstruction with RaXML" version="1.0.1"> |
|
15
ac873ecba2e8
planemo upload commit 6d4b6d49afc22782142019d31fc335d7d542b307
tiagoantao
parents:
11
diff
changeset
|
2 <description>- Maximum Likelihood based inference of large phylogenetic trees</description> |
| 0 | 3 <requirements> |
|
3
b4ed83696908
planemo upload commit 3ac7fc026930ed9a7951e0a937c16d2af2f1499a-dirty
tiagoantao
parents:
0
diff
changeset
|
4 <requirement type='package' version="8.2.4">raxml</requirement> |
| 0 | 5 </requirements> |
| 6 <command interpreter="python">raxml.py | |
| 7 ## Required parameters | |
|
33
d2a97acb9cfc
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
32
diff
changeset
|
8 ## binary is hard-coded to the pthreads enabled raxml executable if threads > 1 |
| 0 | 9 ## (-T) |
|
31
b208b2d8148d
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
30
diff
changeset
|
10 ## Cannot have --threads 1 |
|
41
9b315740c5e8
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
40
diff
changeset
|
11 #set $slots = $getVar('GALAXY_SLOTS', 1) |
|
40
7f7a15dc5b83
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
39
diff
changeset
|
12 #if $slots == 1: |
|
33
d2a97acb9cfc
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
32
diff
changeset
|
13 --binary "raxmlHPC" |
|
39
263441e91fbd
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
38
diff
changeset
|
14 --threads 1 |
|
38
2d72690325cf
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
37
diff
changeset
|
15 #else: |
|
33
d2a97acb9cfc
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
32
diff
changeset
|
16 --binary "raxmlHPC-PTHREADS" |
|
40
7f7a15dc5b83
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
39
diff
changeset
|
17 --threads $slots |
|
25
2d9f1ef9b5cc
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
24
diff
changeset
|
18 #end if |
| 0 | 19 ## (-s) |
| 20 --source $infile | |
| 21 ## (-m) | |
| 22 --model_type $search_model_selector.model_type | |
| 23 --base_model $search_model_selector.base_model | |
| 24 #if str( $search_model_selector.model_type ) == 'aminoacid': | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
25 $search_model_selector.aa_model_empirical_base_frequencies |
| 0 | 26 #if $search_model_selector.aa_search_matrix: |
| 27 --aa_search_matrix $search_model_selector.aa_search_matrix | |
| 28 #end if | |
| 29 #end if | |
| 30 ## (-p) | |
| 31 #if $random_seed: | |
| 32 --random_seed $random_seed | |
| 33 #else | |
| 34 --random_seed 1234567890 | |
| 35 #end if | |
| 36 | |
| 37 ## Optional parameters | |
| 38 | |
| 39 #if str( $selExtraOpts.extraOptions ) == 'full': | |
| 40 ## (-N/#) | |
| 41 #if $selExtraOpts.number_of_runs: | |
| 42 --number_of_runs $selExtraOpts.number_of_runs | |
| 43 #end if | |
| 44 #if $selExtraOpts.number_of_runs_bootstop: | |
| 45 --number_of_runs_bootstop $selExtraOpts.number_of_runs_bootstop | |
| 46 #end if | |
| 47 ## (-a) | |
| 48 #if $selExtraOpts.weightfile: | |
| 49 --weightfile $selExtraOpts.weightfile | |
| 50 #end if | |
| 51 ## (-b) | |
| 52 #if str ($selExtraOpts.secondary_structure_model) != "": | |
| 53 --secondary_structure_model $selExtraOpts.secondary_structure_model | |
| 54 #end if | |
| 55 ## (-b) | |
| 56 #if $selExtraOpts.bootseed: | |
| 57 --bootseed $selExtraOpts.bootseed | |
| 58 #end if | |
| 59 ## (-c) | |
| 60 #if $selExtraOpts.numofcats: | |
| 61 --numofcats $selExtraOpts.numofcats | |
| 62 #end if | |
| 63 ## (-d) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
64 $selExtraOpts.search_complete_random_tree |
| 0 | 65 ## (-D) |
|
21
48526baa210f
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501-dirty
tiagoantao
parents:
20
diff
changeset
|
66 $selExtraOpts.ml_search_convergence |
| 0 | 67 ## (-e) |
| 68 #if $selExtraOpts.model_opt_precision: | |
| 69 --model_opt_precision $selExtraOpts.model_opt_precision | |
| 70 #end if | |
| 71 ## (-E) | |
| 72 #if $selExtraOpts.excludefile: | |
| 73 --excludefile $selExtraOpts.excludefile | |
| 74 #end if | |
| 75 ## (-f) | |
| 76 #if $selExtraOpts.search_algorithm: | |
| 77 --search_algorithm $selExtraOpts.search_algorithm | |
| 78 #end if | |
| 79 ## (-F) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
80 $selExtraOpts.save_memory_cat_model |
| 0 | 81 ## (-g) |
| 82 #if $selExtraOpts.groupingfile: | |
| 83 --groupingfile $selExtraOpts.groupingfile | |
| 84 #end if | |
| 85 ## (-G) | |
| 86 #if $selExtraOpts.enable_evol_heuristics: | |
| 87 --enable_evol_heuristics $selExtraOpts.enable_evol_heuristics | |
| 88 #end if | |
| 89 ## (-i) | |
| 90 #if $selExtraOpts.initial_rearrangement_setting: | |
| 91 --initial_rearrangement_setting $selExtraOpts.initial_rearrangement_setting | |
| 92 #end if | |
| 93 ## (-I) | |
| 94 #if $selExtraOpts.posterior_bootstopping_analysis: | |
| 95 --posterior_bootstopping_analysis $selExtraOpts.posterior_bootstopping_analysis | |
| 96 #end if | |
| 97 ## (-J) | |
| 98 #if $selExtraOpts.majority_rule_consensus: | |
| 99 --majority_rule_consensus $selExtraOpts.majority_rule_consensus | |
| 100 #end if | |
| 101 ## (-k) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
102 $selExtraOpts.print_branch_lengths |
| 0 | 103 ## (-K) |
| 104 #if str ($selExtraOpts.multistate_sub_model) != "": | |
| 105 --multistate_sub_model $selExtraOpts.multistate_sub_model | |
| 106 #end if | |
| 107 ## (-m) - see elsewhere | |
| 108 ## (-M) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
109 $selExtraOpts.estimate_individual_branch_lengths |
| 0 | 110 ## (-n) - see elsewhere |
| 111 ## (-o) | |
| 112 #if $selExtraOpts.outgroup_name: | |
| 113 --outgroup_name $selExtraOpts.outgroup_name | |
| 114 #end if | |
| 115 ## (-O) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
116 $selExtraOpts.disable_undetermined_seq_check |
| 0 | 117 ## (-P) |
| 118 #if $selExtraOpts.external_protein_model: | |
| 119 --external_protein_model $selExtraOpts.external_protein_model | |
| 120 #end if | |
| 121 ## (-q) | |
| 122 #if $selExtraOpts.multiple_model: | |
| 123 --multiple_model $selExtraOpts.multiple_model | |
| 124 #end if | |
| 125 ## (-r) | |
| 126 #if $selExtraOpts.constraint_file: | |
| 127 --constraint_file $selExtraOpts.constraint_file | |
| 128 #end if | |
| 129 ## (-R) | |
| 130 #if $selExtraOpts.bin_model_parameter_file: | |
| 131 --bin_model_parameter_file $selExtraOpts.bin_model_parameter_file | |
| 132 #end if | |
| 133 ## (-S) | |
| 134 #if $selExtraOpts.secondary_structure_file: | |
| 135 --secondary_structure_file $selExtraOpts.secondary_structure_file | |
| 136 #end if | |
| 137 ## (-t) | |
| 138 #if $selExtraOpts.start_tree_file: | |
| 139 --starting_tree $selExtraOpts.start_tree_file | |
| 140 #end if | |
| 141 ## (-T) see elsewhere | |
| 142 ## (-u) | |
|
22
ec5e58cd3a68
planemo upload commit db9228a4b4042ad9493237882a8266529bb69931
tiagoantao
parents:
21
diff
changeset
|
143 $selExtraOpts.use_median_approximation |
| 0 | 144 ## (-U) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
145 $selExtraOpts.save_memory_gappy_alignments |
| 0 | 146 ## (-V) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
147 $selExtraOpts.disable_rate_heterogeneity |
| 0 | 148 ## (-W) |
| 149 #if $selExtraOpts.sliding_window_size: | |
| 150 --sliding_window_size $selExtraOpts.sliding_window_size | |
| 151 #end if | |
| 152 ## (-x) | |
| 153 #if $selExtraOpts.rapid_bootstrap_random_seed: | |
| 154 --rapid_bootstrap_random_seed $selExtraOpts.rapid_bootstrap_random_seed | |
| 155 #end if | |
| 156 ## (-y) | |
|
23
dc9a86a5d97e
planemo upload commit db9228a4b4042ad9493237882a8266529bb69931-dirty
tiagoantao
parents:
22
diff
changeset
|
157 $selExtraOpts.parsimony_starting_tree_only |
| 0 | 158 ## (-z) |
| 159 #if $selExtraOpts.file_multiple_trees: | |
| 160 --file_multiple_trees $selExtraOpts.file_multiple_trees | |
| 161 #end if | |
| 162 #end if | |
| 163 | |
| 164 </command> | |
| 165 <inputs> | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
166 ## (-s) |
|
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
167 <param type="data" format="fasta,phylip" name="infile" label="Source file"/> |
| 0 | 168 ## (-m) |
| 169 <conditional name="search_model_selector"> | |
| 170 <param name="model_type" type="select" label="Model Type"> | |
| 171 <option value="nucleotide" selected="true">Nucleotide</option> | |
| 172 <option value="aminoacid">Amino Acid</option> | |
| 173 <option value="binary">Binary</option> | |
| 174 <option value="multistate">Multistate</option> | |
| 175 </param> | |
| 176 <when value="nucleotide"> | |
| 177 ## Nucleotide substitution models | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
178 <param name="base_model" type="select" label="Substitution Model"> |
| 0 | 179 <option value="GTRCAT">GTRCAT</option> |
| 180 <option value="GTRCATI">GTRCATI</option> | |
| 181 <option value="GTRGAMMA" select="true">GTRGAMMA</option> | |
| 182 <option value="GTRGAMMAI">GTRGAMMAI</option> | |
| 183 </param> | |
| 184 </when> | |
| 185 ## Aminoacid substitution models | |
| 186 <when value="aminoacid"> | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
187 <param name="aa_model_empirical_base_frequencies" |
|
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
188 type="boolean" checked="no" truevalue="--aa_empirical_freq" falsevalue="" display="checkboxes" label="Use empirical base frequencies in AA models" /> |
| 0 | 189 <param name="base_model" type="select" label="Substitution Model (-m)"> |
| 190 <option value="PROTCAT" select="true">PROTCAT</option> | |
| 191 <option value="PROTCATI">PROTCATI</option> | |
| 192 <option value="PROTGAMMA">PROTGAMMA</option> | |
| 193 <option value="PROTGAMMAI">PROTGAMMAI</option> | |
| 194 </param> | |
| 195 <param name="aa_search_matrix" type="select" label="Matrix"> | |
| 196 <option value="DAYHOFF" select="true">DAYHOFF</option> | |
| 197 <option value="DCMUT">DCMUT</option> | |
| 198 <option value="JTT">JTT</option> | |
| 199 <option value="MTREV">MTREV</option> | |
| 200 <option value="WAG">WAG</option> | |
| 201 <option value="RTREV">RTREV</option> | |
| 202 <option value="CPREV">CPREV</option> | |
| 203 <option value="VT">VT</option> | |
| 204 <option value="BLOSUM62">BLOSUM62</option> | |
| 205 <option value="MTMAM">MTMAM</option> | |
| 206 <option value="LG">LG</option> | |
| 207 <option value="MTART">MTART</option> | |
| 208 <option value="MTZOA">MTZOA</option> | |
| 209 <option value="PMB">PMB</option> | |
| 210 <option value="HIVB">HIVB</option> | |
| 211 <option value="HIVW">HIVW</option> | |
| 212 <option value="JTTDCMUT">JTTDCMUT</option> | |
| 213 <option value="FLU">FLU</option> | |
| 214 <option value="DUMMY">DUMMY</option> | |
| 215 <option value="DUMMY2">DUMMY2</option> | |
| 216 <option value="GTR_UNLINKED">GTR_UNLINKED</option> | |
| 217 <option value="GTR">GTR</option> | |
| 218 </param> | |
| 219 </when> | |
| 220 ## Binary substitution models | |
| 221 <when value="binary"> | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
222 <param name="base_model" type="select" label="Substitution Model"> |
| 0 | 223 <option value="BINCAT">BINCAT</option> |
| 224 <option value="BINCATI">BINCATI</option> | |
| 225 <option value="BINGAMMA">BINGAMMA</option> | |
| 226 <option value="BINGAMMAI">BINGAMMAI</option> | |
| 227 </param> | |
| 228 </when> | |
| 229 ## Multi-state substitution models | |
| 230 <when value="multistate"> | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
231 <param name="base_model" type="select" label="Substitution Model"> |
| 0 | 232 <option value="MULTICAT">MULTICAT</option> |
| 233 <option value="MULTICATI">MULTICATI</option> | |
| 234 <option value="MULTIGAMMA">MULTIGAMMA</option> | |
| 235 <option value="MULTIGAMMAI">MULTIGAMMAI</option> | |
| 236 </param> | |
| 237 </when> | |
| 238 </conditional> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
239 <param name="random_seed" type="integer" value="1234567890" label="Random |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
240 seed used for the parsimony inferences" /> |
| 0 | 241 <conditional name="selExtraOpts"> |
| 242 <param name="extraOptions" type="select" label="RAxML options to use" | |
| 243 help="The required minimal settings are the input file and the | |
| 244 substitution model. To specify extra options select the 'Full option list'"> | |
| 245 <option value="required">Required options only</option> | |
| 246 <option value="full">Full option list</option> | |
| 247 </param> | |
| 248 <when value="full"> | |
| 249 ## (-N/#) | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
250 <param name="number_of_runs" type="integer" value="" |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
251 label="Number of runs" help="Specify the number of |
|
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
252 alternative runs (-N|#) on distinct starting trees In combination |
| 0 | 253 with the '-b' option will invoke a multiple boostrap analysis. |
| 254 You can add the bootstopping criteria by choosing the autoMR, | |
| 255 autoMRE, autoMRE_IGN, or autoFC value in a menu below instead of | |
| 256 providing a number here. Bootstopping will only work in | |
| 257 combination with '-x' or '-b'." | |
| 258 optional="True" /> | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
259 <param name="number_of_runs_bootstop" type="select" label="Use bootstopping criteria for number of runs" optional="True"> |
| 0 | 260 <option value="" selected="yes"></option> |
| 261 <option value="autoMR">autoMR</option> | |
| 262 <option value="autoMRE">autoMRE</option> | |
| 263 <option value="autoMRE_IGN">autoMRE_IGN</option> | |
| 264 <option value="autoFC">autoFC</option> | |
| 265 </param> | |
| 266 ## Alphabetical Listing of Advanced Options | |
| 267 ## (-a) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
268 <param format="txt" name="weightfile" type="data" label="Column weight file" optional="True" /> |
| 0 | 269 ## (-A) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
270 <param name="secondary_structure_model" type="select" label="Secondary structure substitution model" optional="True"> |
| 0 | 271 <option value="" selected="yes"></option> |
| 272 <option value="S6A">S6A</option> | |
| 273 <option value="S6B">S6B</option> | |
| 274 <option value="S6C">S6C</option> | |
| 275 <option value="S6D">S6D</option> | |
| 276 <option value="S6E">S6E</option> | |
| 277 <option value="S7A">S7A</option> | |
| 278 <option value="S7B">S7B</option> | |
| 279 <option value="S7C">S7C</option> | |
| 280 <option value="S7D">S7D</option> | |
| 281 <option value="S7E">S7E</option> | |
| 282 <option value="S7F">S7F</option> | |
| 283 <option value="S16">S16</option> | |
| 284 <option value="S16A">S16A</option> | |
| 285 <option value="S16B">S16B</option> | |
| 286 </param> | |
| 287 ## (-b) | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
288 <param name="bootseed" type="integer" value="" label="Random number for non-parametric bootstrapping" refresh_on_change='true' optional="True" /> |
| 0 | 289 ## (-x) |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
290 <param name="rapid_bootstrap_random_seed" type="integer" value='' label="Rapid bootstrapping random seed" optional="True" help="Specify a random seed and turn on rapid bootstrapping. CAUTION: unlike in version 7.0.4 RAxML will conduct rapid BS replicates under the model of rate heterogeneity you specified via '-m' and not by default under CAT." /> |
| 0 | 291 ## (-B) |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
292 <param name="cutoff_threshold" type="float" label="MR Cutoff threshold" value="" help="Cutoff threshold for the MR-based bootstopping criteria, recommended value is 0.1" optional="True" /> |
| 0 | 293 ## (-c) |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
294 <param name="numofcats" type="integer" label="Number of Rate Categories for GTRCAT/GTRMIX" optional="True" /> |
| 0 | 295 ## (-C) Conduct model parameter optimization doesn't work in the pthreads version. Skip for now. |
| 296 ## (-d) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
297 <param name="search_complete_random_tree" type="boolean" checked="False" truevalue="--search_complete_random_tree" falsevalue="" display="checkboxes" label="Start ML optimization from a complete random starting tree" /> |
| 0 | 298 ## (-D) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
299 <param name="ml_search_convergence" type="boolean" checked="False" truevalue="--ml_search_convergence" falsevalue="" label="ML search convergence criterion" /> |
| 0 | 300 ## (-e) |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
301 <param name="model_opt_precision" type="float" label="Model optimization precision" value="" help="Set model optimization precision in log likelihood units when MIX/MIXI or GAMMA/GAMMAI models are used" optional="True" /> |
| 0 | 302 ## (-E) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
303 <param format="txt" name="excludefile" type="data" label="Exclude file" optional="True" /> |
| 0 | 304 ## (-f) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
305 <param name="search_algorithm" type="select" label="Algorithm to execute" optional="True"> |
| 0 | 306 <option value="a">Rapid bootstrap and best ML tree search (a)</option> |
| 307 <option value="A">Compute marginal ancestral states (A)</option> | |
| 308 <option value="b">Draw bipartition information (b)</option> | |
| 309 <option value="c">Check if the alignment can be read (c)</option> | |
| 310 <option value="d" selected="true">Hill-climbing ML Search (d) (default)</option> | |
| 311 <option value="e">Optimize GAMMA/GAMMAI model/branches (e)</option> | |
| 312 <option value="g">Compute per-site log likelihoods for -z trees (g)</option> | |
| 313 <option value="h">Compute log likelihood test for -t / -z trees (h)</option> | |
| 314 <option value="j">Generate bootstrapped alignment files (j)</option> | |
| 315 <option value="J">Compute SH-like support values for the -t tree (J)</option> | |
| 316 <option value="m">Compare bipartitions between -t and -z trees (m)</option> | |
| 317 <option value="n">Compute log likelihood score for -z trees (n)</option> | |
| 318 <option value="o">Use old slower search algorithm (o)</option> | |
| 319 <option value="p">Stepwise MP addition of new sequences (p)</option> | |
| 320 <option value="q">Fast quartet calculator (q)</option> | |
| 321 <option value="r">Compute pairwise RF distances in -z trees (r)</option> | |
| 322 <option value="s">Split a multi-gene alignment (s)</option> | |
| 323 <option value="S">Compute site-specific placement bias (S)</option> | |
| 324 <option value="t">Randomized tree searches on a fixed starting tree (t)</option> | |
| 325 <option value="T">Final optimization of a ML tree from a bootstrap (T)</option> | |
| 326 <option value="u">Morphological weight calibration using ML on a -t tree (u)</option> | |
| 327 <option value="v">Classify environmental sequences (v)</option> | |
| 328 <option value="w">Compute ELW-test on -z trees (w)</option> | |
| 329 <option value="x">Compute GAMMA model pair-wise ML distances on a tree (x)</option> | |
| 330 <option value="y">Classify environmental sequences into a reference tree (y)</option> | |
| 331 </param> | |
| 332 ## (-F) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
333 <param name="save_memory_cat_model" type="boolean" checked="no" truevalue="--save_memory_cat_model" falsevalue="" display="checkboxes" label="ML tree searches under CAT model" optional="True" help="ML tree searches under CAT model for very large trees without switching to GAMMA in the end (saves memory) and no thorough optimization under GAMMA" /> |
| 0 | 334 ## (-g) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
335 <param name="groupingfile" format="txt" type="data" label="Multifurcating constraint tree" optional="True" /> |
| 0 | 336 ## (-G) |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
337 <param name="enable_evol_heuristics" type="float" label="Enable the ML-based evolutionary placement algorithm heuristics" help="Enable the ML-based evolutionary placement algorithm heuristics by specifiyng a threshold value (fraction of insertion branches to be evaluated using slow insertions under ML)." optional="True" > |
| 0 | 338 <validator type="in_range" message="0.0 <= fraction <= 1.0" min="0.0" max="1.0"/> |
| 339 </param> | |
| 340 ## (-i) | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
341 <param name="initial_rearrangement_setting" type="integer" value="" label="Initial rearrangement setting" optional="True" /> |
| 0 | 342 ## (-I) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
343 <param name="posterior_bootstopping_analysis" type="select" label="Posterior bootstopping analysis" optional="True"> |
| 0 | 344 <option value="" selected="True"></option> |
| 345 <option value="autoFC">Frequency-based criterion (autoFC)</option> | |
| 346 <option value="autoMR">Majority-rule consensus tree criterion (autoMR)</option> | |
| 347 <option value="autoMRE">Extended majority-rule consensus tree criterion (autoMRE)</option> | |
| 348 <option value="autoMRE_IGN">Extended MR consensus tree criterion with bipartitions (autoMRE_IGN)</option> | |
| 349 </param> | |
| 350 ## (-j) - EMPTY - we cannot handle intermediate tree files in Galaxy | |
| 351 ## (-J) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
352 <param name="majority_rule_consensus" type="select" label="Compute consensus tree" optional="True"> |
| 0 | 353 <option value="" selected="True"></option> |
| 354 <option value="MR">Majority-rule consensus tree (MR)</option> | |
| 355 <option value="MRE">Extended majority-rule consensus tree (MRE)</option> | |
| 356 <option value="STRICT">Strict consensus tree (STRICT)</option> | |
| 357 <option value="STRICT_DROP">Identify strict dropsets (STRICT_DROP)</option> | |
| 358 <option value="MR_DROP">Identify majority-rule dropsets (MR_DROP)</option> | |
| 359 </param> | |
| 360 ## (-k) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
361 <param name="print_branch_lengths" type="boolean" checked="no" truevalue="--print_branch_lengths" falsevalue="" display="checkboxes" label="Print bootstrapped trees with branch lengths" help="Specifies that bootstrapped trees should be printed with branch lengths. The bootstraps will run a bit longer, because model parameters will be optimized at the end of each run under GAMMA or GAMMA+P-Invar respectively." optional="True" /> |
| 0 | 362 ## (-K) |
| 363 <param name="multistate_sub_model" type="select" label="Specify a | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
364 multi-state substitution model" optional="True"> |
| 0 | 365 <option value="" selected="true"></option> |
| 366 <option value="GTR">GTR</option> | |
| 367 <option value="ORDERED">ORDERED</option> | |
| 368 <option value="MK">MK</option> | |
| 369 </param> | |
| 370 ## (-M) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
371 <param name="estimate_individual_branch_lengths" type="boolean" checked="no" truevalue="--estimate_individual_branch_lengths" falsevalue="" display="checkboxes" label="Estimate individual per-partition branch lengths" help="Only has effect with a partition file (-q)." optional="True" /> |
| 0 | 372 ## (-n) name is hard-coded to 'galaxy' for more straightforward handling of output files |
| 373 ## (-o) | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
374 <param name="outgroup_name" type="text" value="" label="Outgroup name" help="E.g. Mouse or Mouse,Rat. No spaces between taxon names are allowed." optional="True" /> |
| 0 | 375 ## (-O) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
376 <param name="disable_undetermined_seq_check" type="boolean" checked="no" truevalue="--disable_undertermined_seq_check" falsevalue="" display="checkboxes" label="Disable check for completely undetermined sequence in alignment" optional="True" help="Disable the check for completely undetermined sequence in alignment. The program will not exit with an error message when '-O' is specified." /> |
|
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
377 <param name="external_protein_model" format="txt" type="data" label="External AA substitution model" help="Specify the file name of a user-defined AA (Protein) substitution model. This file must contain 420 entries, the first 400 being the AA substitution rates (this must be a symmetric matrix) and the last 20 are the empirical base frequencies." optional="True" /> |
| 0 | 378 ## (-q) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
379 <param name="multiple_model" format="txt" type="data" label="Multiple model assignment to alignment partitions" optional="True" help="Specify the file name which contains the assignment of models to alignment partitions for multiple models of substitution. For the syntax of this file please consult the manual." /> |
| 0 | 380 ## (-r) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
381 <param name="constraint_file" format="txt" type="data" label="Binary constraint tree" optional="True" help="Specify the file name of a binary constraint tree. This tree does not need to be comprehensive, i.e. must not contain all taxa." /> |
| 0 | 382 ## (-R) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
383 <param name="bin_model_parameter_file" format="txt" type="data" label="Binary model parameter file" optional="True" help="Specify the file name of a binary model parameter file that has previously been generated with RAxML using the '-f e' tree evaluation option." /> |
| 0 | 384 ## (-s) source file option is in the required options section |
| 385 ## (-S) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
386 <param name="secondary_structure_file" format="txt" type="data" label="Secondary structure file" optional="True" help="Specify the name of a secondary structure file. The file can contain '.' for alignment columns that do not form part of a stem and characters '()<>[]{}' to define stem regions and pseudoknots."/> |
| 0 | 387 ## (-t) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
388 <param name="start_tree_file" format="txt" type="data" label="Starting tree file" optional="True" help="Specify a user starting tree file name in Newick format." /> |
| 0 | 389 ## (-T) is hard-coded in the required options section |
|
22
ec5e58cd3a68
planemo upload commit db9228a4b4042ad9493237882a8266529bb69931
tiagoantao
parents:
21
diff
changeset
|
390 <param name="use_median_approximation" type="boolean" checked="no" truevalue="--use_median_approximation" falsevalue="" display="checkboxes" label="Use the median for the discrete approximation" help="Use the median for the discrete approximation of the GAMMA model of rate heterogeneity." optional="True" /> |
| 0 | 391 ## (-U) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
392 <param name="save_memory_gappy_alignments" type="boolean" checked="no" truevalue="--save_memory_gappy_alignments" falsevalue="" display="checkboxes" label="Save memory on large gappy alignments" help="Try to save memory by using SEV-based implementation for gap columns on large gappy alignments." optional="True" /> |
| 0 | 393 ## (-V) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
394 <param name="disable_rate_heterogeneity" type="boolean" checked="no" truevalue="--disable_raite_heterogeneity" falsevalue="" display="checkboxes" label="Disable rate heterogeneity" help="Disable rate heterogeneity among sites model and use one without rate heterogeneity instead. Only works if you specify the CAT model of rate heterogeneity." optional="True" /> |
| 0 | 395 ## (-W) |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
396 <param name="sliding_window_size" type="integer" value="" label="Sliding window size" optional="True" help="Sliding window size for leave-one-out site-specific placement bias algorithm. Only effective when used in combination with '-f S'. Default is '100 sites'" /> |
| 0 | 397 ## (-x) - see it by the (-b) |
| 398 ## (-y) | |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
399 <param name="parsimony_starting_tree_only" type="boolean" checked="no" truevalue="--parsimony_starting_tree_only" falsevalue="" display="checkboxes" label="Compute a randomized parsimony starting tree only" optional="True" help="If you want to only compute a parsimony starting tree with RAxML specify '-y'. The program will exit after computation of the starting tree." /> |
| 0 | 400 ## (-z) |
|
20
d930ea30718d
planemo upload commit ed695dda2a4744fbe43dccf521d4de7a57c85501
tiagoantao
parents:
19
diff
changeset
|
401 <param name="file_multiple_trees" format="txt" type="data" label="Multiple trees file" help="Specify the file name of a file containing multiple trees e.g. from a bootstrap that shall be used to draw bipartition values onto a tree provided with '-t', It can also be used to compute per site log likelihoods in combination with '-f g' and to read a bunch of trees for '-f h', '-f m' and '-f n'." optional="True" /> |
| 0 | 402 </when> ## full option list |
| 403 </conditional> ## END $selExtraOpts | |
| 404 </inputs> | |
| 405 <outputs> | |
| 406 <data format="txt" name="info" from_work_dir="RAxML_info.galaxy" label="Info" /> | |
| 407 ## REQUIRED | |
| 408 <data format="txt" name="logReq" from_work_dir="RAxML_log.galaxy" label="Log"> | |
| 409 <filter>(selExtraOpts['extraOptions'] == 'required')</filter> | |
| 410 <filter>selExtraOpts['search_algorithm'] != 'a'</filter> | |
| 411 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
412 <data format="nhx" name="parsimonyTreeReq" from_work_dir="RAxML_parsimonyTree.galaxy" label="Parsimony Tree"> |
| 0 | 413 <filter>(selExtraOpts['extraOptions'] == 'required')</filter> |
| 414 <filter>selExtraOpts['search_algorithm'] != 'a'</filter> | |
| 415 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
416 <data format="nhx" name="resultReq" from_work_dir="RAxML_result.galaxy" label="Result"> |
| 0 | 417 <filter>(selExtraOpts['extraOptions'] == 'required')</filter> |
| 418 <filter>selExtraOpts['search_algorithm'] != 'a'</filter> | |
| 419 </data> | |
| 420 ## ADVANCED | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
421 <data format="nhx" name="randomTree" from_work_dir="RAxML_randomTree.galaxy" label="Random Tree"> |
| 0 | 422 <filter>selExtraOpts['search_complete_random_tree'] is True</filter> |
| 423 <filter>selExtraOpts['extraOptions'] == "full"</filter> | |
| 424 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
425 <data format="nhx" name="bestTree" from_work_dir="RAxML_bestTree.galaxy" label="Best-scoring ML Tree"> |
|
45
c7c3ba18e828
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
43
diff
changeset
|
426 <!-- <filter>(selExtraOpts['extraOptions'] == 'full')</filter> --> |
|
c7c3ba18e828
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
43
diff
changeset
|
427 <!-- <filter>(selExtraOpts['search_algorithm'] != 'b')</filter> |
|
42
fd919b8a31c6
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
41
diff
changeset
|
428 <filter>(selExtraOpts['majority_rule_consensus'] == '')</filter> --> |
| 0 | 429 </data> |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
430 <data format="nhx" name="bestTreeMultipleModel" from_work_dir="RAxML_bestTree.galaxy" label="Best-scoring ML Tree"> |
| 0 | 431 <filter>(selExtraOpts['extraOptions'] == "full")</filter> |
| 432 <filter>(selExtraOpts['multiple_model'] != '')</filter> | |
| 433 </data> | |
| 434 <data format="txt" name="bestTreeMultipleModelPartitions" from_work_dir="RAxML_bestTreePartitions.galaxy" label="Best-scoring ML Tree Partitions"> | |
| 435 <filter>(selExtraOpts['extraOptions'] == "full")</filter> | |
| 436 <filter>selExtraOpts['multiple_model'] is not None </filter> | |
| 437 </data> | |
| 438 <data format="txt" name="log" from_work_dir="RAxML_log.galaxy" label="Log"> | |
| 439 <filter>(selExtraOpts['extraOptions'] == "full")</filter> | |
| 440 <filter>(selExtraOpts['rapid_bootstrap_random_seed'] == '')</filter> | |
| 441 <filter>(selExtraOpts['bootseed'] == '')</filter> | |
| 442 <filter>(selExtraOpts['search_algorithm'] != 'a')</filter> | |
| 443 <filter>(selExtraOpts['search_algorithm'] != 'b')</filter> | |
| 444 <filter>(selExtraOpts['majority_rule_consensus'] == '') </filter> | |
| 445 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
446 <data format="nhx" name="result" from_work_dir="RAxML_result.galaxy" label="Result"> |
| 0 | 447 <filter>(selExtraOpts['extraOptions'] == "full")</filter> |
| 448 <filter>(selExtraOpts['rapid_bootstrap_random_seed'] == '')</filter> | |
| 449 <filter>selExtraOpts['bootseed'] == ''</filter> | |
| 450 <filter>selExtraOpts['search_algorithm'] != 'a'</filter> | |
| 451 <filter>selExtraOpts['search_algorithm'] != 'b'</filter> | |
| 452 <filter>(selExtraOpts['majority_rule_consensus'] == '') </filter> | |
| 453 </data> | |
| 454 <data format="txt" name="resultMultipleModelPartitions" from_work_dir="RAxML_resultPartitions.galaxy" label="Result Partitions"> | |
| 455 <filter>(selExtraOpts['extraOptions'] == "full")</filter> | |
| 456 <filter>(selExtraOpts['multiple_model'] is not None)</filter> | |
| 457 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
458 <data format="nhx" name="parsimonyTree" from_work_dir="RAxML_parsimonyTree.galaxy" label="Parsimony Tree"> |
| 0 | 459 <filter>(selExtraOpts['extraOptions'] == "full")</filter> |
|
55
730aff7a4ae5
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
54
diff
changeset
|
460 <!-- |
| 0 | 461 <filter>(selExtraOpts['rapid_bootstrap_random_seed'] == '')</filter> |
| 462 <filter>(selExtraOpts['bootseed'] == '')</filter> | |
| 463 <filter>(selExtraOpts['search_algorithm'] != 'a')</filter> | |
| 464 <filter>(selExtraOpts['constraint_file'] is None)</filter> | |
| 465 <filter>(selExtraOpts['groupingfile'] is None)</filter> | |
| 466 <filter>(selExtraOpts['search_complete_random_tree'] is False)</filter> | |
| 467 <filter>(selExtraOpts['start_tree_file'] is None)</filter> | |
| 468 <filter>(selExtraOpts['majority_rule_consensus'] == '') </filter> | |
|
55
730aff7a4ae5
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
54
diff
changeset
|
469 --> |
| 0 | 470 </data> |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
471 <data format="nhx" name="bootstrap" from_work_dir="RAxML_bootstrap.galaxy" label="Final Bootstrap Trees"> |
| 0 | 472 <filter>selExtraOpts['extraOptions'] == "full"</filter> |
| 473 <filter>selExtraOpts['number_of_runs'] != '' or selExtraOpts['number_of_runs_bootstop'] != ''</filter> | |
| 474 <filter>selExtraOpts['rapid_bootstrap_random_seed'] != '' or selExtraOpts['bootseed'] != ''</filter> | |
| 475 </data> | |
| 476 <data format="txt" name="bipartitions" from_work_dir="RAxML_bipartitions.galaxy" label="Bipartitions"> | |
| 477 <filter>(selExtraOpts['search_algorithm'] == 'b') or ((selExtraOpts['search_algorithm'] == 'a') and (selExtraOpts['rapid_bootstrap_random_seed'] != '')) </filter> | |
| 478 <filter>selExtraOpts['extraOptions'] == "full"</filter> | |
| 479 </data> | |
| 480 <data format="txt" name="bipartitionsBranchLabels" from_work_dir="RAxML_bipartitionsBranchLabels.galaxy" label="Bipartitions Branch Labels"> | |
| 481 <filter>selExtraOpts['extraOptions'] == "full"</filter> | |
| 482 <filter>(selExtraOpts['search_algorithm'] == 'b') or ((selExtraOpts['search_algorithm'] == 'a') and (selExtraOpts['rapid_bootstrap_random_seed'] != '')) </filter> | |
| 483 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
484 <data format="nhx" name="strictConsensusTree" from_work_dir="RAxML_StrictConsensusTree.galaxy" label="Strict Consensus Tree"> |
| 0 | 485 <filter>selExtraOpts['extraOptions'] == "full"</filter> |
| 486 <filter>(selExtraOpts['majority_rule_consensus'] == 'STRICT') </filter> | |
| 487 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
488 <data format="nhx" name="majorityRuleConsensusTree" from_work_dir="RAxML_MajorityRuleConsensusTree.galaxy" label="Majority Rule Consensus Tree"> |
| 0 | 489 <filter>selExtraOpts['extraOptions'] == "full"</filter> |
| 490 <filter>(selExtraOpts['majority_rule_consensus'] == 'MR')</filter> | |
| 491 </data> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
492 <data format="nhx" name="majorityRuleExtendedConsensusTree" from_work_dir="RAxML_MajorityRuleExtendedConsensusTree.galaxy" label="Majority Rule Extended Consensus Tree"> |
| 0 | 493 <filter>selExtraOpts['extraOptions'] == "full"</filter> |
| 494 <filter>(selExtraOpts['majority_rule_consensus'] == 'MRE')</filter> | |
| 495 </data> | |
| 496 <data format="txt" name="bipartitionFreq" from_work_dir="RAxML_bipartitionFrequences.galaxy" label="Pair-wise bipartition frequences."> | |
| 497 <filter>selExtraOpts['search_algorithm'] == 'm' </filter> | |
| 498 <filter>selExtraOpts['extraOptions'] == "full"</filter> | |
| 499 </data> | |
| 500 <data format="txt" name="perSiteLLs" from_work_dir="RAxML_perSiteLLs.galaxy" label="Per-site likelihood schores"> | |
| 501 <filter>selExtraOpts['search_algorithm'] == 'g' </filter> | |
| 502 <filter>selExtraOpts['extraOptions'] == "full"</filter> | |
| 503 </data> | |
| 504 <data format="txt" name="distances" from_work_dir="RAxML_distances.galaxy" label="Pair-wise distances"> | |
| 505 <filter>selExtraOpts['search_algorithm'] == 'x' </filter> | |
| 506 <filter>selExtraOpts['extraOptions'] == "full"</filter> | |
| 507 </data> | |
| 508 </outputs> | |
| 509 <tests> | |
| 510 <test> | |
| 511 <param name="extraOptions" value="required"/> | |
|
7
942aa40bd86c
planemo upload commit 3ac7fc026930ed9a7951e0a937c16d2af2f1499a-dirty
tiagoantao
parents:
6
diff
changeset
|
512 <param name="infile" value="dna.phy"/> |
|
5
b921c26a1cbc
planemo upload commit 3ac7fc026930ed9a7951e0a937c16d2af2f1499a-dirty
tiagoantao
parents:
4
diff
changeset
|
513 <param name="model_type" value="nucleotide"/> |
|
b921c26a1cbc
planemo upload commit 3ac7fc026930ed9a7951e0a937c16d2af2f1499a-dirty
tiagoantao
parents:
4
diff
changeset
|
514 <param name="base_model" value="GTRCAT"/> |
|
53
9fb69dea6b69
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
52
diff
changeset
|
515 <output name="parsimonyTreeReq" file="RAxML_parsimonyTree.galaxy.basic" /> |
|
50
7bfca3137b5b
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
49
diff
changeset
|
516 <output name="bestTree"> |
| 0 | 517 <assert_contents> |
|
11
d9849b4a003b
planemo upload commit 1937f464a877ed056bb7f228d51448e94f69cb9a
tiagoantao
parents:
7
diff
changeset
|
518 <has_text_matching expression="Frog" /> |
| 0 | 519 </assert_contents> |
| 520 </output> | |
| 521 </test> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
522 <test> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
523 <param name="extraOptions" value="full"/> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
524 <param name="infile" value="dna.fasta"/> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
525 <param name="model_type" value="nucleotide"/> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
526 <param name="base_model" value="GTRCAT"/> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
527 <param name="number_of_runs" value="5"/> |
|
54
6e672cd847df
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
53
diff
changeset
|
528 <output name="parsimonyTree"> |
|
6e672cd847df
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
53
diff
changeset
|
529 <assert_contents> |
|
6e672cd847df
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
53
diff
changeset
|
530 <has_text_matching expression="Chicken" /> |
|
6e672cd847df
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
53
diff
changeset
|
531 <has_text_matching expression="RUN.4" /> |
|
6e672cd847df
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
53
diff
changeset
|
532 </assert_contents> |
|
6e672cd847df
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
53
diff
changeset
|
533 </output> |
|
50
7bfca3137b5b
planemo upload commit 7a61e716e89a49e8cd50e6653e986a0683f20b91-dirty
tiagoantao
parents:
49
diff
changeset
|
534 <output name="bestTree"> |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
535 <assert_contents> |
|
48
aadc64648050
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
47
diff
changeset
|
536 <has_text_matching expression="Whale" /> |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
537 </assert_contents> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
538 </output> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
539 </test> |
| 0 | 540 </tests> |
| 541 <help> | |
| 542 Title: | |
| 543 ______ | |
| 544 Randomized Axelerated Maximum Likelihood | |
| 545 | |
| 546 Description: | |
| 547 ____________ | |
| 548 | |
| 549 RAxML is a program for Maximum Likelihood-based inference of large phylogenetic | |
| 550 trees. The program is explicitly being developed to efficiently infer trees for | |
| 551 extremely large datasets, either in terms of the number of taxa and/or the | |
| 552 sequence length. | |
| 553 | |
| 554 URL: | |
| 555 ____ | |
| 556 Author's page: http://www.exelixis-lab.org/ | |
| 557 | |
| 558 Help: http://groups.google.com/group/raxml | |
| 559 | |
| 560 | |
| 561 Tool development: | |
| 562 ----------------- | |
| 563 Oleksandr Moskalenko with adaptations from Tiago Antao. | |
| 564 | |
| 565 </help> | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
566 <citations> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
567 <citation type="doi">10.1093/bioinformatics/btu033</citation> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
568 <citation type="bibtex"> |
| 0 | 569 @article{stamatakis2014raxml, |
| 570 title={RAxML version 8: a tool for phylogenetic analysis and post-analysis of large phylogenies}, | |
| 571 author={Stamatakis, Alexandros}, | |
| 572 journal={Bioinformatics}, | |
| 573 volume={30}, | |
| 574 number={9}, | |
| 575 pages={1312--1313}, | |
| 576 year={2014}, | |
| 577 publisher={Oxford Univ Press}} | |
|
24
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
578 </citation> |
|
c9fd05a8751e
planemo upload commit 34bbc567766bf5b1986ee91bb3e46c542a45e658-dirty
tiagoantao
parents:
23
diff
changeset
|
579 </citations> |
| 0 | 580 </tool> |
