2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.appletgui;
23 import jalview.analysis.Conservation;
24 import jalview.analysis.TreeModel;
25 import jalview.api.AlignViewportI;
26 import jalview.datamodel.Sequence;
27 import jalview.datamodel.SequenceGroup;
28 import jalview.datamodel.SequenceI;
29 import jalview.datamodel.SequenceNode;
30 import jalview.schemes.ColourSchemeI;
31 import jalview.schemes.ColourSchemeProperty;
32 import jalview.schemes.UserColourScheme;
33 import jalview.util.Format;
34 import jalview.util.MappingUtils;
35 import jalview.viewmodel.AlignmentViewport;
37 import java.awt.Color;
38 import java.awt.Dimension;
40 import java.awt.FontMetrics;
41 import java.awt.Graphics;
42 import java.awt.Panel;
43 import java.awt.Point;
44 import java.awt.Rectangle;
45 import java.awt.ScrollPane;
46 import java.awt.event.MouseEvent;
47 import java.awt.event.MouseListener;
48 import java.awt.event.MouseMotionListener;
49 import java.util.Enumeration;
50 import java.util.Hashtable;
51 import java.util.List;
52 import java.util.Vector;
54 public class TreeCanvas extends Panel implements MouseListener,
59 ScrollPane scrollPane;
63 public static final String PLACEHOLDER = " * ";
67 boolean fitToWindow = true;
69 boolean showDistances = false;
71 boolean showBootstrap = false;
73 boolean markPlaceholders = false;
85 Hashtable nameHash = new Hashtable();
87 Hashtable nodeHash = new Hashtable();
89 SequenceNode highlightNode;
93 public TreeCanvas(AlignmentPanel ap, ScrollPane scroller)
98 scrollPane = scroller;
99 addMouseListener(this);
100 addMouseMotionListener(this);
103 PaintRefresher.Register(this, av.getSequenceSetId());
106 public void treeSelectionChanged(SequenceI sequence)
108 SequenceGroup selected = av.getSelectionGroup();
109 if (selected == null)
111 selected = new SequenceGroup();
112 av.setSelectionGroup(selected);
115 selected.setEndRes(av.getAlignment().getWidth() - 1);
116 selected.addOrRemove(sequence, true);
119 public void setTree(TreeModel tree2)
122 tree2.findHeight(tree2.getTopNode());
124 // Now have to calculate longest name based on the leaves
125 Vector<SequenceNode> leaves = tree2.findLeaves(tree2.getTopNode());
126 boolean has_placeholders = false;
129 for (int i = 0; i < leaves.size(); i++)
131 SequenceNode lf = leaves.elementAt(i);
133 if (lf.isPlaceholder())
135 has_placeholders = true;
138 if (longestName.length() < ((Sequence) lf.element()).getName()
141 longestName = TreeCanvas.PLACEHOLDER
142 + ((Sequence) lf.element()).getName();
146 setMarkPlaceholders(has_placeholders);
149 public void drawNode(Graphics g, SequenceNode node, float chunk,
150 double scale, int width, int offx, int offy)
157 if (node.left() == null && node.right() == null)
161 double height = node.height;
162 double dist = node.dist;
164 int xstart = (int) ((height - dist) * scale) + offx;
165 int xend = (int) (height * scale) + offx;
167 int ypos = (int) (node.ycount * chunk) + offy;
169 if (node.element() instanceof SequenceI)
171 SequenceI seq = (SequenceI) node.element();
173 if (av.getSequenceColour(seq) == Color.white)
175 g.setColor(Color.black);
179 g.setColor(av.getSequenceColour(seq).darker());
185 g.setColor(Color.black);
188 // Draw horizontal line
189 g.drawLine(xstart, ypos, xend, ypos);
191 String nodeLabel = "";
192 if (showDistances && node.dist > 0)
194 nodeLabel = new Format("%-.2f").form(node.dist);
198 int btstrap = node.getBootstrap();
203 nodeLabel = nodeLabel + " : ";
205 nodeLabel = nodeLabel + String.valueOf(node.getBootstrap());
208 if (!nodeLabel.equals(""))
210 g.drawString(nodeLabel, xstart + 2, ypos - 2);
213 String name = (markPlaceholders && node.isPlaceholder()) ? (PLACEHOLDER + node
214 .getName()) : node.getName();
215 FontMetrics fm = g.getFontMetrics(font);
216 int charWidth = fm.stringWidth(name) + 3;
217 int charHeight = fm.getHeight();
219 Rectangle rect = new Rectangle(xend + 10, ypos - charHeight,
220 charWidth, charHeight);
222 nameHash.put(node.element(), rect);
224 // Colour selected leaves differently
225 SequenceGroup selected = av.getSelectionGroup();
227 && selected.getSequences(null).contains(node.element()))
229 g.setColor(Color.gray);
231 g.fillRect(xend + 10, ypos - charHeight + 3, charWidth, charHeight);
232 g.setColor(Color.white);
234 g.drawString(name, xend + 10, ypos);
235 g.setColor(Color.black);
239 drawNode(g, (SequenceNode) node.left(), chunk, scale, width, offx,
241 drawNode(g, (SequenceNode) node.right(), chunk, scale, width, offx,
244 double height = node.height;
245 double dist = node.dist;
247 int xstart = (int) ((height - dist) * scale) + offx;
248 int xend = (int) (height * scale) + offx;
249 int ypos = (int) (node.ycount * chunk) + offy;
251 g.setColor(node.color.darker());
253 // Draw horizontal line
254 g.drawLine(xstart, ypos, xend, ypos);
255 if (node == highlightNode)
257 g.fillRect(xend - 3, ypos - 3, 6, 6);
261 g.fillRect(xend - 2, ypos - 2, 4, 4);
264 int ystart = (int) (((SequenceNode) node.left()).ycount * chunk)
266 int yend = (int) (((SequenceNode) node.right()).ycount * chunk)
269 Rectangle pos = new Rectangle(xend - 2, ypos - 2, 5, 5);
270 nodeHash.put(node, pos);
272 g.drawLine((int) (height * scale) + offx, ystart,
273 (int) (height * scale) + offx, yend);
275 String nodeLabel = "";
277 if (showDistances && (node.dist > 0))
279 nodeLabel = new Format("%-.2f").form(node.dist);
284 int btstrap = node.getBootstrap();
289 nodeLabel = nodeLabel + " : ";
291 nodeLabel = nodeLabel + String.valueOf(node.getBootstrap());
295 if (!nodeLabel.equals(""))
297 g.drawString(nodeLabel, xstart + 2, ypos - 2);
303 public Object findElement(int x, int y)
305 Enumeration keys = nameHash.keys();
307 while (keys.hasMoreElements())
309 Object ob = keys.nextElement();
310 Rectangle rect = (Rectangle) nameHash.get(ob);
312 if (x >= rect.x && x <= (rect.x + rect.width) && y >= rect.y
313 && y <= (rect.y + rect.height))
318 keys = nodeHash.keys();
320 while (keys.hasMoreElements())
322 Object ob = keys.nextElement();
323 Rectangle rect = (Rectangle) nodeHash.get(ob);
325 if (x >= rect.x && x <= (rect.x + rect.width) && y >= rect.y
326 && y <= (rect.y + rect.height))
335 public void pickNodes(Rectangle pickBox)
337 int width = getSize().width;
338 int height = getSize().height;
340 SequenceNode top = tree.getTopNode();
342 double wscale = (float) (width * .8 - offx * 2) / tree.getMaxHeight();
345 top.count = ((SequenceNode) top.left()).count
346 + ((SequenceNode) top.right()).count;
348 float chunk = (float) (height - offy) / top.count;
350 pickNode(pickBox, top, chunk, wscale, width, offx, offy);
353 public void pickNode(Rectangle pickBox, SequenceNode node, float chunk,
354 double scale, int width, int offx, int offy)
361 if (node.left() == null && node.right() == null)
363 double height = node.height;
364 // float dist = node.dist;
366 // int xstart = (int) ( (height - dist) * scale) + offx;
367 int xend = (int) (height * scale) + offx;
369 int ypos = (int) (node.ycount * chunk) + offy;
371 if (pickBox.contains(new Point(xend, ypos)))
373 if (node.element() instanceof SequenceI)
375 SequenceI seq = (SequenceI) node.element();
376 SequenceGroup sg = av.getSelectionGroup();
379 sg.addOrRemove(seq, true);
386 pickNode(pickBox, (SequenceNode) node.left(), chunk, scale, width,
388 pickNode(pickBox, (SequenceNode) node.right(), chunk, scale, width,
393 public void setColor(SequenceNode node, Color c)
400 if (node.left() == null && node.right() == null)
404 if (node.element() instanceof SequenceI)
406 av.setSequenceColour((SequenceI) node.element(), c);
412 setColor((SequenceNode) node.left(), c);
413 setColor((SequenceNode) node.right(), c);
418 public void update(Graphics g)
424 public void paint(Graphics g)
431 if (nameHash.size() == 0)
436 int width = scrollPane.getSize().width;
437 int height = scrollPane.getSize().height;
440 height = g.getFontMetrics(font).getHeight() * nameHash.size();
443 if (getSize().width > width)
445 setSize(new Dimension(width, height));
446 scrollPane.validate();
450 setSize(new Dimension(width, height));
453 draw(g, width, height);
457 public void draw(Graphics g, int width, int height)
459 offy = font.getSize() + 10;
461 g.setColor(Color.white);
462 g.fillRect(0, 0, width, height);
464 labelLength = g.getFontMetrics(font).stringWidth(longestName) + 20; // 20
469 double wscale = (width - labelLength - offx * 2) / tree.getMaxHeight();
471 SequenceNode top = tree.getTopNode();
475 top.count = ((SequenceNode) top.left()).count
476 + ((SequenceNode) top.right()).count;
478 float chunk = (float) (height - offy) / top.count;
480 drawNode(g, tree.getTopNode(), chunk, wscale, width, offx, offy);
484 if (av.getCurrentTree() == tree)
486 g.setColor(Color.red);
490 g.setColor(Color.gray);
493 int x = (int) (threshold * (getSize().width - labelLength - 2 * offx) + offx);
495 g.drawLine(x, 0, x, getSize().height);
501 public void mouseReleased(MouseEvent e)
506 public void mouseEntered(MouseEvent e)
511 public void mouseExited(MouseEvent e)
516 public void mouseClicked(MouseEvent evt)
518 if (highlightNode != null)
520 if (evt.getClickCount() > 1)
522 tree.swapNodes(highlightNode);
523 tree.reCount(tree.getTopNode());
524 tree.findHeight(tree.getTopNode());
528 Vector<SequenceNode> leaves = tree.findLeaves(highlightNode);
530 for (int i = 0; i < leaves.size(); i++)
532 SequenceI seq = (SequenceI) leaves.elementAt(i).element();
533 treeSelectionChanged(seq);
537 PaintRefresher.Refresh(this, av.getSequenceSetId());
544 public void mouseDragged(MouseEvent ect)
549 public void mouseMoved(MouseEvent evt)
551 av.setCurrentTree(tree);
553 Object ob = findElement(evt.getX(), evt.getY());
555 if (ob instanceof SequenceNode)
557 highlightNode = (SequenceNode) ob;
562 if (highlightNode != null)
564 highlightNode = null;
571 public void mousePressed(MouseEvent e)
573 av.setCurrentTree(tree);
578 Object ob = findElement(x, y);
580 if (ob instanceof SequenceI)
582 treeSelectionChanged((Sequence) ob);
583 PaintRefresher.Refresh(this, av.getSequenceSetId());
588 else if (!(ob instanceof SequenceNode))
592 if (tree.getMaxHeight() != 0)
594 threshold = (float) (x - offx)
595 / (float) (getSize().width - labelLength - 2 * offx);
597 List<SequenceNode> groups = tree.groupNodes(threshold);
598 setColor(tree.getTopNode(), Color.black);
600 av.setSelectionGroup(null);
601 av.getAlignment().deleteAllGroups();
602 av.clearSequenceColours();
603 final AlignViewportI codingComplement = av.getCodingComplement();
604 if (codingComplement != null)
606 codingComplement.setSelectionGroup(null);
607 codingComplement.getAlignment().deleteAllGroups();
608 codingComplement.clearSequenceColours();
611 colourGroups(groups);
616 PaintRefresher.Refresh(this, av.getSequenceSetId());
621 void colourGroups(List<SequenceNode> groups)
623 for (int i = 0; i < groups.size(); i++)
626 Color col = new Color((int) (Math.random() * 255),
627 (int) (Math.random() * 255), (int) (Math.random() * 255));
628 setColor(groups.get(i), col.brighter());
630 Vector<SequenceNode> l = tree.findLeaves(groups.get(i));
632 Vector<SequenceI> sequences = new Vector<SequenceI>();
633 for (int j = 0; j < l.size(); j++)
635 SequenceI s1 = (SequenceI) l.elementAt(j).element();
636 if (!sequences.contains(s1))
638 sequences.addElement(s1);
642 ColourSchemeI cs = null;
644 SequenceGroup sg = new SequenceGroup(sequences, "", cs, true, true,
645 false, 0, av.getAlignment().getWidth() - 1);
647 if (av.getGlobalColourScheme() != null)
649 if (av.getGlobalColourScheme() instanceof UserColourScheme)
651 cs = new UserColourScheme(
652 ((UserColourScheme) av.getGlobalColourScheme())
658 cs = ColourSchemeProperty.getColourScheme(sg,
659 ColourSchemeProperty.getColourName(av
660 .getGlobalColourScheme()));
662 // cs is null if shading is an annotationColourGradient
665 // cs.setThreshold(av.getViewportColourScheme().getThreshold(),
666 // av.isIgnoreGapsConsensus());
669 // TODO: cs used to be initialized with a sequence collection and
670 // recalcConservation called automatically
671 // instead we set it manually - recalc called after updateAnnotation
672 sg.setColourScheme(cs);
673 sg.getGroupColourScheme().setThreshold(
674 av.getResidueShading().getThreshold(),
675 av.isIgnoreGapsConsensus());
677 sg.setName("JTreeGroup:" + sg.hashCode());
679 if (av.getGlobalColourScheme() != null
680 && av.getResidueShading().conservationApplied())
682 Conservation c = new Conservation("Group", sg.getSequences(null),
683 sg.getStartRes(), sg.getEndRes());
686 c.verdict(false, av.getConsPercGaps());
688 sg.setColourScheme(cs);
689 sg.getGroupColourScheme().setConservation(c);
692 av.getAlignment().addGroup(sg);
694 // TODO this is duplicated with gui TreeCanvas - refactor
695 av.getAlignment().addGroup(sg);
696 final AlignViewportI codingComplement = av.getCodingComplement();
697 if (codingComplement != null)
699 SequenceGroup mappedGroup = MappingUtils.mapSequenceGroup(sg, av,
701 if (mappedGroup.getSequences().size() > 0)
703 codingComplement.getAlignment().addGroup(mappedGroup);
704 for (SequenceI seq : mappedGroup.getSequences())
706 // TODO why does gui require col.brighter() here??
707 codingComplement.setSequenceColour(seq, col);
713 ap.updateAnnotation();
714 if (av.getCodingComplement() != null)
716 ((AlignmentViewport) av.getCodingComplement()).firePropertyChange(
717 "alignment", null, ap.av.getAlignment().getSequences());
721 public void setShowDistances(boolean state)
723 this.showDistances = state;
727 public void setShowBootstrap(boolean state)
729 this.showBootstrap = state;
733 public void setMarkPlaceholders(boolean state)
735 this.markPlaceholders = state;