comparison ConcatPhyl.xml @ 0:6d930f037fea draft

planemo upload for repository https://github.com/abims-sbr/adaptsearch commit 38545eb765e0df7fcc6b8130e8e5f87cf4481122
author abims-sbr
date Thu, 13 Apr 2017 05:49:32 -0400
parents
children 1f8d039bd241
comparison
equal deleted inserted replaced
-1:000000000000 0:6d930f037fea
1 <tool name="ConcatPhyl" id="concatphyl" version="1.0">
2
3 <description>
4 Concatenation and phylogeny
5 </description>
6
7 <macros>
8 <import>macros.xml</import>
9 </macros>
10
11 <requirements>
12 <expand macro="python_required" />
13 <!-- <requirement type="package" version="1.3.1">samtools</requirement> -->
14 <requirement type="package" version="8.2.9">raxml</requirement>
15 </requirements>
16
17 <command><![CDATA[
18 python $__tool_directory__/scripts/S01_concatenate.py ${zip}
19
20 #if $format.format_run == "nucleic" :
21 nucleic $format.zip_nuc
22 #elif $format.format_run == "proteic" :
23 proteic $format.zip_aa
24 #end if
25 > ${output};
26
27 raxmlHPC
28 #if $format.format_run == "nucleic" :
29 -n "galaxy_run"
30 ##-q "./05_partitions_gene_NUC"
31 -s "./03_Concatenation_nuc.phy"
32 ## (-m)
33 -m $format.base_model
34 #elif $format.format_run == "proteic" :
35 -n "galaxy_run"
36 ##-q "./06_partitions_gene_AA"
37 -s "./02_Concatenation_aa.phy"
38 ## (-m)
39 -m $format.base_model$format.aa_search_matrix
40 #end if
41
42 ## --- Optional parameters ---
43
44 ##if $raxml_options.options == "yes" :
45
46 ## (-p)
47 #if $random_seed:
48 -p $random_seed
49 #else
50 -p 1234567890
51 #end if
52
53 ## (-N/#)
54 #if $number_of_runs:
55 -N $number_of_runs
56 #end if
57 #if $number_of_runs_bootstop:
58 -# $number_of_runs_bootstop
59 #end if
60
61 ## (-f)
62 #if $search_algorithm:
63 -f $search_algorithm
64 #end if
65
66 ## (-x)
67 #if $rapid_bootstrap_random_seed:
68 -x $rapid_bootstrap_random_seed
69 #end if
70 ##else :
71
72 ##-N 100 -f a -x 12345
73
74 ##end if
75 >> ${output};
76 ]]>
77 </command>
78
79 <inputs>
80
81 <param name="zip" type="data" format="no_unzip.zip,zip" label="Choose your ZIP file" help="Contains the files filter after the tool oase" />
82 <conditional name="format">
83 <param name="format_run" type="select" label="Which format do you want to use for this tool (concatenation and RAxML run) ? ">
84 <option value="nucleic">Nucleic format</option>
85 <option value="proteic">Proteic format</option>
86 </param>
87
88 <when value="nucleic">
89 <param name="zip_nuc" type="data" format="no_unzip.zip,zip" label="Choose your ZIP file" help="It must contain the aligned files without indels in NUCLEIC format" />
90 <!-- ## Nucleotide substitution models -->
91 <param name="base_model" type="select" label="Substitution Model">
92 <option value="GTRCAT">GTRCAT</option>
93 <option value="GTRCATI">GTRCATI</option>
94 <option value="GTRGAMMA" selected="true">GTRGAMMA</option>
95 <option value="GTRGAMMAI">GTRGAMMAI</option>
96 </param>
97 </when>
98
99 <when value="proteic">
100 <param name="zip_aa" type="data" format="no_unzip.zip,zip" label="Choose your ZIP file" help="It must contain the aligned files without indels in PROTEIC format" />
101 <!-- ## Aminoacid substitution models -->
102 <!--<param name="aa_model_empirical_base_frequencies" type="boolean" checked="no" truevalue="F" falsevalue="X" display="checkboxes" label="Use empirical base frequencies in AA models." /> -->
103 <param name="base_model" type="select" label="Substitution Model (-m)">
104 <option value="PROTCAT" selected="true">PROTCAT</option>
105 <option value="PROTCATI">PROTCATI</option>
106 <option value="PROTGAMMA">PROTGAMMA</option>
107 <option value="PROTGAMMAI">PROTGAMMAI</option>
108 </param>
109 <param name="aa_search_matrix" type="select" label="Matrix">
110 <option value="DAYHOFF" selected="true">DAYHOFF</option>
111 <option value="JTT">JTT</option>
112 <option value="WAG">WAG</option>
113 <option value="BLOSUM62">BLOSUM62</option>
114 </param>
115 </when>
116 </conditional>
117
118 <!-- <conditional name="raxml_options"> -->
119
120 <!--
121 <param name="options" type="select" label="Raxml advanced options">
122 <option value="yes">Yes</option>
123 <option value="no" select="true">No</option>
124 </param>
125
126 -->
127
128 <!-- <when value="yes"> -->
129
130 <param name="random_seed" type="integer" value="1234567890" size="12" label="Random seed used for the parsimony inferences" />
131
132 <!-- ## (-N/#) -->
133 <param name="number_of_runs" type="integer" size="8" value="100"
134 label="Number of runs" help="Specify the number of
135 alternative runs (-N|#) on distinct starting trees In combination
136 with the '-b' option will invoke a multiple boostrap analysis.
137 You can add the bootstopping criteria by choosing the autoMR,
138 autoMRE, autoMRE_IGN, or autoFC value in a menu below instead of
139 providing a number here. Bootstopping will only work in
140 combination with '-x' or '-b'."
141 optional="True" />
142 <param name="number_of_runs_bootstop" type="select" label="Use bootstopping criteria for number of runs" optional="True">
143 <option value="" selected="yes"></option>
144 <option value="autoMR">autoMR</option>
145 <option value="autoMRE">autoMRE</option>
146 <option value="autoMRE_IGN">autoMRE_IGN</option>
147 <option value="autoFC">autoFC</option>
148 </param>
149
150 <!-- ## (-f) -->
151 <param name="search_algorithm" type="select" label="Algorithm to execute" optional="True">
152 <option value="a">Rapid bootstrap and best ML tree search (a)</option>
153 <option value="A">Compute marginal ancestral states (A)</option>
154 <option value="b">Draw bipartition information (b)</option>
155 <option value="c">Check if the alignment can be read (c)</option>
156 <option value="d" selected="true">Hill-climbing ML Search (d) (default)</option>
157 <option value="e">Optimize GAMMA/GAMMAI model/branches (e)</option>
158 <option value="g">Compute per-site log likelihoods for -z trees (g)</option>
159 <option value="h">Compute log likelihood test for -t / -z trees (h)</option>
160 <option value="j">Generate bootstrapped alignment files (j)</option>
161 <option value="J">Compute SH-like support values for the -t tree (J)</option>
162 <option value="m">Compare bipartitions between -t and -z trees (m)</option>
163 <option value="n">Compute log likelihood score for -z trees (n)</option>
164 <option value="o">Use old slower search algorithm (o)</option>
165 <option value="p">Stepwise MP addition of new sequences (p)</option>
166 <option value="q">Fast quartet calculator (q)</option>
167 <option value="r">Compute pairwise RF distances in -z trees (r)</option>
168 <option value="s">Split a multi-gene alignment (s)</option>
169 <option value="S">Compute site-specific placement bias (S)</option>
170 <option value="t">Randomized tree searches on a fixed starting tree (t)</option>
171 <option value="T">Final optimization of a ML tree from a bootstrap (T)</option>
172 <option value="u">Morphological weight calibration using ML on a -t tree (u)</option>
173 <option value="v">Classify environmental sequences (v)</option>
174 <option value="w">Compute ELW-test on -z trees (w)</option>
175 <option value="x">Compute GAMMA model pair-wise ML distances on a tree (x)</option>
176 <option value="y">Classify environmental sequences into a reference tree (y)</option>
177 </param>
178
179 <!-- ## (-q) -->
180 <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." />
181
182 <!-- ## (-x) -->
183 <param name="rapid_bootstrap_random_seed" type="integer" value='1234567890' size="7" 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." />
184 <!-- </when> -->
185
186
187 <!-- </conditional> -->
188
189 <param name="out" type="select" label="What format of file do you want for your output (concatenation of the sequences) ? ">
190 <option value="nothing">No output</option>
191 <option value="fasta">Fasta format</option>
192 <option value="phylip">Phylip format</option>
193 <option value="nexus">Nexus format</option>
194 </param>
195 <!-- -m GTRGAMMA -N 100 -f a -x 12345 -->
196
197 <param name="raxml1" type="boolean" label="Do you want the output of RAxML : best tree ? " />
198 <param name="raxml3" type="boolean" label="Do you want the output of RAxML : bi-partition ? " />
199 <param name="raxml4" type="boolean" label="Do you want the output of RAxML : bootstrap ? " help="Only if the option 'rapid bootsptrap' is chosen. When you don't want to choose your options, this output is accessible"/>
200
201 </inputs>
202
203 <outputs>
204 <data name="output" format="txt" label="Phylogeny"/>
205
206 <data name="out_fasta_aa" format="fasta" label="Phylogeny_concatenation_fasta_aa" from_work_dir="02_Concatenation_aa.fas">
207 <filter>format['format_run'] == "proteic" and out == "fasta"</filter>
208 </data>
209
210 <data name="out_phylip_aa" format="phylip" label="Phylogeny_concatenation_phylip_aa" from_work_dir="02_Concatenation_aa.phy">
211 <filter>format['format_run'] == "proteic" and out == "phylip"</filter>
212 </data>
213
214 <data name="out_nexus_aa" format="nexus" label="Phylogeny_concatenation_nexus_aa" from_work_dir="02_Concatenation_aa.nex">
215 <filter>format['format_run'] == "proteic" and out == "nexus"</filter>
216 </data>
217
218 <data name="out_fasta_nuc" format="fasta" label="Phylogeny_concatenation_fasta_nuc" from_work_dir="03_Concatenation_nuc.fas">
219 <filter>format['format_run'] == "nucleic" and out == "fasta"</filter>
220 </data>
221
222 <data name="out_phylip_nuc" format="phylip" label="Phylogeny_concatenation_phylip_nuc" from_work_dir="03_Concatenation_nuc.phy">
223 <filter>format['format_run'] == "nucleic" and out == "phylip"</filter>
224 </data>
225
226 <data name="out_nexus_nuc" format="nexus" label="Phylogeny_concatenation_nexus_nuc" from_work_dir="03_Concatenation_nuc.nex">
227 <filter>format['format_run'] == "nucleic" and out == "nexus"</filter>
228 </data>
229
230 <data name="out_raxml1" format="txt" label="Phylogeny_RAxML_BestTree" from_work_dir="RAxML_bestTree.galaxy_run">
231 <filter>raxml1 == True</filter>
232 </data>
233
234 <data name="out_raxml3" format="txt" label="Phylogeny_RAxML_BiPartition" from_work_dir="RAxML_bipartitions.galaxy_run">
235 <filter>raxml3 == True</filter>
236 </data>
237
238 <data name="out_raxml4" format="txt" label="Phylogeny_RAxML_BootStrap" from_work_dir="RAxML_bootstrap.galaxy_run">
239 <filter>raxml4 == True</filter>
240 </data>
241 </outputs>
242
243 <tests>
244 <test>
245 <param name="zip" ftype="zip" value="from_filter_oase.zip" />
246 <conditional name="format">
247 <param name="format_run" value="nucleic" />
248 <param name="zip_nuc" ftype="zip" value="test_05_output_CDS_Search_input_ConcatPhyl.zip" />
249 <param name="base_model" value="GTRGAMMA" />
250 </conditional>
251 <param name="random_seed" value="1234567890" />
252 <param name="number_of_runs" value="100" />
253 <param name="number_of_runs_bootstop" value="" />
254 <param name="search_algorithm" value="d" />
255 <!-- <param name="multiple_model" value="" /> -->
256 <param name="rapid_bootstrap_random_seed" value="123456789" />
257 <param name="out" value="nothing" />
258 <param name="raxml1" value="True" />
259 <param name="raxml3" value="True" />
260 <param name="raxml4" value="True" />
261 <output name="out_raxml4">
262 <assert_contents>
263 <has_text text="(Ap,(((Pf,Ph),Pg),((Pu,Te),(Am,Th))),Ac);"/>
264 <has_text text="(Ap,(Ph,(Pg,((Pf,(Pu,Te)),(Am,Th)))),Ac);"/>
265 <has_text text="(Ap,(((Pu,Te),(Am,Th)),((Pf,Ph),Pg)),Ac);"/>
266 </assert_contents>
267 </output>
268
269 </test>
270 </tests>
271
272 <help>
273
274 ============
275 What it does
276 ============
277
278 | This tool takes a zip file containing nucleic fasta sequence files and searches different homologous genes from pairwise comparisons.
279 |
280 |
281 | The run RAxML was written by **Alexandros Stamatakis**.
282 | The script was written by **Eric Fontanillas**.
283 | The wrapper was written by **Julie Baffard**.
284
285 --------
286
287 ==========
288 Parameters
289 ==========
290
291 | The choice of the format sequences is possible : **proteic** or **nucleic**
292 |
293
294 The choice of parameters for the RAxML run is possible :
295
296 **-m** :
297 | is the option for the choice of the substitution model.
298 | By default it's GTRGAMMA.
299 |
300
301 **-N** :
302 | is the option for the choice of the number of run
303 | by default it's 100
304 |
305
306 **rapid bootstrapping** :
307 | is the option to have, in addition to the best tree search, the rapid bootstrapping
308 | this translates by : -x 12345 -f a
309 | by default, this option is choosen
310 |
311
312 --------
313
314 ======
315 Inputs
316 ======
317
318 option **Select a zip file containing the input files** :
319
320 | the input zip file must have the extension .ort.zip
321 | At the beginning, when you upload your input, you have to change the extension .zip to .ort.zip
322
323
324 --------
325
326 =======
327 Outputs
328 =======
329
330 This tool, produces the following files :
331
332 **Phylogeny** :
333 | is the general output. It gives the information about the concatenation (statistics) and the RAxML run.
334 |
335
336 **Phylogeny_concatenation_fasta_aa** :
337 | is the output which contains the sequences concatenated in fasta format when you choose the option proteic
338 |
339
340 **Phylogeny_concatenation_phylip_aa** :
341 | is the output which contains the sequences concatenated in phylip format when you choose the option proteic
342 |
343
344 **Phylogeny_concatenation_nexus_aa** :
345 | is the output which contains the sequences concatenated in nexus format when you choose the option proteic
346 |
347
348 **Phylogeny_concatenation_fasta_nuc** :
349 | is the output which contains the sequences concatenated in fasta format when you choose the option nucleic
350 |
351
352 **Phylogeny_concatenation_phylip_nuc** :
353 | is the output which contains the sequences concatenated in phylip format when you choose the option nucleic
354 | it's this output which is used for the RAxML run
355 |
356
357 **Phylogeny_concatenation_nexus_nuc** :
358 | is the output which contains the sequences concatenated in nexus format when you choose the option nucleic
359 |
360
361 **Phylogeny_RAxML_BestTree** :
362 | is the output of RAxML run which contains the Best Tree found
363 |
364
365 **Phylogeny_RAxML_BiPartitionBranchLabel** :
366 | is the output of RAxML run which contains the Best Tree found with supported values as branch labels
367 |
368
369 **Phylogeny_RAxML_BiPartition** :
370 | is the output of RAxML run which contains the Best Tree found with supported values
371 |
372
373 **Phylogeny_RAxML_BootStrap** :
374 | is the output of RAxML run which contains all the boostrapped trees
375 | the number of boostraped trees depending of the option -N (number of run)
376 |
377
378 --------
379
380 ===============
381 Working Example
382 ===============
383
384 ---------------------------
385 The input files and options
386 ---------------------------
387
388 **Input files**
389 | 6 files with 200 nucleic sequences each
390 | a zip file containing 2 locus aligned without indel (in nucleic format)
391 |
392 **Parameters**
393 | option : nucleic
394 | no option for the RAxML run, so by default it's : -m GTRGAMMA -N 100 -f a -x 12345
395 |
396
397 ----------------
398 The output files
399 ----------------
400
401 **Phylogeny** :
402
403 | ******************** CONCATENATION ********************
404 |
405 | Process nucleotides concatenation:
406 | Number of taxa aligned = 6
407 | Number of loci concatenated = 2
408 |
409 | Total length of the concatenated sequences [All codon positions] = 504
410 | Total length of the concatenated sequences [Codon positions 1 and 2] = 336
411 | Total length of the concatenated sequences [Codon position 3] = 168
412 |
413 |
414
415 | ******************** RAxML RUN ********************
416
417
418 the informations of the RAxML run
419
420
421
422 **Phylogeny_concatenation_fasta_nuc** :
423
424 | &gt;Ps
425
426 cgcagttcctcggtgaggcgttgtagttcggcgttcagacggtcagctctctcctcggctgccctgcgagcattcagtgcctcatccatgtcagcttgcatggcggcaatgtctccctccatacggcgcttatctccagtcaaagtggtcacggtgatgttcagctcgttaacacgggatacagcatcgtgcagttcgttttcggcattcttacgagctctctcagatgtctcca
427 gaagagatcgaacgtcctccagctccgtttgtagagcgatcctcttcctctcgagtacggtaaccgccgaacgggcttcctcagcactacggcgctcctcctcaatggcaatctccagctccttgaccttggcactgagtcccttgttggccttagatagttcgttgtttgccctcaatgtctcgaccataatccttaacaacaacacactacagccaacaaccttccttgctt
428 taccctctttgtctatcttgcataatccagcccat
429
430 | Ac
431
432 cgcagttcctcggtgacgcggtgcagctcggcggcgaggcggtctgccctctcctcggccgccctgcgggcgttcagggcctcgtccagatcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccagtcagcgtcgtcaccgtgatgttcagctcgttgacgcgagccgtggcgtcgtgcaactcgttctcggcattcttacgagctcgttcggc
433 ggtctccagtagagatctaacatcctccagctctgtttgcaatgcaatcctcttcctctcgagtacagttacagcggaacgggcttcctcagcactgcggtgctcctcctcaatggcaatttccagctccttgaccttggcactaagtcccttgttggccttggacagctcgttgttggctctaagtgtctccacc---------------------------------------------------------
434 ------------------------
435
436 | &gt;Pp
437 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
438 | ------------------------------------------------------------------------------------------------ataatccttgacgaccacacactgcatccaacaacttttctggccttgccttccttgtctattttacacaaaccagcccat
439
440 | &gt;Ap
441
442 cgcagctcctcggtgacgcggtgcagctcggcggcgaggcgatcggctctctcctcggctgccctgcgggcgttcagggcctcatcaaggtcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccggtcagagtcgtcaccgtgatgttcagctcgttgacgcgagccgtggcgtcgtgtagctcgttctcggcattcttacgagctcgttcggc
443 ggtctccagtagggatctaacatcctccagctccgtttgcaatgcaatcctcttcctctcgagtacagttacagcggaacgggcttcctcagcactgcggcgctcctcctcaatggcaatttccagctccttgaccttcgcactaagtcccttgttggccttggacagttcgttgttggctctaagtgtctccactataatccttaacaacaacacactgcaaccaacaacctt
444 ccgggccttgccttccttgtctatcttgcaaagaccagcccat
445
446 | &gt;Pf
447
448 ctgagctcctcggtgaggcgctggagctcggagttcaggcggtcggctcgttcctcggcggcgcggcgagcgttcagcgcctcgtccatgtcggcctgcatggcggcgatgtccgcttccatgcggcgcttgtcgcccgtcagagtggtgaccgtgatgttcagctcgttgacacgggccacggcgtcgtgcagctcgttctcggcgttcttgcgagctctctccga
449 cgtctccagaagagatcggacgtcctcgagttccgtctgcagggcgatcctcttcctctcgagcacggtaacagcagaacgggcttcctcggcgctacggcgctcttcctcgatggcgatctccagttccttgacctttgcactgagtcccttgttggccttggatagttcgttgttagccctcagtgtctccaccataatccttaacaacaacacactacagccgacaac
450 cttccttgctttcccttctttgtcaatcttgcataatccggcccat
451
452 | &gt;Pg
453
454 cgcagctcctcggtgagacgctgcagttcggaattcaggcggtccgccctctcttcggcagccctgcgggcgttcagcgcctcgtccatgtcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccggtcagcgtggtcacggtgatgttcagctcgttgacgcgagaaacggcgtcgtgcatctcgttttcggcattcttgcgagctctctccgacg
455 tctcaagaagggatcgtacatcctcgagttctgtctggagggcgatcctctttctctcaagcatggtaaccgcggagcgggcttcctcgccactgcggcgttcttcctcgatggtgatctccagttccttaaccttagtactcagtcccttgttggctttggacagttcgttgttcgctcttagtgtctccactataatccttaaccacaacacactacaaccaacaacctttcttgc
456 cttgccttccttgtctatcttacacaagccagcccat
457
458 .. class:: infomark
459
460 | If you choose the option proteic : you obtain a file with proteic sequences
461 |
462
463
464
465 **Phylogeny_concatenation_phylip_nuc** :
466
467 | 6 504
468 | Ps
469
470 cgcagttcctcggtgaggcgttgtagttcggcgttcagacggtcagctctctcctcggctgccctgcgagcattcagtgcctcatccatgtcagcttgcatggcggcaatgtctccctccatacggcgcttatctccagtcaaagtggtcacggtgatgttcagctcgttaacacgggatacagcatcgtgcagttcgttttcggcattcttacgagctctctcagatgtctcca
471 gaagagatcgaacgtcctccagctccgtttgtagagcgatcctcttcctctcgagtacggtaaccgccgaacgggcttcctcagcactacggcgctcctcctcaatggcaatctccagctccttgaccttggcactgagtcccttgttggccttagatagttcgttgtttgccctcaatgtctcgaccataatccttaacaacaacacactacagccaacaaccttccttgctt
472 taccctctttgtctatcttgcataatccagcccat
473
474 | Ac
475
476 cgcagttcctcggtgacgcggtgcagctcggcggcgaggcggtctgccctctcctcggccgccctgcgggcgttcagggcctcgtccagatcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccagtcagcgtcgtcaccgtgatgttcagctcgttgacgcgagccgtggcgtcgtgcaactcgttctcggcattcttacgagctcgttcggc
477 ggtctccagtagagatctaacatcctccagctctgtttgcaatgcaatcctcttcctctcgagtacagttacagcggaacgggcttcctcagcactgcggtgctcctcctcaatggcaatttccagctccttgaccttggcactaagtcccttgttggccttggacagctcgttgttggctctaagtgtctccacc---------------------------------------------------------
478 ------------------------
479
480 | Pp
481 | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
482 | ------------------------------------------------------------------------------------------------ataatccttgacgaccacacactgcatccaacaacttttctggccttgccttccttgtctattttacacaaaccagcccat
483 |
484 | Ap
485
486 cgcagctcctcggtgacgcggtgcagctcggcggcgaggcgatcggctctctcctcggctgccctgcgggcgttcagggcctcatcaaggtcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccggtcagagtcgtcaccgtgatgttcagctcgttgacgcgagccgtggcgtcgtgtagctcgttctcggcattcttacgagctcgttcggc
487 ggtctccagtagggatctaacatcctccagctccgtttgcaatgcaatcctcttcctctcgagtacagttacagcggaacgggcttcctcagcactgcggcgctcctcctcaatggcaatttccagctccttgaccttcgcactaagtcccttgttggccttggacagttcgttgttggctctaagtgtctccactataatccttaacaacaacacactgcaaccaacaacctt
488 ccgggccttgccttccttgtctatcttgcaaagaccagcccat
489
490 Pf
491 ctgagctcctcggtgaggcgctggagctcggagttcaggcggtcggctcgttcctcggcggcgcggcgagcgttcagcgcctcgtccatgtcggcctgcatggcggcgatgtccgcttccatgcggcgcttgtcgcccgtcagagtggtgaccgtgatgttcagctcgttgacacgggccacggcgtcgtgcagctcgttctcggcgttcttgcgagctctctccga
492 cgtctccagaagagatcggacgtcctcgagttccgtctgcagggcgatcctcttcctctcgagcacggtaacagcagaacgggcttcctcggcgctacggcgctcttcctcgatggcgatctccagttccttgacctttgcactgagtcccttgttggccttggatagttcgttgttagccctcagtgtctccaccataatccttaacaacaacacactacagccgacaac
493 cttccttgctttcccttctttgtcaatcttgcataatccggcccat
494
495 Pg
496 cgcagctcctcggtgagacgctgcagttcggaattcaggcggtccgccctctcttcggcagccctgcgggcgttcagcgcctcgtccatgtcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccggtcagcgtggtcacggtgatgttcagctcgttgacgcgagaaacggcgtcgtgcatctcgttttcggcattcttgcgagctctctccgacg
497 tctcaagaagggatcgtacatcctcgagttctgtctggagggcgatcctctttctctcaagcatggtaaccgcggagcgggcttcctcgccactgcggcgttcttcctcgatggtgatctccagttccttaaccttagtactcagtcccttgttggctttggacagttcgttgttcgctcttagtgtctccactataatccttaaccacaacacactacaaccaacaacctttcttgc
498 cttgccttccttgtctatcttacacaagccagcccat
499
500 .. class:: infomark
501
502 | If you choose the option proteic : you obtain a file with proteic sequences
503 |
504
505
506 **Phylogeny_concatenation_nexus_nuc** :
507
508 #NEXUS
509
510 | Begin data;
511 | Dimensions ntax=6 nchar=504;
512 | Format datatype=dna gap=-;
513
514 Matrix
515
516 Ps cgcagttcctcggtgaggcgttgtagttcggcgttcagacggtcagctctctcctcggctgccctgcgagcattcagtgcctcatccatgtcagcttgcatggcggcaatgtctccctccatacggcgcttatctccagtcaaagtggtcacggtgatgttcagctcgttaacacgggatacagcatcgtgcagttcgttttcggcattcttacgagctctctcagatgtct
517 ccagaagagatcgaacgtcctccagctccgtttgtagagcgatcctcttcctctcgagtacggtaaccgccgaacgggcttcctcagcactacggcgctcctcctcaatggcaatctccagctccttgaccttggcactgagtcccttgttggccttagatagttcgttgtttgccctcaatgtctcgaccataatccttaacaacaacacactacagccaacaaccttcct
518 tgctttaccctctttgtctatcttgcataatccagcccat
519
520 Ac cgcagttcctcggtgacgcggtgcagctcggcggcgaggcggtctgccctctcctcggccgccctgcgggcgttcagggcctcgtccagatcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccagtcagcgtcgtcaccgtgatgttcagctcgttgacgcgagccgtggcgtcgtgcaactcgttctcggcattcttacgagctcgttc
521 ggcggtctccagtagagatctaacatcctccagctctgtttgcaatgcaatcctcttcctctcgagtacagttacagcggaacgggcttcctcagcactgcggtgctcctcctcaatggcaatttccagctccttgaccttggcactaagtcccttgttggccttggacagctcgttgttggctctaagtgtctccacc---------------------------------------------------
522 ------------------------------
523
524 Pp ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
525 -----------------------------------------------------------------------------------------------------ataatccttgacgaccacacactgcatccaacaacttttctggccttgccttccttgtctattttacacaaaccagcccat
526
527 Ap cgcagctcctcggtgacgcggtgcagctcggcggcgaggcgatcggctctctcctcggctgccctgcgggcgttcagggcctcatcaaggtcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccggtcagagtcgtcaccgtgatgttcagctcgttgacgcgagccgtggcgtcgtgtagctcgttctcggcattcttacgagctcgttc
528 ggcggtctccagtagggatctaacatcctccagctccgtttgcaatgcaatcctcttcctctcgagtacagttacagcggaacgggcttcctcagcactgcggcgctcctcctcaatggcaatttccagctccttgaccttcgcactaagtcccttgttggccttggacagttcgttgttggctctaagtgtctccactataatccttaacaacaacacactgcaaccaacaa
529 ccttccgggccttgccttccttgtctatcttgcaaagaccagcccat
530
531 Pf ctgagctcctcggtgaggcgctggagctcggagttcaggcggtcggctcgttcctcggcggcgcggcgagcgttcagcgcctcgtccatgtcggcctgcatggcggcgatgtccgcttccatgcggcgcttgtcgcccgtcagagtggtgaccgtgatgttcagctcgttgacacgggccacggcgtcgtgcagctcgttctcggcgttcttgcgagctctctcc
532 gacgtctccagaagagatcggacgtcctcgagttccgtctgcagggcgatcctcttcctctcgagcacggtaacagcagaacgggcttcctcggcgctacggcgctcttcctcgatggcgatctccagttccttgacctttgcactgagtcccttgttggccttggatagttcgttgttagccctcagtgtctccaccataatccttaacaacaacacactacagccgaca
533 accttccttgctttcccttctttgtcaatcttgcataatccggcccat
534
535 Pg cgcagctcctcggtgagacgctgcagttcggaattcaggcggtccgccctctcttcggcagccctgcgggcgttcagcgcctcgtccatgtcggcctgcatggcggcgatgtcgccctccatgcggcgcttgtcgccggtcagcgtggtcacggtgatgttcagctcgttgacgcgagaaacggcgtcgtgcatctcgttttcggcattcttgcgagctctctccg
536 acgtctcaagaagggatcgtacatcctcgagttctgtctggagggcgatcctctttctctcaagcatggtaaccgcggagcgggcttcctcgccactgcggcgttcttcctcgatggtgatctccagttccttaaccttagtactcagtcccttgttggctttggacagttcgttgttcgctcttagtgtctccactataatccttaaccacaacacactacaaccaacaacctttc
537 ttgccttgccttccttgtctatcttacacaagccagcccat
538
539 | ;
540 | End;
541 |
542
543 .. class:: infomark
544
545 | If you choose the option proteic : you obtain a file with proteic sequences
546 |
547
548
549 **Phylogeny_RAxML_BestTree** :
550
551 | ((Ac:0.02889451913999640381,Ap:0.01674414484251282934):0.17730049470177636217,
552 | ((Pp:0.23405795780876006984,Pg:0.02012322210145659623):0.14429203507314311561,Pf:0.09977363663005259231):0.04320803212100913365,Ps:0.08351583721596630983):0.0;
553 |
554
555
556
557 **Phylogeny_RAxML_BiPartitionBranchLabel** :
558
559 | (Pg:0.02012322210145659623,(Pf:0.09977363663005259231,(Ps:0.08351583721596630983,
560 | (Ac:0.02889451913999640381,Ap:0.01674414484251282934):0.17730049470177636217[89]):0.04320803212100913365[42]):0.14429203507314311561[70],Pp:0.23405795780876006984);
561 |
562 |
563
564
565 **Phylogeny_RAxML_BiPartition** :
566
567 (Pg:0.02012322210145659623,(Pf:0.09977363663005259231,(Ps:0.08351583721596630983,
568 (Ac:0.02889451913999640381,Ap:0.01674414484251282934)89:0.17730049470177636217)42:0.04320803212100913365)70:0.14429203507314311561,Pp:0.23405795780876006984);
569
570 |
571 |
572
573 **Phylogeny_RAxML_BootStrap** :
574
575 | ((Ap,Ac),((Pp,Pg),Pf),Ps);
576 | ((Ap,Ac),((Pp,Pg),Pf),Ps);
577 | (Pf,((Ap,Ac),(Pp,Pg)),Ps);
578 | ((Ap,Ac),((Pp,Pg),Pf),Ps);
579 | ((Ap,Ac),((Pp,Pg),Pf),Ps);
580 | ((Ap,Ac),((Pp,Pg),Pf),Ps);
581 | ((Pp,Pg),(Pf,(Ap,Ac)),Ps);
582
583 ...
584
585 </help>
586
587 <expand macro="citations" />
588
589 </tool>