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
|
<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet type="text/css"
href="/common/mozilla/layout/xml/tests/docbook.css" ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"../../docbook/docbookx.dtd">
<book lang="en">
<title>Java TreeView User's Manual</title>
<subtitle>$Revision: 1.26 $, covers Java TreeView 1.1.5</subtitle>
<bookinfo>
<author> <firstname> Alok </firstname> <surname> Saldanha </surname> </author>
<edition> $Revision: 1.26 $, covers Java TreeView 1.1.5 </edition>
<releaseinfo>$Revision: 1.26 $, covers Java TreeView 1.1.5 </releaseinfo>
</bookinfo>
<preface>
<title>READ THIS FIRST </title>
<para>
This manual has three chapters. Each chapter has a purpose:
</para>
<orderedlist>
<listitem> <para>To assist the novice with installation. </para></listitem>
<listitem> <para>To document all features </para></listitem>
<listitem> <para> To provide troubleshooting assistance </para></listitem>
</orderedlist>
<para>
New users should glance over the contents to see what the program has to offer, perhaps reading a section if it may be of interest. Familiar users may return if some errors arise, or if there is a feature they remember exists, but don't remember how to use.
</para>
<para>
This manual may be partially out of date. It has not been fully checked since 1.0.7, please email the mailing lists or the project admins on jtreeview.sf.net if you notice a section that appears to be out of date.
</para>
</preface>
<preface>
<title>Acknowledgements</title>
<para>
I would like to thank the members of the Botstein lab for valuable discussions and feedback, in particular Michael Shapira, John Murray, Maitreya Dunham, Barbera Dunn, Matt Brauer, Michal Ronen and my advisor David Botstein.
</para>
<para>
I would also like to thank the many other people both inside and outside of Stanford who have given me feedback, including Jason Lieb, Christian Rees, John Matese, Gavin Sherlock, Michiel Jan Laurens de Hoon and Stéphane Graziani.
</para>
</preface>
<chapter id="Installation">
<title>Installation and Introduction</title>
<sect1 id="ch1_general">
<title>General Instructions</title>
<para>
Installation of Java TreeView should be fairly straightforward on modern operating systems.
</para>
<para>
The following steps will help guide you through.
</para>
<para>
1) To get started, download a recent version of Java TreeView from the main web page,
http://jtreeview.sourceforge.net.
</para>
<variablelist>
<title>Distributions</title>
<varlistentry> <term> Windows </term> <listitem> <para> TreeView-1.0.5-bin.zip </para> </listitem> </varlistentry>
<varlistentry> <term> Mac OS X </term> <listitem> <para> TreeView-1.0.5-osx.dmg </para> </listitem> </varlistentry>
<varlistentry> <term> Applet </term> <listitem> <para> TreeView-1.0.5-applet.tar.gz </para> </listitem> </varlistentry>
<varlistentry> <term> Generic Java </term> <listitem> <para> TreeView-1.0.5-bin.tar.gz </para> </listitem> </varlistentry>
<varlistentry> <term> Source </term> <listitem> <para> TreeView-1.0.5-source.tar.gz </para> </listitem> </varlistentry>
<varlistentry> <term> Mac OS 9 </term> <listitem> <para> TreeView-1.0.0-bin.sit followed by TreeView-1.0.5-bin.tar.gz. You need to unpack both, and then overwrite the TreeView.jar file in the TreeView-1.0.0-bin.sit folder with the newer one. This will update the treeview program, but still allow you to double-click the treeview icon. </para> </listitem> </varlistentry>
</variablelist>
<para>
For most operating systems, the application is distributed as a .tar.gz file. For MacOS9, there is a special MacOS9 .sit file.
</para>
<para>
2) Unpack the .tar.gz file, if your browser has not already done so.
</para>
<para>
3) Doubleclick the TreeView.jar(<footnote id="jarFootnote">
<para>
".jar" stands for Java ARchive, and is a standard format for java programs and libaries. Some jar files, such as the TreeView.jar files, are set up to be executable. Others, such as those located in the "lib" folder, are not.
</para>
</footnote>) file to start, or the TreeViewLauncher file on MacOS9.
</para>
<itemizedlist>
<title>Known Issues</title>
<listitem> <para> Stuffit version 7.5 for windows does not properly unpack tar.gz files. Use WinZip on the windows platform instead. </para>
</listitem>
</itemizedlist>
<note> <para> If you run into problems at any time, check <xref linkend="ch3"/> Troubleshooting for solutions </para> </note>
</sect1>
<sect1 id="ch1_overview">
<title>Overview of Java TreeView</title>
<figure id="DistCont">
<title>Contents of Java TreeView Distribution Archive</title>
<graphic fileref="figures/DistCont.gif"/>
</figure>
<sect2 id="ch1_overview_quickstart">
<title>Getting Started</title>
<para>
Once you have downloaded and unpacked the distribution, you should be confronted with a set of files similar to those listed in <xref linkend="DistCont"/>. Before reading further, you should run the TreeView.jar program to make sure your installation works. At this point, you might want to view a sample cdt or pcl file to get the hang of how it works. You can grab one from the examples section of the website or skip ahead to the file formats section (<xref linkend="ch2"/>, <xref linkend="ch2_file"/>) if you aren't sure whether your file is properly formatted.
</para>
</sect2>
<sect2 id="ch1_overview_selection">
<title>Selection in Java TreeView</title>
<para>
Java TreeView offers many views of the data which are linked together.
</para>
<variablelist>
<title>Views offered by LinkedView</title>
<varlistentry> <term> Dendrogram </term> <listitem> <para> Displays dendrogram, in style of original TreeView </para> </listitem> </varlistentry>
<varlistentry> <term> Scatterplot </term> <listitem> <para> Displays scatterplot of data values or per-gene statistics </para> </listitem> </varlistentry>
<varlistentry> <term> Karyoscope </term> <listitem> <para> Displays genome-ordering of data values, allows averaging </para> </listitem> </varlistentry>
<varlistentry> <term> Alignment </term> <listitem> <para> Displays aligned sequence data, typically from clustalw or a similar program </para> </listitem> </varlistentry>
</variablelist>
<para>
In all these views there are visual cues to show which genes are selected. Any operation which selects genes in one view, either due to genome ordering, hierarchical clustering, or per-gene statistics, selects the genes in all views. This is because the application only maintains one list of selected genes. This list of selected genes can also be used to create exported images and data files such as gene lists and sub-pcl files using the Export features, documented in chapter 2.
</para>
</sect2>
</sect1>
</chapter>
<chapter id="ch2">
<title>Feature Reference</title>
<sect1 id ="ch2_flags">
<title> Command Line Options </title>
<sect2>
<title>Useful JVM Arguments</title>
<para>
The amount of memory can be specified using the standard arguments to the jvm, i.e. for 500 MB, use
<command>
java -jar -Xmx500m TreeView.jar
</command>
</para>
<para>
Be aware that for windows, you may need to use javaw instead of java.
</para>
</sect2>
<sect2>
<title> Main Program options </title>
<para>
The main program options have a short and long form. An example command line to open a specified file using the "linked view" style would be
<command> java -Xmx500m -jar TreeView.jar -r http://jtreeview.sourceforge.net/examples/DLim_color.cdt </command>
</para>
<variablelist>
<title>Main Program options</title>
<varlistentry> <term> -r <file/url> (--resource=<file/url>) </term> <listitem> <para> File or url to load. </para> </listitem> </varlistentry>
<varlistentry> <term> -t <type> (--type=<type>) </term> <listitem> <para> Open file with the specified type of viewer.
Valid values are "linked" for multiple linked view (by default only dendrogram opens on new files),
"kmeans" for k-means, "classic" for the classic, dendrogram only, and "auto" to autodetect (default) </para></listitem> </varlistentry>
<varlistentry> <term> -x <plugin> (--export=<plugin> </term> <listitem>
<para> Export image from command line using the specified plugin instead of opening an interactive window.
This argument requires that a resource to
export is specified on the command line as well. Currently only the "Dendrogram" plugin is specified. </para></listitem> </varlistentry>
</variablelist>
</sect2>
<sect2>
<title> Dendrogram export options </title>
<para>
When export to dendrogram is indicated using "-x Dendrogram", main program arguments can be terminated with "--" and additional dendrogram plugin arguments
can be specified. An example complete command line would be:
</para>
<para>
<command>
java -jar TreeView.jar -r ./spellman.cdt -x Dendrogram -- -o /tmp/spellman.png -s 10x1 -a 0 -c 1
</command>
</para>
<variablelist>
<title>Dendrogram export options </title>
<varlistentry> <term> -o <filename> (--output=<filename>) </term>
<listitem> <para> (required) Filename to store image output in </para> </listitem> </varlistentry>
<varlistentry> <term> -f <imageFormat> (--=<format>) </term>
<listitem> <para> (optional) set output format, either 'png', 'gif' or 'ps' (defaults to extension of output file)</para> </listitem> </varlistentry>
<varlistentry> <term> -s <widthxheight> (--scaling=<widthxheight>) </term>
<listitem> <para> (optional) set pixel scaling as pixels for each array x pixels for each gene, or 1x10 for one pixel per array column and 10 pixels for each gene row, if you wanted to have gene names in the output </para> </listitem> </varlistentry>
<varlistentry> <term> -a <headerIndexes> (--arrayHeaders=<headerIndexes>) </term>
<listitem> <para> (optional) Comma separated list of array annotations to include in output. Example: -a 0 to include the first row of array annotations in the cdt file. By default no annotations are included. </para> </listitem> </varlistentry>
<varlistentry> <term> -g <headerIndexes> (--geneHeaders=<headerIndexes>) </term>
<listitem> <para> (optional) Comma separated list of gene annotations to include in output. Example: -g 0 to include the first column of array annotations in the cdt file. By default no annotations are included. </para> </listitem> </varlistentry>
<varlistentry> <term> -h <pixels> (--atrHeight=<pixels>) </term>
<listitem> <para> (optional) Explicitly set the height of the array tree.</para> </listitem> </varlistentry>
<varlistentry> <term> -w <pixels> (--gtrWidth=<pixels>) </term>
<listitem> <para> (optional) Explicitly set the width of the gene tree. </para> </listitem> </varlistentry>
<varlistentry> <term> -b (--below) </term>
<listitem> <para> (optional) boolean argument, moves the array annotations below the array tree </para> </listitem> </varlistentry>
<varlistentry> <term> -c <value> (--contrast=<value>) </term>
<listitem> <para> (optional) Explicitly set the contrast </para> </listitem> </varlistentry>
<varlistentry> <term> -l <value> (--logcenter=<center>) </term>
<listitem> <para> (optional) Take log base 2(data value/<center>) before applying the contrast. Useful if dealing with raw count data. </para> </listitem> </varlistentry>
</variablelist>
<para> Note: Setting the contrast or logcenter values will modify the .jtv file and have a persistent effect when the file is reopened in java treeview </para>
</sect2>
<para>
For operating systems which have a command line, a file or url can be specified. The following example demonstrates how to load the example off the website from the command line:
<command>
java -jar TreeView.jar -r http://jtreeview.sourceforge.net/examples/DLim_color.cdt
</command>
</para>
</sect1>
<sect1 id ="ch2_persistence">
<title>Persistence</title>
<para>
In Java TreeView, some effort was made so that when you set settings once, they stay set even if the application is closed and reopened. Such things as colors, zoom settings, url settings, etc. have settings which are set on a per-document level. There are also presets for these settings which are stored globally. A particular preset can be designated the default, and is used when opening new documents.
</para>
<para>
The actual Presets and Settings are covered in <xref linkend="ch2_presets"/> and <xref linkend="ch2_settings"/> respectively. This section simply tells you where the settings and presets are stored.
</para>
<sect2>
<title>Document Settings</title>
<para>
All document settings are stored in a document-specfic .jtv file. These settings always take precendence over the presets. If you want to reset a document so that it uses all presets, just delete the .jtv file. At some point, a menu option to do this might get added.
</para>
</sect2>
<sect2 id="ch2_persistence_global">
<title>Global Settings</title>
<para>
Currently, there are two program-wide settings: the presets and the most recently used list of files. Program-wide settings are stored in a global configuration file whose location is platform dependant. To be exact, the following code is run to determine what file to use:
<programlisting>
private String globalConfigName()
{
String dir = System.getProperty("user.home");;
String fsep = System.getProperty("file.separator");;
String os = System.getProperty("os.name");;
String file;
if (os.indexOf("Mac") >= 0)
file = "JavaTreeView Config";
else if (fsep.equals("/"))
file = ".javaTreeViewXmlrc";
else if (fsep.equals("\\"))
file = "jtview.xml";
else
{
System.out.println("Could not determine sys type! using name jtview.cfg");
file = "jtview.xml";
}
return dir + fsep + file;
}
</programlisting>
On unix, this resolves to a .javaTreeViewXmlrc file in your home directory. On OSX, it resolves to a JavaTreeView Config in your home directory. On PC, it resolves to a jtview.xml file, although I'm not sure where windows considers your home directory to be.
</para>
</sect2>
</sect1>
<sect1 id ="ch2_presets">
<title>Presets</title>
<para>
Presets allow you to store commonly used settings for url links, colors, and other settings. This allows you to quickly apply commonly used settings to different documents. Moreover, the default preset is the setting which a new file gets. Presets are not specific to any document, which means they can be edited when no files are loaded.
</para>
<sect2 id="ch2_url_presets">
<title>Url Presets</title>
<figure id="UrlPresetsFigure">
<title>Url Presets Dialog</title>
<graphic fileref="figures/UrlPresets.gif" scalefit="0"/>
</figure>
<para>
Url Presets are the only presets which apply to many views, since url linking is a view-independant process. Java TreeView stores the url presets for arrays and genes separately, thus there are two sets of url presets, gene url presets and array url presets, which are treated essentially the same.
</para>
<para>
Java TreeView supports linking to external databases. In a Dendrogram or Karyoscope, clicking on a gene will cause a corresponding database page to be loaded in an external browser. Dendrogram also supports linking by array. Exactly what database page gets loaded depends on the Url Settings. The exact mechanism for load depends on the operating system, and can be a source of url bugs (see Chapter 3).
</para>
<para>
URL Presets allow you to store presets for databases you may wish genes and arrays to link to. There are several default presets which come with Java TreeView. You can delete or modify all of them, as well as add additional presets.
</para>
<para>
There is a special preset which disables linking. You can set this as the default url preset to avoid spurious linking.
</para>
</sect2>
<sect2 id="ch2_dendroview_color_presets">
<title>Dendrogram Color Presets</title>
<figure id="DColorPresetsFigure">
<title>Dendrogram Color Presets Dialog</title>
<graphic fileref="figures/DColorPresets.gif"/>
</figure>
<para>
This set of presets allow you to configure preset color schemes for the dendrogram component. It is also referred to as just color presets in TreeView, since there's no other views which could have color settings.
</para>
</sect2>
<sect2 id="ch2_karyoscope_coordinates_presets">
<title>Karyoscope Coordinates Presets</title>
<figure id="KCoordPresetsFigure">
<title>Karyoscope Coordinates Presets Dialog</title>
<graphic fileref="figures/KCoordPresets.gif"/>
</figure>
<para>
Stores a list of frequently used coordinates files. In addition to using a particular preset,it is also possible to parse the pcl or cdt file itself for the coordinates. Selecting "None" makes this the default behavior.
</para>
</sect2>
</sect1>
<sect1 id ="ch2_settings">
<title>Settings</title>
<para>
Java TreeView stores settings in a per-file manner. Thus, it is not possible to edit settings unless a file is loaded. Additionally, LinkedView stores many settings in a per-view manner. Specifically, only the url settings are document-wide; the rest are only per-view. Thus, you could have multiple dendrograms with different zoom and color settings, and multiple Karyoscopes with different averaging, all with the same underlying document.
</para>
<sect2 id="ch2_settings_url">
<title>Url Settings</title>
<figure id="UrlSettingsFigure">
<title>Url Settings Dialog</title>
<graphic fileref="figures/UrlSettings.gif"/>
</figure>
<para>
Url Settings allow you to select from one of the presets, or to directly edit the url string. There is a special substring of the url string, "HEADER", which is replaced by a partcular gene or url header which you select from the pulldown. The default is to either use the first column for a pcl, or the second column for a cdt. In the original Eisen layout, this is the YORF column.
</para>
<para>
There is also a checkbox which allows you to disable url linking entirely. Whether this box is checked initially is determined by the default url presets.
</para>
<para>
What exactly the url settings are used for depends on the view. Generally, clicking on a gene will cause the url for that gene to be loaded in an external browser.
</para>
</sect2>
<sect2 id="ch2_settings_dfont">
<title>Dendrogram Font Settings</title>
<figure id="DFontSettingsFigure">
<title>Dendrogram Font Settings Dialog</title>
<graphic fileref="figures/DFontSettings.gif" scalefit="0"/>
</figure>
<para>
Choose the font used to render gene or array names and annotation.
</para>
</sect2>
<sect2 id="ch2_settings_dcolor">
<title>Dendrogram Pixel Settings</title>
<figure id="DColorSettingsFigure">
<title>Dendrogram Pixel Settings Dialog</title>
<graphic fileref="figures/DPixelSettings.gif"/>
</figure>
<para>
This fairly complicated dialog has three major parts. The first part allows you to set the pixel scaling for the global and zoom views. The second part allows you to set the contrast. The third part allows you to set the color settings for the dendroview.
</para>
<para>
The pixel scaling determines how tall and wide the boxes are in both the zoom and global views. Basically, the larger the pixel scaling, the bigger the box. If the pixel scaling is less than one, the rows are averaged. This can make your data look better, since missing values disappear.
</para>
<para>
The contrast is the expression value which corresponds to fully induced. Any values greater than this will appear to be the induced color, and values between this and zero will appear to be a color between the zero and up color. The contrast is similarly used to color repressed boxes.
</para>
<para>
The color part allows you to set the up, down, zero and missing colors. You can double-click the boxes to get a color selection dialog, click a preset to load a color, and load and store color sets to files.
</para>
<para>
In LinkedView, a dendrogram must be active in order for this option to appear on the settings menu. Any settings made only apply to the active dendrogram.
</para>
</sect2>
<sect2 id="ch2_settings_coordinates">
<title>Karyoscope Coordinates Settings</title>
<figure id="KCoordSettingsFigure">
<title>Karyoscope Settings Dialog</title>
<graphic fileref="figures/KCoordSettings.gif"/>
</figure>
<para>
Coordinates may be parsed from the current file, if it is formatted properly, or parsed from an external file. The proper formatting is discussed in the File Formats section. The settings files provided with Java Treeview are nothing more than minimal PCL files, which contain no data but have annotation columns for chromosome, arm and position. The coordinates in an external files are matched up with the loci in the current file using either the first column, or if the first column has the header GID the second column. This gives the expected result when operating on PCL or CDT files, provided that the id column is unique.
</para>
<para>
Loci which do not have coordinates are not displayed. However, loci which have coordinates but not expression data associated with them do affect the extent of the chromosome displayed.
</para>
</sect2>
<sect2 id="ch2_settings_averaging">
<title>Karyoscope Averaging Settings</title>
<figure id="KAveSettingsFigure">
<title>Karyoscope Averaging Settings Dialog</title>
<graphic fileref="figures/KAveSettings.gif"/>
</figure>
<para>
Allows one to average genes with their genomic neighbors using one of several algortihms.
</para>
<variablelist>
<title>Karyoscope Averaging Methods</title>
<varlistentry> <term> No Averaging </term> <listitem> <para> Do not perform any averaging </para> </listitem> </varlistentry>
<varlistentry> <term> Nearest </term> <listitem> <para> Average the nearest k genes. The nearest may all be on one side; this method strictly finds the nearest. </para></listitem> </varlistentry>
<varlistentry> <term> Neighbor </term> <listitem> <para> Average the (k-1)/2 genes on the left and the (k-1)/2 genes on the right together with this one. If there are fewer than (k-1)/2 genes on a side, then fewer genes are averaged. </para></listitem> </varlistentry>
<varlistentry> <term> Interval </term> <listitem> <para> Average genes over an interval of k units. The unit is the unit which the coordinates of the genes are specified in. This is generally base pairs for the supplied coordinates files. </para></listitem> </varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1 id ="ch2_export">
<title>Export</title>
<para>
Most displays support output to image formats such as PNG, PPM and JPEG. The dendrogram view also supports export to vector-based postcript files. Additionally, it is possible to export subsets of data to tab-delimitted text, i.e. gene lists and cdts.
</para>
<sect2 id="ch2_export_text">
<title>Export of Selected Genes and Data to Tab-Delimited Text</title>
<para>
Selected genes and data can be exported to tab delimited text using "Export->Export to Text File...". The export dialog allows you to select which annotation columns you would like to include, whether you want to include the expression data, and whether you want to include a header line. The default is to print out a simple gene list with no header.
</para>
<para>
</para>
</sect2>
<sect2 id="ch2_export_dendrogram">
<title>Export of Dendrograms</title>
<figure id="DendroExportFigure">
<title>Dendrogram Export Dialog</title>
<graphic fileref="figures/DendroExport.gif"/>
</figure>
<para>
The dendrogram can be exported to either image files or editable Postscript for publication purposes. Postscript can be edited as objects in programs such as Adobe Illustrator, but can get prohibitively large with many genes and arrays. Image files are simply pixels, but can take up less space. To export to Postscript, select "Export->Export to Postscript" off the menubar. To export to images, select "Export->Export to Image". The following sections apply to both types of export. Although the above image is a screenshot of Postscript export, the only difference with image export is that there is no Bounding Box option. The purpose of the bounding box is discussed in <xref linkend="ch2_export_bbox"/>.
</para>
<sect3>
<title>Headers</title>
<para>
Both gene and array headers can be included in the exported image. The headers can be selected using the listboxes on the left side of the export dialog. Holding down the apple key on a mac, the Alt key on windows, or the Meta key on a unix machine will allow you to select multiple headers, or to deselect all headers.
</para>
<para>
Below the Listboxes is a checkbox which specifies whether the array names are to be output below the gene tree or not.
</para>
</sect3>
<sect3>
<title>Include Checkboxes</title>
<para>
The top half of the column in the middle of the dialog contains checkboxes which control exactly what data in included in the exported image.
</para>
<para>
The "Selection Only" checkbox determines whether just the selected genes and arrays or all genes and arrays are output.
</para>
<para>
The "Gene Tree" and "Array Tree" checkboxes determine whether or not the gene and array trees should be included.
</para>
<para>
The "Data Matrix" checkbox specifies whether or not the actual data matrix should be included.
</para>
</sect3>
<sect3>
<title>Size and Scaling</title>
<para>
The bottom half of the middle column has a few text fields.
</para>
<para>
The "x scale" and "y scale" boxes set the size in pixels of the boxes in the data matrix.
</para>
<para>
The "Total Size" boxes contain the total predicted size of the exported image in inches. These fields are not used by the export machinery, and editing them has no effect.
</para>
</sect3>
<sect3>
<title>Preview</title>
<para>
A preview of the exported image using the current settings is displayed on the right side of the dialog. If the preview takes a long time to render for some reason, it can be disabled with the checkbox below.
</para>
</sect3>
<sect3>
<title>Export To</title>
<para>
At the bottom of the export panel is a text field holding a suggested filename to hold the exported image. This field can be edited directly, or another file can be selected using the Browse button to the right.
</para>
</sect3>
</sect2>
<sect2 id="ch2_export_bbox">
<title>Bounding Box</title>
<para>
The Bounding Box is a part of the PostScript standard which informs postscript renderers of non-standard page sizes. If you have problems seeing all of an exported postscript image then including the bounding box or making it bigger might help. Due to the vagaries of font rendering, there is no easy way for me to predict how long a particular text string is going to be. I take a decent guess, but sometimes the text will get clipped.
</para>
<para>
Corel Draw, Adobe Photoshop, and Adobe Illustrator all support the Bounding Box, and will correctly render exported postscript from Java TreeView.
</para>
<para>
Adobe Distiller ignores the Bounding Box and produces incorrect output on some platforms.
</para>
</sect2>
</sect1>
<sect1 id="ch2_modes">
<title>Java Treeview Modes </title>
<para>
Java TreeView can be run in one of three modes which can be selected at the time time that a file is opened. Each window within a running instance of java treeview has it's own mode.
</para>
<itemizedlist>
<title>Java TreeView Modes </title>
<listitem> <para> Auto </para> </listitem>
<listitem> <para> Classic TreeView </para> </listitem>
<listitem> <para> LinkedView </para> </listitem>
<listitem> <para> KmeansView </para> </listitem>
</itemizedlist>
<para>
Auto is selected by default, and tries to do a good job of picking the best mode for a file. This should be sufficient for most users.
</para>
<para>
Classic TreeView is similar to the visualization program by Michael Eisen(<xref linkend="eisen"/>). It consists only of a dendrogram view of the data.
</para>
<para>
LinkedView is a generalization of TreeView. The idea is to present multiple linked visualizations of the same data which is present in TreeView. Initially, it shows a dendrogram view, but a Karyoscope View, ScatterView, as well as a new Alignment View can be show if the appropriate data is available.
</para>
<para>
KmeansView is a specialized version of TreeView for viewing the output of Michiel de la Hoon's Cluster 3.0 K-means clustering (<xref linkend="DeHoon"/> , http://bonsai.ims.u-tokyo.ac.jp/~mdehoon/software/) . This program is mostly similar to TreeView, although more k means-specific features could be added later.
</para>
</sect1>
<sect1 id="ch2_dendroview">
<title>Dendrogram</title>
<para>
The Dendrogram is one of three views which can be created in the LinkedView application. It is also the bulk of the TreeView application. The dendrogram has a lot of components, so I've gone ahead and given them names, so that the description of the features will not be confusing.
</para>
<figure id="DendrogramFigure">
<title>Dendrogram Component Layout</title>
<graphic fileref="figures/Dendrogram.gif"/>
</figure>
<sect2 id="ch2_dendroview_info">
<title>Informational Panels</title>
<para>
The status panel displays different information depending upon which component the mouse is over. The hint panel displays hints on how to use the component.
</para>
</sect2>
<sect2 id="ch2_dendroview_selection">
<title>Selection in Dendrogram</title>
<para>
Genes can be selected in the dendrogram by either clicking and dragging on the global pixels or by clicking on a node in the gene or array trees. A zoomed in view of the selected genes will appear in the Zoom Pixels pane, a yellow rectangle will appear on the global view indicating which genes are selected, and a blue rectangle will appear inside the yellow rectangle indicating which genes are currently visible in the Zoom Pixels pane.
</para>
<para>
Holding down the shift key while dragging on the global pixels will cause the exact range of arrays to be selected; by default all arrays are selected. Once a range is selected, pressing the arrow keys moves the selected rectangle around. Holding down the control key while pressing the arrow keys will grow and shrink the selected rectangle.
</para>
<para>
Clicking on a node in the array or gene trees will select all descendants of the node. The selected node and descendants will be colored in red. At this point, pressing the arrow keys will change which genes are selected. Up will select the parent of the current node, left and right will select the left and right children, and down will select the child with more descendants.
</para>
</sect2>
<sect2 id="ch2_dendroview_linking">
<title>
Url Linking in Dendrogram
</title>
<para>
Provided the url link settings (described in <xref linkend="ch2_settings_url"/>) are set appropriately, clicking on a gene annotation or an array name will cause a browser window to open with details on the gene or array.
</para>
</sect2>
<sect2 id="ch2_dendroview_name_color">
<title> Coloring Gene Names and Array Names </title>
<sect3 id="ch2_dendroview_namecolor_gene">
<title> Coloring Gene Names </title>
<para>
To add color to gene names, you must add a column named "FGCOLOR" before the GWEIGHT column.
Don't have a GWEIGHT column? Well, you need to add that immediately before your first array column. For each gene,
you need to specify a
<xref linkend="ch2_dendroview_namecolor_hex">hex code</xref>
for the color you want that gene's name to appear in.
Clearly, it is a good idea to write some kind of excel
function which computes it for you, or a perl script or something.
</para>
</sect3>
<sect3 id="ch2_dendroview_namecolor_array">
<title> Coloring Array Names </title>
<para>
To add color to array names, you must add a row named "FGCOLOR" before
the EWEIGHT row. If you don't have an "EWEIGHT" row, you must it
immediately before your first row of gene expression data. For each
column in the EWEIGHT row, you must specify a
<xref linkend="ch2_dendroview_namecolor_hex">hex code</xref>
for the color you want that array's name to appear in.
</para>
</sect3>
<sect3 id="ch2_dendroview_namecolor_hex">
<title> Hex Codes for Name Coloring </title>
<para>
Hex color codes are commonly used in html documents to specify colors. The format is as follows: #RRGGBB. The RR value is a hex number between 00 and FF which specifies how much red you want.
In other words,
<itemizedlist>
<listitem>
#FF0000 is pure, bright red
</listitem>
<listitem>
#00FF00 is pure, bright green
</listitem>
<listitem>
#0000FF is pure, bright blue
</listitem>
</itemizedlist>
You can of course mix values, and use lower values than FF for less
intense colors. you can either find colors by trial and error, or do a
quick web search for hex color codes. It is recommended that you edit
the cdt file in excel or write a perl script to add the color codes easily.
</para>
</sect3>
</sect2>
</sect1>
<sect1 id="ch2_statview">
<title>Scatterplot</title>
<para>
The Scatterplot is one of three views which can be created in the LinkedView application.
</para>
<para>
The scatterplot is a fairly simple component. Clicking and dragging will select the genes within the rectangle. Holding down Control will allow you to select multiple disjoint sets of genes. Moving the mouse around will tell you the X and Y coordinates of the mouse at any given point.
</para>
<figure id="ScatterplotFigure">
<title>Scatterplot Component Layout</title>
<graphic fileref="figures/Scatterplot.gif"/>
</figure>
<sect2 id="ch2_statview_create">
<title>Creating a Scatterplot</title>
<figure id="SPCreateFigure">
<title>Creating a Scatterplot</title>
<graphic fileref="figures/SPCreate.gif"/>
</figure>
<para>
To create a scatterplot, select "Analysis->Create Scatterplot..." from the menubar. You will then be confronted with the dialog in <xref linkend="SPCreateFigure"/>. The two pulldown menus determine what will be plotted on each axis. There options include the various arrays, the actual row number of the gene (called INDEX), and any annotation columns.
</para>
</sect2>
</sect1>
<sect1 id="ch2_karyoview">
<title>Karyoscope</title>
<figure id="KaryoscopeFigure">
<title>Karyoscope Component Layout</title>
<graphic fileref="figures/Karyoscope.gif"/>
</figure>
<para>
The Karyoscope is one of three views which can be created in the LinkedView application. It can be created by selecting Analysis->make Karyoscope in LinkedView. There are three major regions to the screen in the Karyoscope. The upper left panel is the parameter panel, the upper right panel is the info panel, and then lower part of the screen is the karyoscope proper.
</para>
<para>
There are several settings which apply to the Karyoscope which have been previously covered, including the Coordinates <xref linkend="ch2_settings_coordinates"/> and Averaging <xref linkend="ch2_settings_averaging"/> and Url <xref linkend="ch2_settings_url"/> Settings. The remaining features are covered here.
</para>
<sect2 id="ch2_karyoview_hint">
<title>Cursor hinting in Karyoscope</title>
<para>
Moving the mouse around the screen in the Karyoscope will cause information for the nearest gene to be displayed in the info panel. There will be a bright yellow line connecting the cursor to the nearset gene, so you know which one the info applies to. Clicking will activate the url link associated with the gene.
</para>
</sect2>
<sect2 id="ch2_karyoview_zoom">
<title>Zooming in Karyoscope</title>
<para>
The layout of the genes in the Karyoscope is determined by the Coordinates Settings and the Parameter Panel. The coordinates settings specify the chromosome, arm and position of each gene. The Parameter panel specifies exactly how to translate this information into an on-screen location.
</para>
<para>
The Pixels Per Map specifies how many pixels each position unit stands for. Making this number larger will stretch out the chromosomes.
</para>
<para>
The Pixels Per Value specifies how many pixels each value unit from the data matix gets. Making this number larger will make the bars higher in the karyoview.
</para>
<para>
The width and height specify the actual width and height of the canvas on which the karyoscope will be drawn. Making these values larger will space out the chromosomes without actually changing the spacing of the bars or their height.
</para>
<para>
Since setting these values manually is tedious, there are two additional ways to navigate, which are preferred for general use. Clicking the "Auto" button in the parameter panel will set the width and height to match the available screen real estate, and then scale the pixels per map and pixels per value appropriately. Selecting a rectanglar region in the Karyoscope causes the screen to zoom in on that location. Technically speaking, it causes the selected region to exactly fill the screen, increasing the pixel per map and pixels per value proportionately.
</para>
</sect2>
<sect2 id="ch2_karyoview_sel">
<title>Selection Highlighting in Karyoscope</title>
<para>
Although there is currently no way to select genes in the Karyoscope, genes which have selected in other views are visibly marked. The type of marking is determined by the settings in the Parameter Panel. You can choose the type and size in pixels of the highlighting from the pulldown menus to the right of "Highlight Selectd with:".
</para>
<variablelist>
<title>Karyoscope Selection Highlights</title>
<varlistentry> <term> None </term> <listitem> <para> Do not highlight selected genes. </para> </listitem> </varlistentry>
<varlistentry> <term> Circle </term> <listitem> <para> Highlight selected genes with a solid circle. </para></listitem> </varlistentry>
<varlistentry> <term> Disc </term> <listitem> <para> Highlight selected genes with a 1-pixel thick disk</para></listitem> </varlistentry>
</variablelist>
</sect2>
</sect1>
<sect1 id="ch2_alignment">
<title>Alignment</title>
<figure id="AlignmentFigure">
<title>Alignment Component Layout</title>
<graphic fileref="figures/alignment.gif"/>
</figure>
<para>
The Alignment view is very good for browing large alignments, even if you don't have any expression data for them. There is a utility, "aln2cdt.pl" available in the helper-scripts package from website to facilitate the viewing of clustalw alignments.
</para>
<para>
The alignment view relies up the existence of a column named "ALN" containing all the sequence data, with IUPAC symbols for the amino acids, and non-symbol spacer characters such as dashes designating the gaps. The alignment view will render the matching sequence into a dendrogram-view like two-level display, complete with gene tree.
</para>
<para>
There are two PERL scripts in the helper-scripts package available from the website which should aid in the usage of alignment view, aln2cdt.pl which will create a cdt with the appropriate columns, and potentially a gtr fie if there is a dnd file available, and appendPCL.pl, which will allow you to append expression data in the pcl format to the cdt alignment file.
</para>
<para>
For a detailed howto to assist in making your own alignments, please see the fgf receptor example on the website (http://jtreeview.sourceforge.net)
</para>
</sect1>
<sect1 id="ch2_file">
<title>File Formats</title>
<figure id="FilesFigure">
<title>File Formats in Java TreeView</title>
<graphic fileref="figures/Files.gif"/>
</figure>
<para>
Java TreeView uses two file formats to represent data, both of which are tab-delimited text. The third file format is an xml formatted file which holds settings information for persistence (see <xref linkend="ch2_persistence"/>).
</para>
<itemizedlist>
<title>Java TreeView File Formats</title>
<listitem> <para> Generalized CDT File (.cdt and .pcl)</para> </listitem>
<listitem> <para> Tree File (.atr and .gtr)</para> </listitem>
<listitem> <para> XML Settings File (.jtv and global settings file, see <xref linkend="ch2_persistence_global"/>) </para> </listitem>
</itemizedlist>
<para>
The use of tab-delimitted text makes these files easy to edit in spreadsheet programs such as Excel, as well as manipulate with other programs.
</para>
<sect2 id="ch2_file_min">
<title>Minimal File Requirements</title>
<para>
In order to view data in Java Treeview, there must be a Generalized CDT file. All other files are optional. The minimal GCDT file has a header row which contains the name of the unique id column, the name of the annotation column, and the names of the experiments, followed by one or more rows of per-gene data. Such a file can be created in Excel, and then saved as tab-delimited text.
</para>
</sect2>
<sect2 id="ch2_file_cdt">
<title>Generalized CDT File</title>
<figure id="gcdtFigure">
<title>Screenshot of Generalized CDT file in Excel</title>
<graphic fileref="figures/gcdt.gif" format="GIF"/>
</figure>
<para>
The generalized CDT file is a straightforward generalization of the CDT and PCL file formats. In addition to expression data, this file can contain additional per-gene and per-array annotation in columns before the GWEIGHT column or in rows before the EWEIGHT row. For backwards compatibility, if the GWEIGHT column is missing Java TreeView assumes the data starts on the third column, or the fourth column if the first column has the header GID. Similarly, if the EWEIGHT row is missing Java TreeView assumes the data starts on the second row. As a general practice, it is a good idea to include the GWEIGHT column and EWEIGHT row. </para>
<para>
In addition, Java TreeView does special things with the first two or three columns. If the first column is GID, the second and third are assumed to be the unique ID and NAME columns. If the first column is anything other than GID, the first and second columns are assume to be the unique ID and NAME columns. The unique ID is used for gene list export, and for some matching purposes when necessary. The NAME column is displayed as per-gene annotation in the dendrogram and other views.
</para>
<para>
There are annotation column names with special meaning to Java TreeView, and are used for coordinates or to set the color of gene names. These special columns are described after the basic file format, and should be avoided as annotation names unless you want that specific behavior.
</para>
<sect3 id="ch2_file_cdt_all">
<title>Formal Description of Generalized CDT File</title>
<para>
A generalized CDT file is a tab-delimitted text file with the following specifications. The leftmost column and topmost row are reserved for headers. The file must contain at least two columns followed by a column with the header GWEIGHT, and at least one row followed by a row with the header EWEIGHT. Any rows and columns before the EWEIGHT and GWEIGHT are treated as annotation, and any after are treated as data. If a data value is missing or cannot be converted into a number, it is treated as not found. The annotation is kept in string form, and parsed by views as appropriate.
</para>
</sect3>
<sect3 id="ch2_file_cdt_colheaders">
<title> Headers With Special Meaning </title>
<para> Some headers have special meaning to particular displays. This is a catalog of headers and their meaning to particular displays.
</para>
<table><title>CDT Column Headers With Special Meaning </title>
<tgroup cols='3' align='left' colsep='1' rowsep='1'>
<thead>
<row>
<entry> Header</entry>
<entry> Display </entry>
<entry> Meaning </entry>
</row>
</thead>
<tbody>
<row>
<entry> FGCOLOR </entry>
<entry> Dendrogram </entry>
<entry> Color in which to render text for particular gene</entry>
</row>
<row>
<entry> BGCOLOR </entry>
<entry> Dendrogram </entry>
<entry> Color in which to render background for particular gene </entry>
</row>
<row>
<entry> LEAF</entry>
<entry> Dendrogram</entry>
<entry> The TIME at which this branch should be terminated. Used to indicate apopotosis in cell lineages, as well as phyogenetic distance in sequence alignments. See also TIME header for tree files.</entry>
</row>
<row>
<entry>CHROMOSOME</entry>
<entry>Karyoscope</entry>
<entry>The chromosome on which the gene is located, a natural number</entry>
</row>
<row>
<entry>ARM</entry>
<entry>Karyoscope</entry>
<entry>The arm of the chromosome, either "L", "R", or "1" meaning left, "2" meaning right.</entry>
</row>
<row>
<entry>POSITION</entry>
<entry>Karyoscope</entry>
<entry>The distance of the spot from the centromere in arbitrary units</entry>
</row>
<row>
<entry> GROUP</entry>
<entry> Dendrogram</entry>
<entry> Defines a partitioning of genes. The current (1.0.13) implementation of Dendrogram will insert a gap every time the GROUP value changes.
At some point in the future, I may make it so that all genes with identical GROUP values are put in one cluster. </entry>
</row>
</tbody>
</tgroup>
</table>
<table><title>CDT Row Headers With Special Meaning </title>
<tgroup cols='3' align='left' colsep='1' rowsep='1'>
<thead>
<row>
<entry> Header</entry>
<entry> Display </entry>
<entry> Meaning </entry>
</row>
</thead>
<tbody>
<row>
<entry> FGCOLOR </entry>
<entry> Dendrogram </entry>
<entry> Color in which to render text of array name</entry>
</row>
<row>
<entry> BGCOLOR </entry>
<entry> Dendrogram </entry>
<entry> Color in which to render background of array name </entry>
</row>
<row>
<entry> GROUP</entry>
<entry> Dendrogram</entry>
<entry> Defines a partitioning of arrays.
The current (1.0.13) implementation of Dendrogram will insert a gap every time the GROUP value changes.
At some point in the future, I may make it so that all rows with identical GROUP values are put in one cluster. </entry>
</row>
</tbody>
</tgroup>
</table>
</sect3>
</sect2>
<sect2 id="ch2_file_karyoscope">
<title> Coordinates Files for Karyoscope </title>
<para>
In order for Karyoscope to correctly display gene expression data by chromosome location, it needs to know where exactly to position each unique ID. To this end, it looks for annotation columns with the names "CHROMOSOME", "ARM" and "POSITION", which designate the chromosome, arm and position of a particular gene. "CHROMOSOME" should be a natural number indicating which chromosome the unique ID is on, "ARM" should be either "R" or "L" indicating the arm, and "POSITION" should be a real number indicating how far from the centromere the unique ID is. There is really no restriction on the units for position; bp or kb are natural choices.
</para>
<para>
A coordinates file is simply a generalized CDT file which has such columns. The coordinates files supplied with Java TreeView do not contain any expression data; they consist entirely of the unique id column, the chromosome, arm and position columns, and the required GWEIGHT column. However, any other generalized CDT file with the correct columns can serve as a coordinates file.
</para>
</sect2>
<sect2 id="ch2_file_gtr_atr">
<title>Tree Files</title>
<figure id="gtrFigure">
<title>Screenshot of a Tree File in Excel</title>
<graphic fileref="figures/gtr.gif" format="GIF"/>
</figure>
<para>
Traditionally, tree files have no header, and consist of four columns. Each row represents a node in either a gene tree, for the GTR file, or an array tree in the ATR file. For each row, the first column is the identifier of the node, the second column is the left child of the node, the third column is the right child, and the fourth column is the correlation between the left and right child. This fourth column is used by Java TreeView to determine the height of the node when rendering a tree.
</para>
<para>
By analogy to the CDT file, the tree files have been generalized in Java Treeview. Generalized tree files have a header line identifying the different columns. All generalized GTR/ATR files must have NODEID as the name of the first column. Tree files with any other string in the first row of the first column will be treated as legacy tree files. All of the rows will be treated as defining nodes, and the headers will be assigned the headers "NODEID", "LEFT", "RIGHT" and "CORRELATION". The meaning of these headers, and others, are described in <xref linkend="ch2_file_tr_colheaders"/>.
</para>
<sect3 id="ch2_file_tr_colheaders">
<title> Tree File Headers </title>
<para> All tree file headers can be displayed as node annotation in the dendrogram view. After loading a file in java treeview, select "Settings->Annotations..." to open the annotations dialog. Click "Gene Nodes" or "Array Nodes" and then select the desired headers. If you then mouse over the tree, the annotation for the select node will appear in the info pane.
</para>
<para>
Headers that have meaning beyond being used as annotation are described here.
</para>
<table><title>GTR/ATR Column Headers With Special Meaning </title>
<tgroup cols='3' align='left' colsep='1' rowsep='1'>
<thead>
<row>
<entry> Header</entry>
<entry> Display </entry>
<entry> Meaning </entry>
</row>
</thead>
<tbody>
<row>
<entry> NODEID</entry>
<entry> Dendrogram</entry>
<entry> The value in this column serves as the identifier for the node. It must be unique.</entry>
</row>
<row>
<entry> LEFT</entry>
<entry> Dendrogram</entry>
<entry> The NODEID of the left child of this node. If the left child is not an internal node but a gene from the CDT file, the value should be the gene identifer, i.e. the value in the first column of the CDT file.</entry>
</row>
<row>
<entry> RIGHT</entry>
<entry> Dendrogram</entry>
<entry> The NODEID of the left child of this node, with leaf nodes handled as for the LEFT column.</entry>
</row>
<row>
<entry> CORRELATION</entry>
<entry> Dendrogram</entry>
<entry> The correlation value for this node. If this column appears, the implication is that the nodes in the tree should be arranged with a value of -1 most distal from the data matrix, with a value of 1 immediately proximal. This column and the TIME column should not appear in the same tree file.</entry>
</row>
<row>
<entry> TIME</entry>
<entry> Dendrogram</entry>
<entry> <para>The time at which this node branched. Java Treeview is used by some to display cell lineages. For this purpose, it is useful to arrange branches in the tree by time at which the cell divided. This column is also used for indicating branching in sequence alignments, although TIME means phyogenetic divergence time in that context.</para><para> If this column appears, the implication is that the nodes in the tree should be arrange with a value of 0 most distal from the data matrix, and that the node with maximum time value should be immediately adjacent to the data. </para></entry>
</row>
<row>
<entry> NODECOLOR</entry>
<entry> Dendrogram</entry>
<entry> <para>The color value for this node. In the abscence of this column, the dendrogram is rendered black when not selected. Even when this column appears, selected nodes are rendered red.</para></entry>
</row>
</tbody>
</tgroup>
</table>
</sect3>
</sect2>
</sect1>
</chapter>
<chapter id="ch3">
<title>Troubleshooting</title>
<sect1 id="ch3_install">
<title>Installation Problems</title>
<sect2>
<title>Unzipping Distribution</title>
<para>
Some users have reported problems unzipping the distribution. The problems encountered range from all files getting dumped in the root directory to not being able to unzip the distribution at all. This stems from my approach of using a single, relatively platform independant format, the .tar.gz format. The solution is to just use an unzipping program which handles .tar.gz properly.
</para>
<variablelist>
<title>Compatible Unzipping Programs</title>
<varlistentry>
<term> GNU tar/ GNU gunzip </term>
<listitem> <para> These are the command line tools I use to create the distribution. They are ubiquitously available on all unix and unix-like operating systems, including Mac OS X, if you know where to look. </para></listitem>
</varlistentry>
<varlistentry>
<term> Winzip </term>
<listitem> <para> This is the recommended unzipper on the windows platform. I have heard reports that it doesn't do the right thing if you simply double-click the .tar.gz file. Instead, you may need to right-click, and select the "Expand to folder TreeView-blah" option.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term> Stuffit on Mac OS 9 </term>
<listitem> <para>
This is the recommended unzipper for Mac OS 9. This should definately work on the specially packaged OS 9 distribution, which comes as a .sit file.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term> Stuffit on Mac OS X </term>
<listitem> <para>
As far I know, this should work fine. Just make sure you download the correct (.tar.gz) distribution of treeview.
</para>
</listitem>
</varlistentry>
</variablelist>
<variablelist>
<title>Incompatible Unzipping Programs</title>
<varlistentry>
<term> Stuffit on Windows </term>
<listitem> <para>
This is known not to work in at least some cases. If it does not make a directory structure like <xref linkend="DistCont"/>, then just go get winzip.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>
<sect2>
<title>Running Launcher Files</title>
<para>
The most common problem I have seen is that java is not installed on the system. The symptom is that nothing happens, or something confusing happens, when you doubleclick the launcher. The solution is to install a recent version of the java runtime environment. For Windows or Unix systems, this involves a quick download from the sun website,
</para>
<blockquote>
<para>
<ulink url="http://java.sun.com/j2se/">
http://java.sun.com/j2se/
</ulink>
</para>
</blockquote>
<para>
Mac OSX comes with java standard. For Mac OS9, you may need to get the Mac OS Runtime for Java (MRJ) from the apple website,
</para>
<blockquote>
<para>
<ulink url="http://developer.apple.com/macos/macos9.html">
http://developer.apple.com/macos/macos9.html
</ulink>
</para>
</blockquote>
</sect2>
</sect1>
<sect1 id="ch3_url">
<title>Url Related Issues</title>
<sect2 id="ch3_url_win">
<title> Url Linking in Windows</title>
<para>
Clicking on a gene in the dendrogram and karyoscope views is supposed to open a web
browser window to a relevant database entry. Unfortunately, there is no standard way
to do this in windows. When the linking is bad, typically clicking a gene name
launches a DOS terminal window where the window's title
equivalent to the URL, but no browser window comes up.
</para>
<para>
I have tried several things, but nothing works for all
versions, and if you are not lucky you will be using one for which the current incarnation does not. Luckily it is easily fixed. Go to start->execute.. and entry "cmd" to get a command line shell. Try the following variants to see how your version of windows likes to do linking:
</para>
<orderedlist>
<listitem><para>start http://www.google.com</para></listitem>
<listitem><para>cmd /c start http://www.google.com</para></listitem>
<listitem><para>start "http://www.google.com"</para></listitem>
<listitem><para>cmd /c start "http://www.google.com"</para></listitem>
</orderedlist>
<para>
By default, #2 is used in version 1.0.5. If you require something else, you can enter the entire command as the URL string in java treeview, i.e.
<computeroutput>
start http://genome-www4.stanford.edu/cgi-bin/SGD/locus.pl?locus=HEADER
</computeroutput>
Including the quotes should guard against forbidden characters in the HEADER, as explained in my code:
<computeroutput>
// The problem with the above is that special shell characters, notably & | ( ) < > ^ ,
// need to be escape, or put in double quotes (which can be doubled to escape them,
// but I don't think that's necessary.)
</computeroutput>
</para>
</sect2>
<sect2 id="ch3_url_osx">
<title>Url Linking on OSX</title>
<para>
When OSX tries to open a bad url, sometimes something breaks in the native code. If you run the application from the command line, you will see errors like the following:
</para>
<para>
<computeroutput>
2003-03-18 21:41:23.197 java[3492] LSOpenCFURLRef() returned -50 for URL (null) in OsX
</computeroutput>
</para>
<para>
This output indicates that an underlying C function failed. The java thread running this just dies without throwing an exception, so there's no way for me to detect it. The symptoms on the user level is that clicking has no effect. If you think this might be the case, double check your Url settings, in particular the preview, and make sure that the url is well formed.
</para>
</sect2>
</sect1>
<sect1 id="ch3_export">
<title>Export Problems</title>
<sect2 id="ch3_export_data">
<title> Export of Gene Summary </title>
<para>
Problem: I want to display things that are similar by Genename. This
fucntion is present in your program when you select genes that have the same annotation(Analysis->Find...) , and then show a summary
of these genes (Analysis->Summary Window...). Is there any way to save an image from the summary window?
</para>
<para>
Solution: There may be a way in the future to directly export from the summary window. However, in the meantime you can export data for the selected genes to form a valid CDT file, which can then be opened with Java Treeview and used to form images, etc.
</para>
<para>
First, Select the genes using the annotation search as you described. Then, use Export->Data... to export the data just for the selected genes. If you accept all the defaults, it will make a well-formed CDT file that you can then reopen and export to an image.
</para>
</sect2>
<sect2 id="ch3_export_ps_giant">
<title> Giant Postscript Files </title>
<para>
If you output a giant Postscript file and then try to open with adobe illustrator and get the error "The MPS parser is unable to parse the file" it most likely means that the postscript file created by java treeview requires a bigger canvas to display than the maximum canvas size of illustrator. I don't have a good answer on how to fix this, other than lowering the xscale and yscale.
</para>
</sect2>
<sect2 id="ch3_export_gif_giant">
<title> Giant GIF Files </title>
<para>
Symptom: Trying to export some big clusters with names and dendogram to GIF, but
continually getting an 'Out of memory' error. Able to export
results only if you scale down the cluster image (i.e. using low X & Y scale
values).
</para>
<para>
Solution: The gif encoder in java treeview sucks. Use Export->Export to bitmap... (ppm) format and then convert to gif with some software with a better gif encoder. "GraphicConverter" which comes by default with Mac OS X works well. There are also various windows options, such as "Image Transformer", which is shareware.
</para>
<para>
Note- this section is deprecated, as the GIF encoder is no longer used.
</para>
</sect2>
</sect1>
<sect1 id="ch3_misc">
<title>Miscellaneous Problems</title>
<sect2 id="ch3_misc_memory">
<title>Out of Memory</title>
<para>
Running out of memory is tough to detect and deal with in java, since most of memory allocation is hidden from the java developer. If you are working with large data sets, or on a computer with a small amount of RAM, it is easy to run out of memory because java is not very memory efficient, and more importantly most Java Virtual Machines (JVMs) are too stupid to grow to take up more memory than some default arbitrary maximum.
</para>
<para>
There are only two possible solutions to the out of memory problem in java. Either I write a platform-specific launcher for each platform that informs the JVM of the extra ram, or you run the application from the command line and tell the JVM about the RAM yourself. Currently, only the latter is supported.
</para>
<para>
To run the application from the command line, first get to a terminal. This should be obvious to someone on a unix machine. On Mac OS X, run the Terminal program which is in the utilities folder. On Windows, select Start->run... and then type <command> cmd <return> </command>. Curously, on Mac OS 9, this problem does not seem to arise. I suspect this is because the OS 9 JVM is smart enough to use the per-file memory settings.
</para>
<para>
Next, switch to the directory containing the java treeview distribution (using either cd or chdir or whatever), and then type
</para>
<para>
<command> java -Xmx###m -jar TreeViewLauncher.jar </command>
</para>
<para>
Where the number following Xmx is the maximum amount of memory in megabytes that the JVM is to use. You may as well specify the available system RAM; the JVM won't take it unless it needs it. Also, make sure that you're in the directory with the jar files so that the command will work. Check out <xref linkend="MemComFigure"/> for an example.
</para>
<figure id="MemComFigure">
<title>Screenshot of Running Java TreeView from the Command Line with 800 Megs of RAM</title>
<graphic fileref="figures/MemCom.gif"/>
</figure>
</sect2>
<sect2 id="ch3_misc_anno">
<title> Displaying Annotations </title>
<para>
Question: I have two columns before I get to my data, the first being ID(containing accesion number), and the second is "NAME" (containing Unigene ID). The data follows in each column after these two. When treeview loads it up, it only displays the 2nd column "NAME", instead of both columns data when highlighting aspects of the cluster. Is this right?
</para>
<para>
Answer: Yes. TreeView used to display all annotations, but it annoyed some people.
To specify the ones you want, use Settings->Annotations...
</para>
</sect2>
<sect2 id="ch3_misc_systembrowser">
<title>Switching browsers</title>
<para>
On the windows and mac platforms, the system default browser is used to open urls. In order to change it, you must muck around with your control panel.
</para>
<para>
On unix, there is no notion of a system default web browser, so I just hardcoded in a call to netscape. If you don't have netscape, or you want to use another browser, just alias netscape to that other browser from the shell in which you're launching java treeview. Something like the following should work:
</para>
<para>
<command> alias netscape mosaic </command>
</para>
<para>
<command> java -jar TreeViewLauncher.jar </command>
</para>
<para>
If the above doesn't work, then the JVM is spawning a sub-shell to run the call to netscape in. In that case, you need to add the alias to your .profile or equivalent, or perhaps just add a link to your preferred browser such as the following:
</para>
<para>
<command> ln -s /usr/bin/mosaic netscape </command>
</para>
</sect2>
<sect2 id="ch3_misc_treeoddity">
<title> Strange drawing of dendrogram branch lines </title>
<graphic fileref="figures/CuticleCollagensCE_H.gif"/>
<para>
Some people have been thrown off guard by dendrograms such as the one depicted above. The strange appearance of the tree, where the parent node of dpy-8 and col-67 has a lower correlation than its parent, is a correct representation of the clustering algorithm used to generate the tree. Indeed, the correlation between the two genes is .889, whereas the correlation of the next join up is .908. This simply means that the average of dpy-8 and col-67 is more similar to the next node up than they are to each other (and, by implication, than either dpy-8 or col-67 alone are to the next node up).
</para>
<para>
If such behavior disturbs you, please use a different correlation metric, such as complete linkage. Certain other visualization programs, such as the original Treeview, artificially force parent nodes to have a correlation equal to or less than that of their children, but I choose to accurately represent the information in the GTR and ATR files.
</para>
</sect2>
<sect2 id="ch3_misc_osx_buserror">
<title> Crashing on Mac Os X </title>
<para>
Typical symptoms are the application seems to lock up after a fairly innocuous user action, and then the application suddenly quits. If you ware running from the command line, you may see a report of a "bus error" or "segmentation fault". Running "Console", an application that comes with OSX and can be found in the Utilities subfolder of the Applications folder, should reveal something like
</para>
<programlisting>
May 18 11:27:19 Alok-Saldanhas-Computer /Users/aloksaldanha/Desktop/code/java/LinkedView/bundle/TreeView/Java TreeView.app/Contents/MacOS/JavaApplicationStub: An error report file has been saved as /Users/aloksaldanha/Library/Logs/JavaNativeCrash_pid2964.log. Please refer to the file for further information.
May 18 11:27:21 Alok-Saldanhas-Computer crashdump: Crash report written to: /Users/aloksaldanha/Library/Logs/CrashReporter/JavaApplicationStub.crash.log
May 18 11:28:03 Alok-Saldanhas-Computer WindowServer[188]: Reserved range exhausted. (0xbbf4b000 to 0xbc1d1000 goes out of bounds)
May 18 11:28:10 Alok-Saldanhas-Computer /usr/bin/java: An error report file has been saved as /Users/aloksaldanha/Library/Logs/JavaNativeCrash_pid2971.log. Please refer to the file for further information.
</programlisting>
<para>
as opposed to
</para>
<programlisting>
[error] apple.awt.EventQueueExceptionHandler Caught Throwable :
[error] java.lang.ArrayIndexOutOfBoundsException: Array index out of range: 52133
[error] at org.gjt.sp.jedit.Buffer.getLineOfOffset(Unknown Source)
[error] at xml.TagHighlight.updateHighlight(Unknown Source)
[error] at xml.TagHighlight.access$000(Unknown Source)
[error] at xml.TagHighlight$1.actionPerformed(Unknown Source)
[error] at javax.swing.Timer.fireActionPerformed(Timer.java:271)
</programlisting>
<para>
In general, if Java Treeview crashes it is advisable to check the console for messages. The former indicates a bug in the JVM, not in Java Treeview, which at some point I should write up as a formal bug report. Something like the latter indicates a bug in Java Treeview, although this particular instance was another java program. There are at least two causes for the JVM crashes, one of which is somewhat understood. If you are launching Java Treeview by double-clicking a jar file, and you have multiple views open, you could be triggering a bug in the Mac OSX Java libaries related to font rendering. Either run Java Treeview with the following command line:
</para>
<programlisting>
java -Xmx500m -Dapple.awt.TextAntialiasing=false Treeview.jar
</programlisting>
<para>
or just use the double-clickable application that comes in the .dmg download.
</para>
<para>
Java Treeview may also crash when you select entries from the most recent file listing. It is not clear what causes this or how to fix it at the moment.
</para>
</sect2>
</sect1>
</chapter>
<bibliography>
<biblioentry id="eisen">
<abbrev>Eisen 1998</abbrev>
<biblioset relation="journal">
<title>Proceedings of the National Academy of Science, U S A</title>
<pubdate>1998 Dec 8</pubdate>
<volumenum>95</volumenum> <issuenum>25</issuenum>
<pagenums>14863-8</pagenums>
</biblioset>
<biblioset relation="article">
<title>Cluster analysis and display of genome-wide expression patterns</title>
<authorgroup>
<author>
<firstname>MB</firstname>
<surname>Eisen</surname>
</author>
<author>
<firstname>PT</firstname>
<surname>Spellman</surname>
</author>
<author>
<firstname>PO</firstname>
<surname>Brown</surname>
</author>
<author>
<firstname>D</firstname>
<surname>Botstein</surname>
</author>
</authorgroup>
</biblioset>
</biblioentry>
<biblioentry id="rees">
<abbrev>Lin 2002</abbrev>
<biblioset relation="journal">
<title>Genome Biology</title>
<pubdate>2002 May 14</pubdate>
<volumenum>3</volumenum> <issuenum>6</issuenum>
<pagenums>RESERACH0026</pagenums>
</biblioset>
<biblioset relation="article">
<title>Physical mapping of genes in somatic cell radiation hybrids by comparative genomic hybridization to cDNA microarrays.</title>
<authorgroup>
<author>
<firstname>JY</firstname>
<surname>Lin</surname>
</author>
<author>
<firstname>JR</firstname>
<surname>Pollack</surname>
</author>
<author>
<firstname>FL</firstname>
<surname>Chou</surname>
</author>
<author>
<firstname>CA</firstname>
<surname>Rees</surname>
</author>
<author>
<firstname>AT</firstname>
<surname>Christian</surname>
</author>
<author>
<firstname>JS</firstname>
<surname>Bedford</surname>
</author>
<author>
<firstname>PO</firstname>
<surname>Brown</surname>
</author>
<author>
<firstname>MH</firstname>
<surname>Ginsberg</surname>
</author>
</authorgroup>
</biblioset>
</biblioentry>
<biblioentry id="DeHoon">
<abbrev>De Hoon 2002</abbrev>
<biblioset relation="journal">
<title>Genome Informatics</title>
<pubdate>2002</pubdate>
<issuenum>13</issuenum>
<pagenums>250-251</pagenums>
</biblioset>
<biblioset relation="article">
<title>Open source clustering software</title>
<authorgroup>
<author>
<firstname>M</firstname>
<surname>De Hoon</surname>
</author>
<author>
<firstname>S</firstname>
<surname>Imoto</surname>
</author>
<author>
<firstname>S</firstname>
<surname>Miyano</surname>
</author>
</authorgroup>
</biblioset>
</biblioentry>
</bibliography>
</book>
|