1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
|
Running GARLI-PART Version 2.0.1008 (17 Mar 2011)
->Single processor version<-
##############################################################
This is GARLI 2.0, the first "official" release including
partitioned models. It is a merging of
official release 1.0 and beta version GARLI-PART 0.97
Briefly, it includes models for nucleotides, amino acids,
codons, and morphology-like characters, any of which can be
mixed together and applied to different subsets of data.
General program usage is extensively documented here:
http://www.nescent.org/wg_garli/
see this page for details on partitioned usage:
http://www.nescent.org/wg_garli/Partition_testing_version
and this page for details on Mkv mophology model usage:
http://www.nescent.org/wg_garli/Mkv_morphology_model
PLEASE LET ME KNOW OF ANY PROBLEMS AT:
garli.support@gmail.com
##############################################################
This version has undergone much testing, but is still a BETA VERSION.
- Please check results carefully! -
Compiled Mar 21 2011 13:13:18 using Intel icc compiler version 9.10
Using NCL version 2.1.10
#######################################################
Reading config file garli.conf
###################################################
READING OF DATA
Attempting to read data file in Nexus format (using NCL):
zakonEtAl2006.11tax.nex ...
Reading DATA block... successful
Reading SETS block... successful
###################################################
PARTITIONING OF DATA AND MODELS
CHECK: DIFFERENT MODEL TYPES AND MODEL PARAMETERS APPLY
TO EACH DATA SUBSET (no linkage)
GARLI data subset 1
CHARACTERS block #1 ("Untitled DATA Block 1")
CHARPARTITION subset #1 ("1stpos")
Data read as Nucleotide data,
modeled as Nucleotide data
Summary of data:
11 sequences.
441 constant characters.
171 parsimony-informative characters.
114 uninformative variable characters.
726 total characters.
238 unique patterns in compressed data matrix.
Pattern processing required < 1 second
GARLI data subset 2
CHARACTERS block #1 ("Untitled DATA Block 1")
CHARPARTITION subset #2 ("2ndpos")
Data read as Nucleotide data,
modeled as Nucleotide data
Summary of data:
11 sequences.
528 constant characters.
90 parsimony-informative characters.
108 uninformative variable characters.
726 total characters.
158 unique patterns in compressed data matrix.
Pattern processing required < 1 second
GARLI data subset 3
CHARACTERS block #1 ("Untitled DATA Block 1")
CHARPARTITION subset #3 ("3rdpos")
Data read as Nucleotide data,
modeled as Nucleotide data
Summary of data:
11 sequences.
103 constant characters.
507 parsimony-informative characters.
116 uninformative variable characters.
726 total characters.
549 unique patterns in compressed data matrix.
Pattern processing required < 1 second
###################################################
NOTE: Unlike many programs, the amount of system memory that Garli will
use can be controlled by the user.
(This comes from the availablememory setting in the configuration file.
Availablememory should NOT be set to more than the actual amount of
physical memory that your computer has installed)
For this dataset:
Mem level availablememory setting
great >= 11 MB
good approx 10 MB to 9 MB
low approx 8 MB to 5 MB
very low approx 4 MB to 4 MB
the minimum required availablememory is 4 MB
You specified that Garli should use at most 512.0 MB of memory.
Garli will actually use approx. 16.1 MB of memory
**Your memory level is: great (you don't need to change anything)**
#######################################################
Found outgroup specification: 1
#######################################################
STARTING RUN
>>>Search rep 1 (of 5)<<<
MODEL REPORT - Parameters are at their INITIAL values (not yet optimized)
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3157 0.1746 0.3004 0.2093
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.000, AG = 4.000, AT = 1.000, CG = 4.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2703 0.1566 0.1628 0.4103
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1460 0.3609 0.2915 0.2015
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
with an invariant (invariable) site category, proportion estimated
0.0355
Substitution rate categories under this model:
rate proportion
0.0000 0.0355
0.0334 0.2411
0.2519 0.2411
0.8203 0.2411
2.8944 0.2411
Subset rate multipliers:
1.00 1.00 1.00
Starting with seed=852004
creating likelihood stepwise addition starting tree...
number of taxa added:
4 5 6
Optimizing parameters... improved 284.867 lnL
Optimizing branchlengths... improved 109.865 lnL
7 8 9 10 11
Initial ln Likelihood: -13739.2722
optimizing: starting branch lengths, alpha shape, prop. invar, rel rates, eq freqs, subset rates...
pass 1:+ 197.592 (branch= 5.99 scale= 0.00 alpha= 39.14 freqs= 25.16 rel rates= 71.09 pinv= 0.00 subset rates= 56.21)
pass 2:+ 93.534 (branch= 11.02 scale= 1.42 alpha= 7.20 freqs= 12.45 rel rates= 4.35 pinv= 0.79 subset rates= 56.30)
pass 3:+ 52.621 (branch= 5.01 scale= 1.30 alpha= 7.59 freqs= 1.02 rel rates= 1.79 pinv= 0.01 subset rates= 35.90)
pass 4:+ 16.507 (branch= 0.00 scale= 0.81 alpha= 0.95 freqs= 0.16 rel rates= 1.58 pinv= 0.01 subset rates= 13.00)
pass 5:+ 8.128 (branch= 0.68 scale= 0.00 alpha= 0.01 freqs= 0.20 rel rates= 1.99 pinv= 0.01 subset rates= 5.23)
pass 6:+ 0.727 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.15 rel rates= 0.01 pinv= 0.01 subset rates= 0.54)
pass 7:+ 0.157 (branch= 0.00 scale= 0.00 alpha= 0.00 freqs= 0.13 rel rates= 0.01 pinv= 0.01 subset rates= 0.00)
lnL after optimization: -13370.0055
gen current_lnL precision last_tree_imp
0 -13370.0055 0.500 0
100 -13318.7588 0.500 30
200 -13317.8640 0.500 30
300 -13317.3539 0.500 30
400 -13317.1124 0.500 30
500 -13316.9931 0.500 30
600 -13316.7533 0.500 30
Optimization precision reduced
Optimizing parameters... improved 0.052 lnL
Optimizing branchlengths... improved 0.000 lnL
700 -13316.5320 0.402 30
800 -13316.4480 0.402 30
900 -13316.4201 0.402 30
1000 -13316.3574 0.402 30
1100 -13316.2488 0.402 30
Optimization precision reduced
Optimizing parameters... improved 0.024 lnL
Optimizing branchlengths... improved 0.000 lnL
1200 -13316.1758 0.304 30
1300 -13316.1714 0.304 30
1400 -13316.0938 0.304 30
1500 -13316.0518 0.304 30
1600 -13315.9958 0.304 30
Optimization precision reduced
Optimizing parameters... improved 0.013 lnL
Optimizing branchlengths... improved 0.000 lnL
1700 -13315.9424 0.206 30
1800 -13315.9278 0.206 30
1900 -13315.8903 0.206 30
2000 -13315.8642 0.206 30
2100 -13315.8580 0.206 30
Optimization precision reduced
Optimizing parameters... improved 0.003 lnL
Optimizing branchlengths... improved 0.000 lnL
2200 -13315.8540 0.108 30
2300 -13315.8529 0.108 30
2400 -13315.8461 0.108 30
2500 -13315.8458 0.108 30
2600 -13315.8453 0.108 30
Optimization precision reduced
Optimizing parameters... improved 0.001 lnL
Optimizing branchlengths... improved 0.017 lnL
2700 -13315.8279 0.010 30
2800 -13315.8275 0.010 30
2900 -13315.8257 0.010 30
3000 -13315.8242 0.010 30
3100 -13315.8240 0.010 30
3200 -13315.8237 0.010 30
3300 -13315.8130 0.010 30
3400 -13315.8130 0.010 30
3500 -13315.8093 0.010 30
3600 -13315.8087 0.010 30
3700 -13315.8086 0.010 30
3800 -13315.8078 0.010 30
3900 -13315.8072 0.010 30
4000 -13315.8072 0.010 30
4100 -13315.8016 0.010 30
4200 -13315.8007 0.010 30
4300 -13315.7978 0.010 30
4400 -13315.7973 0.010 30
4500 -13315.7970 0.010 30
4600 -13315.7967 0.010 30
4700 -13315.7949 0.010 30
4800 -13315.7948 0.010 30
4900 -13315.7948 0.010 30
5000 -13315.7919 0.010 30
5100 -13315.7911 0.010 30
5200 -13315.7911 0.010 30
5300 -13315.7906 0.010 30
5400 -13315.7906 0.010 30
5500 -13315.7903 0.010 30
5600 -13315.7899 0.010 30
5700 -13315.7883 0.010 30
5800 -13315.7880 0.010 30
5900 -13315.7876 0.010 30
6000 -13315.7873 0.010 30
6100 -13315.7873 0.010 30
6200 -13315.7870 0.010 30
6300 -13315.7863 0.010 30
6400 -13315.7851 0.010 30
6500 -13315.7846 0.010 30
6600 -13315.7846 0.010 30
6700 -13315.7846 0.010 30
6800 -13315.7846 0.010 30
6900 -13315.7844 0.010 30
7000 -13315.7838 0.010 30
7100 -13315.7837 0.010 30
7200 -13315.7837 0.010 30
7300 -13315.7837 0.010 30
7400 -13315.7837 0.010 30
7500 -13315.7837 0.010 30
7600 -13315.7837 0.010 30
7700 -13315.7833 0.010 30
Reached termination condition!
last topological improvement at gen 30
Improvement over last 500 gen = 0.00047
Current score = -13315.7833
Performing final optimizations...
pass 1 : -13315.7830 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 2 : -13315.7827 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 3 : -13315.7772 (branch= 0.0054 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 4 : -13315.7748 (branch= 0.0024 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 5 : -13315.7740 (branch= 0.0007 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 6 : -13315.7729 (branch= 0.0011 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 7 : -13315.7726 (branch= 0.0002 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 8 : -13315.7725 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 9 : -13315.7723 (branch= 0.0001 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 10: -13315.7722 (branch= 0.0001 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 11: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 12: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 13: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 14: -13315.7721 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 15: -13315.7721 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 16: -13315.7721 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
Looking for minimum length branches...
Final score = -13315.7721
Time used so far = 0 hours, 1 minutes and 42 seconds
MODEL REPORT - Parameter values are FINAL
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.966, AG = 2.579, AT = 1.411, CG = 1.411, CT = 3.722, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3101 0.1767 0.2972 0.2160
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.4097
Substitution rate categories under this model:
rate proportion
0.0181 0.2500
0.1890 0.2500
0.7416 0.2500
3.0513 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.380, AG = 7.085, AT = 1.609, CG = 7.085, CT = 4.380, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2692 0.1636 0.1605 0.4067
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.3609
Substitution rate categories under this model:
rate proportion
0.0115 0.2500
0.1520 0.2500
0.6853 0.2500
3.1512 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.936, AT = 3.391, CG = 0.457, CT = 4.936, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1565 0.3537 0.2877 0.2021
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
4.0142
with an invariant (invariable) site category, proportion estimated
0.0335
Substitution rate categories under this model:
rate proportion
0.0000 0.0335
0.4551 0.2416
0.7757 0.2416
1.0844 0.2416
1.6848 0.2416
Subset rate multipliers:
0.54 0.30 2.16
NOTE: Collapsing of minimum length branches was requested (collapsebranches = 1)
No branches were short enough to be collapsed.
>>>Completed Search rep 1 (of 5)<<<
>>>Search rep 2 (of 5)<<<
MODEL REPORT - Parameters are at their INITIAL values (not yet optimized)
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3157 0.1746 0.3004 0.2093
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.000, AG = 4.000, AT = 1.000, CG = 4.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2703 0.1566 0.1628 0.4103
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1460 0.3609 0.2915 0.2015
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
with an invariant (invariable) site category, proportion estimated
0.0355
Substitution rate categories under this model:
rate proportion
0.0000 0.0355
0.0334 0.2411
0.2519 0.2411
0.8203 0.2411
2.8944 0.2411
Subset rate multipliers:
1.00 1.00 1.00
Starting with seed=1163395386
creating likelihood stepwise addition starting tree...
number of taxa added:
4 5 6
Optimizing parameters... improved 251.052 lnL
Optimizing branchlengths... improved 42.822 lnL
7 8 9 10 11
Initial ln Likelihood: -13708.2945
optimizing: starting branch lengths, alpha shape, prop. invar, rel rates, eq freqs, subset rates...
pass 1:+ 195.142 (branch= 3.84 scale= 0.00 alpha= 39.93 freqs= 28.21 rel rates= 67.92 pinv= 0.00 subset rates= 55.24)
pass 2:+ 90.129 (branch= 9.79 scale= 1.73 alpha= 6.49 freqs= 11.51 rel rates= 4.22 pinv= 1.00 subset rates= 55.39)
pass 3:+ 50.181 (branch= 8.72 scale= 0.00 alpha= 4.95 freqs= 1.58 rel rates= 1.37 pinv= 0.01 subset rates= 33.53)
pass 4:+ 18.019 (branch= 1.73 scale= 0.71 alpha= 0.96 freqs= 0.15 rel rates= 2.28 pinv= 0.01 subset rates= 12.18)
pass 5:+ 5.247 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.14 rel rates= 0.54 pinv= 0.01 subset rates= 4.54)
pass 6:+ 0.677 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.64 rel rates= 0.01 pinv= 0.01 subset rates= 0.00)
pass 7:+ 0.077 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.04 rel rates= 0.01 pinv= 0.01 subset rates= 0.00)
lnL after optimization: -13348.8218
gen current_lnL precision last_tree_imp
0 -13348.8218 0.500 0
100 -13319.1023 0.500 3
200 -13318.5364 0.500 3
300 -13317.6152 0.500 3
400 -13317.5790 0.500 3
500 -13317.4175 0.500 3
600 -13317.3894 0.500 3
Optimization precision reduced
Optimizing parameters... improved 0.627 lnL
Optimizing branchlengths... improved 0.000 lnL
700 -13316.5392 0.402 3
800 -13316.3891 0.402 3
900 -13316.3181 0.402 3
1000 -13316.1841 0.402 3
1100 -13316.1042 0.402 3
Optimization precision reduced
Optimizing parameters... improved 0.014 lnL
Optimizing branchlengths... improved 0.000 lnL
1200 -13316.0886 0.304 3
1300 -13316.0664 0.304 3
1400 -13316.0481 0.304 3
1500 -13316.0285 0.304 3
1600 -13315.9524 0.304 3
Optimization precision reduced
Optimizing parameters... improved 0.004 lnL
Optimizing branchlengths... improved 0.000 lnL
1700 -13315.9479 0.206 3
1800 -13315.9284 0.206 3
1900 -13315.8732 0.206 3
2000 -13315.8515 0.206 3
2100 -13315.8477 0.206 3
Optimization precision reduced
Optimizing parameters... improved 0.002 lnL
Optimizing branchlengths... improved 0.000 lnL
2200 -13315.8461 0.108 3
2300 -13315.8265 0.108 3
2400 -13315.8118 0.108 3
2500 -13315.8107 0.108 3
2600 -13315.8043 0.108 3
Optimization precision reduced
Optimizing parameters... improved 0.001 lnL
Optimizing branchlengths... improved 0.000 lnL
2700 -13315.8013 0.010 3
2800 -13315.8000 0.010 3
2900 -13315.7998 0.010 3
3000 -13315.7995 0.010 3
3100 -13315.7995 0.010 3
3200 -13315.7993 0.010 3
3300 -13315.7975 0.010 3
3400 -13315.7975 0.010 3
3500 -13315.7973 0.010 3
3600 -13315.7973 0.010 3
3700 -13315.7972 0.010 3
3800 -13315.7972 0.010 3
3900 -13315.7972 0.010 3
4000 -13315.7906 0.010 3
4100 -13315.7905 0.010 3
4200 -13315.7903 0.010 3
4300 -13315.7901 0.010 3
4400 -13315.7901 0.010 3
4500 -13315.7901 0.010 3
4600 -13315.7901 0.010 3
4700 -13315.7901 0.010 3
4800 -13315.7901 0.010 3
4900 -13315.7900 0.010 3
5000 -13315.7900 0.010 3
5100 -13315.7899 0.010 3
5200 -13315.7899 0.010 3
5300 -13315.7899 0.010 3
5400 -13315.7899 0.010 3
5500 -13315.7899 0.010 3
5600 -13315.7899 0.010 3
5700 -13315.7899 0.010 3
5800 -13315.7889 0.010 3
5900 -13315.7889 0.010 3
6000 -13315.7889 0.010 3
6100 -13315.7889 0.010 3
6200 -13315.7889 0.010 3
6300 -13315.7884 0.010 3
6400 -13315.7884 0.010 3
6500 -13315.7884 0.010 3
6600 -13315.7873 0.010 3
6700 -13315.7873 0.010 3
6800 -13315.7873 0.010 3
6900 -13315.7870 0.010 3
7000 -13315.7870 0.010 3
7100 -13315.7870 0.010 3
7200 -13315.7869 0.010 3
7300 -13315.7866 0.010 3
7400 -13315.7836 0.010 3
7500 -13315.7836 0.010 3
7600 -13315.7836 0.010 3
7700 -13315.7836 0.010 3
7800 -13315.7836 0.010 3
7900 -13315.7836 0.010 3
Reached termination condition!
last topological improvement at gen 3
Improvement over last 500 gen = 0.00001
Current score = -13315.7836
Performing final optimizations...
pass 1 : -13315.7832 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0001 subset rates= 0.0000)
pass 2 : -13315.7829 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 3 : -13315.7783 (branch= 0.0043 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 4 : -13315.7757 (branch= 0.0025 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 5 : -13315.7732 (branch= 0.0024 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 6 : -13315.7728 (branch= 0.0003 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 7 : -13315.7726 (branch= 0.0002 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 8 : -13315.7726 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 9 : -13315.7725 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 10: -13315.7725 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 11: -13315.7724 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 12: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0001)
Looking for minimum length branches...
Final score = -13315.7723
Time used so far = 0 hours, 3 minutes and 27 seconds
MODEL REPORT - Parameter values are FINAL
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.962, AG = 2.575, AT = 1.408, CG = 1.408, CT = 3.715, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3102 0.1767 0.2971 0.2160
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.4096
Substitution rate categories under this model:
rate proportion
0.0181 0.2500
0.1889 0.2500
0.7415 0.2500
3.0515 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.400, AG = 7.116, AT = 1.617, CG = 7.116, CT = 4.400, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2692 0.1636 0.1605 0.4067
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.3611
Substitution rate categories under this model:
rate proportion
0.0115 0.2500
0.1521 0.2500
0.6854 0.2500
3.1509 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.938, AT = 3.393, CG = 0.457, CT = 4.938, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1565 0.3537 0.2877 0.2021
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
4.0160
with an invariant (invariable) site category, proportion estimated
0.0335
Substitution rate categories under this model:
rate proportion
0.0000 0.0335
0.4552 0.2416
0.7758 0.2416
1.0844 0.2416
1.6846 0.2416
Subset rate multipliers:
0.54 0.30 2.16
NOTE: Collapsing of minimum length branches was requested (collapsebranches = 1)
No branches were short enough to be collapsed.
>>>Completed Search rep 2 (of 5)<<<
>>>Search rep 3 (of 5)<<<
MODEL REPORT - Parameters are at their INITIAL values (not yet optimized)
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3157 0.1746 0.3004 0.2093
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.000, AG = 4.000, AT = 1.000, CG = 4.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2703 0.1566 0.1628 0.4103
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1460 0.3609 0.2915 0.2015
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
with an invariant (invariable) site category, proportion estimated
0.0355
Substitution rate categories under this model:
rate proportion
0.0000 0.0355
0.0334 0.2411
0.2519 0.2411
0.8203 0.2411
2.8944 0.2411
Subset rate multipliers:
1.00 1.00 1.00
Starting with seed=1320446270
creating likelihood stepwise addition starting tree...
number of taxa added:
4 5 6
Optimizing parameters... improved 182.213 lnL
Optimizing branchlengths... improved 23.611 lnL
7 8 9 10 11
Initial ln Likelihood: -13653.6032
optimizing: starting branch lengths, alpha shape, prop. invar, rel rates, eq freqs, subset rates...
pass 1:+ 178.674 (branch= 11.12 scale= 0.00 alpha= 11.90 freqs= 26.62 rel rates= 64.15 pinv= 0.37 subset rates= 64.52)
pass 2:+ 86.362 (branch= 4.68 scale= 1.93 alpha= 5.43 freqs= 12.73 rel rates= 3.97 pinv= 0.01 subset rates= 57.60)
pass 3:+ 44.763 (branch= 3.77 scale= 0.92 alpha= 3.02 freqs= 0.93 rel rates= 2.17 pinv= 0.01 subset rates= 33.93)
pass 4:+ 17.413 (branch= 1.07 scale= 0.00 alpha= 0.66 freqs= 0.18 rel rates= 3.09 pinv= 0.01 subset rates= 12.39)
pass 5:+ 5.472 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.17 rel rates= 0.63 pinv= 0.01 subset rates= 4.66)
pass 6:+ 0.158 (branch= 0.00 scale= 0.00 alpha= 0.00 freqs= 0.13 rel rates= 0.01 pinv= 0.01 subset rates= 0.00)
lnL after optimization: -13320.7617
gen current_lnL precision last_tree_imp
0 -13320.7617 0.500 0
100 -13318.9005 0.500 0
200 -13318.2255 0.500 0
300 -13318.0181 0.500 0
400 -13317.3604 0.500 0
500 -13316.9407 0.500 0
Optimization precision reduced
Optimizing parameters... improved 0.061 lnL
Optimizing branchlengths... improved 0.000 lnL
600 -13316.6639 0.402 0
700 -13316.5914 0.402 0
800 -13316.5551 0.402 0
900 -13316.4227 0.402 0
1000 -13316.4019 0.402 0
Optimization precision reduced
Optimizing parameters... improved 0.025 lnL
Optimizing branchlengths... improved 0.000 lnL
1100 -13316.3551 0.304 0
1200 -13316.3373 0.304 0
1300 -13316.2828 0.304 0
1400 -13316.2796 0.304 0
1500 -13316.2045 0.304 0
Optimization precision reduced
Optimizing parameters... improved 0.014 lnL
Optimizing branchlengths... improved 0.000 lnL
1600 -13316.1466 0.206 0
1700 -13316.1059 0.206 0
1800 -13316.0999 0.206 0
1900 -13316.0997 0.206 0
2000 -13316.0620 0.206 0
Optimization precision reduced
Optimizing parameters... improved 0.121 lnL
Optimizing branchlengths... improved 0.000 lnL
2100 -13315.9412 0.108 0
2200 -13315.9384 0.108 0
2300 -13315.9384 0.108 0
2400 -13315.9007 0.108 0
2500 -13315.8810 0.108 0
Optimization precision reduced
Optimizing parameters... improved 0.034 lnL
Optimizing branchlengths... improved 0.000 lnL
2600 -13315.8424 0.010 0
2700 -13315.8416 0.010 0
2800 -13315.8416 0.010 0
2900 -13315.8294 0.010 0
3000 -13315.8285 0.010 0
3100 -13315.8282 0.010 0
3200 -13315.8272 0.010 0
3300 -13315.8240 0.010 0
3400 -13315.8209 0.010 0
3500 -13315.8195 0.010 0
3600 -13315.8173 0.010 0
3700 -13315.8173 0.010 0
3800 -13315.8158 0.010 0
3900 -13315.8157 0.010 0
4000 -13315.8122 0.010 0
4100 -13315.8112 0.010 0
4200 -13315.8112 0.010 0
4300 -13315.8112 0.010 0
4400 -13315.8112 0.010 0
4500 -13315.8112 0.010 0
4600 -13315.8083 0.010 0
4700 -13315.8075 0.010 0
4800 -13315.8070 0.010 0
4900 -13315.8070 0.010 0
5000 -13315.8070 0.010 0
5100 -13315.8070 0.010 0
5200 -13315.8067 0.010 0
5300 -13315.8067 0.010 0
5400 -13315.8059 0.010 0
5500 -13315.8058 0.010 0
5600 -13315.8040 0.010 0
5700 -13315.8026 0.010 0
5800 -13315.8026 0.010 0
5900 -13315.8026 0.010 0
6000 -13315.8024 0.010 0
6100 -13315.8015 0.010 0
6200 -13315.8010 0.010 0
6300 -13315.8010 0.010 0
6400 -13315.7996 0.010 0
6500 -13315.7993 0.010 0
6600 -13315.7993 0.010 0
6700 -13315.7964 0.010 0
6800 -13315.7926 0.010 0
6900 -13315.7926 0.010 0
7000 -13315.7925 0.010 0
7100 -13315.7925 0.010 0
7200 -13315.7925 0.010 0
7300 -13315.7925 0.010 0
7400 -13315.7925 0.010 0
7500 -13315.7924 0.010 0
7600 -13315.7922 0.010 0
Reached termination condition!
last topological improvement at gen 0
Improvement over last 500 gen = 0.00030
Current score = -13315.7922
Performing final optimizations...
pass 1 : -13315.7848 (branch= 0.0069 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0003 rel rates= 0.0002 subset rates= 0.0000)
pass 2 : -13315.7809 (branch= 0.0032 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0001 subset rates= 0.0004)
pass 3 : -13315.7772 (branch= 0.0034 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0001 subset rates= 0.0000)
pass 4 : -13315.7770 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 5 : -13315.7750 (branch= 0.0017 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0001 subset rates= 0.0000)
pass 6 : -13315.7737 (branch= 0.0009 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0002)
pass 7 : -13315.7730 (branch= 0.0006 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 8 : -13315.7727 (branch= 0.0001 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0000)
pass 9 : -13315.7724 (branch= 0.0002 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 10: -13315.7724 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 11: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 12: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 13: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 14: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 15: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 16: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
Looking for minimum length branches...
Final score = -13315.7722
Time used so far = 0 hours, 5 minutes and 27 seconds
MODEL REPORT - Parameter values are FINAL
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.964, AG = 2.577, AT = 1.410, CG = 1.410, CT = 3.720, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3101 0.1767 0.2972 0.2160
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.4098
Substitution rate categories under this model:
rate proportion
0.0181 0.2500
0.1890 0.2500
0.7416 0.2500
3.0512 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.382, AG = 7.087, AT = 1.610, CG = 7.087, CT = 4.382, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2692 0.1636 0.1605 0.4067
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.3609
Substitution rate categories under this model:
rate proportion
0.0115 0.2500
0.1520 0.2500
0.6853 0.2500
3.1512 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.938, AT = 3.393, CG = 0.457, CT = 4.938, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1565 0.3537 0.2877 0.2021
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
4.0078
with an invariant (invariable) site category, proportion estimated
0.0334
Substitution rate categories under this model:
rate proportion
0.0000 0.0334
0.4548 0.2416
0.7755 0.2416
1.0844 0.2416
1.6853 0.2416
Subset rate multipliers:
0.54 0.30 2.16
NOTE: Collapsing of minimum length branches was requested (collapsebranches = 1)
No branches were short enough to be collapsed.
>>>Completed Search rep 3 (of 5)<<<
>>>Search rep 4 (of 5)<<<
MODEL REPORT - Parameters are at their INITIAL values (not yet optimized)
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3157 0.1746 0.3004 0.2093
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.000, AG = 4.000, AT = 1.000, CG = 4.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2703 0.1566 0.1628 0.4103
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1460 0.3609 0.2915 0.2015
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
with an invariant (invariable) site category, proportion estimated
0.0355
Substitution rate categories under this model:
rate proportion
0.0000 0.0355
0.0334 0.2411
0.2519 0.2411
0.8203 0.2411
2.8944 0.2411
Subset rate multipliers:
1.00 1.00 1.00
Starting with seed=490393635
creating likelihood stepwise addition starting tree...
number of taxa added:
4 5 6
Optimizing parameters... improved 254.487 lnL
Optimizing branchlengths... improved 50.375 lnL
7 8 9 10 11
Initial ln Likelihood: -13796.1049
optimizing: starting branch lengths, alpha shape, prop. invar, rel rates, eq freqs, subset rates...
pass 1:+ 200.360 (branch= 15.47 scale= 0.00 alpha= 26.67 freqs= 29.27 rel rates= 69.20 pinv= 0.96 subset rates= 58.78)
pass 2:+ 84.224 (branch= 7.28 scale= 1.63 alpha= 5.32 freqs= 13.47 rel rates= 3.51 pinv= 1.20 subset rates= 51.81)
pass 3:+ 47.400 (branch= 4.57 scale= 1.26 alpha= 5.73 freqs= 1.41 rel rates= 2.51 pinv= 0.01 subset rates= 31.92)
pass 4:+ 16.242 (branch= 1.20 scale= 0.50 alpha= 0.72 freqs= 0.16 rel rates= 1.54 pinv= 0.00 subset rates= 12.11)
pass 5:+ 5.048 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.13 rel rates= 0.01 pinv= 0.00 subset rates= 4.90)
pass 6:+ 1.167 (branch= 0.00 scale= 0.00 alpha= 0.00 freqs= 0.11 rel rates= 0.58 pinv= 0.00 subset rates= 0.47)
pass 7:+ 0.096 (branch= 0.00 scale= 0.00 alpha= 0.00 freqs= 0.09 rel rates= 0.01 pinv= 0.00 subset rates= 0.00)
lnL after optimization: -13441.5669
gen current_lnL precision last_tree_imp
0 -13441.5669 0.500 0
100 -13319.1751 0.500 27
200 -13318.6657 0.500 27
300 -13318.5942 0.500 27
400 -13318.5663 0.500 27
500 -13318.4781 0.500 27
600 -13318.2512 0.500 27
Optimization precision reduced
Optimizing parameters... improved 0.082 lnL
Optimizing branchlengths... improved 0.000 lnL
700 -13317.5316 0.402 27
800 -13317.2393 0.402 27
900 -13316.9226 0.402 27
1000 -13316.6411 0.402 27
1100 -13316.3656 0.402 27
Optimization precision reduced
Optimizing parameters... improved 0.045 lnL
Optimizing branchlengths... improved 0.000 lnL
1200 -13316.2876 0.304 27
1300 -13316.2215 0.304 27
1400 -13316.1849 0.304 27
1500 -13316.1600 0.304 27
1600 -13316.1287 0.304 27
Optimization precision reduced
Optimizing parameters... improved 0.027 lnL
Optimizing branchlengths... improved 0.000 lnL
1700 -13315.9846 0.206 27
1800 -13315.9797 0.206 27
1900 -13315.9603 0.206 27
2000 -13315.9509 0.206 27
2100 -13315.9348 0.206 27
Optimization precision reduced
Optimizing parameters... improved 0.009 lnL
Optimizing branchlengths... improved 0.000 lnL
2200 -13315.9119 0.108 27
2300 -13315.9083 0.108 27
2400 -13315.9054 0.108 27
2500 -13315.8826 0.108 27
2600 -13315.8815 0.108 27
Optimization precision reduced
Optimizing parameters... improved 0.014 lnL
Optimizing branchlengths... improved 0.021 lnL
2700 -13315.8419 0.010 27
2800 -13315.8414 0.010 27
2900 -13315.8414 0.010 27
3000 -13315.8345 0.010 27
3100 -13315.8324 0.010 27
3200 -13315.8270 0.010 27
3300 -13315.8117 0.010 27
3400 -13315.8091 0.010 27
3500 -13315.8058 0.010 27
3600 -13315.8048 0.010 27
3700 -13315.8048 0.010 27
3800 -13315.8017 0.010 27
3900 -13315.8016 0.010 27
4000 -13315.8016 0.010 27
4100 -13315.8011 0.010 27
4200 -13315.8011 0.010 27
4300 -13315.8011 0.010 27
4400 -13315.8011 0.010 27
4500 -13315.7962 0.010 27
4600 -13315.7962 0.010 27
4700 -13315.7962 0.010 27
4800 -13315.7953 0.010 27
4900 -13315.7953 0.010 27
5000 -13315.7953 0.010 27
5100 -13315.7953 0.010 27
5200 -13315.7953 0.010 27
5300 -13315.7936 0.010 27
5400 -13315.7935 0.010 27
5500 -13315.7933 0.010 27
5600 -13315.7931 0.010 27
5700 -13315.7928 0.010 27
5800 -13315.7914 0.010 27
5900 -13315.7914 0.010 27
6000 -13315.7914 0.010 27
6100 -13315.7912 0.010 27
6200 -13315.7910 0.010 27
6300 -13315.7896 0.010 27
6400 -13315.7876 0.010 27
6500 -13315.7875 0.010 27
6600 -13315.7868 0.010 27
6700 -13315.7867 0.010 27
6800 -13315.7867 0.010 27
6900 -13315.7867 0.010 27
7000 -13315.7866 0.010 27
7100 -13315.7865 0.010 27
7200 -13315.7865 0.010 27
7300 -13315.7865 0.010 27
7400 -13315.7865 0.010 27
7500 -13315.7865 0.010 27
7600 -13315.7859 0.010 27
7700 -13315.7848 0.010 27
7800 -13315.7848 0.010 27
7900 -13315.7842 0.010 27
8000 -13315.7842 0.010 27
8100 -13315.7842 0.010 27
8200 -13315.7842 0.010 27
Reached termination condition!
last topological improvement at gen 27
Improvement over last 500 gen = 0.00063
Current score = -13315.7842
Performing final optimizations...
pass 1 : -13315.7835 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0003 rel rates= 0.0002 subset rates= 0.0002)
pass 2 : -13315.7829 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0003 rel rates= 0.0001 subset rates= 0.0001)
pass 3 : -13315.7779 (branch= 0.0035 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0015 rel rates= 0.0000 subset rates= 0.0000)
pass 4 : -13315.7760 (branch= 0.0014 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0001 subset rates= 0.0000)
pass 5 : -13315.7734 (branch= 0.0023 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0000 subset rates= 0.0000)
pass 6 : -13315.7730 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0003 rel rates= 0.0000 subset rates= 0.0000)
pass 7 : -13315.7727 (branch= 0.0002 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0000 subset rates= 0.0000)
pass 8 : -13315.7724 (branch= 0.0003 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 9 : -13315.7722 (branch= 0.0001 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 10: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 11: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
Looking for minimum length branches...
Final score = -13315.7722
Time used so far = 0 hours, 7 minutes and 46 seconds
MODEL REPORT - Parameter values are FINAL
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.965, AG = 2.577, AT = 1.410, CG = 1.410, CT = 3.720, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3102 0.1767 0.2972 0.2160
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.4097
Substitution rate categories under this model:
rate proportion
0.0181 0.2500
0.1889 0.2500
0.7415 0.2500
3.0514 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.384, AG = 7.090, AT = 1.611, CG = 7.090, CT = 4.384, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2692 0.1636 0.1605 0.4067
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.3609
Substitution rate categories under this model:
rate proportion
0.0115 0.2500
0.1520 0.2500
0.6852 0.2500
3.1513 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.939, AT = 3.394, CG = 0.457, CT = 4.939, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1565 0.3537 0.2877 0.2021
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
4.0115
with an invariant (invariable) site category, proportion estimated
0.0335
Substitution rate categories under this model:
rate proportion
0.0000 0.0335
0.4550 0.2416
0.7756 0.2416
1.0844 0.2416
1.6850 0.2416
Subset rate multipliers:
0.54 0.30 2.16
NOTE: Collapsing of minimum length branches was requested (collapsebranches = 1)
No branches were short enough to be collapsed.
>>>Completed Search rep 4 (of 5)<<<
>>>Search rep 5 (of 5)<<<
MODEL REPORT - Parameters are at their INITIAL values (not yet optimized)
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3157 0.1746 0.3004 0.2093
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.000, AG = 4.000, AT = 1.000, CG = 4.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2703 0.1566 0.1628 0.4103
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
Substitution rate categories under this model:
rate proportion
0.0334 0.2500
0.2519 0.2500
0.8203 0.2500
2.8944 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.000, AT = 1.000, CG = 1.000, CT = 4.000, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1460 0.3609 0.2915 0.2015
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.5000
with an invariant (invariable) site category, proportion estimated
0.0355
Substitution rate categories under this model:
rate proportion
0.0000 0.0355
0.0334 0.2411
0.2519 0.2411
0.8203 0.2411
2.8944 0.2411
Subset rate multipliers:
1.00 1.00 1.00
Starting with seed=1922346580
creating likelihood stepwise addition starting tree...
number of taxa added:
4 5 6
Optimizing parameters... improved 198.984 lnL
Optimizing branchlengths... improved 64.290 lnL
7 8 9 10 11
Initial ln Likelihood: -13643.0835
optimizing: starting branch lengths, alpha shape, prop. invar, rel rates, eq freqs, subset rates...
pass 1:+ 166.300 (branch= 6.38 scale= 1.32 alpha= 5.62 freqs= 26.48 rel rates= 65.82 pinv= 0.81 subset rates= 59.87)
pass 2:+ 86.601 (branch= 7.41 scale= 1.89 alpha= 5.35 freqs= 12.24 rel rates= 3.04 pinv= 0.66 subset rates= 56.01)
pass 3:+ 47.155 (branch= 5.78 scale= 0.66 alpha= 3.94 freqs= 0.98 rel rates= 2.37 pinv= 0.01 subset rates= 33.42)
pass 4:+ 17.442 (branch= 0.49 scale= 0.57 alpha= 0.74 freqs= 0.18 rel rates= 3.03 pinv= 0.02 subset rates= 12.41)
pass 5:+ 5.438 (branch= 0.00 scale= 0.00 alpha= 0.01 freqs= 0.17 rel rates= 0.56 pinv= 0.02 subset rates= 4.69)
pass 6:+ 0.155 (branch= 0.00 scale= 0.00 alpha= 0.00 freqs= 0.13 rel rates= 0.01 pinv= 0.01 subset rates= 0.00)
lnL after optimization: -13319.9928
gen current_lnL precision last_tree_imp
0 -13319.9928 0.500 0
100 -13318.8931 0.500 0
200 -13318.1402 0.500 0
300 -13317.7489 0.500 0
400 -13317.4083 0.500 0
500 -13316.8158 0.500 0
Optimization precision reduced
Optimizing parameters... improved 0.067 lnL
Optimizing branchlengths... improved 0.000 lnL
600 -13316.5461 0.402 0
700 -13316.4355 0.402 0
800 -13316.3446 0.402 0
900 -13316.3035 0.402 0
1000 -13316.2369 0.402 0
Optimization precision reduced
Optimizing parameters... improved 0.035 lnL
Optimizing branchlengths... improved 0.000 lnL
1100 -13316.1538 0.304 0
1200 -13316.0789 0.304 0
1300 -13316.0516 0.304 0
1400 -13316.0267 0.304 0
1500 -13316.0232 0.304 0
Optimization precision reduced
Optimizing parameters... improved 0.020 lnL
Optimizing branchlengths... improved 0.000 lnL
1600 -13315.9865 0.206 0
1700 -13315.9675 0.206 0
1800 -13315.9224 0.206 0
1900 -13315.9215 0.206 0
2000 -13315.9196 0.206 0
Optimization precision reduced
Optimizing parameters... improved 0.006 lnL
Optimizing branchlengths... improved 0.000 lnL
2100 -13315.9095 0.108 0
2200 -13315.9037 0.108 0
2300 -13315.8985 0.108 0
2400 -13315.8890 0.108 0
2500 -13315.8796 0.108 0
Optimization precision reduced
Optimizing parameters... improved 0.013 lnL
Optimizing branchlengths... improved 0.011 lnL
2600 -13315.8524 0.010 0
2700 -13315.8419 0.010 0
2800 -13315.8399 0.010 0
2900 -13315.8380 0.010 0
3000 -13315.8310 0.010 0
3100 -13315.8292 0.010 0
3200 -13315.8292 0.010 0
3300 -13315.8290 0.010 0
3400 -13315.8288 0.010 0
3500 -13315.8260 0.010 0
3600 -13315.8255 0.010 0
3700 -13315.8253 0.010 0
3800 -13315.8209 0.010 0
3900 -13315.8209 0.010 0
4000 -13315.8207 0.010 0
4100 -13315.8207 0.010 0
4200 -13315.8176 0.010 0
4300 -13315.8130 0.010 0
4400 -13315.8127 0.010 0
4500 -13315.8122 0.010 0
4600 -13315.8122 0.010 0
4700 -13315.8089 0.010 0
4800 -13315.8080 0.010 0
4900 -13315.8080 0.010 0
5000 -13315.8080 0.010 0
5100 -13315.8080 0.010 0
5200 -13315.8080 0.010 0
5300 -13315.8080 0.010 0
5400 -13315.8076 0.010 0
5500 -13315.8076 0.010 0
5600 -13315.8071 0.010 0
5700 -13315.8071 0.010 0
5800 -13315.8071 0.010 0
5900 -13315.8071 0.010 0
6000 -13315.8066 0.010 0
6100 -13315.8063 0.010 0
6200 -13315.8063 0.010 0
6300 -13315.8049 0.010 0
6400 -13315.8048 0.010 0
6500 -13315.8048 0.010 0
6600 -13315.8046 0.010 0
6700 -13315.8023 0.010 0
6800 -13315.8017 0.010 0
6900 -13315.8017 0.010 0
7000 -13315.8016 0.010 0
7100 -13315.7993 0.010 0
7200 -13315.7991 0.010 0
7300 -13315.7991 0.010 0
7400 -13315.7941 0.010 0
7500 -13315.7939 0.010 0
7600 -13315.7927 0.010 0
7700 -13315.7923 0.010 0
7800 -13315.7923 0.010 0
7900 -13315.7921 0.010 0
8000 -13315.7921 0.010 0
8100 -13315.7921 0.010 0
Reached termination condition!
last topological improvement at gen 0
Improvement over last 500 gen = 0.00061
Current score = -13315.7921
Performing final optimizations...
pass 1 : -13315.7914 (branch= 0.0000 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0003 rel rates= 0.0004 subset rates= 0.0000)
pass 2 : -13315.7882 (branch= 0.0000 alpha= 0.0026 pinv= 0.0000 eq freqs= 0.0003 rel rates= 0.0002 subset rates= 0.0000)
pass 3 : -13315.7851 (branch= 0.0013 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0017 rel rates= 0.0002 subset rates= 0.0000)
pass 4 : -13315.7799 (branch= 0.0041 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0002 rel rates= 0.0008 subset rates= 0.0000)
pass 5 : -13315.7758 (branch= 0.0020 alpha= 0.0004 pinv= 0.0000 eq freqs= 0.0010 rel rates= 0.0006 subset rates= 0.0001)
pass 6 : -13315.7743 (branch= 0.0009 alpha= 0.0000 pinv= 0.0002 eq freqs= 0.0001 rel rates= 0.0001 subset rates= 0.0001)
pass 7 : -13315.7735 (branch= 0.0003 alpha= 0.0001 pinv= 0.0000 eq freqs= 0.0001 rel rates= 0.0002 subset rates= 0.0000)
pass 8 : -13315.7733 (branch= 0.0001 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0002 subset rates= 0.0000)
pass 9 : -13315.7727 (branch= 0.0002 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0003 subset rates= 0.0000)
pass 10: -13315.7726 (branch= 0.0001 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 11: -13315.7725 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0001 subset rates= 0.0000)
pass 12: -13315.7724 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 13: -13315.7724 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 14: -13315.7724 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 15: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 16: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 17: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 18: -13315.7723 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 19: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
pass 20: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
optimization up to ...
pass 21: -13315.7722 (branch= 0.0000 alpha= 0.0000 pinv= 0.0000 eq freqs= 0.0000 rel rates= 0.0000 subset rates= 0.0000)
Looking for minimum length branches...
Final score = -13315.7722
Time used = 0 hours, 9 minutes and 50 seconds
MODEL REPORT - Parameter values are FINAL
Model 1
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 2 3 4 )
AC = 1.962, AG = 2.575, AT = 1.409, CG = 1.409, CT = 3.717, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.3102 0.1767 0.2971 0.2160
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.4097
Substitution rate categories under this model:
rate proportion
0.0181 0.2500
0.1890 0.2500
0.7416 0.2500
3.0513 0.2500
Model 2
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 1 0 3 )
AC = 4.381, AG = 7.086, AT = 1.609, CG = 7.086, CT = 4.381, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.2692 0.1636 0.1605 0.4067
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
0.3612
Substitution rate categories under this model:
rate proportion
0.0115 0.2500
0.1522 0.2500
0.6856 0.2500
3.1507 0.2500
Model 3
Number of states = 4 (nucleotide data)
Nucleotide Relative Rate Matrix:
User specified matrix type: ( 0 1 2 3 1 0 )
AC = 1.000, AG = 4.938, AT = 3.393, CG = 0.457, CT = 4.938, GT = 1.000
Equilibrium State Frequencies: estimated
(ACGT) 0.1565 0.3537 0.2877 0.2021
Rate Heterogeneity Model:
4 discrete gamma distributed rate categories, alpha param estimated
4.0171
with an invariant (invariable) site category, proportion estimated
0.0335
Substitution rate categories under this model:
rate proportion
0.0000 0.0335
0.4553 0.2416
0.7758 0.2416
1.0844 0.2416
1.6845 0.2416
Subset rate multipliers:
0.54 0.30 2.16
NOTE: Collapsing of minimum length branches was requested (collapsebranches = 1)
No branches were short enough to be collapsed.
>>>Completed Search rep 5 (of 5)<<<
#######################################################
Completed 5 replicate search(es) (of 5).
NOTE: Unless the following output indicates that search replicates found the
same topology, you should assume that they found different topologies.
Results:
Replicate 1 : -13315.7721 (best)
Replicate 2 : -13315.7723 (same topology as 1)
Replicate 3 : -13315.7722 (same topology as 1)
Replicate 4 : -13315.7722 (same topology as 1)
Replicate 5 : -13315.7722 (same topology as 1)
Parameter estimates across search replicates:
Partition model subset 1:
r(AC) r(AG) r(AT) r(CG) r(CT) r(GT) pi(A) pi(C) pi(G) pi(T) alpha
rep 1: 1.966 2.579 1.411 1.411 3.722 1 0.310 0.177 0.297 0.216 0.410
rep 2: 1.962 2.575 1.408 1.408 3.715 1 0.310 0.177 0.297 0.216 0.410
rep 3: 1.964 2.577 1.41 1.41 3.72 1 0.310 0.177 0.297 0.216 0.410
rep 4: 1.965 2.577 1.41 1.41 3.72 1 0.310 0.177 0.297 0.216 0.410
rep 5: 1.962 2.575 1.409 1.409 3.717 1 0.310 0.177 0.297 0.216 0.410
Partition model subset 2:
r(AC) r(AG) r(AT) r(CG) r(CT) r(GT) pi(A) pi(C) pi(G) pi(T) alpha
rep 1: 4.38 7.085 1.609 7.085 4.38 1 0.269 0.164 0.160 0.407 0.361
rep 2: 4.4 7.116 1.617 7.116 4.4 1 0.269 0.164 0.161 0.407 0.361
rep 3: 4.382 7.087 1.61 7.087 4.382 1 0.269 0.164 0.160 0.407 0.361
rep 4: 4.384 7.09 1.611 7.09 4.384 1 0.269 0.164 0.160 0.407 0.361
rep 5: 4.381 7.086 1.609 7.086 4.381 1 0.269 0.164 0.161 0.407 0.361
Partition model subset 3:
r(AC) r(AG) r(AT) r(CG) r(CT) r(GT) pi(A) pi(C) pi(G) pi(T) alpha pinv
rep 1: 1 4.936 3.391 0.4568 4.936 1 0.157 0.354 0.288 0.202 4.014 0.034
rep 2: 1 4.938 3.393 0.4572 4.938 1 0.157 0.354 0.288 0.202 4.016 0.034
rep 3: 1 4.938 3.393 0.4569 4.938 1 0.157 0.354 0.288 0.202 4.008 0.033
rep 4: 1 4.939 3.394 0.4572 4.939 1 0.157 0.354 0.288 0.202 4.011 0.033
rep 5: 1 4.938 3.393 0.4572 4.938 1 0.157 0.354 0.288 0.202 4.017 0.034
Treelengths and subset rate multipliers:
TL R(1) R(2) R(3)
rep 1: 1.693 0.541 0.300 2.159
rep 2: 1.693 0.541 0.300 2.158
rep 3: 1.693 0.541 0.300 2.159
rep 4: 1.693 0.541 0.300 2.159
rep 5: 1.693 0.541 0.301 2.158
Saving final trees from all search reps to 3diffModels.byCodonPos.best.all.tre
Saving final tree from best search rep (#1) to 3diffModels.byCodonPos.best.tre
#######################################################
|