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 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
|
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, scikit-bio development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE.txt, distributed with this software.
# ----------------------------------------------------------------------------
from unittest import TestCase, main
from collections import defaultdict
import numpy as np
import numpy.testing as npt
import pandas as pd
from scipy.stats import pearsonr
from skbio import DistanceMatrix, TreeNode
from skbio.tree import (DuplicateNodeError, NoLengthError,
TreeError, MissingNodeError, NoParentError)
from skbio.util import RepresentationWarning
class TreeNodeSubclass(TreeNode):
pass
class TreeTests(TestCase):
def setUp(self):
"""Prep the self"""
# a simple tree
self.simple_t = TreeNode.read(["((a,b)i1,(c,d)i2)root;"])
# /-a
# /i1------|
# | \-b
# -root----|
# | /-c
# \i2------|
# \-d
# another test tree
nodes = dict([(x, TreeNode(x)) for x in "abcdefgh"])
nodes["a"].append(nodes["b"])
nodes["b"].append(nodes["c"])
nodes["c"].append(nodes["d"])
nodes["c"].append(nodes["e"])
nodes["c"].append(nodes["f"])
nodes["f"].append(nodes["g"])
nodes["a"].append(nodes["h"])
self.TreeRoot = nodes["a"]
# (((d,e,(g)f)c)b,h)a;
# /-d
# |
# /b------- /c-------|--e
# | |
# -a-------| \f------- /-g
# |
# \-h
def rev_f(items):
items.reverse()
def rotate_f(items):
tmp = items[-1]
items[1:] = items[:-1]
items[0] = tmp
self.rev_f = rev_f
self.rotate_f = rotate_f
self.complex_tree = TreeNode.read([
"(((a,b)int1,(x,y,(w,z)int2,(c,d)int3)int4),(e,f)int5);"])
def test_bug_issue_1416(self):
tree = TreeNode.read(["(((a,b,f,g),c),d);"])
new_tree = tree.shear(["a", "b", "c", "f"])
exp = {"a", "b", "c", "f"}
obs = {n.name for n in new_tree.tips()}
self.assertEqual(obs, exp)
self.assertEqual(id(new_tree), id(new_tree.children[0].parent))
self.assertEqual(id(new_tree), id(new_tree.children[1].parent))
def test_observed_node_counts(self):
"""returns observed nodes counts given vector of observed taxon counts
"""
# no taxon observed
taxon_counts = {}
expected = defaultdict(int)
self.assertEqual(self.simple_t.observed_node_counts(taxon_counts),
expected)
# error on zero count(s)
taxon_counts = {"a": 0}
self.assertRaises(ValueError, self.simple_t.observed_node_counts,
taxon_counts)
taxon_counts = {"a": 0, "b": 0, "c": 0, "d": 0}
self.assertRaises(ValueError, self.simple_t.observed_node_counts,
taxon_counts)
# all taxa observed once
taxon_counts = {"a": 1, "b": 1, "c": 1, "d": 1}
expected = defaultdict(int)
expected[self.simple_t.find("root")] = 4
expected[self.simple_t.find("i1")] = 2
expected[self.simple_t.find("i2")] = 2
expected[self.simple_t.find("a")] = 1
expected[self.simple_t.find("b")] = 1
expected[self.simple_t.find("c")] = 1
expected[self.simple_t.find("d")] = 1
self.assertEqual(self.simple_t.observed_node_counts(taxon_counts),
expected)
# some taxa observed twice
taxon_counts = {"a": 2, "b": 1, "c": 1, "d": 1}
expected = defaultdict(int)
expected[self.simple_t.find("root")] = 5
expected[self.simple_t.find("i1")] = 3
expected[self.simple_t.find("i2")] = 2
expected[self.simple_t.find("a")] = 2
expected[self.simple_t.find("b")] = 1
expected[self.simple_t.find("c")] = 1
expected[self.simple_t.find("d")] = 1
self.assertEqual(self.simple_t.observed_node_counts(taxon_counts),
expected)
taxon_counts = {"a": 2, "b": 1, "c": 1, "d": 2}
expected = defaultdict(int)
expected[self.simple_t.find("root")] = 6
expected[self.simple_t.find("i1")] = 3
expected[self.simple_t.find("i2")] = 3
expected[self.simple_t.find("a")] = 2
expected[self.simple_t.find("b")] = 1
expected[self.simple_t.find("c")] = 1
expected[self.simple_t.find("d")] = 2
self.assertEqual(self.simple_t.observed_node_counts(taxon_counts),
expected)
# some taxa observed, others not observed
taxon_counts = {"a": 2, "b": 1}
expected = defaultdict(int)
expected[self.simple_t.find("root")] = 3
expected[self.simple_t.find("i1")] = 3
expected[self.simple_t.find("a")] = 2
expected[self.simple_t.find("b")] = 1
self.assertEqual(self.simple_t.observed_node_counts(taxon_counts),
expected)
taxon_counts = {"d": 1}
expected = defaultdict(int)
expected[self.simple_t.find("root")] = 1
expected[self.simple_t.find("i2")] = 1
expected[self.simple_t.find("d")] = 1
self.assertEqual(self.simple_t.observed_node_counts(taxon_counts),
expected)
# error on non-tips
taxon_counts = {"a": 2, "e": 1}
self.assertRaises(MissingNodeError, self.simple_t.observed_node_counts,
taxon_counts)
taxon_counts = {"a": 2, "i1": 1}
self.assertRaises(MissingNodeError, self.simple_t.observed_node_counts,
taxon_counts)
# test with another tree
taxon_counts = {}
expected = defaultdict(int)
self.assertEqual(self.complex_tree.observed_node_counts(taxon_counts),
expected)
taxon_counts = {"e": 42, "f": 1}
expected[self.complex_tree.root()] = 43
expected[self.complex_tree.find("int5")] = 43
expected[self.complex_tree.find("e")] = 42
expected[self.complex_tree.find("f")] = 1
self.assertEqual(self.complex_tree.observed_node_counts(taxon_counts),
expected)
def test_count(self):
"""Get node counts"""
exp = 7
obs = self.simple_t.count()
self.assertEqual(obs, exp)
exp = 4
obs = self.simple_t.count(tips=True)
self.assertEqual(obs, exp)
def test_copy(self):
"""copy a tree"""
self.simple_t.children[0].length = 1.2
self.simple_t.children[1].children[0].length = 0.5
cp = self.simple_t.copy()
gen = zip(cp.traverse(include_self=True),
self.simple_t.traverse(include_self=True))
for a, b in gen:
self.assertIsNot(a, b)
self.assertEqual(a.name, b.name)
self.assertEqual(a.length, b.length)
# deep vs shallow copy
self.simple_t.dummy = [1, [2, 3], 4]
cp = self.simple_t.copy()
cp.dummy[1].append(0)
self.assertListEqual(self.simple_t.dummy[1], [2, 3])
cp = self.simple_t.copy(deep=False)
cp.dummy[1].append(0)
self.assertListEqual(self.simple_t.dummy[1], [2, 3, 0])
def test_deepcopy(self):
self.simple_t.dummy = [1, [2, 3], 4]
cp = self.simple_t.copy()
cp.dummy[1].append(0)
self.assertListEqual(self.simple_t.dummy[1], [2, 3])
def test__copy__(self):
self.simple_t.dummy = [1, [2, 3], 4]
cp = self.simple_t.__copy__()
for obs, exp in zip(cp.traverse(), self.simple_t.traverse()):
self.assertIsNot(obs, exp)
self.assertEqual(obs.name, exp.name)
self.assertEqual(obs.length, exp.length)
cp.dummy[1].append(0)
self.assertListEqual(self.simple_t.dummy[1], [2, 3, 0])
def test__deepcopy__(self):
self.simple_t.dummy = [1, [2, 3], 4]
cp = self.simple_t.__deepcopy__({})
for obs, exp in zip(cp.traverse(), self.simple_t.traverse()):
self.assertIsNot(obs, exp)
self.assertEqual(obs.name, exp.name)
self.assertEqual(obs.length, exp.length)
cp.dummy[1].append(0)
self.assertListEqual(self.simple_t.dummy[1], [2, 3])
def test_append(self):
"""Append a node to a tree"""
second_tree = TreeNode.read(["(x,y)z;"])
self.simple_t.append(second_tree)
self.assertEqual(self.simple_t.children[0].name, "i1")
self.assertEqual(self.simple_t.children[1].name, "i2")
self.assertEqual(self.simple_t.children[2].name, "z")
self.assertEqual(len(self.simple_t.children), 3)
self.assertEqual(self.simple_t.children[2].children[0].name, "x")
self.assertEqual(self.simple_t.children[2].children[1].name, "y")
self.assertEqual(second_tree.parent, self.simple_t)
def test_extend(self):
"""Extend a few nodes"""
second_tree = TreeNode.read(["(x1,y1)z1;"])
third_tree = TreeNode.read(["(x2,y2)z2;"])
first_tree = TreeNode.read(["(x1,y1)z1;"])
fourth_tree = TreeNode.read(["(x2,y2)z2;"])
self.simple_t.extend([second_tree, third_tree])
first_tree.extend(fourth_tree.children)
self.assertEqual(0, len(fourth_tree.children))
self.assertEqual(first_tree.children[0].name, "x1")
self.assertEqual(first_tree.children[1].name, "y1")
self.assertEqual(first_tree.children[2].name, "x2")
self.assertEqual(first_tree.children[3].name, "y2")
self.assertEqual(self.simple_t.children[0].name, "i1")
self.assertEqual(self.simple_t.children[1].name, "i2")
self.assertEqual(self.simple_t.children[2].name, "z1")
self.assertEqual(self.simple_t.children[3].name, "z2")
self.assertEqual(len(self.simple_t.children), 4)
self.assertEqual(self.simple_t.children[2].children[0].name, "x1")
self.assertEqual(self.simple_t.children[2].children[1].name, "y1")
self.assertEqual(self.simple_t.children[3].children[0].name, "x2")
self.assertEqual(self.simple_t.children[3].children[1].name, "y2")
self.assertIs(second_tree.parent, self.simple_t)
self.assertIs(third_tree.parent, self.simple_t)
def test_extend_empty(self):
"""Extend on the empty case should work"""
self.simple_t.extend([])
self.assertEqual(self.simple_t.children[0].name, "i1")
self.assertEqual(self.simple_t.children[1].name, "i2")
self.assertEqual(len(self.simple_t.children), 2)
def test_insert(self):
"Insert a node into the branch connecting self and its parent."
# insert a new node into a branch with no length
node = self.simple_t.find("i1")
node.insert(TreeNode("x"))
obs = self.simple_t.find("x")
self.assertTrue(obs.parent is self.simple_t)
self.assertTrue(node.parent is obs)
self.assertIn(obs, self.simple_t.children)
self.assertIn(node, obs.children)
self.assertIsNone(obs.length)
self.assertIsNone(node.length)
msg = "Distance is provided but branch has no length."
with self.assertRaisesRegex(ValueError, msg):
node.insert(TreeNode("x"), distance=1.0)
msg = "Self has no parent."
with self.assertRaisesRegex(NoParentError, msg):
self.simple_t.insert(TreeNode("x"))
# insert an existing clade into a branch with length
t = TreeNode.read(["((a:1,b:1)c:2,(d:3,e:4)f:5,g:1)h;"])
donor_t = TreeNode.read(["((x:1,y:1)m:1.5,(z:1,w:1)n:0.5,l:2.5);"])
t.find("c").insert(donor_t.find("m"))
obs = t.find("m")
self.assertTrue(obs.parent is t)
self.assertTrue(t.find("c").parent is obs)
self.assertNotIn(obs, donor_t.children)
self.assertEqual(obs.length, 1)
self.assertEqual(t.find("c").length, 1)
t.find("d").insert(donor_t.find("n"), 2)
obs = t.find("n")
self.assertTrue(obs.parent is t.find("f"))
self.assertTrue(t.find("d").parent is obs)
self.assertEqual(obs.length, 1)
self.assertEqual(t.find("d").length, 2)
msg = "Distance cannot exceed branch length."
with self.assertRaisesRegex(ValueError, msg):
t.find("c").insert(TreeNode("x"), 20)
# with branch support
t = TreeNode.read(["(((a,b)90)d);"])
t.assign_supports()
t.lca(["a", "b"]).insert(TreeNode("x"))
self.assertEqual(t.find("x").support, 90)
# with custom branch attribute
t = TreeNode.read(["(((a,b)c)d);"])
n = t.find("c")
n.battr = 1 # branch attribute
n.nattr = 2 # node attribute
n.insert(TreeNode("x"), branch_attrs=["battr"])
self.assertEqual(t.find("x").battr, 1)
self.assertFalse(hasattr(t.find("x"), "nattr"))
def test_iter(self):
"""iter wraps children"""
exp = ["i1", "i2"]
obs = [n.name for n in self.simple_t]
self.assertEqual(obs, exp)
def test_gops(self):
"""Basic TreeNode operations should work as expected"""
p = TreeNode()
self.assertEqual(str(p), ";\n")
p.name = "abc"
self.assertEqual(str(p), "abc;\n")
p.length = 3
self.assertEqual(str(p), "abc:3;\n") # don"t suppress branch from root
q = TreeNode()
p.append(q)
self.assertEqual(str(p), "()abc:3;\n")
r = TreeNode()
q.append(r)
self.assertEqual(str(p), "(())abc:3;\n")
r.name = "xyz"
self.assertEqual(str(p), "((xyz))abc:3;\n")
q.length = 2
self.assertEqual(str(p), "((xyz):2)abc:3;\n")
def test_pop(self):
"""Pop off a node"""
second_tree = TreeNode.read(["(x1,y1)z1;"])
third_tree = TreeNode.read(["(x2,y2)z2;"])
self.simple_t.extend([second_tree, third_tree])
i1 = self.simple_t.pop(0)
z2 = self.simple_t.pop()
self.assertEqual(i1.name, "i1")
self.assertEqual(z2.name, "z2")
self.assertEqual(i1.children[0].name, "a")
self.assertEqual(i1.children[1].name, "b")
self.assertEqual(z2.children[0].name, "x2")
self.assertEqual(z2.children[1].name, "y2")
self.assertEqual(self.simple_t.children[0].name, "i2")
self.assertEqual(self.simple_t.children[1].name, "z1")
self.assertEqual(len(self.simple_t.children), 2)
def test_remove(self):
"""Remove nodes"""
self.assertTrue(self.simple_t.remove(self.simple_t.children[0]))
self.assertEqual(len(self.simple_t.children), 1)
n = TreeNode()
self.assertFalse(self.simple_t.remove(n))
def test_remove_deleted(self):
"""Remove nodes by function"""
def f(node):
return node.name in ["b", "d"]
self.simple_t.remove_deleted(f)
exp = "((a)i1,(c)i2)root;\n"
obs = str(self.simple_t)
self.assertEqual(obs, exp)
def test_adopt(self):
"""Adopt a node!"""
n1 = TreeNode(name="n1")
n2 = TreeNode(name="n2")
n3 = TreeNode(name="n3")
self.simple_t._adopt(n1)
self.simple_t.children[-1]._adopt(n2)
n2._adopt(n3)
# adopt doesn"t update .children
self.assertEqual(len(self.simple_t.children), 2)
self.assertIs(n1.parent, self.simple_t)
self.assertIs(n2.parent, self.simple_t.children[-1])
self.assertIs(n3.parent, n2)
def test_remove_node(self):
"""Remove a node by index"""
n = self.simple_t._remove_node(-1)
self.assertEqual(n.parent, None)
self.assertEqual(len(self.simple_t.children), 1)
self.assertEqual(len(n.children), 2)
self.assertNotIn(n, self.simple_t.children)
def test_shear_prune_parent_dropped(self):
bugtree = "((a,b),((c,d),(e,f)));"
to_keep = ["c", "d"]
exp = "(c,d);\n"
obs = str(TreeNode.read([bugtree]).shear(to_keep))
self.assertEqual(obs, exp)
def test_prune_nested_single_descendent(self):
bugtree = "(((a,b)));"
exp = "(a,b);\n"
t = TreeNode.read([bugtree])
t.prune()
obs = str(t)
self.assertEqual(obs, exp)
def test_prune_root_single_desc(self):
t = TreeNode.read(["((a,b)c)extra;"])
exp = "(a,b)c;\n"
t.prune()
self.assertEqual(str(t), exp)
def test_prune(self):
"""Collapse single descendent nodes"""
# check the identity case
cp = self.simple_t.copy()
self.simple_t.prune()
gen = zip(cp.traverse(include_self=True),
self.simple_t.traverse(include_self=True))
for a, b in gen:
self.assertIsNot(a, b)
self.assertEqual(a.name, b.name)
self.assertEqual(a.length, b.length)
# create a single descendent by removing tip "a"
n = self.simple_t.children[0]
n.remove(n.children[0])
self.simple_t.prune()
self.assertEqual(len(self.simple_t.children), 2)
self.assertEqual(self.simple_t.children[0].name, "i2")
self.assertEqual(self.simple_t.children[1].name, "b")
def test_prune_length(self):
"""Collapse single descendent nodes"""
# check the identity case
cp = self.simple_t.copy()
self.simple_t.prune()
gen = zip(cp.traverse(include_self=True),
self.simple_t.traverse(include_self=True))
for a, b in gen:
self.assertIsNot(a, b)
self.assertEqual(a.name, b.name)
self.assertEqual(a.length, b.length)
for n in self.simple_t.traverse():
n.length = 1.0
# create a single descendent by removing tip "a"
n = self.simple_t.children[0]
n.remove(n.children[0])
self.simple_t.prune()
self.assertEqual(len(self.simple_t.children), 2)
self.assertEqual(self.simple_t.children[0].name, "i2")
self.assertEqual(self.simple_t.children[1].name, "b")
self.assertEqual(self.simple_t.children[1].length, 2.0)
def test_subset(self):
"""subset should return set of leaves that descends from node"""
t = self.simple_t
self.assertEqual(t.subset(), frozenset("abcd"))
c = t.children[0]
self.assertEqual(c.subset(), frozenset("ab"))
leaf = c.children[1]
self.assertEqual(leaf.subset(), frozenset(""))
def test_subsets(self):
"""subsets should return all subsets descending from a set"""
t = self.simple_t
self.assertEqual(t.subsets(), frozenset(
[frozenset("ab"), frozenset("cd")]))
def test_is_tip(self):
"""see if we're a tip or not"""
self.assertFalse(self.simple_t.is_tip())
self.assertFalse(self.simple_t.children[0].is_tip())
self.assertTrue(self.simple_t.children[0].children[0].is_tip())
def test_is_root(self):
"""see if we're at the root or not"""
self.assertTrue(self.simple_t.is_root())
self.assertFalse(self.simple_t.children[0].is_root())
self.assertFalse(self.simple_t.children[0].children[0].is_root())
def test_root(self):
"""Get the root!"""
root = self.simple_t
self.assertIs(root, self.simple_t.root())
self.assertIs(root, self.simple_t.children[0].root())
self.assertIs(root, self.simple_t.children[1].children[1].root())
def test_invalidate_lookup_caches(self):
root = self.simple_t
root.create_caches()
self.assertNotEqual(root._tip_cache, {})
self.assertNotEqual(root._non_tip_cache, {})
root.invalidate_caches()
self.assertFalse(hasattr(root, "_tip_cache"))
self.assertFalse(hasattr(root, "_non_tip_cache"))
def test_invalidate_attr_caches(self):
tree = TreeNode.read(["((a,b,(c,d)e)f,(g,h)i)root;"])
def f(n):
return [n.name] if n.is_tip() else []
tree.cache_attr(f, "tip_names")
tree.invalidate_caches()
for n in tree.traverse(include_self=True):
self.assertFalse(hasattr(n, "tip_names"))
def test_create_caches_duplicate_tip_names(self):
with self.assertRaises(DuplicateNodeError):
TreeNode.read(["(a,a);"]).create_caches()
def test_find_all(self):
t = TreeNode.read(["((a,b)c,((d,e)c)c,(f,(g,h)c)a)root;"])
exp = [t.children[0],
t.children[1].children[0],
t.children[1],
t.children[2].children[1]]
obs = t.find_all("c")
self.assertEqual(obs, exp)
identity = t.find_all(t)
self.assertEqual(len(identity), 1)
self.assertEqual(identity[0], t)
identity_name = t.find_all("root")
self.assertEqual(len(identity_name), 1)
self.assertEqual(identity_name[0], t)
exp = [t.children[2],
t.children[0].children[0]]
obs = t.find_all("a")
self.assertEqual(obs, exp)
with self.assertRaises(MissingNodeError):
t.find_all("missing")
def test_find(self):
"""Find a node in a tree"""
t = TreeNode.read(["((a,b)c,(d,e)f);"])
exp = t.children[0]
obs = t.find("c")
self.assertEqual(obs, exp)
exp = t.children[0].children[1]
obs = t.find("b")
self.assertEqual(obs, exp)
with self.assertRaises(MissingNodeError):
t.find("does not exist")
def test_find_cache_bug(self):
"""First implementation did not force the cache to be at the root"""
t = TreeNode.read(["((a,b)c,(d,e)f,(g,h)f);"])
exp_tip_cache_keys = set(["a", "b", "d", "e", "g", "h"])
exp_non_tip_cache_keys = set(["c", "f"])
tip_a = t.children[0].children[0]
tip_a.create_caches()
self.assertFalse(hasattr(tip_a, "_tip_cache"))
self.assertEqual(set(t._tip_cache), exp_tip_cache_keys)
self.assertEqual(set(t._non_tip_cache), exp_non_tip_cache_keys)
self.assertEqual(t._non_tip_cache["f"], [t.children[1], t.children[2]])
def test_find_by_id(self):
"""Find a node by id"""
t1 = TreeNode.read(["((,),(,,));"])
t2 = TreeNode.read(["((,),(,,));"])
exp = t1.children[1]
obs = t1.find_by_id(6) # right inner node with 3 children
self.assertEqual(obs, exp)
exp = t2.children[1]
obs = t2.find_by_id(6) # right inner node with 3 children
self.assertEqual(obs, exp)
with self.assertRaises(MissingNodeError):
t1.find_by_id(100)
def test_find_by_func(self):
"""Find nodes by a function"""
t = TreeNode.read(["((a,b)c,(d,e)f);"])
def func(x):
return x.parent == t.find("c")
exp = ["a", "b"]
obs = [n.name for n in t.find_by_func(func)]
self.assertEqual(obs, exp)
def test_ancestors(self):
"""Get all the ancestors"""
exp = ["i1", "root"]
obs = self.simple_t.children[0].children[0].ancestors()
self.assertEqual([o.name for o in obs], exp)
exp = ["root"]
obs = self.simple_t.children[0].ancestors()
self.assertEqual([o.name for o in obs], exp)
exp = []
obs = self.simple_t.ancestors()
self.assertEqual([o.name for o in obs], exp)
def test_siblings(self):
"""Get the siblings"""
exp = []
obs = self.simple_t.siblings()
self.assertEqual(obs, exp)
exp = ["i2"]
obs = self.simple_t.children[0].siblings()
self.assertEqual([o.name for o in obs], exp)
exp = ["c"]
obs = self.simple_t.children[1].children[1].siblings()
self.assertEqual([o.name for o in obs], exp)
self.simple_t.append(TreeNode(name="foo"))
self.simple_t.append(TreeNode(name="bar"))
exp = ["i1", "foo", "bar"]
obs = self.simple_t.children[1].siblings()
self.assertEqual([o.name for o in obs], exp)
def test_ascii_art(self):
"""Make some ascii trees"""
# unlabeled internal node
tr = TreeNode.read(["(B:0.2,(C:0.3,D:0.4):0.6)F;"])
obs = tr.ascii_art(show_internal=True, compact=False)
exp = (" /-B\n"
"-F-------|\n"
" | /-C\n"
" \\--------|\n"
" \\-D")
self.assertEqual(obs, exp)
obs = tr.ascii_art(show_internal=True, compact=True)
exp = ("-F------- /-B\n"
" \\-------- /-C\n"
" \\-D")
self.assertEqual(obs, exp)
obs = tr.ascii_art(show_internal=False, compact=False)
exp = (" /-B\n"
"---------|\n"
" | /-C\n"
" \\--------|\n"
" \\-D")
self.assertEqual(obs, exp)
def test_ascii_art_with_support(self):
"""Make some ascii trees with support values"""
tr = TreeNode.read(["(B:0.2,(C:0.3,D:0.4)90:0.6)F;"])
exp = " /-B\n-F-------|\n | /-C\n "\
" \\90------|\n \\-D"
obs = tr.ascii_art(show_internal=True, compact=False)
self.assertEqual(obs, exp)
tr.assign_supports()
obs = tr.ascii_art(show_internal=True, compact=False)
self.assertEqual(obs, exp)
tr = TreeNode.read(["((A,B)75,(C,D)'80:spA');"])
exp = " /-A\n /75------|\n | "\
" \\-B\n---------|\n | /-C\n \\"\
"80:spA--|\n \\-D"
obs = tr.ascii_art(show_internal=True, compact=False)
self.assertEqual(obs, exp)
tr.assign_supports()
obs = tr.ascii_art(show_internal=True, compact=False)
self.assertEqual(obs, exp)
def test_ascii_art_three_children(self):
obs = TreeNode.read(["(a,(b,c,d));"]).ascii_art()
self.assertEqual(obs, exp_ascii_art_three_children)
def test_accumulate_to_ancestor(self):
"""Get the distance from a node to its ancestor"""
t = TreeNode.read([
"((a:0.1,b:0.2)c:0.3,(d:0.4,e)f:0.5)root;"])
a = t.find("a")
b = t.find("b")
exp_to_root = 0.1 + 0.3
obs_to_root = a.accumulate_to_ancestor(t)
self.assertEqual(obs_to_root, exp_to_root)
with self.assertRaises(NoParentError):
a.accumulate_to_ancestor(b)
def test_distance_nontip(self):
# example derived from issue #807, credit @wwood
tstr = "((A:1.0,B:2.0)'g__genus1':3.0)root;"
tree = TreeNode.read([tstr])
self.assertEqual(tree.find("A").distance(tree.find("g__genus1")), 1.0)
def test_distance(self):
"""Get the distance between two nodes"""
t = TreeNode.read(["((a:0.1,b:0.2)c:0.3,(d:0.4,e)f:0.5)root;"])
tips = sorted([n for n in t.tips()], key=lambda x: x.name)
npt.assert_almost_equal(tips[0].distance(tips[0]), 0.0)
npt.assert_almost_equal(tips[0].distance(tips[1]), 0.3)
npt.assert_almost_equal(tips[0].distance(tips[2]), 1.3)
with self.assertRaises(NoLengthError):
tips[0].distance(tips[3])
npt.assert_almost_equal(tips[1].distance(tips[0]), 0.3)
npt.assert_almost_equal(tips[1].distance(tips[1]), 0.0)
npt.assert_almost_equal(tips[1].distance(tips[2]), 1.4)
with self.assertRaises(NoLengthError):
tips[1].distance(tips[3])
self.assertEqual(tips[2].distance(tips[0]), 1.3)
self.assertEqual(tips[2].distance(tips[1]), 1.4)
self.assertEqual(tips[2].distance(tips[2]), 0.0)
with self.assertRaises(NoLengthError):
tips[2].distance(tips[3])
def test_lowest_common_ancestor(self):
"""TreeNode lowestCommonAncestor should return LCA for set of tips"""
t1 = TreeNode.read(["((a,(b,c)d)e,f,(g,h)i)j;"])
t2 = t1.copy()
t3 = t1.copy()
t4 = t1.copy()
input1 = ["a"] # return self
input2 = ["a", "b"] # return e
input3 = ["b", "c"] # return d
input4 = ["a", "h", "g"] # return j
exp1 = t1.find("a")
exp2 = t2.find("e")
exp3 = t3.find("d")
exp4 = t4
obs1 = t1.lowest_common_ancestor(input1)
obs2 = t2.lowest_common_ancestor(input2)
obs3 = t3.lowest_common_ancestor(input3)
obs4 = t4.lowest_common_ancestor(input4)
self.assertEqual(obs1, exp1)
self.assertEqual(obs2, exp2)
self.assertEqual(obs3, exp3)
self.assertEqual(obs4, exp4)
# verify multiple calls work
t_mul = t1.copy()
exp_1 = t_mul.find("d")
exp_2 = t_mul.find("i")
obs_1 = t_mul.lowest_common_ancestor(["b", "c"])
obs_2 = t_mul.lowest_common_ancestor(["g", "h"])
self.assertEqual(obs_1, exp_1)
self.assertEqual(obs_2, exp_2)
# empty case
with self.assertRaises(ValueError):
t1.lowest_common_ancestor([])
def test_get_max_distance(self):
"""get_max_distance should get max tip distance across tree"""
tree = TreeNode.read([
"((a:0.1,b:0.2)c:0.3,(d:0.4,e:0.5)f:0.6)root;"])
dist, nodes = tree.get_max_distance()
npt.assert_almost_equal(dist, 1.6)
self.assertEqual(sorted([n.name for n in nodes]), ["b", "e"])
def test_set_max_distance(self):
"""set_max_distance sets MaxDistTips across tree"""
tree = TreeNode.read([
"((a:0.1,b:0.2)c:0.3,(d:0.4,e:0.5)f:0.6)root;"])
tree._set_max_distance()
tip_a, tip_b = tree.MaxDistTips
self.assertEqual(tip_a[0] + tip_b[0], 1.6)
self.assertEqual(sorted([tip_a[1].name, tip_b[1].name]), ["b", "e"])
def test_set_max_distance_tie_bug(self):
"""Corresponds to #1077"""
t = TreeNode.read(["((a:1,b:1)c:2,(d:3,e:4)f:5)root;"])
exp = ((3.0, t.find("a")), (9.0, t.find("e")))
# the above tree would trigger an exception in max. The central issue
# was that the data being passed to max were a tuple of tuple:
# ((left_d, left_n), (right_d, right_n))
# the call to max would break in this scenario as it would fall onto
# idx 1 of each tuple to assess the "max".
t._set_max_distance()
self.assertEqual(t.MaxDistTips, exp)
def test_set_max_distance_inplace_modification_bug(self):
"""Corresponds to #1223"""
t = TreeNode.read(["((a:1,b:1)c:2,(d:3,e:4)f:5)root;"])
exp = [((0.0, t.find("a")), (0.0, t.find("a"))),
((0.0, t.find("b")), (0.0, t.find("b"))),
((1.0, t.find("a")), (1.0, t.find("b"))),
((0.0, t.find("d")), (0.0, t.find("d"))),
((0.0, t.find("e")), (0.0, t.find("e"))),
((3.0, t.find("d")), (4.0, t.find("e"))),
((3.0, t.find("a")), (9.0, t.find("e")))]
t._set_max_distance()
self.assertEqual([n.MaxDistTips for n in t.postorder()], exp)
def test_shear(self):
"""Shear the nodes"""
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7):3);"])
obs = str(t.shear(["G", "M"]))
exp = "(G:3.0,M:3.7);\n"
self.assertEqual(obs, exp)
def test_compare_tip_distances(self):
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7):3);"])
t2 = TreeNode.read(["(((H:1,G:1,O:1):2,R:3):1,X:4);"])
obs = t.compare_tip_distances(t2)
# note: common taxa are H, G, R (only)
m1 = np.array([[0, 2, 6.5], [2, 0, 6.5], [6.5, 6.5, 0]])
m2 = np.array([[0, 2, 6], [2, 0, 6], [6, 6, 0]])
r = pearsonr(m1.flat, m2.flat)[0]
self.assertAlmostEqual(obs, (1 - r) / 2)
def test_compare_tip_distances_sample(self):
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7):3);"])
t2 = TreeNode.read(["(((H:1,G:1,O:1):2,R:3):1,X:4);"])
obs = t.compare_tip_distances(t2, sample=3, shuffle_f=sorted)
# note: common taxa are H, G, R (only)
m1 = np.array([[0, 2, 6.5], [2, 0, 6.5], [6.5, 6.5, 0]])
m2 = np.array([[0, 2, 6], [2, 0, 6], [6, 6, 0]])
r = pearsonr(m1.flat, m2.flat)[0]
self.assertAlmostEqual(obs, (1 - r) / 2)
# 4 common taxa, still picking H, G, R
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7,Q:5):3);"])
t3 = TreeNode.read(["(((H:1,G:1,O:1):2,R:3,Q:10):1,X:4);"])
obs = t.compare_tip_distances(t3, sample=3, shuffle_f=sorted)
def test_compare_tip_distances_no_common_tips(self):
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7):3);"])
t2 = TreeNode.read(["(((Z:1,Y:1,X:1):2,W:3):1,V:4);"])
with self.assertRaises(ValueError):
t.compare_tip_distances(t2)
def test_compare_tip_distances_single_common_tip(self):
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7):3);"])
t2 = TreeNode.read(["(((R:1,Y:1,X:1):2,W:3):1,V:4);"])
self.assertEqual(t.compare_tip_distances(t2), 1)
self.assertEqual(t2.compare_tip_distances(t), 1)
def test_tip_tip_distances_endpoints(self):
"""Test getting specifc tip distances with tipToTipDistances"""
t = TreeNode.read(["((H:1,G:1):2,(R:0.5,M:0.7):3);"])
nodes = [t.find("H"), t.find("G"), t.find("M")]
names = ["H", "G", "M"]
exp = DistanceMatrix(np.array([[0, 2.0, 6.7],
[2.0, 0, 6.7],
[6.7, 6.7, 0.0]]), ["H", "G", "M"])
obs = t.tip_tip_distances(endpoints=names)
self.assertEqual(obs, exp)
obs = t.tip_tip_distances(endpoints=nodes)
self.assertEqual(obs, exp)
def test_tip_tip_distances_non_tip_endpoints(self):
t = TreeNode.read(["((H:1,G:1)foo:2,(R:0.5,M:0.7):3);"])
with self.assertRaises(ValueError):
t.tip_tip_distances(endpoints=["foo"])
def test_tip_tip_distances_no_length(self):
t = TreeNode.read(["((a,b)c,(d,e)f);"])
exp_t = TreeNode.read(["((a:0,b:0)c:0,(d:0,e:0)f:0);"])
exp_t_dm = exp_t.tip_tip_distances()
t_dm = npt.assert_warns(RepresentationWarning, t.tip_tip_distances)
self.assertEqual(t_dm, exp_t_dm)
for node in t.preorder():
self.assertIs(node.length, None)
def test_tip_tip_distances_missing_length(self):
t = TreeNode.read(["((a,b:6)c:4,(d,e:0)f);"])
exp_t = TreeNode.read(["((a:0,b:6)c:4,(d:0,e:0)f:0);"])
exp_t_dm = exp_t.tip_tip_distances()
t_dm = npt.assert_warns(RepresentationWarning, t.tip_tip_distances)
self.assertEqual(t_dm, exp_t_dm)
def test_neighbors(self):
"""Get neighbors of a node"""
t = TreeNode.read(["((a,b)c,(d,e)f);"])
exp = t.children
obs = t.neighbors()
self.assertEqual(obs, exp)
exp = t.children[0].children + [t]
obs = t.children[0].neighbors()
self.assertEqual(obs, exp)
exp = [t.children[0].children[0]] + [t]
obs = t.children[0].neighbors(ignore=t.children[0].children[1])
self.assertEqual(obs, exp)
exp = [t.children[0]]
obs = t.children[0].children[0].neighbors()
self.assertEqual(obs, exp)
def test_has_children(self):
"""Test if has children"""
t = TreeNode.read(["((a,b)c,(d,e)f);"])
self.assertTrue(t.has_children())
self.assertTrue(t.children[0].has_children())
self.assertTrue(t.children[1].has_children())
self.assertFalse(t.children[0].children[0].has_children())
self.assertFalse(t.children[0].children[1].has_children())
self.assertFalse(t.children[1].children[0].has_children())
self.assertFalse(t.children[1].children[1].has_children())
def test_tips(self):
"""Tip traversal of tree"""
exp = ["a", "b", "c", "d"]
obs = [n.name for n in self.simple_t.tips()]
self.assertEqual(obs, exp)
obs2 = [n.name for n in self.simple_t.traverse(False, False)]
self.assertEqual(obs2, exp)
def test_tips_self(self):
""" See issue #1509 """
tree = TreeNode.read(["(c,(b,a)x)y;"])
ts = list(tree.find("c").tips(include_self=True))
self.assertEqual(len(ts), 1)
t = ts[0]
self.assertEqual(t.name, "c")
self.assertTrue(t.is_tip())
def test_pre_and_postorder(self):
"""Pre and post order traversal of the tree"""
exp = ["root", "i1", "a", "b", "i1", "i2", "c", "d", "i2", "root"]
obs = [n.name for n in self.simple_t.pre_and_postorder()]
self.assertEqual(obs, exp)
obs2 = [n.name for n in self.simple_t.traverse(True, True)]
self.assertEqual(obs2, exp)
def test_pre_and_postorder_no_children(self):
t = TreeNode("brofist")
# include self
exp = ["brofist"]
obs = [n.name for n in t.pre_and_postorder()]
self.assertEqual(obs, exp)
# do not include self
obs = list(t.pre_and_postorder(include_self=False))
self.assertEqual(obs, [])
def test_levelorder(self):
"""Test level order traversal of the tree"""
exp = ["root", "i1", "i2", "a", "b", "c", "d"]
obs = [n.name for n in self.simple_t.levelorder()]
self.assertEqual(obs, exp)
def test_bifurcate(self):
t1 = TreeNode.read(["(((a,b),c),(d,e));"])
t2 = TreeNode.read(["((a,b,c));"])
t3 = t2.copy()
t1.bifurcate()
t2.bifurcate()
t3.bifurcate(insert_length=0)
self.assertEqual(str(t1), "(((a,b),c),(d,e));\n")
self.assertEqual(str(t2), "((c,(a,b)));\n")
self.assertEqual(str(t3), "((c,(a,b):0));\n")
def test_bifurcate_with_subclass(self):
tree = TreeNodeSubclass()
tree.append(TreeNodeSubclass())
tree.append(TreeNodeSubclass())
tree.append(TreeNodeSubclass())
tree.append(TreeNodeSubclass())
tree.bifurcate()
for node in tree.traverse():
self.assertIs(type(node), TreeNodeSubclass)
def test_index_tree_single_node(self):
"""index_tree handles single node tree"""
t1 = TreeNode.read(["root;"])
id_index, child_index = t1.index_tree()
self.assertEqual(id_index[0], t1)
npt.assert_equal(child_index, np.array([[]]))
def test_index_tree(self):
"""index_tree should produce correct index and node map"""
# test for first tree: contains singleton outgroup
t1 = TreeNode.read(["(((a,b),c),(d,e));"])
t2 = TreeNode.read(["(((a,b),(c,d)),(e,f));"])
t3 = TreeNode.read(["(((a,b,c),(d)),(e,f));"])
id_1, child_1 = t1.index_tree()
nodes_1 = [n.id for n in t1.traverse(self_before=False,
self_after=True)]
self.assertEqual(nodes_1, [0, 1, 2, 3, 6, 4, 5, 7, 8])
npt.assert_equal(child_1, np.array([[2, 0, 1], [6, 2, 3], [7, 4, 5],
[8, 6, 7]]))
# test for second tree: strictly bifurcating
id_2, child_2 = t2.index_tree()
nodes_2 = [n.id for n in t2.traverse(self_before=False,
self_after=True)]
self.assertEqual(nodes_2, [0, 1, 4, 2, 3, 5, 8, 6, 7, 9, 10])
npt.assert_equal(child_2, np.array([[4, 0, 1], [5, 2, 3],
[8, 4, 5], [9, 6, 7],
[10, 8, 9]]))
# test for third tree: contains trifurcation and single-child parent
id_3, child_3 = t3.index_tree()
nodes_3 = [n.id for n in t3.traverse(self_before=False,
self_after=True)]
self.assertEqual(nodes_3, [0, 1, 2, 4, 3, 5, 8, 6, 7, 9, 10])
npt.assert_equal(child_3, np.array([[4, 0, 2], [5, 3, 3], [8, 4, 5],
[9, 6, 7], [10, 8, 9]]))
def test_unroot(self):
"""Convert a rooted tree into unrooted."""
# default behavior
t = TreeNode.read(["((a,b)c,(d,e)f)g;"])
t.unroot()
exp = "(a,b,(d,e)f)c;\n"
self.assertEqual(str(t), exp)
# choose the other side
t = TreeNode.read(["((a,b)c,(d,e)f)g;"])
t.unroot(side=1)
exp = "((a,b)c,d,e)f;\n"
self.assertEqual(str(t), exp)
# with branch lengths
t = TreeNode.read(["((a:2.0,b:1.5)c:0.5,(d:1.0,e:1.2)f:0.3)g;"])
t.unroot()
exp = "(a:2.0,b:1.5,(d:1.0,e:1.2)f:0.8)c;\n"
self.assertEqual(str(t), exp)
# other child has no branch length
t = TreeNode.read(["((a,b)c:1.0,(d,e)f)g;"])
t.unroot()
exp = "(a,b,(d,e)f:1.0)c;\n"
self.assertEqual(str(t), exp)
# first child is a tip
t = TreeNode.read(["(a,(b,c)d)e;"])
t.unroot()
exp = "(a,b,c)d;\n"
self.assertEqual(str(t), exp)
# both children are tips
t = TreeNode.read(["(a,b)c;"])
t.unroot()
exp = "(b)a;\n"
self.assertEqual(str(t), exp)
# tree is already unrooted
t = TreeNode.read(["(a,b,(d,e)f)c;"])
t.unroot()
exp = "(a,b,(d,e)f)c;\n"
self.assertEqual(str(t), exp)
def test_root_at(self):
"""Root tree at a given node."""
t = TreeNode.read(["(((a,b)c,(d,e)f)g,h)i;"])
# original behavior (name as branch label); deprecated
obs = str(t.root_at("c"))
exp = "(a,b,((d,e)f,(h)g)c)root;\n"
self.assertEqual(obs, exp)
# root at internal node
obs = str(t.root_at("c", branch_attrs=[]))
exp = "(a,b,((d,e)f,(h)i)g)c;\n"
self.assertEqual(obs, exp)
# root at self
obs = str(t.find("c").root_at(branch_attrs=[]))
self.assertEqual(obs, exp)
# root at tip (and input node instead of name)
obs = str(t.root_at(t.find("h"), branch_attrs=[]))
exp = "((((a,b)c,(d,e)f)g)i)h;\n"
self.assertEqual(obs, exp)
# root at root (no change)
obs = str(t.root_at("i", branch_attrs=[]))
self.assertEqual(obs, str(t))
def test_root_at_above(self):
"""Root tree at the branch above a given node."""
# no branch length
t = TreeNode.read(["(((a,b)c,(d,e)f)g,h)i;"])
obs = str(t.root_at("c", above=True, branch_attrs=[]))
exp = "((a,b)c,((d,e)f,(h)i)g)root;\n"
self.assertEqual(obs, exp)
# root at midpoint of branch
t = TreeNode.read(["(((a,b)c:1.0,(d,e)f)g,h)i;"])
obs = str(t.root_at("c", above=True, branch_attrs=[]))
exp = "((a,b)c:0.5,((d,e)f,(h)i)g:0.5)root;\n"
self.assertEqual(obs, exp)
# root at specific position
t = TreeNode.read(["(((a,b)c:1.0,(d,e)f)g,h)i;"])
obs = str(t.root_at("c", above=0.4, branch_attrs=[]))
exp = "((a,b)c:0.4,((d,e)f,(h)i)g:0.6)root;\n"
self.assertEqual(obs, exp)
# with branch support
t = TreeNode.read(["(((a,b)'90:c',(d,e)'80:f')g,h)i;"])
t.assign_supports()
obs = str(t.root_at("c", above=True, branch_attrs=[]))
exp = "((a,b)'90:c',((d,e)'80:f',(h)i)'90:g')root;\n"
self.assertEqual(obs, exp)
def test_root_at_reset(self):
"""Root tree while resetting original root."""
t = TreeNode.read(["(((a,b)c,(d,e)f)g,h)i;"])
# unroot tree prior to rerooting
obs = str(t.root_at("c", reset=True, branch_attrs=[]))
exp = "(a,b,((d,e)f,h)g)c;\n"
self.assertEqual(obs, exp)
# root at a basal node (which will be avoided during unrooting)
obs = str(t.root_at("g", reset=True, branch_attrs=[]))
exp = "((a,b)c,(d,e)f,h)g;\n"
self.assertEqual(obs, exp)
# tree is already unrooted
t = TreeNode.read(["((a,b)c,d,e)f;"])
obs = str(t.root_at("c", branch_attrs=[], reset=True))
exp = str(t.root_at("c", branch_attrs=[]))
self.assertEqual(obs, exp)
def test_root_at_midpoint(self):
"""Root tree at the midpoint"""
t = self.TreeRoot
for n in t.traverse():
n.length = 1
# g and h are farthest apart, by 5, therefore root should be
# 2.5 away from h, i.e., midpoint between b and c
result = t.root_at_midpoint()
self.assertEqual(result.distance(result.find("e")), 1.5)
self.assertEqual(result.distance(result.find("g")), 2.5)
exp_dist = t.tip_tip_distances()
obs_dist = result.tip_tip_distances()
self.assertEqual(obs_dist, exp_dist)
def test_root_at_midpoint_no_lengths(self):
# should get same tree back (a copy)
nwk = "(a,b)c;\n"
t = TreeNode.read([nwk])
obs = t.root_at_midpoint()
self.assertEqual(str(obs), nwk)
def test_root_at_midpoint_tie(self):
# original behavior (name as branch label); deprecated
t = TreeNode.read(["(((a:1,b:1)c:2,(d:3,e:4)f:5),g:1)root;"])
obs = t.root_at_midpoint()
exp = TreeNode.read(["((d:3,e:4)f:2,((a:1,b:1)c:2,(g:1)):3)root;"])
for o, e in zip(obs.traverse(), exp.traverse()):
self.assertEqual(o.name, e.name)
self.assertEqual(o.length, e.length)
t = TreeNode.read(["((a:1,b:1)c:2,(d:3,e:4)f:5,g:1)h;"])
# farthest tip-to-tip distance is 12 (a or b to e)
# therefore new root should be 2 above f
obs = t.root_at_midpoint(branch_attrs=[])
exp = TreeNode.read(["((d:3,e:4)f:2,((a:1,b:1)c:2,g:1)h:3)root;"])
for o, e in zip(obs.traverse(), exp.traverse()):
self.assertEqual(o.name, e.name)
self.assertEqual(o.length, e.length)
# no root name
obs = t.root_at_midpoint(branch_attrs=[], root_name=None)
self.assertIsNone(obs.name)
# with branch support
t = TreeNode.read(["((a:1,b:1)c:2,(d:3,e:4)'80:f':5,g:1)h;"])
t.assign_supports()
obs = t.root_at_midpoint(branch_attrs=[])
exp = TreeNode.read(["((d:3,e:4)'80:f':2,((a:1,b:1)c:2,g:1)'80:h':3)root;"])
exp.assign_supports()
for o, e in zip(obs.traverse(), exp.traverse()):
self.assertEqual(o.name, e.name)
self.assertEqual(o.length, e.length)
self.assertEqual(o.support, e.support)
def test_root_at_midpoint_node(self):
t = TreeNode.read(["(((a:2,b:3)c:1,d:1)e:1,f:3)g;"])
# farthest tip-to-tip distance is 8 (b - c - e - f)
# therefore new root should be at e
obs = t.root_at_midpoint(branch_attrs=[])
exp = TreeNode.read(["((a:2.0,b:3.0)c:1.0,d:1.0,(f:3.0)g:1.0)e;"])
for o, e in zip(obs.traverse(), exp.traverse()):
self.assertEqual(o.name, e.name)
self.assertEqual(o.length, e.length)
# remove original root
obs = t.root_at_midpoint(branch_attrs=[], reset=True)
exp = TreeNode.read(["((a:2.0,b:3.0)c:1.0,d:1.0,f:4.0)e;"])
for o, e in zip(obs.traverse(), exp.traverse()):
self.assertEqual(o.name, e.name)
self.assertEqual(o.length, e.length)
def test_root_by_outgroup(self):
tree = TreeNode.read(["((((a,b),(c,d)),(e,f)),g);"])
# outgroup is monophyletic
obs = str(tree.root_by_outgroup(["a", "b"]))
exp = "((a,b),((c,d),((e,f),g)));\n"
self.assertEqual(obs, exp)
# outgroup is monophyletic after rotating
obs = str(tree.root_by_outgroup(["e", "f", "g"]))
exp = "(((e,f),g),((c,d),(b,a)));\n"
self.assertEqual(obs, exp)
# outgroup is a single taxon
obs = str(tree.root_by_outgroup(["a"]))
exp = "(a,(b,((c,d),((e,f),g))));\n"
self.assertEqual(obs, exp)
# outgroup is not monophyletic
msg = "Outgroup is not monophyletic in the tree."
with self.assertRaisesRegex(TreeError, msg):
tree.root_by_outgroup(["a", "c"])
# outgroup has extra taxa
msg = "Outgroup is not a proper subset of taxa in the tree."
with self.assertRaisesRegex(TreeError, msg):
tree.root_by_outgroup(["a", "b", "x"])
# outgroup is not in tree
with self.assertRaisesRegex(TreeError, msg):
tree.root_by_outgroup(["x", "y"])
# outgroup is the whole tree
with self.assertRaisesRegex(TreeError, msg):
tree.root_by_outgroup("abcdefg")
# generate unrooted tree
obs = str(tree.root_by_outgroup(["a", "b"], above=False))
exp = "(a,b,((c,d),((e,f),g)));\n"
self.assertEqual(obs, exp)
# keep old root node
obs = str(tree.root_by_outgroup(["a", "b"], reset=False))
exp = "((a,b),((c,d),((e,f),(g))));\n"
self.assertEqual(obs, exp)
# specify root name
obs = str(tree.root_by_outgroup(["a", "b"], root_name="root"))
exp = "((a,b),((c,d),((e,f),g)))root;\n"
self.assertEqual(obs, exp)
# transfer branch support
tree = TreeNode.read(["((((a,b)80,(c,d)),(e,f)),g);"])
tree.assign_supports()
obs = str(tree.root_by_outgroup(["a", "b"]))
exp = "((a,b)80,((c,d),((e,f),g))80);\n"
self.assertEqual(obs, exp)
# transfer custom branch attribute
tree = TreeNode.read(["((((a,b),(c,d))x,(e,f)),g);"])
obs = str(tree.root_by_outgroup(["a", "b"], branch_attrs=["name"]))
exp = "((a,b),((c,d),((e,f),g)x));\n"
self.assertEqual(obs, exp)
def test_compare_subsets(self):
"""compare_subsets should return the fraction of shared subsets"""
t = TreeNode.read(["((H,G),(R,M));"])
t2 = TreeNode.read(["(((H,G),R),M);"])
t4 = TreeNode.read(["(((H,G),(O,R)),X);"])
result = t.compare_subsets(t)
self.assertEqual(result, 0)
result = t2.compare_subsets(t2)
self.assertEqual(result, 0)
result = t.compare_subsets(t2)
self.assertEqual(result, 0.5)
result = t.compare_subsets(t4)
self.assertEqual(result, 1 - 2. / 5)
result = t.compare_subsets(t4, exclude_absent_taxa=True)
self.assertEqual(result, 1 - 2. / 3)
result = t.compare_subsets(self.TreeRoot, exclude_absent_taxa=True)
self.assertEqual(result, 1)
result = t.compare_subsets(self.TreeRoot)
self.assertEqual(result, 1)
def test_compare_rfd(self):
"""compare_rfd should return the Robinson Foulds distance"""
t = TreeNode.read(["((H,G),(R,M));"])
t2 = TreeNode.read(["(((H,G),R),M);"])
t4 = TreeNode.read(["(((H,G),(O,R)),X);"])
obs = t.compare_rfd(t2)
exp = 2.0
self.assertEqual(obs, exp)
self.assertEqual(t.compare_rfd(t2), t2.compare_rfd(t))
obs = t.compare_rfd(t2, proportion=True)
exp = 0.5
self.assertEqual(obs, exp)
with self.assertRaises(ValueError):
t.compare_rfd(t4)
def test_assign_ids(self):
"""Assign IDs to the tree"""
t1 = TreeNode.read(["(((a,b),c),(e,f),(g));"])
t2 = TreeNode.read(["(((a,b),c),(e,f),(g));"])
t3 = TreeNode.read(["((g),(e,f),(c,(a,b)));"])
t1_copy = t1.copy()
t1.assign_ids()
t2.assign_ids()
t3.assign_ids()
t1_copy.assign_ids()
self.assertEqual([(n.name, n.id) for n in t1.traverse()],
[(n.name, n.id) for n in t2.traverse()])
self.assertEqual([(n.name, n.id) for n in t1.traverse()],
[(n.name, n.id) for n in t1_copy.traverse()])
self.assertNotEqual([(n.name, n.id) for n in t1.traverse()],
[(n.name, n.id) for n in t3.traverse()])
def test_assign_ids_index_tree(self):
"""assign_ids and index_tree should assign the same IDs"""
t1 = TreeNode.read(["(((a,b),c),(d,e));"])
t2 = TreeNode.read(["(((a,b),(c,d)),(e,f));"])
t3 = TreeNode.read(["(((a,b,c),(d)),(e,f));"])
t1_copy = t1.copy()
t2_copy = t2.copy()
t3_copy = t3.copy()
t1.assign_ids()
t1_copy.index_tree()
t2.assign_ids()
t2_copy.index_tree()
t3.assign_ids()
t3_copy.index_tree()
self.assertEqual([n.id for n in t1.traverse()],
[n.id for n in t1_copy.traverse()])
self.assertEqual([n.id for n in t2.traverse()],
[n.id for n in t2_copy.traverse()])
self.assertEqual([n.id for n in t3.traverse()],
[n.id for n in t3_copy.traverse()])
def test_unrooted_copy(self):
tree = TreeNode.read(["((a,(b,c)d)e,(f,g)h)i;"])
node = tree.find("d")
# name as branch label (default behavior, but will change in the
# future)
obs = node.unrooted_copy()
exp = "(b,c,(a,((f,g)h)e)d)root;\n"
self.assertEqual(str(obs), exp)
# name as node label
obs = node.unrooted_copy(branch_attrs={"length"})
exp = "(b,c,(a,((f,g)h)i)e)d;\n"
self.assertEqual(str(obs), exp)
# name the new root node (only when it doesn't have one)
obs = node.unrooted_copy(root_name="hello")
exp = "(b,c,(a,((f,g)h)e)d)hello;\n"
self.assertEqual(str(obs), exp)
obs = node.unrooted_copy(branch_attrs={"length"}, root_name="hello")
exp = "(b,c,(a,((f,g)h)i)e)d;\n"
self.assertEqual(str(obs), exp)
# transfer branch support to opposite node
tree = TreeNode.read(["((a,b)90,(c,d)90);"])
node = tree.find("a")
obs = node.unrooted_copy(branch_attrs={"support", "length"})
exp = "((b,((c,d)90))90)a;\n"
self.assertEqual(str(obs), exp)
tree.assign_supports()
obs = node.unrooted_copy(branch_attrs={"support", "length"})
exp = "((b,((c,d)90)90))a;\n"
self.assertEqual(str(obs), exp)
# retain custom attributes
tree = TreeNode.read(["(((a,b)c,d)e,f)g;"])
tree.find("c").dummy = "this"
tree.find("e").dummy = "that"
obs = tree.find("c").unrooted_copy(branch_attrs={"length"})
exp = "(a,b,(d,(f)g)e)c;\n"
self.assertEqual(str(obs), exp)
self.assertEqual(obs.dummy, "this")
self.assertEqual(obs.find("e").dummy, "that")
self.assertIsNone(getattr(obs.find("d"), "dummy", None))
# deep vs shallow copy
tree = TreeNode.read(["(((a,b)c,d)e,f)g;"])
tree.find("c").dummy = [1, [2, 3], 4]
tcopy = tree.unrooted_copy(deep=True)
tcopy.find("c").dummy[1].append(0)
self.assertListEqual(tree.find("c").dummy[1], [2, 3])
tcopy = tree.unrooted_copy()
tcopy.find("c").dummy[1].append(0)
self.assertListEqual(tree.find("c").dummy[1], [2, 3, 0])
def test_unrooted_deepcopy(self):
t = TreeNode.read(["((a,(b,c)d)e,(f,g)h)i;"])
exp = "(b,c,(a,((f,g)h)e)d)root;\n"
obs = t.find("d").unrooted_deepcopy()
self.assertEqual(str(obs), exp)
t_ids = {id(n) for n in t.traverse()}
obs_ids = {id(n) for n in obs.traverse()}
self.assertEqual(t_ids.intersection(obs_ids), set())
def test_unrooted_move(self):
t = TreeNode.read(["(((a:1,b:1)c:1,(d:1,e:1)f:2)g:0.5,(h:1,i:1)j:0.5)k;"])
tcopy = t.copy()
obs = tcopy.find("c")
obs.unrooted_move()
exp = TreeNode.read(["(a:1,b:1,((d:1,e:1)f:2,((h:1,i:1)j:0.5)k:0.5)g:1)c;"])
self.assertTrue(obs.is_root())
for o, e in zip(obs.traverse(), exp.traverse()):
self.assertEqual(o.name, e.name)
self.assertEqual(o.length, e.length)
def test_descending_branch_length_bug_1847(self):
tr = TreeNode.read([
"(((A:.1,B:1.2)C:.6,(D:.9,E:.6)F:.9)G:2.4,(H:.4,I:.5)J:1.3)K;"])
tr.length = 1
tdbl = tr.descending_branch_length()
npt.assert_almost_equal(tdbl, 8.9)
def test_descending_branch_length(self):
"""Calculate descending branch_length"""
tr = TreeNode.read([
"(((A:.1,B:1.2)C:.6,(D:.9,E:.6)F:.9)G:2.4,(H:.4,I:.5)J:1.3)K;"])
tdbl = tr.descending_branch_length()
sdbl = tr.descending_branch_length(["A", "E"])
npt.assert_almost_equal(tdbl, 8.9)
npt.assert_almost_equal(sdbl, 2.2)
self.assertRaises(ValueError, tr.descending_branch_length,
["A", "DNE"])
self.assertRaises(ValueError, tr.descending_branch_length, ["A", "C"])
tr = TreeNode.read([
"(((A,B:1.2)C:.6,(D:.9,E:.6)F:.9)G:2.4,(H:.4,I:.5)J:1.3)K;"])
tdbl = tr.descending_branch_length()
npt.assert_almost_equal(tdbl, 8.8)
tr = TreeNode.read([
"(((A,B:1.2)C:.6,(D:.9,E:.6)F)G:2.4,(H:.4,I:.5)J:1.3)K;"])
tdbl = tr.descending_branch_length()
npt.assert_almost_equal(tdbl, 7.9)
tr = TreeNode.read([
"(((A,B:1.2)C:.6,(D:.9,E:.6)F)G:2.4,(H:.4,I:.5)J:1.3)K;"])
tdbl = tr.descending_branch_length(["A", "D", "E"])
npt.assert_almost_equal(tdbl, 2.1)
tr = TreeNode.read([
"(((A,B:1.2)C:.6,(D:.9,E:.6)F:.9)G:2.4,(H:.4,I:.5)J:1.3)K;"])
tdbl = tr.descending_branch_length(["I", "D", "E"])
npt.assert_almost_equal(tdbl, 6.6)
# test with a situation where we have unnamed internal nodes
tr = TreeNode.read([
"(((A,B:1.2):.6,(D:.9,E:.6)F):2.4,(H:.4,I:.5)J:1.3);"])
tdbl = tr.descending_branch_length()
npt.assert_almost_equal(tdbl, 7.9)
def test_to_array(self):
"""Convert a tree to arrays"""
t = TreeNode.read([
"(((a:1,b:2,c:3)x:4,(d:5)y:6)z:7,(e:8,f:9)z:10);"])
id_index, child_index = t.index_tree()
arrayed = t.to_array()
self.assertEqual(id_index, arrayed["id_index"])
npt.assert_equal(child_index, arrayed["child_index"])
exp = np.array([1, 2, 3, 5, 4, 6, 8, 9, 7, 10, np.nan])
obs = arrayed["length"]
npt.assert_equal(obs, exp)
exp = np.array(["a", "b", "c", "d", "x",
"y", "e", "f", "z", "z", None])
obs = arrayed["name"]
npt.assert_equal(obs, exp)
exp = np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
obs = arrayed["id"]
npt.assert_equal(obs, exp)
def test_to_array_attrs(self):
t = TreeNode.read([
"(((a:1,b:2,c:3)x:4,(d:5)y:6)z:7,(e:8,f:9)z:10);"])
id_index, child_index = t.index_tree()
arrayed = t.to_array(attrs=[("name", object)])
# should only have id_index, child_index, and name since we specified
# attrs
self.assertEqual(len(arrayed), 3)
self.assertEqual(id_index, arrayed["id_index"])
npt.assert_equal(child_index, arrayed["child_index"])
exp = np.array(["a", "b", "c", "d", "x",
"y", "e", "f", "z", "z", None])
obs = arrayed["name"]
npt.assert_equal(obs, exp)
# invalid attrs
with self.assertRaises(AttributeError):
t.to_array(attrs=[("name", object), ("brofist", int)])
def test_to_array_nan_length_value(self):
t = TreeNode.read(["((a:1, b:2)c:3)root;"])
indexed = t.to_array(nan_length_value=None)
npt.assert_equal(indexed["length"],
np.array([1, 2, 3, np.nan], dtype=float))
indexed = t.to_array(nan_length_value=0.0)
npt.assert_equal(indexed["length"],
np.array([1, 2, 3, 0.0], dtype=float))
indexed = t.to_array(nan_length_value=42.0)
npt.assert_equal(indexed["length"],
np.array([1, 2, 3, 42.0], dtype=float))
t = TreeNode.read(["((a:1, b:2)c:3)root:4;"])
indexed = t.to_array(nan_length_value=42.0)
npt.assert_equal(indexed["length"],
np.array([1, 2, 3, 4], dtype=float))
t = TreeNode.read(["((a:1, b:2)c)root;"])
indexed = t.to_array(nan_length_value=42.0)
npt.assert_equal(indexed["length"],
np.array([1, 2, 42.0, 42.0], dtype=float))
def test_from_taxonomy(self):
lineages = [("1", ["a", "b", "c", "d", "e", "f", "g"]),
("2", ["a", "b", "c", None, None, "x", "y"]),
("3", ["h", "i", "j", "k", "l", "m", "n"]),
("4", ["h", "i", "j", "k", "l", "m", "q"]),
("5", ["h", "i", "j", "k", "l", "m", "n"])]
exp = TreeNode.read([
"((((((((1)g)f)e)d,((((2)y)x)))c)b)a,"
"(((((((3,5)n,(4)q)m)l)k)j)i)h);"])
# input as 2-element tuples
obs = TreeNode.from_taxonomy(lineages)
self.assertIs(type(obs), TreeNode)
self.assertEqual(obs.compare_subsets(exp), 0.0)
obs = TreeNodeSubclass.from_taxonomy(lineages)
self.assertIs(type(obs), TreeNodeSubclass)
# input as dictionary
dict_ = dict(lineages)
obs = TreeNode.from_taxonomy(dict_)
self.assertEqual(obs.compare_subsets(exp), 0.0)
# input as data frame
df_ = pd.DataFrame([x[1] for x in lineages], [x[0] for x in lineages])
obs = TreeNode.from_taxonomy(df_)
self.assertEqual(obs.compare_subsets(exp), 0.0)
def test_to_taxonomy(self):
input_lineages = {"1": ["a", "b", "c", "d", "e", "f", "g"],
"2": ["a", "b", "c", None, None, "x", "y"],
"3": ["h", "i", "j", "k", "l", "m", "n"],
"4": ["h", "i", "j", "k", "l", "m", "q"],
"5": ["h", "i", "j", "k", "l", "m", "n"]}
tree = TreeNode.from_taxonomy(input_lineages.items())
exp = sorted(input_lineages.items())
obs = [(n.name, lin) for n, lin in tree.to_taxonomy(allow_empty=True)]
self.assertEqual(sorted(obs), exp)
def test_to_taxonomy_filter(self):
input_lineages = {"1": ["a", "b", "c", "d", "e", "f", "g"],
"2": ["a", "b", "c", None, None, "x", "y"],
"3": ["h", "i", "j", "k", "l"], # test jagged
"4": ["h", "i", "j", "k", "l", "m", "q"],
"5": ["h", "i", "j", "k", "l", "m", "n"]}
tree = TreeNode.from_taxonomy(input_lineages.items())
def f(node, lin):
return "k" in lin or "x" in lin
exp = [("2", ["a", "b", "c", "x", "y"]),
("3", ["h", "i", "j", "k", "l"]),
("4", ["h", "i", "j", "k", "l", "m", "q"]),
("5", ["h", "i", "j", "k", "l", "m", "n"])]
obs = [(n.name, lin) for n, lin in tree.to_taxonomy(filter_f=f)]
self.assertEqual(sorted(obs), exp)
def test_linkage_matrix(self):
# Ensure matches: http://www.southampton.ac.uk/~re1u06/teaching/upgma/
id_list = ["A", "B", "C", "D", "E", "F", "G"]
linkage = np.asarray([[1.0, 5.0, 1.0, 2.0],
[0.0, 3.0, 8.0, 2.0],
[6.0, 7.0, 12.5, 3.0],
[8.0, 9.0, 16.5, 5.0],
[2.0, 10.0, 29.0, 6.0],
[4.0, 11.0, 34.0, 7.0]])
tree = TreeNode.from_linkage_matrix(linkage, id_list)
self.assertIs(type(tree), TreeNode)
self.assertEqual("(E:17.0,(C:14.5,((A:4.0,D:4.0):4.25,(G:6.25,(B:0.5,"
"F:0.5):5.75):2.0):6.25):2.5);\n",
str(tree))
tree = TreeNodeSubclass.from_linkage_matrix(linkage, id_list)
self.assertIs(type(tree), TreeNodeSubclass)
def test_shuffle_invalid_iter(self):
shuffler = self.simple_t.shuffle(n=-1)
with self.assertRaises(ValueError):
next(shuffler)
def test_shuffle_n_2(self):
exp = ["((a,b)i1,(d,c)i2)root;\n",
"((a,b)i1,(c,d)i2)root;\n",
"((a,b)i1,(d,c)i2)root;\n",
"((a,b)i1,(c,d)i2)root;\n",
"((a,b)i1,(d,c)i2)root;\n"]
obs_g = self.simple_t.shuffle(k=2, shuffle_f=self.rev_f, n=np.inf)
obs = [str(next(obs_g)) for i in range(5)]
self.assertEqual(obs, exp)
def test_shuffle_n_none(self):
exp = ["((d,c)i1,(b,a)i2)root;\n",
"((a,b)i1,(c,d)i2)root;\n",
"((d,c)i1,(b,a)i2)root;\n",
"((a,b)i1,(c,d)i2)root;\n"]
obs_g = self.simple_t.shuffle(shuffle_f=self.rev_f, n=4)
obs = [str(next(obs_g)) for i in range(4)]
self.assertEqual(obs, exp)
def test_shuffle_complex(self):
exp = ["(((a,b)int1,(x,y,(w,z)int2,(f,e)int3)int4),(d,c)int5);\n",
"(((a,b)int1,(x,y,(w,z)int2,(c,d)int3)int4),(e,f)int5);\n",
"(((a,b)int1,(x,y,(w,z)int2,(f,e)int3)int4),(d,c)int5);\n",
"(((a,b)int1,(x,y,(w,z)int2,(c,d)int3)int4),(e,f)int5);\n"]
obs_g = self.complex_tree.shuffle(shuffle_f=self.rev_f,
names=["c", "d", "e", "f"], n=4)
obs = [str(next(obs_g)) for i in range(4)]
self.assertEqual(obs, exp)
def test_shuffle_names(self):
exp = ["((c,a)i1,(b,d)i2)root;\n",
"((b,c)i1,(a,d)i2)root;\n",
"((a,b)i1,(c,d)i2)root;\n",
"((c,a)i1,(b,d)i2)root;\n"]
obs_g = self.simple_t.shuffle(names=["a", "b", "c"],
shuffle_f=self.rotate_f, n=np.inf)
obs = [str(next(obs_g)) for i in range(4)]
self.assertEqual(obs, exp)
def test_shuffle_raises(self):
with self.assertRaises(ValueError):
next(self.simple_t.shuffle(k=1))
with self.assertRaises(ValueError):
next(self.simple_t.shuffle(k=5, names=["a", "b"]))
with self.assertRaises(MissingNodeError):
next(self.simple_t.shuffle(names=["x", "y"]))
def test_assign_supports(self):
"""Extract support values of internal nodes."""
# test nodes with support values alone as labels
tree = TreeNode.read(["((a,b)75,(c,d)90);"])
tree.assign_supports()
node1, node2 = tree.children
# check if internal nodes are assigned correct support values
self.assertEqual(node1.support, 75)
self.assertEqual(node2.support, 90)
# check if original node names are cleared
self.assertIsNone(node1.name)
self.assertIsNone(node2.name)
# check if support values are not assigned to root and tips
self.assertIsNone(tree.support)
for taxon in ("a", "b", "c", "d"):
self.assertIsNone(tree.find(taxon).support)
# test nodes with support values and branch lengths
tree = TreeNode.read(["((a,b)0.85:1.23,(c,d)0.95:4.56);"])
tree.assign_supports()
node1, node2 = tree.children
self.assertEqual(node1.support, 0.85)
self.assertEqual(node2.support, 0.95)
# test whether integer or float support values can be correctly parsed
tree = TreeNode.read(["((a,b)75,(c,d)80.0,(e,f)97.5,(g,h)0.95);"])
tree.assign_supports()
node1, node2, node3, node4 = tree.children
self.assertTrue(isinstance(node1.support, int))
self.assertEqual(node1.support, 75)
self.assertTrue(isinstance(node2.support, float))
self.assertEqual(node2.support, 80.0)
self.assertTrue(isinstance(node3.support, float))
self.assertEqual(node3.support, 97.5)
self.assertTrue(isinstance(node4.support, float))
self.assertEqual(node4.support, 0.95)
# test support values that are negative or scientific notation (not a
# common scenario but can happen)
tree = TreeNode.read(["((a,b)-1.23,(c,d)1.23e-4);"])
tree.assign_supports()
node1, node2 = tree.children
self.assertEqual(node1.support, -1.23)
self.assertEqual(node2.support, 0.000123)
# test nodes with support and extra label
tree = TreeNode.read(["((a,b)'80:X',(c,d)'60:Y');"])
tree.assign_supports()
node1, node2 = tree.children
self.assertEqual(node1.support, 80)
self.assertEqual(node1.name, "X")
self.assertEqual(node2.support, 60)
self.assertEqual(node2.name, "Y")
# test nodes without label, with non-numeric label, and with branch
# length only
tree = TreeNode.read(["((a,b),(c,d)x,(e,f):1.0);"])
tree.assign_supports()
for node in tree.children:
self.assertIsNone(node.support)
def test_unpack(self):
"""Unpack an internal node."""
# test unpacking a node without branch length
tree = TreeNode.read(["((c,d)a,(e,f)b);"])
tree.find("b").unpack()
exp = "((c,d)a,e,f);\n"
self.assertEqual(str(tree), exp)
# test unpacking a node with branch length
tree = TreeNode.read(["((c:2.0,d:3.0)a:1.0,(e:2.0,f:1.0)b:2.0);"])
tree.find("b").unpack()
exp = "((c:2.0,d:3.0)a:1.0,e:4.0,f:3.0);"
self.assertEqual(str(tree).rstrip(), exp)
# test attempting to unpack root
tree = TreeNode.read(["((d,e)b,(f,g)c)a;"])
msg = "Cannot unpack root."
with self.assertRaisesRegex(TreeError, msg):
tree.find("a").unpack()
# test attempting to unpack tip
msg = "Cannot unpack tip."
with self.assertRaisesRegex(TreeError, msg):
tree.find("d").unpack()
def test_unpack_by_func(self):
"""Unpack internal nodes of a tree by a function."""
# unpack internal nodes with branch length <= 1.0
def func(x):
return x.length <= 1.0
# will unpack node "a", but not tip "e"
# will add the branch length of "a" to its child nodes "c" and "d"
tree = TreeNode.read(["((c:2,d:3)a:1,(e:1,f:2)b:2);"])
tree.unpack_by_func(func)
exp = "((e:1.0,f:2.0)b:2.0,c:3.0,d:4.0);"
self.assertEqual(str(tree).rstrip(), exp)
# unpack internal nodes with branch length < 2.01
# will unpack both "a" and "b"
tree = TreeNode.read(["((c:2,d:3)a:1,(e:1,f:2)b:2);"])
tree.unpack_by_func(lambda x: x.length <= 2.0)
exp = "(c:3.0,d:4.0,e:3.0,f:4.0);"
self.assertEqual(str(tree).rstrip(), exp)
# unpack two nested nodes "a" and "c" simultaneously
tree = TreeNode.read(["(((e:3,f:2)c:1,d:3)a:1,b:4);"])
tree.unpack_by_func(lambda x: x.length <= 2.0)
exp = "(b:4.0,d:4.0,e:5.0,f:4.0);"
self.assertEqual(str(tree).rstrip(), exp)
# test a complicated scenario (unpacking nodes "g", "h" and "m")
def func(x):
return x.length < 2.0
tree = TreeNode.read(["(((a:1.04,b:2.32,c:1.44)d:3.20,"
"(e:3.91,f:2.47)g:1.21)h:1.75,"
"(i:4.14,(j:2.06,k:1.58)l:3.32)m:0.77);"])
tree.unpack_by_func(func)
exp = ("((a:1.04,b:2.32,c:1.44)d:4.95,e:6.87,f:5.43,i:4.91,"
"(j:2.06,k:1.58)l:4.09);")
self.assertEqual(str(tree).rstrip(), exp)
# unpack nodes with support < 75
def func(x):
return x.support < 75
tree = TreeNode.read(["(((a,b)85,(c,d)78)75,(e,(f,g)64)80);"])
tree.assign_supports()
tree.unpack_by_func(func)
exp = "(((a,b)85,(c,d)78)75,(e,f,g)80);"
self.assertEqual(str(tree).rstrip(), exp)
# unpack nodes with support < 85
tree = TreeNode.read(["(((a,b)85,(c,d)78)75,(e,(f,g)64)80);"])
tree.assign_supports()
tree.unpack_by_func(lambda x: x.support < 85)
exp = "((a,b)85,c,d,e,f,g);"
self.assertEqual(str(tree).rstrip(), exp)
# unpack nodes with support < 0.95
tree = TreeNode.read(["(((a,b)0.97,(c,d)0.98)1.0,(e,(f,g)0.88)0.96);"])
tree.assign_supports()
tree.unpack_by_func(lambda x: x.support < 0.95)
exp = "(((a,b)0.97,(c,d)0.98)1.0,(e,f,g)0.96);"
self.assertEqual(str(tree).rstrip(), exp)
# test a case where there are branch lengths, none support values and
# node labels
tree = TreeNode.read(["(((a:1.02,b:0.33)85:0.12,(c:0.86,d:2.23)"
"70:3.02)75:0.95,(e:1.43,(f:1.69,g:1.92)64:0.20)"
"node:0.35)root;"])
tree.assign_supports()
tree.unpack_by_func(lambda x: x.support is not None and x.support < 75)
exp = ("(((a:1.02,b:0.33)85:0.12,c:3.88,d:5.25)75:0.95,"
"(e:1.43,f:1.89,g:2.12)node:0.35)root;")
self.assertEqual(str(tree).rstrip(), exp)
def test_from_taxdump(self):
# same example as in skbio.io.format.taxdump
nodes = pd.DataFrame([
[1, 1, "no rank"],
[2, 131567, "superkingdom"],
[543, 91347, "family"],
[548, 570, "species"],
[561, 543, "genus"],
[562, 561, "species"],
[570, 543, "genus"],
[620, 543, "genus"],
[622, 620, "species"],
[766, 28211, "order"],
[1224, 2, "phylum"],
[1236, 1224, "class"],
[28211, 1224, "class"],
[91347, 1236, "order"],
[118884, 1236, "no rank"],
[126792, 36549, "species"],
[131567, 1, "no rank"],
[585056, 562, "no rank"],
[1038927, 562, "no rank"],
[2580236, 488338, "species"]],
columns=["tax_id", "parent_tax_id", "rank"]).set_index("tax_id")
names = pd.DataFrame([
[1, "root", np.nan, "scientific name"],
[2, "Bacteria", "Bacteria <bacteria>", "scientific name"],
[2, "eubacteria", np.nan, "genbank common name"],
[543, "Enterobacteriaceae", np.nan, "scientific name"],
[548, "Klebsiella aerogenes", np.nan, "scientific name"],
[561, "Escherichia", np.nan, "scientific name"],
[562, "\"Bacillus coli\" Migula 1895", np.nan, "authority"],
[562, "Escherichia coli", np.nan, "scientific name"],
[562, "Escherichia/Shigella coli", np.nan, "equivalent name"],
[570, "Donovania", np.nan, "synonym"],
[570, "Klebsiella", np.nan, "scientific name"],
[620, "Shigella", np.nan, "scientific name"],
[622, "Shigella dysenteriae", np.nan, "scientific name"],
[766, "Rickettsiales", np.nan, "scientific name"],
[1224, "Proteobacteria", np.nan, "scientific name"],
[1236, "Gammaproteobacteria", np.nan, "scientific name"],
[28211, "Alphaproteobacteria", np.nan, "scientific name"],
[91347, "Enterobacterales", np.nan, "scientific name"],
[118884, "unclassified Gammaproteobacteria", np.nan,
"scientific name"],
[126792, "Plasmid pPY113", np.nan, "scientific name"],
[131567, "cellular organisms", np.nan, "scientific name"],
[585056, "Escherichia coli UMN026", np.nan, "scientific name"],
[1038927, "Escherichia coli O104:H4", np.nan, "scientific name"],
[2580236, "synthetic Escherichia coli Syn61", np.nan,
"scientific name"]],
columns=["tax_id", "name_txt", "unique_name",
"name_class"]).set_index("tax_id")
# nodes without names (use tax_id as name)
obs = TreeNode.from_taxdump(nodes)
exp = ("(((((((((585056,1038927)562)561,(548)570,(622)620)543)91347,"
"118884)1236,(766)28211)1224)2)131567)1;")
self.assertEqual(str(obs).rstrip(), exp)
self.assertEqual(obs.count(), 18)
self.assertEqual(obs.count(tips=True), 6)
# default scenario (nodes and names)
obs = TreeNode.from_taxdump(nodes, names)
# check tree is in same size
self.assertEqual(obs.count(), 18)
self.assertEqual(obs.count(tips=True), 6)
# check id, name and rank are correctly set at root
self.assertEqual(obs.id, 1)
self.assertEqual(obs.name, "root")
self.assertEqual(obs.rank, "no rank")
# check an internal node
node = obs.find("Enterobacteriaceae")
self.assertEqual(node.id, 543)
self.assertEqual(node.rank, "family")
# check its children (which should preserve input order)
self.assertEqual(len(node.children), 3)
self.assertListEqual([x.name for x in node.children], [
"Escherichia", "Klebsiella", "Shigella"])
# check that non-scientific name isn"t used
with self.assertRaises(MissingNodeError):
obs.find("Donovania")
# name as a dictionary
names = names[names["name_class"] == "scientific name"][
"name_txt"].to_dict()
obs = TreeNode.from_taxdump(nodes, names)
self.assertEqual(obs.count(), 18)
self.assertEqual(obs.name, "root")
self.assertEqual(obs.find("Enterobacteriaceae").id, 543)
# nodes has no top level
nodes = pd.DataFrame([
[2, 1, "A"],
[3, 2, "B"],
[1, 3, "C"]],
columns=["tax_id", "parent_tax_id", "rank"]).set_index("tax_id")
with self.assertRaises(ValueError) as ctx:
TreeNode.from_taxdump(nodes)
self.assertEqual(str(ctx.exception), "There is no top-level node.")
# nodes has more than one top level
nodes = pd.DataFrame([
[1, 1, "A"],
[2, 2, "B"],
[3, 3, "C"]],
columns=["tax_id", "parent_tax_id", "rank"]).set_index("tax_id")
with self.assertRaises(ValueError) as ctx:
TreeNode.from_taxdump(nodes)
self.assertEqual(str(
ctx.exception), "There are more than one top-level node.")
sample = """
(
(
xyz:0.28124,
(
def:0.24498,
mno:0.03627)
:0.17710)
:0.04870,
abc:0.05925,
(
ghi:0.06914,
jkl:0.13776)
:0.09853);
"""
node_data_sample = """
(
(
xyz:0.28124,
(
def:0.24498,
mno:0.03627)
'A':0.17710)
B:0.04870,
abc:0.05925,
(
ghi:0.06914,
jkl:0.13776)
C:0.09853);
"""
minimal = "();"
no_names = "((,),(,));"
missing_tip_name = "((a,b),(c,));"
empty = "();"
single = "(abc:3);"
double = "(abc:3, def:4);"
onenest = "(abc:3, (def:4, ghi:5):6 );"
nodedata = "(abc:3, (def:4, ghi:5)jkl:6 );"
exp_ascii_art_three_children = r""" /-a
|
---------| /-b
| |
\--------|--c
|
\-d"""
if __name__ == "__main__":
main()
|