}
String name = (markPlaceholders && node.isPlaceholder()) ? (PLACEHOLDER + node
- .getName())
- : node.getName();
+ .getName()) : node.getName();
int charWidth = fm.stringWidth(name) + 3;
int charHeight = font.getSize();
if (node.element() instanceof SequenceI)
{
AlignmentPanel[] aps = getAssociatedPanels();
- for (int a = 0; a < aps.length; a++)
+ if (aps != null)
{
- aps[a].av.setSequenceColour((SequenceI) node.element(), c);
+ for (int a = 0; a < aps.length; a++)
+ {
+ aps[a].av.setSequenceColour((SequenceI) node.element(), c);
+ }
}
}
}
}
else
{
- setPreferredSize(new Dimension(scrollPane.getWidth(), fm
- .getHeight()
- * nameHash.size()));
+ setPreferredSize(new Dimension(scrollPane.getWidth(),
+ fm.getHeight() * nameHash.size()));
draw(g, scrollPane.getWidth(), fm.getHeight() * nameHash.size());
}
AlignmentPanel[] aps = getAssociatedPanels();
for (int i = 0; i < tree.getGroups().size(); i++)
{
- Color col = new Color((int) (Math.random() * 255), (int) (Math
- .random() * 255), (int) (Math.random() * 255));
+ Color col = new Color((int) (Math.random() * 255),
+ (int) (Math.random() * 255), (int) (Math.random() * 255));
setColor((SequenceNode) tree.getGroups().elementAt(i), col.brighter());
- Vector l = tree.findLeaves((SequenceNode) tree.getGroups().elementAt(
- i), new Vector());
+ Vector l = tree.findLeaves(
+ (SequenceNode) tree.getGroups().elementAt(i), new Vector());
Vector sequences = new Vector();
{
if (av.getGlobalColourScheme() instanceof UserColourScheme)
{
- cs = new UserColourScheme(((UserColourScheme) av
- .getGlobalColourScheme()).getColours());
+ cs = new UserColourScheme(
+ ((UserColourScheme) av.getGlobalColourScheme())
+ .getColours());
}
else
.getGlobalColourScheme()));
}
- cs.setThreshold(av.getGlobalColourScheme().getThreshold(), av
- .getIgnoreGapsConsensus());
+ cs.setThreshold(av.getGlobalColourScheme().getThreshold(),
+ av.getIgnoreGapsConsensus());
}
SequenceGroup sg = new SequenceGroup(sequences, null, cs, true, true,
&& aps[a].av.getGlobalColourScheme().conservationApplied())
{
Conservation c = new Conservation("Group",
- ResidueProperties.propHash, 3, sg.getSequences(null), sg
- .getStartRes(), sg.getEndRes());
+ ResidueProperties.propHash, 3, sg.getSequences(null),
+ sg.getStartRes(), sg.getEndRes());
c.calculate();
c.verdict(false, aps[a].av.ConsPercGaps);
}
}
// notify the panel to redo any group specific stuff.
- for (int a=0;a<aps.length;a++)
+ for (int a = 0; a < aps.length; a++)
{
aps[a].updateAnnotation();
}