annotate phyml.xml @ 1:2677a6dae0e0 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
author iuc
date Mon, 20 Jan 2020 17:45:35 +0000
parents a9ee99c3be94
children 19becf767d4f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
1 <tool id="phyml" name="PhyML" version="3.3.20190321">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
2 <description>Phylogeny software based on the maximum-likelihood</description>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
3 <requirements>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
4 <requirement type="package" version="3.3.20190321">phyml</requirement>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
5 </requirements>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
6 <version_command>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
7 <![CDATA[ phyml --version ]]>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
8 </version_command>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
9 <command detect_errors="default">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
10 <![CDATA[
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
11 ##PhyML outputs are based on input path and we need to create outputs in working_dir.
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
12 ln -sf '$input' '${input.name}' &&
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
13 #if $userInputTree:
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
14 ln -sf '${$userInputTree}' '${$userInputTree.name}' &&
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
15 #end if
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
16
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
17 phyml --input '${input.name}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
18 '${phylip_format}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
19 --datatype '${seq.type_of_seq}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
20 --multiple '${nb_data_set}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
21
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
22 #if (str($support_condition.branchSupport) in ['0','-1','-2','-4','-5']):
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
23 --bootstrap '${support_condition.branchSupport}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
24 #else:
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
25 --bootstrap '${support_condition.branchSupport.replicate}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
26 #end if
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
27
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
28 #if $seq.type_of_seq == "nt":
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
29 -t '${seq.tstv}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
30 #end if
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
31
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
32 --model '${seq.model}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
33 -f '${equi_freq}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
34 --pinv '${prop_invar}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
35
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
36 --nclasses '${nbSubstCat}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
37
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
38 #if (str($nbSubstCat) != "1"):
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
39 --alpha '${gamma}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
40 #end if
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
41
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
42 --search '${move}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
43 -o '${optimisationTopology}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
44
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
45 #if $userInputTree:
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
46 --inputtree '${$userInputTree.name}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
47 #end if
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
48
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
49 #if $numStartSeed != "0":
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
50 --r_seed '${numStartSeed}'
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
51 #end if
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
52
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
53 --no_memory_check > '${output_stdout}' &&
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
54 grep 'failed' '${output_stdout}' >&2;
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
55 ]]>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
56 </command>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
57 <inputs>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
58 <param name="input" type="data" format="phylip,phy" label="Alignment file" help="phylip format"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
59 <param name="phylip_format" type="select" label="Changes interleaved format">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
60 <option value="">Interleaved</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
61 <option value="--sequential">Sequential</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
62 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
63 <param name="nb_data_set" type="integer" min="1" value="1" label="Number of data sets" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
64 <conditional name="seq">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
65 <param name="type_of_seq" type="select" label="Data type">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
66 <option value="nt">Nucleic acids</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
67 <option value="aa">Amino acids</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
68 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
69 <when value="nt">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
70 <param name="tstv" type="text" value="e" label="Transition/transversion ratio" help="Must be a positive integer, 'e' if you want PhyML to estimate it" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
71 <param name="model" type="select" label="Substitution model">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
72 <option value="HKY85">HKY85</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
73 <option value="JC69">JC69</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
74 <option value="K80">K80</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
75 <option value="F81">F81</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
76 <option value="F84">F84</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
77 <option value="TN93">TN93</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
78 <option value="GTR">GTR</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
79 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
80 </when>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
81 <when value="aa">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
82 <param name="model" type="select" label="Evolution model">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
83 <option value="LG">LG</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
84 <option value="WAG">WAG</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
85 <option value="JTT">JTT</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
86 <option value="MtREV">MtREV</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
87 <option value="Dayhoff">Dayhoff</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
88 <option value="DCMut">DCMut</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
89 <option value="RtREV">RtREV</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
90 <option value="CpREV">CpREV</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
91 <option value="VT">VT</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
92 <option value="Blosum62">Blosum62</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
93 <option value="MtMam">MtMam</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
94 <option value="MtArt">MtArt</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
95 <option value="HIVw">HIVw</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
96 <option value="HIVb">HIVb</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
97 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
98 </when>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
99 </conditional>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
100 <param name="prop_invar" type="text" value="e" label="Proportion of invariant sites" help="Can be a fixed value in the [0,1] range or 'e' to get the maximum likelihood estimate, 0 to ignore this parameter"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
101 <param name="equi_freq" type="select" label="Equilibrium frequencies" help="Empirical: frequencies are estimated by counting the occurences in the alignment. ML/Model: frequencies are estimated using ML for nucleotides or defined by the proteic substitution model.">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
102 <option value="m">ML/Model</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
103 <option value="e">Empirical</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
104 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
105 <param name="nbSubstCat" type="integer" min="1" value="4" label="Number of categories for the discrete gamma model" help="1 means no gamma model" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
106 <param name="gamma" type="text" value="e" label="Parameter of the gamma model" help="'e' if you want PhyML to estimate it"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
107 <param name="move" type="select" label="Tree topology search">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
108 <option value="NNI">NNI (Nearest Neighbor Interchange)</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
109 <option value="SPR">SPR (Subtree Pruning and Regraphing)</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
110 <option value="BEST">Best of NNI and SPR</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
111 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
112 <param name="optimisationTopology" type="select" label="Optimise topology">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
113 <option value="tlr">Tree topology, Branch length, Rate parameter</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
114 <option value="tl">Tree topology, Branch length</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
115 <option value="l">Branch length</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
116 <option value="r">Rate parameter</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
117 <option value="n">No parameter is optimized</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
118 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
119 <conditional name="support_condition">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
120 <param name="branchSupport" type="select" label="Statistical tests for branch support" help="Use aLRT or aBayes to save computing time">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
121 <option value="0">No bootstrap</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
122 <option value="1">Bootstrap</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
123 <option value="-1">likelihood aLRT statistics</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
124 <option value="-2">likelihood Chi2-based</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
125 <option value="-4" selected='true'>SH-like</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
126 <option value="-5">Approximate Bayes branch supports</option>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
127 </param>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
128 <when value="0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
129 <when value="-1"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
130 <when value="-2"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
131 <when value="-4"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
132 <when value="-5"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
133 <when value="1">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
134 <param name="replicate" type="integer" min="1" value="100" label="Number of bootstrap replicates" help="Must be a positive integer" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
135 </when>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
136 </conditional>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
137 <param name="numStartSeed" type="integer" value="0" label="Number of seed used to initiate the random number generator" help="0 to random seed"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
138 <param name="userInputTree" optional="True" type="data" format="nhx" label="Tree file" help="newick format"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
139 </inputs>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
140 <outputs>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
141 <data name="output_tree" format="nhx" label="PhyML Newick tree: ${input.name}.nwk" from_work_dir="*_phyml_tree.txt" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
142 <data name="output_stats" format="txt" label="PhyML Statistic: ${input.name}.stats.txt" from_work_dir="*_phyml_stats.txt"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
143 <data name="output_stdout" format="txt" label="PhyML Stdout: ${input.name}"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
144 </outputs>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
145 <tests>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
146 <test>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
147 <param name="input" value="phylip" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
148 <param name="prop_invar" value="0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
149 <param name="type_of_seq" value="nt" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
150 <param name="numStartSeed" value="1458308600" />
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
151 <output name="output_tree">
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
152 <assert_contents>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
153 <has_text text="Rhes_cDNA:0.0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
154 <has_text text="Baboon:0.0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
155 <has_text text="Orangutan:0.0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
156 <has_text text="Gibbon:0.0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
157 <has_text text="Human:0.0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
158 <has_text text="Chimp:0.0"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
159 </assert_contents>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
160 </output>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
161 <output name="output_stats" file="phylip_phyml_stats.txt" lines_diff="4"/>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
162 </test>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
163 </tests>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
164 <help>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
165 <![CDATA[
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
166 .. class:: infomark
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
167
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
168 #########
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
169 PhyML 3.3
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
170 #########
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
171
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
172 A simple, fast, and accurate algorithm to estimate
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
173 large phylogenies by maximum likelihood''
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
174
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
175 ==========
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
176 Overview:
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
177 ==========
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
178
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
179 PhyML is a phylogeny software based on the maximum-likelihood principle. Early PhyML versions used a fast algorithm to perform Nearest Neighbor Interchanges (NNIs), in order to improve a reasonable starting tree topology. Since the original publication (Guindon and Gascuel 2003), PhyML has been widely used due to its simplicity and a fair accuracy/speed compromise. In the mean time research around PhyML has continued.
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
180
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
181 We designed an efficient algorithm to search the tree space using Subtree Pruning and Regrafting (SPR) topological moves (Hordijk and Gascuel 2005), and proposed a fast branch test based on an approximate likelihood ratio test (Anisimova and Gascuel 2006). However, these novelties were not included in the official version of PhyML, and we found that improvements were still needed in order to make them effective in some practical cases. PhyML 3.0 achieves this task.
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
182
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
183 It implements new algorithms to search the space of tree topologies with user-defined intensity. A non-parametric, Shimodaira-Hasegawa-like branch test is also available. The program provides a number of new evolutionary models and its interface was entirely re-designed. We tested PhyML 3.0 on a large collection of real data sets to ensure that the new version is stable, ready-to-use and still reasonably fast and accurate.
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
184
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
185 -----
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
186
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
187
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
188 For further informations, please visite the PhyML_ website.
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
189
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
190 .. _PhyML: http://www.atgc-montpellier.fr/phyml/
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
191
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
192 Please cite this paper if you use this software in your publications.
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
193
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
194
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
195 ]]>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
196 </help>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
197 <citations>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
198 <citation type="doi">10.1093/sysbio/syq010</citation>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
199 </citations>
2677a6dae0e0 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/phyml commit 7262445f852345ec93762ff94642507a2b63f0cd"
iuc
parents: 0
diff changeset
200 </tool>