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 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167
|
#' @include atracks.R
#' @include grid.R
#' @include colorcode.R
NULL
library(grid)
library(gridBase)
# extends gpar objects
c_gpar <- function(gp, ...){
x <- list(...)
do.call(gpar, c(gp, x[!names(x) %in% names(gp)]))
}
lo <- function (rown, coln, nrow, ncol, cellheight = NA, cellwidth = NA
, treeheight_col, treeheight_row, legend, main = NULL, sub = NULL, info = NULL
, annTracks, annotation_legend
, fontsize, fontsize_row, fontsize_col, gp = gpar()){
annotation_colors <- annTracks$colors
row_annotation <- annTracks$annRow
annotation <- annTracks$annCol
gp0 <- gp
coln_height <- unit(10, "bigpts")
if(!is.null(coln)){
longest_coln = which.max(nchar(coln))
coln_height <- coln_height + unit(1.1, "grobheight", textGrob(coln[longest_coln], rot = 90, gp = c_gpar(gp, fontsize = fontsize_col)))
}
rown_width <- rown_width_min <- unit(10, "bigpts")
if(!is.null(rown)){
longest_rown = which.max(nchar(rown))
rown_width <- rown_width_min + unit(1.2, "grobwidth", textGrob(rown[longest_rown], gp = c_gpar(gp, fontsize = fontsize_row)))
}
gp = c_gpar(gp, fontsize = fontsize)
# Legend position
if( !is_NA(legend) ){
longest_break = which.max(nchar(as.character(legend)))
longest_break = unit(1.1, "grobwidth", textGrob(as.character(legend)[longest_break], gp = gp))
# minimum fixed width: plan for 2 decimals and a sign
min_lw = unit(1.1, "grobwidth", textGrob("-00.00", gp = gp))
longest_break = max(longest_break, min_lw)
title_length = unit(1.1, "grobwidth", textGrob("Scale", gp = c_gpar(gp0, fontface = "bold")))
legend_width = unit(12, "bigpts") + longest_break * 1.2
legend_width = max(title_length, legend_width)
}
else{
legend_width = unit(0, "bigpts")
}
.annLegend.dim <- function(annotation, fontsize){
# Width of the corresponding legend
longest_ann <- unlist(lapply(annotation, names))
longest_ann <- longest_ann[which.max(nchar(longest_ann))]
annot_legend_width = unit(1, "grobwidth", textGrob(longest_ann, gp = gp)) + unit(10, "bigpts")
# width of the legend title
annot_legend_title <- names(annotation)[which.max(nchar(names(annotation)))]
annot_legend_title_width = unit(1, "grobwidth", textGrob(annot_legend_title, gp = c_gpar(gp, fontface = "bold")))
# total width
max(annot_legend_width, annot_legend_title_width) + unit(5, "bigpts")
}
# Column annotations
if( !is_NA(annotation) ){
# Column annotation height
annot_height = unit(ncol(annotation) * (8 + 2) + 2, "bigpts")
}
else{
annot_height = unit(0, "bigpts")
}
# add a viewport for the row annotations
if ( !is_NA(row_annotation) ) {
# Row annotation width
row_annot_width = unit(ncol(row_annotation) * (8 + 2) + 2, "bigpts")
}
else {
row_annot_width = unit(0, "bigpts")
}
# Width of the annotation legend
annot_legend_width <-
if( annotation_legend && !is_NA(annotation_colors) ){
.annLegend.dim(annotation_colors, fontsize)
}else unit(0, "bigpts")
# Tree height
treeheight_col = unit(treeheight_col, "bigpts") + unit(5, "bigpts")
treeheight_row = unit(treeheight_row, "bigpts") + unit(5, "bigpts")
# main title
main_height <- if(!is.null(main)) unit(1, "grobheight", main) + unit(20, "bigpts") else unit(0, "bigpts")
# sub title
sub_height <- if(!is.null(sub)) unit(1, "grobheight", sub) + unit(10, "bigpts") else unit(0, "bigpts")
# info panel
if( !is.null(info) ){
info_height <- unit(1, "grobheight", info) + unit(20, "bigpts")
info_width <- unit(1, "grobwidth", info) + unit(10, "bigpts")
}else{
info_height <- unit(0, "bigpts")
info_width <- unit(0, "bigpts")
}
# Set cell sizes
if(is.na(cellwidth)){
matwidth = unit(1, "npc") - rown_width - legend_width - row_annot_width - treeheight_row - annot_legend_width
}
else{
matwidth = unit(cellwidth * ncol, "bigpts")
}
if(is.na(cellheight)){
matheight = unit(1, "npc") - treeheight_col - annot_height - main_height - coln_height - sub_height - info_height
# recompute the cell width depending on the automatic fontsize
if( is.na(cellwidth) && !is.null(rown) ){
cellheight <- convertHeight(unit(1, "grobheight", rectGrob(0,0, matwidth, matheight)), "bigpts", valueOnly = T) / nrow
fontsize_row <- convertUnit(min(unit(fontsize_row, 'points'), unit(0.6*cellheight, 'bigpts')), 'points')
rown_width <- rown_width_min + unit(1.2, "grobwidth", textGrob(rown[longest_rown], gp = c_gpar(gp0, fontsize = fontsize_row)))
matwidth <- unit(1, "npc") - rown_width - legend_width - row_annot_width - treeheight_row - annot_legend_width
}
}
else{
matheight = unit(cellheight * nrow, "bigpts")
}
# HACK:
# - use 6 instead of 5 column for the row_annotation
# - take into account the associated legend's width
# Produce layout()
unique.name <- vplayout(NULL)
lo <- grid.layout(nrow = 7, ncol = 6
, widths = unit.c(treeheight_row, row_annot_width, matwidth, rown_width, legend_width, annot_legend_width)
, heights = unit.c(main_height, treeheight_col, annot_height, matheight, coln_height, sub_height, info_height))
hvp <- viewport( name=paste('aheatmap', unique.name, sep='-'), layout = lo)
pushViewport(hvp)
#grid.show.layout(lo); stop('sas')
# Get cell dimensions
vplayout('mat')
cellwidth = convertWidth(unit(1, "npc"), "bigpts", valueOnly = T) / ncol
cellheight = convertHeight(unit(1, "npc"), "bigpts", valueOnly = T) / nrow
upViewport()
height <- as.numeric(convertHeight(sum(lo$height), "inches"))
width <- as.numeric(convertWidth(sum(lo$width), "inches"))
# Return minimal cell dimension in bigpts to decide if borders are drawn
mindim = min(cellwidth, cellheight)
return( list(width=width, height=height, vp=hvp, mindim=mindim, cellwidth=cellwidth, cellheight=cellheight) )
}
draw_dendrogram = function(hc, horizontal = T){
# .draw.dendrodram <- function(hc){
#
# # convert into an hclust if necessary
# if( is(hc, 'dendrogram') ){
# hca <- attr(hc, 'hclust')
# hc <- if( !is.null(hca) ) hca else as.hclust(hc)
# }
#
# h = hc$height / max(hc$height) / 1.05
# m = hc$merge
# o = hc$order
# n = length(o)
#
# m[m > 0] = n + m[m > 0]
# m[m < 0] = abs(m[m < 0])
#
# dist = matrix(0, nrow = 2 * n - 1, ncol = 2, dimnames = list(NULL, c("x", "y")))
# dist[1:n, 1] = 1 / n / 2 + (1 / n) * (match(1:n, o) - 1)
#
# for(i in 1:nrow(m)){
# dist[n + i, 1] = (dist[m[i, 1], 1] + dist[m[i, 2], 1]) / 2
# dist[n + i, 2] = h[i]
# }
#
# draw_connection = function(x1, x2, y1, y2, y){
# grid.lines(x = c(x1, x1), y = c(y1, y))
# grid.lines(x = c(x2, x2), y = c(y2, y))
# grid.lines(x = c(x1, x2), y = c(y, y))
# }
#
# # create a rotating viewport for vertical dendrogram
# if(!horizontal){
# gr = rectGrob()
# pushViewport(viewport(height = unit(1, "grobwidth", gr), width = unit(1, "grobheight", gr), angle = 90))
# on.exit(upViewport())
# }
#
# for(i in 1:nrow(m)){
# draw_connection(dist[m[i, 1], 1], dist[m[i, 2], 1], dist[m[i, 1], 2], dist[m[i, 2], 2], h[i])
# }
#
# }
.draw.dendrodram <- function(hc, ...){
# suppressWarnings( opar <- par(plt = gridPLT(), new = TRUE) )
( opar <- par(plt = gridPLT(), new = TRUE) )
on.exit(par(opar))
if( getOption('verbose') ) grid.rect(gp = gpar(col = "blue", lwd = 2))
if( !is(hc, 'dendrogram') )
hc <- as.dendrogram(hc)
plot(hc, horiz=!horizontal, xaxs="i", yaxs="i", axes=FALSE, leaflab="none", ...)
}
# create a margin viewport
if(!horizontal)
pushViewport( viewport(x=0,y=0,width=0.9,height=1,just=c("left", "bottom")) )
else
pushViewport( viewport(x=0,y=0.1,width=1,height=0.9,just=c("left", "bottom")) )
on.exit(upViewport())
.draw.dendrodram(hc)
}
# draw a matrix first row at bottom, last at top
draw_matrix = function(matrix, border_color, txt = NULL, gp = gpar()){
n = nrow(matrix)
m = ncol(matrix)
x = (1:m)/m - 1/2/m
y = (1:n)/n - 1/2/n
# substitute NA values with empty strings
if( !is.null(txt) ) txt[is.na(txt)] <- ''
for(i in 1:m){
grid.rect(x = x[i], y = y, width = 1/m, height = 1/n, gp = gpar(fill = matrix[,i], col = border_color))
if( !is.null(txt) ){
grid.text(label=txt[, i],
x=x[i],
y=y,
# just=just,
# hjust=hjust,
# vjust=vjust,
rot=0,
check.overlap= FALSE, #check.overlap,
default.units= 'npc', #default.units,
# name=name,
gp=gp,
# draw=draw,
# vp=vp
)
}
}
}
draw_colnames = function(coln, gp = gpar()){
m = length(coln)
# decide on the label orientation
width <- m * unit(1, "grobwidth", textGrob(coln[i <- which.max(nchar(coln))], gp = gp))
width <- as.numeric(convertWidth(width, "inches"))
gwidth <- as.numeric(convertWidth(unit(1, 'npc'), "inches"))
y <- NULL
if( gwidth < width ){
rot <- 270
vjust <- 0.5
hjust <- 0
y <- unit(1, 'npc') - unit(5, 'bigpts')
}else{
rot <- 0
vjust <- 0.5
hjust <- 0.5
}
if( is.null(y) ){
height <- unit(1, "grobheight", textGrob(coln[i], vjust = vjust, hjust = hjust, rot=rot, gp = gp))
y <- unit(1, 'npc') - height
}
x = (1:m)/m - 1/2/m
grid.text(coln, x = x, y = y, vjust = vjust, hjust = hjust, rot=rot, gp = gp)
}
# draw rownames first row at bottom, last on top
draw_rownames = function(rown, gp = gpar()){
n = length(rown)
y = (1:n)/n - 1/2/n
grid.text(rown, x = unit(5, "bigpts"), y = y, vjust = 0.5, hjust = 0, gp = gp)
}
draw_legend = function(color, breaks, legend, gp = gpar()){
height = min(unit(1, "npc"), unit(150, "bigpts"))
pushViewport(viewport(x = 0, y = unit(1, "npc"), just = c(0, 1), height = height))
legend_pos = (legend - min(breaks)) / (max(breaks) - min(breaks))
breaks = (breaks - min(breaks)) / (max(breaks) - min(breaks))
h = breaks[-1] - breaks[-length(breaks)]
grid.rect(x = 0, y = breaks[-length(breaks)], width = unit(10, "bigpts"), height = h, hjust = 0, vjust = 0, gp = gpar(fill = color, col = "#FFFFFF00"))
grid.text(legend, x = unit(12, "bigpts"), y = legend_pos, hjust = 0, gp = gp)
upViewport()
}
convert_annotations = function(annotation, annotation_colors){
#new = annotation
x <- sapply(seq_along(annotation), function(i){
#for(i in 1:length(annotation)){
a = annotation[[i]]
b <- attr(a, 'color')
if( is.null(b) )
b = annotation_colors[[names(annotation)[i]]]
if(class(a) %in% c("character", "factor")){
a = as.character(a)
#print(names(b))
#print(unique(a))
if ( FALSE && length(setdiff(names(b), a)) > 0){
stop(sprintf("Factor levels on variable %s do not match with annotation_colors", names(annotation)[i]))
}
#new[, i] = b[a]
b[match(a, names(b))]
}
else{
a = cut(a, breaks = 100)
#new[, i] = colorRampPalette(b)(100)[a]
ccRamp(b, 100)[a]
}
})
colnames(x) <- names(annotation)
return(x)
#return(as.matrix(new))
}
draw_annotations = function(converted_annotations, border_color, horizontal=TRUE){
n = ncol(converted_annotations)
m = nrow(converted_annotations)
if( horizontal ){
x = (1:m)/m - 1/2/m
y = cumsum(rep(8, n)) - 4 + cumsum(rep(2, n))
for(i in 1:m){
grid.rect(x = x[i], unit(y[n:1], "bigpts"), width = 1/m, height = unit(8, "bigpts"), gp = gpar(fill = converted_annotations[i, ], col = border_color))
}
}else{
x = cumsum(rep(8, n)) - 4 + cumsum(rep(2, n))
y = (1:m)/m - 1/2/m
for (i in 1:m) {
grid.rect(x = unit(x[1:n], "bigpts"), y=y[i], width = unit(8, "bigpts"),
height = 1/m, gp = gpar(fill = converted_annotations[i,]
, col = border_color))
}
}
}
draw_annotation_legend = function(annotation_colors, border_color, gp = gpar()){
y = unit(1, "npc")
text_height = convertHeight(unit(1, "grobheight", textGrob("FGH", gp = gp)), "bigpts")
for(i in names(annotation_colors)){
grid.text(i, x = 0, y = y, vjust = 1, hjust = 0, gp = c_gpar(gp, fontface = "bold"))
y = y - 1.5 * text_height
#if(class(annotation[[i]]) %in% c("character", "factor")){
acol <- annotation_colors[[i]]
if( attr(acol, 'afactor') ){
sapply(seq_along(acol), function(j){
grid.rect(x = unit(0, "npc"), y = y, hjust = 0, vjust = 1, height = text_height, width = text_height, gp = gpar(col = border_color, fill = acol[j]))
grid.text(names(acol)[j], x = text_height * 1.3, y = y, hjust = 0, vjust = 1, gp = gp)
y <<- y - 1.5 * text_height
})
}
else{
yy = y - 4 * text_height + seq(0, 1, 0.01) * 4 * text_height
h = 4 * text_height * 0.02
grid.rect(x = unit(0, "npc"), y = yy, hjust = 0, vjust = 1, height = h, width = text_height, gp = gpar(col = "#FFFFFF00", fill = ccRamp(acol, 100)))
txt = c(tail(names(acol),1), head(names(acol))[1])
yy = y - c(0, 3) * text_height
grid.text(txt, x = text_height * 1.3, y = yy, hjust = 0, vjust = 1, gp = gp)
y = y - 4.5 * text_height
}
y = y - 1.5 * text_height
}
}
vplayout <- function ()
{
graphic.name <- NULL
.index <- 0L
function(x, y, verbose = getOption('verbose') ){
# initialize the graph name
if( is.null(x) ){
.index <<- .index + 1L
graphic.name <<- paste0("AHEATMAP.VP.", .index) #grid:::vpAutoName()
return(graphic.name)
}
name <- NULL
if( !is.numeric(x) ){
name <- paste(graphic.name, x, sep='-')
if( !missing(y) && is(y, 'viewport') ){
y$name <- name
return(pushViewport(y))
}
if( !is.null(tryViewport(name, verbose=verbose)) )
return()
switch(x
, main={x<-1; y<-3;}
, ctree={x<-2; y<-3;}
, cann={x<-3; y<-3;}
, rtree={x<-4; y<-1;}
, rann={x<-4; y<-2;}
, mat={x<-4; y<-3;}
, rnam={x<-4; y<-4;}
, leg={x<-4; y<-5;}
, aleg={x<-4; y<-6;}
, cnam={x<-5; y<-3;}
, sub={x<-6; y<-3;}
, info={x<-7; y<-3;}
, stop("aheatmap - invalid viewport name")
)
}
if( verbose ) message("vp - create ", name)
pushViewport(viewport(layout.pos.row = x, layout.pos.col = y, name=name))
}
}
vplayout <- vplayout()
#' Open a File Graphic Device
#'
#' Opens a graphic device depending on the file extension
#'
#' @keywords internal
gfile <- function(filename, width, height, ...){
# Get file type
r = regexpr("\\.[a-zA-Z]*$", filename)
if(r == -1) stop("Improper filename")
ending = substr(filename, r + 1, r + attr(r, "match.length"))
f = switch(ending,
pdf = function(x, ...) pdf(x, ...),
svg = function(x, ...) svg(x, ...),
png = function(x, ...) png(x, ...),
jpeg = function(x, ...) jpeg(x, ...),
jpg = function(x, ...) jpeg(x, ...),
tiff = function(x, ...) tiff(x, compression = "lzw", ...),
bmp = function(x, ...) bmp(x, ...),
stop("File type should be: pdf, svg, png, bmp, jpg, tiff")
)
args <- c(list(filename), list(...))
if( !missing(width) ){
args$width <- as.numeric(width)
args$height <- as.numeric(height)
if( !ending %in% c('pdf','svg') && is.null(args[['res']]) ){
args$units <- "in"
args$res <- 300
}
}
do.call('f', args)
}
#gt <- function(){
#
# x <- rmatrix(20, 10)
# z <- unit(0.1, "npc")
# w <- unit(0.4, "npc")
# h <- unit(0.3, "npc")
# lo <- grid.layout(nrow = 7, ncol = 6
# , widths = unit.c(z, z, w, z, z, z)
# , heights = unit.c(z, z, z, h, z, z, z))
#
# nvp <- 0
# on.exit( upViewport(nvp) )
#
# u <- vplayout(NULL)
# vname <- function(x) basename(tempfile(x))
#
# hvp <- viewport( name=u, layout = lo)
# pushViewport(hvp)
# nvp <- nvp + 1
#
# pushViewport(viewport(layout.pos.row = 4, layout.pos.col = 3, name='test'))
# #vplayout('mat')
# nvp <- nvp + 1
#
# grid.rect()
# NULL
#}
#gt2 <- function(){
#
# x <- rmatrix(10, 5)
# lo(NULL, NULL, nrow(x), ncol(x), cellheight = NA, cellwidth = NA
# , treeheight_col=0, treeheight_row=0, legend=FALSE, main = NULL, sub = NULL, info = NULL
# , annTracks=list(colors=NA, annRow=NA, annCol=NA), annotation_legend=FALSE
# , fontsize=NULL, fontsize_row=NULL, fontsize_col=NULL)
#
# #vplayout('mat')
# vname <- function(x) basename(tempfile(x))
# pushViewport(viewport(layout.pos.row = 4, layout.pos.col = 3, name=vname('test')))
# print(current.vpPath())
# grid.rect()
# upViewport(2)
# NULL
#}
d <- function(x){
if( is.character(x) ) x <- rmatrix(dim(x))
nvp <- 0
on.exit(upViewport(nvp), add=TRUE)
lo <- grid.layout(nrow = 4, ncol = 3)
hvp <- viewport( name=basename(tempfile()), layout = lo)
pushViewport(hvp)
nvp <- nvp + 1
pushViewport(viewport(layout.pos.row = 2, layout.pos.col = 1))
nvp <- nvp + 1
w = convertWidth(unit(1, "npc"), "bigpts", valueOnly = T) / 10
h = convertHeight(unit(1, "npc"), "bigpts", valueOnly = T) / 10
grid.rect()
upViewport()
nvp <- nvp - 1
pushViewport(viewport(layout.pos.row = 1, layout.pos.col = 2))
nvp <- nvp + 1
# add inner padding viewport
pushViewport( viewport(x=0,y=0,width=0.9,height=0.9,just=c("left", "bottom")) )
nvp <- nvp + 1
( opar <- par(plt = gridPLT(), new = TRUE) )
on.exit(par(opar), add=TRUE)
hc <- hclust(dist(x))
plot(as.dendrogram(hc), xaxs="i", yaxs="i", axes=FALSE, leaflab="none")
invisible(basename(tempfile()))
}
heatmap_motor = function(matrix, border_color, cellwidth, cellheight
, tree_col, tree_row, treeheight_col, treeheight_row
, filename=NA, width=NA, height=NA
, breaks, color, legend, txt = NULL
, annTracks, annotation_legend=TRUE
, new=TRUE, fontsize, fontsize_row, fontsize_col
, main=NULL, sub=NULL, info=NULL
, verbose=getOption('verbose')
, gp = gpar()){
annotation_colors <- annTracks$colors
row_annotation <- annTracks$annRow
annotation <- annTracks$annCol
writeToFile <- !is.na(filename)
# open graphic device (dimensions will be changed after computation of the correct height)
if( writeToFile ){
gfile(filename)
on.exit(dev.off())
}
# identify the plotting context: base or grid
#NB: use custom function current.vpPath2 instead of official
# grid::current.vpPath as this one creates a new page when called
# on a fresh graphic device
vpp <- current.vpPath_patched()
if( is.null(vpp) ){ # we are at the root viewport
if( verbose ) message("Detected path: [ROOT]")
mf <- par('mfrow')
#print(mf)
# if in in mfrow/layout context: setup fake-ROOT viewports with gridBase
# and do not call plot.new as it is called in grid.base.mix.
new <- if( !identical(mf, c(1L,1L)) ){
if( verbose ) message("Detected mfrow: ", mf[1], " - ", mf[2], ' ... MIXED')
opar <- grid.base.mix(trace=verbose>1)
on.exit( grid.base.mix(opar) )
FALSE
}
else{
if( verbose ){
message("Detected mfrow: ", mf[1], " - ", mf[2])
message("Honouring ", if( missing(new) ) "default "
,"argument `new=", new, '` ... '
, if( new ) "NEW" else "OVERLAY")
}
new
}
}else{
if( verbose ) message("Detected path: ", vpp)
# if new is not specified: change the default behaviour by not calling
# plot.new so that drawing occurs in the current viewport
if( missing(new) ){
if( verbose ) message("Missing argument `new` ... OVERLAY")
new <- FALSE
}else if( verbose ) message("Honouring argument `new=", new, '` ... '
, if( new ) "NEW" else "OVERLAY")
}
# reset device if necessary or requested
if( new ){
if( verbose ) message("Call: plot.new")
#grid.newpage()
plot.new()
}
# define grob for main
mainGrob <- if( !is.null(main) && !is.grob(main) ) textGrob(main, gp = c_gpar(gp, fontsize = 1.2 * fontsize, fontface="bold"))
subGrob <- if( !is.null(sub) && !is.grob(sub) ) textGrob(sub, gp = c_gpar(gp, fontsize = 0.8 * fontsize))
infoGrob <- if( !is.null(info) && !is.grob(info) ){
# infotxt <- paste(strwrap(paste(info, collapse=" | "), width=20), collapse="\n")
grobTree(gList(rectGrob(gp = gpar(fill = "grey80"))
,textGrob(paste(info, collapse=" | "), x=unit(5, 'bigpts'), y=0.5, just='left', gp = c_gpar(gp, fontsize = 0.8 * fontsize))))
}
# Set layout
glo = lo(coln = colnames(matrix), rown = rownames(matrix), nrow = nrow(matrix), ncol = ncol(matrix)
, cellwidth = cellwidth, cellheight = cellheight
, treeheight_col = treeheight_col, treeheight_row = treeheight_row
, legend = legend
, annTracks = annTracks, annotation_legend = annotation_legend
, fontsize = fontsize, fontsize_row = fontsize_row, fontsize_col = fontsize_col
, main = mainGrob, sub = subGrob, info = infoGrob, gp = gp)
# resize the graphic file device if necessary
if( writeToFile ){
if( verbose ) message("Compute size for file graphic device")
m <- par('mar')
if(is.na(height))
height <- glo$height
if(is.na(width))
width <- glo$width
dev.off()
if( verbose ) message("Resize file graphic device to: ", width, " - ", height)
gfile(filename, width=width, height=height)
# re-call plot.new if it was called before
if( new ){
if( verbose ) message("Call again plot.new")
op <- par(mar=c(0,0,0,0))
plot.new()
par(op)
}
if( verbose ) message("Push again top viewport")
# repush the layout
pushViewport(glo$vp)
if( verbose ) grid.rect(width=unit(glo$width, 'inches'), height=unit(glo$height, 'inches'), gp = gpar(col='blue'))
}
#grid.show.layout(glo$layout); return()
mindim <- glo$mindim
# Omit border color if cell size is too small
if(mindim < 3) border_color = NA
# Draw tree for the columns
if (!is_NA(tree_col) && treeheight_col != 0){
#vplayout(1, 2)
vplayout('ctree')
draw_dendrogram(tree_col, horizontal = T)
upViewport()
}
# Draw tree for the rows
if(!is_NA(tree_row) && treeheight_row !=0){
#vplayout(3, 1)
vplayout('rtree')
draw_dendrogram(tree_row, horizontal = F)
upViewport()
}
# recompute margin fontsizes
fontsize_row <- convertUnit(min(unit(fontsize_row, 'points'), unit(0.6*glo$cellheight, 'bigpts')), 'points')
fontsize_col <- convertUnit(min(unit(fontsize_col, 'points'), unit(0.6*glo$cellwidth, 'bigpts')), 'points')
# Draw matrix
#vplayout(3, 2)
vplayout('mat')
draw_matrix(matrix, border_color, txt = txt, gp = gpar(fontsize = fontsize_row))
#d(matrix)
#grid.rect()
upViewport()
# Draw colnames
if(length(colnames(matrix)) != 0){
#vplayout(4, 2)
vplayout('cnam')
draw_colnames(colnames(matrix), gp = c_gpar(gp, fontsize = fontsize_col))
upViewport()
}
# Draw rownames
if(length(rownames(matrix)) != 0){
#vplayout(3, 3)
vplayout('rnam')
draw_rownames(rownames(matrix), gp = c_gpar(gp, fontsize = fontsize_row))
upViewport()
}
# Draw annotation tracks
if( !is_NA(annotation) ){
#vplayout(2, 2)
vplayout('cann')
draw_annotations(annotation, border_color)
upViewport()
}
# add row annotations if necessary
if ( !is_NA(row_annotation) ) {
vplayout('rann')
draw_annotations(row_annotation, border_color, horizontal=FALSE)
upViewport()
}
# Draw annotation legend
if( annotation_legend && !is_NA(annotation_colors) ){
#vplayout(3, 5)
vplayout('aleg')
draw_annotation_legend(annotation_colors, border_color, gp = c_gpar(gp, fontsize = fontsize))
upViewport()
}
# Draw legend
if(!is_NA(legend)){
#vplayout(3, 4)
vplayout('leg')
draw_legend(color, breaks, legend, gp = c_gpar(gp, fontsize = fontsize))
upViewport()
}
# Draw main
if(!is.null(mainGrob)){
vplayout('main')
grid.draw(mainGrob)
upViewport()
}
# Draw subtitle
if(!is.null(subGrob)){
vplayout('sub')
grid.draw(subGrob)
upViewport()
}
# Draw info
if(!is.null(infoGrob)){
vplayout('info')
grid.draw(infoGrob)
upViewport()
}
# return current vp tree
#ct <- current.vpTree()
#print(current.vpPath())
upViewport()
#popViewport()
# grab current grob and return
# gr <- grid.grab()
# grid.draw(gr)
#ct
NULL
}
generate_breaks = function(x, n, center=NA){
if( missing(center) || is_NA(center) )
seq(min(x, na.rm = T), max(x, na.rm = T), length.out = n + 1)
else{ # center the breaks on the requested value
n2 <- ceiling((n+0.5)/2)
M <- max(abs(center - min(x, na.rm = TRUE)), abs(center - max(x, na.rm = TRUE)))
lb <- seq(center-M, center, length.out = n2)
rb <- seq(center, center+M, length.out = n2)
c(lb, rb[-1])
}
}
scale_vec_colours = function(x, col = rainbow(10), breaks = NA){
return(col[as.numeric(cut(x, breaks = breaks, include.lowest = T))])
}
scale_colours = function(mat, col = rainbow(10), breaks = NA){
mat = as.matrix(mat)
return(matrix(scale_vec_colours(as.vector(mat), col = col, breaks = breaks), nrow(mat), ncol(mat), dimnames = list(rownames(mat), colnames(mat))))
}
cutheight <- function(x, n){
# exit early if n <=1: nothing to do
if( n <=1 ) return( attr(x, 'height') )
res <- NULL
.heights <- function(subtree, n){
if( is.leaf(subtree) ) return()
if (!(K <- length(subtree)))
stop("non-leaf subtree of length 0")
# extract heights from each subtree
for( k in 1:K){
res <<- c(res, attr(subtree[[k]], 'height'))
}
# continue only if there is not yet enough subtrees
if( length(res) < n ){
for( k in 1:K){
.heights(subtree[[k]], n)
}
}
}
# extract at least the top h heights
.heights(x, n)
# sort by decreasing order
res <- sort(res, decreasing=TRUE)
res[n-1]
}
#' Fade Out the Upper Branches from a Dendrogram
#'
#' @param x a dendrogram
#' @param n the number of groups
#'
#' @import digest
#' @keywords internal
cutdendro <- function(x, n){
# exit early if n <=1: nothing to do
if( n <= 1 ) return(x)
# add node digest ids to x
x <- dendrapply(x, function(n){
attr(n, 'id') <- digest(attributes(n))
n
})
# cut x in n groups
# find the height where to cut
h <- cutheight(x, n)
cfx <- cut(x, h)
# get the ids of the upper nodes
ids <- sapply(cfx$lower, function(sub) attr(sub, 'id'))
# highlight the upper branches with dot lines
dts <- c(lty=2, lwd=1.2, col=8)
a <- dendrapply(x, function(node){
a <- attributes(node)
if( a$id %in% ids || (!is.leaf(node) && any(c(attr(node[[1]], 'id'), attr(node[[2]], 'id')) %in% ids)) )
attr(node, 'edgePar') <- dts
node
})
}
# internal class definition for
as_treedef <- function(x, ...){
res <- if( is(x, 'hclust') )
list(dendrogram=as.dendrogram(x), dist.method=x$dist.method, method=x$method)
else list(dendrogram=x, ...)
class(res) <- "aheatmap_treedef"
res
}
rev.aheatmap_treedef <- function(x){
x$dendrogram <- rev(x$dendrogram)
x
}
is_treedef <- function(x) is(x, 'aheatmap_treedef')
isLogical <- function(x) isTRUE(x) || identical(x, FALSE)
# Convert an index vector usable on the subset data into one usable on the
# original data
subset2orginal_idx <- function(idx, subset){
if( is.null(subset) || is.null(idx) ) idx
else{
res <- subset[idx]
attr(res, 'subset') <- idx
res
}
}
#' Cluster Matrix Rows in Annotated Heatmaps
#'
#' @param mat original input matrix that has already been appropriately subset in
#' the caller function (\code{aheatmap})
#' @param param clustering specifications
#' @param distfun Default distance method/function
#' @param hclustfun Default clustering (linkage) method/function
#' @param reorderfun Default reordering function
#' @param na.rm Logical that specifies if NA values should be removed
#' @param subset index (integer) vector specifying the subset indexes used to
#' subset mat. This is required to be able to return the original indexes.
#'
#' @keywords internal
cluster_mat = function(mat, param, distfun, hclustfun, reorderfun, na.rm=TRUE, subset=NULL, verbose = FALSE){
# do nothing if an hclust object is passed
parg <- deparse(substitute(param))
Rowv <-
if( is(param, 'hclust') || is(param, 'dendrogram') ){ # hclust or dendrograms are honoured
res <- as_treedef(param)
# subset if requested: convert into an index vector
# the actuval subsetting is done by first case (index vector)
if( !is.null(subset) ){
warning("Could not directly subset dendrogram/hclust object `", parg
,"`: using subset of the dendrogram's order instead.")
# use dendrogram order instead of dendrogram itself
param <- order.dendrogram(res$dendrogram)
}else # EXIT: return treedef
return(res)
}else if( is(param, 'silhouette') ){ # use silhouette order
si <- sortSilhouette(param)
param <- attr(si, 'iOrd')
}
# index vectors are honoured
if( is.integer(param) && length(param) > 1 ){
# subset if requested: reorder the subset indexes as in param
if( !is.null(subset) )
param <- order(match(subset, param))
param
}else{ # will compute dendrogram (NB: mat was already subset before calling cluster_mat)
param <-
if( is.integer(param) )
param
else if( is.null(param) || isLogical(param) ) # use default reordering by rowMeans
rowMeans(mat, na.rm=na.rm)
else if( is.numeric(param) ){ # numeric reordering weights
# subset if necessary
if( !is.null(subset) )
param <- param[subset]
param
}else if( is.character(param) || is.list(param) ){
if( length(param) == 0 )
stop("aheatmap - Invalid empty character argument `", parg, "`.")
# set default names if no names were provided
if( is.null(names(param)) ){
if( length(param) > 3 ){
warning("aheatmap - Only using the three first elements of `", parg, "` for distfun and hclustfun respectively.")
param <- param[1:3]
}
n.allowed <- c('distfun', 'hclustfun', 'reorderfun')
names(param) <- head(n.allowed, length(param))
}
# use the distance passed in param
if( 'distfun' %in% names(param) ) distfun <- param[['distfun']]
# use the clustering function passed in param
if( 'hclustfun' %in% names(param) ) hclustfun <- param[['hclustfun']]
# use the reordering function passed in param
if( 'reorderfun' %in% names(param) ) reorderfun <- param[['reorderfun']]
TRUE
}else
stop("aheatmap - Invalid value for argument `", parg, "`. See ?aheatmap.")
# compute distances
d <- if( isString(distfun) ){
distfun <- distfun[1]
corr.methods <- c("pearson", "kendall", "spearman")
av <- c("correlation", corr.methods, "euclidean", "maximum", "manhattan", "canberra", "binary", "minkowski")
i <- pmatch(distfun, av)
if( is_NA(i) )
stop("aheatmap - Invalid dissimilarity method, must be one of: ", str_out(av, Inf))
distfun <- av[i]
if(distfun == "correlation") distfun <- 'pearson'
if(distfun %in% corr.methods){ # distance from correlation matrix
if( verbose ) message("Using distance method: correlation (", distfun, ')')
d <- dist(1 - cor(t(mat), method = distfun))
attr(d, 'method') <- distfun
d
}else{
if( verbose ) message("Using distance method: ", distfun)
dist(mat, method = distfun)
}
}else if( is(distfun, "dist") ){
if( verbose ) message("Using dist object: ", distfun)
distfun
}else if( is.function(distfun) ){
if( verbose ) message("Using custom dist function")
distfun(mat)
}else
stop("aheatmap - Invalid dissimilarity function: must be a character string, an object of class 'dist', or a function")
# do hierarchical clustering
hc <- if( is.character(hclustfun) ){
av <- c('ward', 'single', 'complete', 'average', 'mcquitty', 'median', 'centroid')
i <- pmatch(hclustfun, av)
if( is.na(i) )
stop("aheatmap - Invalid clustering method, must be one of: ", paste("'", av, "'", sep='', collapse=', '))
hclustfun <- av[i]
if( verbose ) message("Using clustering method: ", hclustfun)
hclust(d, method=hclustfun)
}else if( is.function(hclustfun) )
hclustfun(d)
else
stop("aheatmap - Invalid clustering function: must be a character string or a function")
#convert into a dendrogram
dh <- as.dendrogram(hc)
# customize the dendrogram plot: highlight clusters
if( is.integer(param) )
dh <- cutdendro(dh, param)
else if( is.numeric(param) && length(param)==nrow(mat) ) # reorder the dendrogram if necessary
dh <- reorderfun(dh, param)
# wrap up into a aheatmap_treedef object
as_treedef(dh, dist.method=hc$dist.method, method=hc$method)
}
}
#scale_rows = function(x){
# m = apply(x, 1, mean)
# s = apply(x, 1, sd)
# return((x - m) / s)
#}
scale_mat = function(x, scale, na.rm=TRUE){
av <- c("none", "row", "column", 'r1', 'c1')
i <- pmatch(scale, av)
if( is_NA(i) )
stop("scale argument shoud take values: 'none', 'row' or 'column'")
scale <- av[i]
switch(scale, none = x
, row = {
x <- sweep(x, 1L, rowMeans(x, na.rm = na.rm), check.margin = FALSE)
sx <- apply(x, 1L, sd, na.rm = na.rm)
sweep(x, 1L, sx, "/", check.margin = FALSE)
}
, column = {
x <- sweep(x, 2L, colMeans(x, na.rm = na.rm), check.margin = FALSE)
sx <- apply(x, 2L, sd, na.rm = na.rm)
sweep(x, 2L, sx, "/", check.margin = FALSE)
}
, r1 = sweep(x, 1L, rowSums(x, na.rm = na.rm), '/', check.margin = FALSE)
, c1 = sweep(x, 2L, colSums(x, na.rm = na.rm), '/', check.margin = FALSE)
)
}
.Rd.seed <- new.env()
round.pretty <- function(x, min=2){
if( is.null(x) ) return(NULL)
n <- 0
y <- round(sort(x), n)
if( all(diff(y)==0) ) return( round(x, min) )
while( any(diff(y)==0) ){
n <- n+1
y <- round(sort(x), n)
}
dec <- max(min,n)
round(x, dec)
}
generate_annotation_colours = function(annotation, annotation_colors, seed=TRUE){
if( is_NA(annotation_colors) ){
annotation_colors = list()
}
# use names from annotations if necessary/possible
if( length(annotation_colors) > 0L
&& length(annotation_colors) <= length(annotation)
&& is.null(names(annotation_colors)) ){
names(annotation_colors) <- head(names(annotation), length(annotation_colors))
}
count = 0
annotationLevels <- list()
anames <- names(annotation)
sapply(seq_along(annotation), function(i){
a <- annotation[[i]]
if( class(annotation[[i]]) %in% c("character", "factor")){
# convert to character vector
a <- if( is.factor(a) ) levels(a) else unique(a)
count <<- count + nlevels(a)
# merge if possible
if( !is.null(anames) && anames[i]!='' )
annotationLevels[[anames[i]]] <<- unique(c(annotationLevels[[anames[i]]], a))
else
annotationLevels <<- c(annotationLevels, list(a))
}else
annotationLevels <<- c(annotationLevels, annotation[i])
})
annotation <- annotationLevels
#str(annotationLevels)
factor_colors = hcl(h = seq(1, 360, length.out = max(count+1,20)), 100, 70)
# get random seeds to restore/update on exit
rs <- RNGseed()
on.exit({
# update local random seed on exit
.Rd.seed$.Random.seed <- getRNG()
# restore global random seed
RNGseed(rs)
})
# restore local random seed if it exists
if( !is.null(.Rd.seed$.Random.seed) )
setRNG(.Rd.seed$.Random.seed)
# set seed and restore on exit
if( isTRUE(seed) ){
# reset .Random.seed to a dummy RNG in case the current kind is user-supplied:
# we do not want to draw even once from the current RNG
setRNG(c(401L, 0L, 0L))
set.seed(12345, 'default', 'default')
}
factor_colors <- sample(factor_colors)
# pal(factor_colors); stop("sasa")
res_colors <- list()
for(i in 1:length(annotation)){
ann <- annotation[[i]]
aname <- names(annotation)[i]
# skip already generated colors
acol_def <- res_colors[[aname]]
if( !is.null(acol_def) ) next;
acol <- annotation_colors[[aname]]
if( is.null(acol) ){
res_colors[[aname]] <-
if( class(annotation[[i]]) %in% c("character", "factor")){
lev <- ann
ind = 1:length(lev)
acol <- setNames(factor_colors[ind], lev)
factor_colors = factor_colors[-ind]
# conserve NA value
acol[which(is.na(names(acol)))] <- NA
acol
}
else{
h = round(runif(1) * 360)
rg <- range(ann, na.rm=TRUE)
if( rg[1] == rg[2] ) rg <- sort(c(0, rg[1]))
setNames(rev(sequential_hcl(2, h, l = c(50, 95))), round.pretty(rg))
}
}else{
acol <-
if( length(acol) == 1 && grepl("^\\$", acol) ) # copy colors from other columns if the spec starts with '$'
annotation_colors[[substr(acol, 2, nchar(acol))]]
else if( !is.numeric(ann) ){
local({ #do this locally so that it does not affect `ann`
# subset to the levels for which no colour has already been defined
lev <- ann
# subset to the levels for which no colour has already been defined
# idx <- which(!lev %in% names(acol_def) & !is.na(lev))
# lev <- lev[idx]
# #idx <- idx + length(acol_def)
#
# if( length(lev) == 0L ) acol_def # nothing to add
# else
{
# convert to a palette of the number of levels if necessary
nl <- length(lev)
acol <- ccPalette(acol, nl)
if( is.null(names(acol)) )
names(acol) <- lev
c(acol_def, acol)
}
})
}else{
acol <- ccPalette(acol)
if( is.null(names(acol)) )
names(acol) <- round.pretty(seq(min(ann, na.rm=TRUE), max(ann, na.rm=TRUE), length.out=length(acol)))
acol
}
# update the colors if necessary
if( !is.null(acol) )
res_colors[[aname]] <- acol
}
# store type information
attr(res_colors[[aname]], 'afactor') <- !is.numeric(ann)
}
# return ordered colors as the annotations
res_colors[names(annotation)[!duplicated(names(annotation))]]
}
# Create row/column names
generate_dimnames <- function(x, n, ref){
if( is_NA(x) ) NULL
else if( length(x) == n ) x
else if( identical(x, 1) || identical(x, 1L) ) 1L:n
else if( isString(x) ){
regexp <- "^/(.+)/([0-9]+)?$"
if( grepl(regexp, x) ){
x <- str_match(x, regexp)
p <- x[1,2]
n <- if( x[1, 3] != '' ) as.numeric(x[1, 2]) else 2L
s <- str_match(ref, p)[, n]
ifelse(is.na(s), ref, s)
}
else paste(x, 1L:n, sep='')
#print(str_match_all(x, "^/(([^%]*)(%[in])?)+/$"))
}
else stop("aheatmap - Invalid row/column label. Possible values are:"
, " NA, a vector of correct length, value 1 (or 1L) or single character string.")
}
.make_annotation <- function(x, ord=NULL){
# convert into a data.frame if necessary
if( !is.data.frame(x) ){
x <- if( is(x, 'ExpressionSet') ) Biobase::pData(x)
else if( is.factor(x) || is.character(x) ) data.frame(Factor=x)
else if( is.numeric(x) ) data.frame(Variable=x)
else
stop("aheatmap - Invalid annotation argument `", substitute(x), "`: must be a data.frame, a factor or a numeric vector")
}
# reorder if necessary
if( !is.null(ord) )
x <- x[ord, , drop = F]
# return modifed object
x
}
renderAnnotations <- function(annCol, annRow, annotation_colors, verbose=getOption('verbose')){
# concatenate both col and row annotation
annotation <- list()
if( is_NA(annotation_colors) ) annotation_colors <- list()
nc <- length(annCol)
nr <- length(annRow)
flag <- function(x, f){ if( missing(f) ) attr(x, 'flag') else{ attr(x, 'flag') <- f; x} }
if( !is_NA(annCol) ) annotation <- c(annotation, sapply(as.list(annCol), flag, 'col', simplify=FALSE))
if( !is_NA(annRow) ) annotation <- c(annotation, sapply(as.list(annRow), flag, 'row', simplify=FALSE))
if( length(annotation) == 0 ) return( list(annCol=NA, annRow=NA, colors=NA) )
# generate the missing name
n <- names(annotation)
xnames <- paste('X', 1:length(annotation), sep='')
if( is.null(n) ) names(annotation) <- xnames
else names(annotation)[n==''] <- xnames[n=='']
# preprocess the annotation color links
if( !is.null(cnames <- names(annotation_colors)) ){
m <- str_match(cnames, "^@([^{]+)\\{([^}]+)\\}")
apply(m, 1L, function(x){
# skip unmatched names
if( is_NA(x[1]) ) return()
acol <- annotation_colors[[x[1]]]
# rename both annotation and annotation_colors if necessary
if( x[2] != x[3] ){
annotation[[x[3]]] <<- annotation[[x[2]]]
annotation[[x[2]]] <<- NULL
if( !is_NA(acol) )
annotation_colors[[x[3]]] <<- acol
annotation_colors[[x[1]]] <<- NULL
}
})
}
# message("### ANNOTATION ###"); print(annotation)
# message("### ANNOTATION COLORS ###"); print(annotation_colors)
if( verbose ) message("Generate column annotation colours")
annotation_colors <- generate_annotation_colours(annotation, annotation_colors)
if( verbose > 2 ){
message("### Annotation colors ###")
print(annotation_colors)
message("#########################")
}
# bind each annotation with its respective color and regroup into column and row annotation
res <- list()
lapply(seq_along(annotation), function(i){
aname <- names(annotation)[i]
acol <- annotation_colors[[aname]]
if( is.null(acol) )
stop("aheatmap - No color was defined for annotation '", aname, "'.")
attr(annotation[[i]], 'color') <- acol
# put into the right annotation list
if( flag(annotation[[i]]) == 'col' ) res$annCol <<- c(res$annCol, annotation[i])
else res$annRow <<- c(res$annRow, annotation[i])
})
res$annCol <- if( !is.null(res$annCol) ) convert_annotations(res$annCol, annotation_colors) else NA
res$annRow <- if( !is.null(res$annRow) ) convert_annotations(res$annRow, annotation_colors) else NA
res$colors <- annotation_colors
# return result list
res
}
# set/get special annotation handlers
specialAnnotation <- local({
.empty <- list(list(), list())
.cache <- .empty
function(margin, name, fun, clear=FALSE){
if( isTRUE(clear) ){
if( nargs() > 1L )
stop("Invalid call: no other argument can be passed when `clear=TRUE`")
.cache <<- .empty
return()
}
if( missing(name) && missing(fun) ){
return(.cache[[margin]])
}else if( is.list(name) ){
.cache[[margin]] <<- c(.cache[[margin]], name)
}else if( missing(fun) ){
return(.cache[[margin]][[name]])
}else{
.cache[[margin]][[name]] <<- fun
}
}
})
# Converts Subset Specification into Indexes
subset_index <- function(x, margin, subset){
# if null then do nothing
if( is.null(subset) ) return( NULL )
# get dimension
n <- dim(x)[margin]
dn <- dimnames(x)[[margin]]
dt <- if( margin == 1L ) "rows" else "columns"
so <- deparse(substitute(subset))
if( length(subset) == 0 )
stop("Invalid empty subset object `", so, "`")
subIdx <-
if( is.logical(subset) ){
if( length(subset) != n ){
if( n %% length(subset) == 0 )
subset <- rep(subset, n / length(subset))
else
stop("Invalid length for logical subset argument `", so, "`: number of ", dt, " ["
, n, "] is not a multiple of subset length [",length(subset),"].")
}
# convert into indexes
which(subset)
}
else if( is.integer(subset) || is.character(subset) ){
if( length(subset) > n )
stop("Invalid too long integer/character subset argument `", so
, "`: length must not exceed the number of ", dt, " [", n, "].")
if( anyDuplicated(subset) )
warning("Duplicated index or name in subset argument `", so, "`.")
# for character argument: match against dimname to convert into indexes
if( is.character(subset) ){
if( is.null(dn) )
stop("Could not subset the ", dt, " with a character subset argument `", so, "`: no "
, if( margin == 1L ) "rownames" else "colnames"
, " are available.")
msubset <- match(subset, dn)
nas <- is.na(msubset)
if( any(nas) ){
warning("Mismatch in character subset argument `", so
,"`: Could not find ", sum(nas), " out of ", length(subset), " names ("
, paste("'", head(subset[nas], 5), "'", sep='', collapse=', ')
, if( sum(nas) > 5 ) ", ... ", ").")
msubset <- msubset[!nas]
}
subset <- msubset
}
subset
}else
stop("Invalid subset argument `", so, "`: should be a logical, integer or character vector.")
# return the indexes sorted
sort(subIdx)
}
#' Annotated Heatmaps
#'
#' The function \code{aheatmap} plots high-quality heatmaps, with a detailed legend
#' and unlimited annotation tracks for both columns and rows.
#' The annotations are coloured differently according to their type
#' (factor or numeric covariate).
#' Although it uses grid graphics, the generated plot is compatible with base
#' layouts such as the ones defined with \code{'mfrow'} or \code{\link{layout}},
#' enabling the easy drawing of multiple heatmaps on a single a plot -- at last!.
#'
#' The development of this function started as a fork of the function
#' \code{pheatmap} from the \pkg{pheatmap} package, and provides
#' several enhancements such as:
#' \itemize{
#' \item argument names match those used in the base function \code{\link{heatmap}};
#' \item unlimited number of annotation for \strong{both} columns and rows,
#' with simplified and more flexible interface;
#' \item easy specification of clustering methods and colors;
#' \item return clustering data, as well as grid grob object.
#' }
#'
#' Please read the associated vignette for more information and sample code.
#'
#' @section PDF graphic devices: if plotting on a PDF graphic device -- started with \code{\link{pdf}},
#' one may get generate a first blank page, due to internals of standard functions from
#' the \pkg{grid} package that are called by \code{aheatmap}.
#' The \pkg{NMF} package ships a custom patch that fixes this issue.
#' However, in order to comply with CRAN policies, the patch is \strong{not} applied by default
#' and the user must explicitly be enabled it.
#' This can be achieved on runtime by either setting the NMF specific option 'grid.patch'
#' via \code{nmf.options(grid.patch=TRUE)}, or on load time if the environment variable
#' 'R_PACKAGE_NMF_GRID_PATCH' is defined and its value is something that is not equivalent
#' to \code{FALSE} (i.e. not '', 'false' nor 0).
#'
#' @param x numeric matrix of the values to be plotted.
#' An \emph{ExpressionSet} object can also be passed, in which case the expression values
#' are plotted (\code{exprs(x)}).
#'
#' @param color colour specification for the heatmap. Default to palette
#' '-RdYlBu2:100', i.e. reversed palette 'RdYlBu2' (a slight modification of
#' RColorBrewer's palette 'RdYlBu') with 100 colors.
#' Possible values are:
#' \itemize{
#' \item a character/integer vector of length greater than 1 that is directly used
#' and assumed to contain valid R color specifications.
#' \item a single color/integer (between 0 and 8)/other numeric value
#' that gives the dominant colors. Numeric values are converted into a pallete
#' by \code{rev(sequential_hcl(2, h = x, l = c(50, 95)))}. Other values are
#' concatenated with the grey colour '#F1F1F1'.
#' \item one of RColorBrewer's palette name (see \code{\link[RColorBrewer]{display.brewer.all}})
#' , or one of 'RdYlBu2', 'rainbow', 'heat', 'topo', 'terrain', 'cm'.
#' }
#' When the coluor palette is specified with a single value, and is negative or
#' preceded a minus ('-'), the reversed palette is used.
#' The number of breaks can also be specified after a colon (':'). For example,
#' the default colour palette is specified as '-RdYlBu2:100'.
#'
#' @param breaks a sequence of numbers that covers the range of values in \code{x} and is one
#' element longer than color vector. Used for mapping values to colors. Useful, if needed
#' to map certain values to certain colors. If value is NA then the
#' breaks are calculated automatically. If \code{breaks} is a single value,
#' then the colour palette is centered on this value.
#'
#' @param border_color color of cell borders on heatmap, use NA if no border should be
#' drawn.
#'
#' @param cellwidth individual cell width in points. If left as NA, then the values
#' depend on the size of plotting window.
#'
#' @param cellheight individual cell height in points. If left as NA,
#' then the values depend on the size of plotting window.
#'
#' @param scale character indicating how the values should scaled in
#' either the row direction or the column direction. Note that the scaling is
#' performed after row/column clustering, so that it has no effect on the
#' row/column ordering.
#' Possible values are:
#' \itemize{
#' \item \code{"row"}: center and standardize each row separately to row Z-scores
#' \item \code{"column"}: center and standardize each column separately to column Z-scores
#' \item \code{"r1"}: scale each row to sum up to one
#' \item \code{"c1"}: scale each column to sum up to one
#' \item \code{"none"}: no scaling
#' }
#'
#' @param Rowv clustering specification(s) for the rows. It allows to specify
#' the distance/clustering/ordering/display parameters to be used for the
#' \emph{rows only}.
#' Possible values are:
#' \itemize{
#' \item \code{TRUE} or \code{NULL} (to be consistent with \code{\link{heatmap}}):
#' compute a dendrogram from hierarchical clustering using the distance and
#' clustering methods \code{distfun} and \code{hclustfun}.
#'
#' \item \code{NA}: disable any ordering. In this case, and if not otherwise
#' specified with argument \code{revC=FALSE}, the heatmap shows the input matrix
#' with the rows in their original order, with the first row on top to the last
#' row at the bottom. Note that this differ from the behaviour or \code{\link{heatmap}},
#' but seemed to be a more sensible choice when vizualizing a matrix without
#' reordering.
#'
#' \item an integer vector of length the number of rows of the input matrix
#' (\code{nrow(x)}), that specifies the row order. As in the case \code{Rowv=NA},
#' the ordered matrix is shown first row on top, last row at the bottom.
#'
#' \item a character vector or a list specifying values to use instead of arguments
#' \code{distfun}, \code{hclustfun} and \code{reorderfun} when clustering the
#' rows (see the respective argument descriptions for a list of accepted
#' values).
#' If \code{Rowv} has no names, then the first element is used for \code{distfun},
#' the second (if present) is used for \code{hclustfun}, and the third
#' (if present) is used for \code{reorderfun}.
#'
#' \item a numeric vector of weights, of length the number of rows of the input matrix,
#' used to reorder the internally computed dendrogram \code{d}
#' by \code{reorderfun(d, Rowv)}.
#'
#' \item \code{FALSE}: the dendrogram \emph{is} computed using methods \code{distfun},
#' \code{hclustfun}, and \code{reorderfun} but is not shown.
#'
#' \item a single integer that specifies how many subtrees (i.e. clusters)
#' from the computed dendrogram should have their root faded out.
#' This can be used to better highlight the different clusters.
#'
#' \item a single double that specifies how much space is used by the computed
#' dendrogram. That is that this value is used in place of \code{treeheight}.
#' }
#'
#' @param Colv clustering specification(s) for the columns. It accepts the same
#' values as argument \code{Rowv} (modulo the expected length for vector specifications),
#' and allow specifying the distance/clustering/ordering/display parameters to
#' be used for the \emph{columns only}.
#' \code{Colv} may also be set to \code{"Rowv"}, in which case the dendrogram
#' or ordering specifications applied to the rows are also applied to the
#' columns. Note that this is allowed only for square input matrices,
#' and that the row ordering is in this case by default reversed
#' (\code{revC=TRUE}) to obtain the diagonal in the standard way
#' (from top-left to bottom-right).
#' See argument \code{Rowv} for other possible values.
#'
#' @param revC a logical that specify if the \emph{row order} defined by
#' \code{Rowv} should be reversed. This is mainly used to get the rows displayed
#' from top to bottom, which is not the case by default. Its default value is
#' computed at runtime, to suit common situations where natural ordering is a
#' more sensible choice: no or fix ordering of the rows (\code{Rowv=NA} or an
#' integer vector of indexes -- of length > 1), and when a symmetric ordering is
#' requested -- so that the diagonal is shown as expected.
#' An argument in favor of the "odd" default display (bottom to top) is that the
#' row dendrogram is plotted from bottom to top, and reversing its reorder may
#' take a not too long but non negligeable time.
#'
#' @param distfun default distance measure used in clustering rows and columns.
#' Possible values are:
#' \itemize{
#' \item all the distance methods supported by \code{\link{dist}}
#' (e.g. "euclidean" or "maximum").
#'
#' \item all correlation methods supported by \code{\link{cor}},
#' such as \code{"pearson"} or \code{"spearman"}.
#' The pairwise distances between rows/columns are then computed as
#' \code{d <- dist(1 - cor(..., method = distfun))}.
#'
#' One may as well use the string "correlation" which is an alias for "pearson".
#'
#' \item an object of class \code{dist} such as returned by \code{\link{dist}} or
#' \code{\link{as.dist}}.
#' }
#'
#' @param hclustfun default clustering method used to cluster rows and columns.
#' Possible values are:
#' \itemize{
#' \item a method name (a character string) supported by \code{\link{hclust}}
#' (e.g. \code{'average'}).
#' \item an object of class \code{hclust} such as returned by \code{\link{hclust}}
#' \item a dendrogram
#' }
#'
#' @param reorderfun default dendrogram reordering function, used to reorder the
#' dendrogram, when either \code{Rowv} or \code{Colv} is a numeric weight vector,
#' or provides or computes a dendrogram. It must take 2 parameters: a dendrogram,
#' and a weight vector.
#'
#' @param subsetRow Specification of subsetting the rows before drawing the
#' heatmap.
#' Possible values are:
#' \itemize{
#' \item an integer vector of length > 1 specifying the indexes of the rows to
#' keep;
#' \item a character vector of length > 1 specyfing the names of the rows to keep.
#' These are the original rownames, not the names specified in \code{labRow}.
#' \item a logical vector of length > 1, whose elements are recycled if the
#' vector has not as many elements as rows in \code{x}.
#' }
#' Note that in the case \code{Rowv} is a dendrogram or hclust object, it is first
#' converted into an ordering vector, and cannot be displayed -- and a warning is thrown.
#'
#' @param subsetCol Specification of subsetting the columns before drawing the
#' heatmap. It accepts the similar values as \code{subsetRow}. See details above.
#'
#' @param txt character matrix of the same size as \code{x}, that contains text to
#' display in each cell.
#' \code{NA} values are allowed and are not displayed.
#' See demo for an example.
#'
#' @param treeheight how much space (in points) should be used to display
#' dendrograms. If specified as a single value, it is used for both dendrograms.
#' A length-2 vector specifies separate values for the row and
#' column dendrogram respectively.
#' Default value: 50 points.
#'
#' @param legend boolean value that determines if a colour ramp for the heatmap's
#' colour palette should be drawn or not.
#' Default is \code{TRUE}.
#'
#' @param annCol specifications of column annotation tracks displayed as coloured
#' rows on top of the heatmaps. The annotation tracks are drawn from bottom to top.
#' A single annotation track can be specified as a single vector; multiple tracks
#' are specified as a list, a data frame, or an \emph{ExpressionSet} object, in
#' which case the phenotypic data is used (\code{pData(eset)}).
#' Character or integer vectors are converted and displayed as factors.
#' Unnamed tracks are internally renamed into \code{Xi}, with i being incremented for
#' each unamed track, across both column and row annotation tracks.
#' For each track, if no corresponding colour is specified in argument
#' \code{annColors}, a palette or a ramp is automatically computed and named
#' after the track's name.
#'
#' @param annRow specifications of row annotation tracks displayed as coloured
#' columns on the left of the heatmaps. The annotation tracks are drawn from
#' left to right. The same conversion, renaming and colouring rules as for argument
#' \code{annCol} apply.
#'
#' @param annColors list for specifying annotation track colors manually. It is
#' possible to define the colors for only some of the annotations. Check examples for
#' details.
#'
#' @param annLegend boolean value specifying if the legend for the annotation tracks
#' should be drawn or not.
#' Default is \code{TRUE}.
#'
#' @param labRow labels for the rows.
#' @param labCol labels for the columns. See description for argument \code{labRow}
#' for a list of the possible values.
#'
#' @param fontsize base fontsize for the plot
#' @param cexRow fontsize for the rownames, specified as a fraction of argument
#' \code{fontsize}.
#' @param cexCol fontsize for the colnames, specified as a fraction of argument
#' \code{fontsize}.
#'
#' @param main Main title as a character string or a grob.
#' @param sub Subtitle as a character string or a grob.
#' @param info (experimental) Extra information as a character vector or a grob.
#' If \code{info=TRUE}, information about the clustering methods is displayed
#' at the bottom of the plot.
#'
#' @param filename file path ending where to save the picture. Currently following
#' formats are supported: png, pdf, tiff, bmp, jpeg. Even if the plot does not fit into
#' the plotting window, the file size is calculated so that the plot would fit there,
#' unless specified otherwise.
#' @param width manual option for determining the output file width in
#' @param height manual option for determining the output file height in inches.
#'
#' @param verbose if \code{TRUE} then verbose messages are displayed and the
#' borders of some viewports are highlighted. It is entended for debugging
#' purposes.
#'
#' @param gp graphical parameters for the text used in plot. Parameters passed to
#' \code{\link{grid.text}}, see \code{\link{gpar}}.
#'
#' @author
#' Original version of \code{pheatmap}: Raivo Kolde
#'
#' Enhancement into \code{aheatmap}: Renaud Gaujoux
#'
#' @examples
#'
#' ## See the demo 'aheatmap' for more examples:
#' \dontrun{
#' demo('aheatmap')
#' }
#'
#' # Generate random data
#' n <- 50; p <- 20
#' x <- abs(rmatrix(n, p, rnorm, mean=4, sd=1))
#' x[1:10, seq(1, 10, 2)] <- x[1:10, seq(1, 10, 2)] + 3
#' x[11:20, seq(2, 10, 2)] <- x[11:20, seq(2, 10, 2)] + 2
#' rownames(x) <- paste("ROW", 1:n)
#' colnames(x) <- paste("COL", 1:p)
#'
#' ## Default heatmap
#' aheatmap(x)
#'
#' ## Distance methods
#' aheatmap(x, Rowv = "correlation")
#' aheatmap(x, Rowv = "man") # partially matched to 'manhattan'
#' aheatmap(x, Rowv = "man", Colv="binary")
#'
#' # Generate column annotations
#' annotation = data.frame(Var1 = factor(1:p %% 2 == 0, labels = c("Class1", "Class2")), Var2 = 1:10)
#' aheatmap(x, annCol = annotation)
#'
#' @demo Annotated heatmaps
#'
#' # Generate random data
#' n <- 50; p <- 20
#' x <- abs(rmatrix(n, p, rnorm, mean=4, sd=1))
#' x[1:10, seq(1, 10, 2)] <- x[1:10, seq(1, 10, 2)] + 3
#' x[11:20, seq(2, 10, 2)] <- x[11:20, seq(2, 10, 2)] + 2
#' rownames(x) <- paste("ROW", 1:n)
#' colnames(x) <- paste("COL", 1:p)
#'
#' ## Scaling
#' aheatmap(x, scale = "row")
#' aheatmap(x, scale = "col") # partially matched to 'column'
#' aheatmap(x, scale = "r1") # each row sum up to 1
#' aheatmap(x, scale = "c1") # each colum sum up to 1
#'
#' ## Heatmap colors
#' aheatmap(x, color = colorRampPalette(c("navy", "white", "firebrick3"))(50))
#' # color specification as an integer: use R basic colors
#' aheatmap(x, color = 1L)
#' # color specification as a negative integer: use reverse basic palette
#' aheatmap(x, color = -1L)
#' # color specification as a numeric: use HCL color
#' aheatmap(x, color = 1)
#' # do not cluster the rows
#' aheatmap(x, Rowv = NA)
#' # no heatmap legend
#' aheatmap(x, legend = FALSE)
#' # cell and font size
#' aheatmap(x, cellwidth = 10, cellheight = 5)
#'
#' # directly write into a file
#' aheatmap(x, cellwidth = 15, cellheight = 12, fontsize = 8, filename = "aheatmap.pdf")
#' unlink('aheatmap.pdf')
#'
#' # Generate column annotations
#' annotation = data.frame(Var1 = factor(1:p %% 2 == 0, labels = c("Class1", "Class2")), Var2 = 1:10)
#'
#' aheatmap(x, annCol = annotation)
#' aheatmap(x, annCol = annotation, annLegend = FALSE)
#'
#'
#' # Specify colors
#' Var1 = c("navy", "darkgreen")
#' names(Var1) = c("Class1", "Class2")
#' Var2 = c("lightgreen", "navy")
#'
#' ann_colors = list(Var1 = Var1, Var2 = Var2)
#'
#' aheatmap(x, annCol = annotation, annColors = ann_colors)
#'
#' # Specifying clustering from distance matrix
#' drows = dist(x, method = "minkowski")
#' dcols = dist(t(x), method = "minkowski")
#' aheatmap(x, Rowv = drows, Colv = dcols)
#'
#' # Display text in each cells
#' t <- outer(as.character(outer(letters, letters, paste0)), letters, paste0)[1:n, 1:p]
#' aheatmap(x, txt = t)
#' # NA values are shown as empty cells
#' t.na <- t
#' t.na[sample(length(t.na), 500)] <- NA # half of the cells
#' aheatmap(x, txt = t.na)
#'
#' @export
aheatmap = function(x
, color = '-RdYlBu2:100'
, breaks = NA, border_color=NA, cellwidth = NA, cellheight = NA, scale = "none"
, Rowv=TRUE, Colv=TRUE
, revC = identical(Colv, "Rowv") || is_NA(Rowv) || (is.integer(Rowv) && length(Rowv) > 1)
|| is(Rowv, 'silhouette')
, distfun = "euclidean", hclustfun = "complete", reorderfun = function(d,w) reorder(d,w)
, treeheight = 50
, legend = TRUE, annCol = NA, annRow = NA, annColors = NA, annLegend = TRUE
, labRow = NULL, labCol = NULL
, subsetRow = NULL, subsetCol = NULL
, txt = NULL
, fontsize=10, cexRow = min(0.2 + 1/log10(nr), 1.2), cexCol = min(0.2 + 1/log10(nc), 1.2)
, filename = NA, width = NA, height = NA
, main = NULL, sub = NULL, info = NULL
, verbose=getOption('verbose'), gp = gpar()){
# set verbosity level
ol <- lverbose(verbose)
on.exit( lverbose(ol) )
# convert ExpressionSet into
if( is(x, 'ExpressionSet') ){
requireNamespace('Biobase')
#library(Biobase)
if( isTRUE(annCol) ) annCol <- atrack(x)
x <- Biobase::exprs(x)
}
# rename to old parameter name
mat <- x
if( !is.null(txt) ){
if( !all(dim(mat), dim(x)) ){
stop("Incompatible data and text dimensions: arguments x and txt must have the same size.")
}
}
# init result list
res <- list()
# treeheight: use common or separate spec for rows and columns
if( length(treeheight) == 1 )
treeheight <- c(treeheight, treeheight)
treeheight_row <- treeheight[1]
treeheight_col <- treeheight[2]
## SUBSET: process subset argument for rows/columsn if requested.
# this has to be done before relabelling and clustering
# but the actual subsetting has to be done after relabelling and before
# clustering.
# Here one convert a subset argument into an interger vector with the indexes
if( !is.null(subsetRow) ){
if( verbose ) message("Compute row subset indexes")
subsetRow <- subset_index(mat, 1L, subsetRow)
}
if( !is.null(subsetCol) ){
if( verbose ) message("Compute column subset indexes")
subsetCol <- subset_index(mat, 2L, subsetCol)
}
## LABELS: set the row/column labels
# label row numerically if no rownames
if( is.null(labRow) && is.null(rownames(mat)) )
labRow <- 1L
if( !is.null(labRow) ){
if( verbose ) message("Process labRow")
rownames(mat) <- generate_dimnames(labRow, nrow(mat), rownames(mat))
}
# label columns numerically if no colnames
if( is.null(labCol) && is.null(colnames(mat)) )
labCol <- 1L
if( !is.null(labCol) ){
if( verbose ) message("Process labCol")
colnames(mat) <- generate_dimnames(labCol, ncol(mat), colnames(mat))
}
## DO SUBSET
if( !is.null(subsetRow) ){
mat <- mat[subsetRow, ]
}
if( !is.null(subsetCol) ){
mat <- mat[, subsetCol]
}
## CLUSTERING
# Do row clustering
tree_row <- if( !is_NA(Rowv) ){
if( verbose ) message("Cluster rows")
# single numeric Rowv means treeheight
if( isReal(Rowv) ){
# treeheight
treeheight_row <- Rowv
# do cluster the rows
Rowv <- TRUE
}
cluster_mat(mat, Rowv
, distfun=distfun, hclustfun=hclustfun
, reorderfun=reorderfun, subset=subsetRow
, verbose = verbose)
}
else NA
# do not show the tree if Rowv=FALSE or not a tree
if( identical(Rowv, FALSE) || !is_treedef(tree_row) )
treeheight_row <- 0
# Do col clustering
tree_col <- if( !is_NA(Colv) ){
if( identical(Colv,"Rowv") ){ # use row indexing if requested
if( ncol(mat) != nrow(mat) )
stop("aheatmap - Colv='Rowv' but cannot treat columns and rows symmetrically: input matrix is not square.")
treeheight_col <- treeheight_row
tree_row
}else{
# single numeric Colv means treeheight
if( isReal(Colv) ){
# tree height
treeheight_col <- Colv
# do cluster the columns
Colv <- TRUE
}
if( verbose ) message("Cluster columns")
cluster_mat(t(mat), Colv
, distfun=distfun, hclustfun=hclustfun
, reorderfun=reorderfun, subset=subsetCol
, verbose = verbose)
}
}
else NA
# do not show the tree if Colv=FALSE
if( identical(Colv, FALSE) || !is_treedef(tree_col) )
treeheight_col <- 0
## ORDER THE DATA
if( !is_NA(tree_row) ){
# revert the row order if requested
if( revC ){
if( verbose ) message("Reverse row clustering")
tree_row <- rev(tree_row)
}
# store the order and row tree if possible
if( is_treedef(tree_row) ){
res$Rowv <- tree_row$dendrogram
res$rowInd <- order.dendrogram(tree_row$dendrogram)
if( length(res$rowInd) != nrow(mat) )
stop("aheatmap - row dendrogram ordering gave index of wrong length (", length(res$rowInd), ")")
}
else{
res$rowInd <- tree_row
tree_row <- NA
}
}else if( revC ){ # revert the row order if requested
res$rowInd <- nrow(mat):1L
}
# possibly map the index to the original data index
res$rowInd <- subset2orginal_idx(res$rowInd, subsetRow)
# order the rows if necessary
if( !is.null(res$rowInd) ){
# check validity of ordering
if( !is.integer(res$rowInd) || length(res$rowInd) != nrow(mat) )
stop("aheatmap - Invalid row ordering: should be an integer vector of length nrow(mat)=", nrow(mat))
if( verbose ) message("Order rows")
subInd <- attr(res$rowInd, 'subset')
ri <- if( is.null(subInd) ) res$rowInd else subInd
mat <- mat[ri, , drop=FALSE] # data
if( !is.null(txt) ) txt <- txt[ri, , drop = FALSE] # text
}
if( !is_NA(tree_col) ){
# store the column order and tree if possible
if( is_treedef(tree_col) ){
res$Colv <- tree_col$dendrogram
res$colInd <- order.dendrogram(tree_col$dendrogram)
if( length(res$colInd) != ncol(mat) )
stop("aheatmap - column dendrogram ordering gave index of wrong length (", length(res$colInd), ")")
}else{
res$colInd <- tree_col
tree_col <- NA
}
}
# possibly map the index to the original data index
res$colInd <- subset2orginal_idx(res$colInd, subsetCol)
# order the columns if necessary
if( !is.null(res$colInd) ){
# check validity of ordering
if( !is.integer(res$colInd) || length(res$colInd) != ncol(mat) )
stop("aheatmap - Invalid column ordering: should be an integer vector of length ncol(mat)=", ncol(mat))
if( verbose ) message("Order columns")
subInd <- attr(res$colInd, 'subset')
ci <- if( is.null(subInd) ) res$colInd else subInd
mat <- mat[, ci, drop=FALSE] # data
if( !is.null(txt) ) txt <- txt[, ci, drop = FALSE] # text
}
# adding clustering info
if( isTRUE(info) || is.character(info) ){
if( verbose ) message("Compute info")
if( !is.character(info) ) info <- NULL
linfo <- NULL
if( is_treedef(tree_row) && !is.null(tree_row$dist.method) )
linfo <- paste("rows:", tree_row$dist.method, '/', tree_row$method)
if( is_treedef(tree_col) && !is.null(tree_col$dist.method) )
linfo <- paste(linfo, paste(" - cols:", tree_col$dist.method, '/', tree_col$method))
info <- c(info, linfo)
}
# drop extra info except dendrograms for trees
if( is_treedef(tree_col) )
tree_col <- tree_col$dendrogram
if( is_treedef(tree_row) )
tree_row <- tree_row$dendrogram
# Preprocess matrix
if( verbose ) message("Scale matrix")
mat = as.matrix(mat)
mat = scale_mat(mat, scale)
## Colors and scales
# load named palette if necessary
color <- ccRamp(color)
# generate breaks if necessary
if( is_NA(breaks) || isNumber(breaks) ){
if( verbose ) message("Generate breaks")
# if a single number: center the breaks on this value
cbreaks <- if( isNumber(breaks) ) breaks else NA
breaks = generate_breaks(as.vector(mat), length(color), center=cbreaks)
}
if( isTRUE(legend) ){
if( verbose ) message("Generate data legend breaks")
legend = grid.pretty(range(as.vector(breaks)))
}
else {
legend = NA
}
mat = scale_colours(mat, col = color, breaks = breaks)
annotation_legend <- annLegend
annotation_colors <- annColors
# render annotation tracks for both rows and columns
annCol_processed <- atrack(annCol, order=res$colInd, .SPECIAL=specialAnnotation(2L), .DATA=amargin(x,2L), .CACHE=annRow)
annRow_processed <- atrack(annRow, order=res$rowInd, .SPECIAL=specialAnnotation(1L), .DATA=amargin(x,1L), .CACHE=annCol)
specialAnnotation(clear=TRUE)
annTracks <- renderAnnotations(annCol_processed, annRow_processed
, annotation_colors = annotation_colors
, verbose=verbose)
#
# retrieve dimension for computing cexRow and cexCol (evaluated from the arguments)
nr <- nrow(mat); nc <- ncol(mat)
# Draw heatmap
res$vp <- heatmap_motor(mat, border_color = border_color, cellwidth = cellwidth, cellheight = cellheight
, treeheight_col = treeheight_col, treeheight_row = treeheight_row, tree_col = tree_col, tree_row = tree_row
, filename = filename, width = width, height = height, breaks = breaks, color = color, legend = legend
, annTracks = annTracks, annotation_legend = annotation_legend
, txt = txt
, fontsize = fontsize, fontsize_row = cexRow * fontsize, fontsize_col = cexCol * fontsize
, main = main, sub = sub, info = info
, verbose = verbose
, gp = gp)
# return info about the plot
invisible(res)
}
#' @import gridBase
grid.base.mix <- function(opar, trace = getOption('verbose')){
if( !missing(opar) ){
if( !is.null(opar) ){
if( trace ) message("grid.base.mix - restore")
upViewport(2)
par(opar)
}
return(invisible())
}
if( trace ) message("grid.base.mix - init")
if( trace ) grid.rect(gp=gpar(lwd=40, col="blue"))
opar <- par(xpd=NA)
if( trace ) grid.rect(gp=gpar(lwd=30, col="green"))
if( trace ) message("grid.base.mix - plot.new")
plot.new()
if( trace ) grid.rect(gp=gpar(lwd=20, col="black"))
vps <- baseViewports()
pushViewport(vps$inner)
if( trace ) grid.rect(gp=gpar(lwd=10, col="red"))
pushViewport(vps$figure)
# if( trace ) grid.rect(gp=gpar(lwd=3, col="green"))
# pushViewport(vps$plot)
# upViewport(2)
# if( trace ) grid.rect(gp=gpar(lwd=3, col="pink"))
# pushViewport(viewport(x=unit(0.5, "npc"), y=unit(0, "npc"), width=unit(0.5, "npc"), height=unit(1, "npc"), just=c("left","bottom")))
if( trace ) grid.rect(gp=gpar(lwd=3, col="yellow"))
opar
}
if( FALSE ){
testmix <- function(){
opar <- mixplot.start(FALSE)
profplot(curated$data$model, curated$fits[[1]])
mixplot.add(TRUE)
basismarker(curated$fits[[1]], curated$data$markers)
mixplot.end()
par(opar)
}
dd <- function(d, horizontal = TRUE, ...){
grid.rect(gp = gpar(col = "blue", lwd = 2))
opar <- par(plt = gridPLT(), new = TRUE)
on.exit(par(opar))
plot(d, horiz=horizontal, xaxs="i", yaxs="i", axes=FALSE, leaflab="none", ...)
}
toto <- function(new=FALSE){
library(RGraphics)
set.seed(123456)
x <- matrix(runif(30*20), 30)
x <- crossprod(x)
d <- as.dendrogram(hclust(dist(x)))
#grid.newpage()
if( new ) plot.new()
lo <- grid.layout(nrow=2, ncol=2)
pushViewport(viewport(layout=lo))
pushViewport(viewport(layout.pos.row = 2, layout.pos.col = 1))
dd(d)
upViewport()
pushViewport(viewport(layout.pos.row = 1, layout.pos.col = 2))
dd(d, FALSE)
upViewport()
pushViewport(viewport(layout.pos.row = 2, layout.pos.col = 2))
grid.imageGrob(nrow(x), ncol(x), x)
upViewport()
popViewport()
stop("END toto")
}
test <- function(){
pdf('aheatmap.pdf')
#try(v <- aheatmap(consensus(res), color='grey:100', Colv=2L, verbose=TRUE))
try(v <- consensusmap(res, color='grey:100', Colv=2L, verbose=TRUE))
dev.off()
}
test2 <- function(){
op <- par(mfrow=c(1,2))
on.exit(par(op))
#try(v <- aheatmap(consensus(res), color='grey:100', Colv=2L, verbose=TRUE))
try(v <- consensusmap(res, verbose=TRUE))
try(v <- consensusmap(res, color='grey:100', Colv=2L, verbose=TRUE))
}
testsw <- function(file=TRUE){
if(file ){
pdf('asweave.pdf', width=20, height=7)
on.exit(dev.off())
}
opar <- par(mfrow=c(1,2))
# removing all automatic annotation tracks
coefmap(res, tracks=NA, verbose=TRUE)
# customized plot
coefmap(res, Colv = 'euclidean', Rowv='max', verbose=TRUE)
# , main = "Metagene contributions in each sample", labCol = NULL
# , tracks = c(Metagene='basis'), annCol = list(Class=a, Index=c)
# , annColors = list(Metagene='Set2')
# , info = TRUE)
par(opar)
}
testvp <- function(file=TRUE){
if(file ){
pdf('avp.pdf', width=20, height=7)
on.exit(dev.off())
}
plot.new()
lo <- grid.layout(nrow=1, ncol=2)
pushViewport(viewport(layout=lo))
pushViewport(viewport(layout.pos.row = 1, layout.pos.col = 1))
basismap(res, Colv='eucl', verbose=TRUE)
upViewport()
pushViewport(viewport(layout.pos.row = 1, layout.pos.col = 2))
coefmap(res, tracks=NA, verbose=TRUE)
upViewport()
popViewport()
}
}
|