X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FAlignViewport.java;h=88a6e37fab493ce38f6f9506039fd0ce4f24c705;hb=1b5ee75e7538b6229da397b28a91296e612d23e8;hp=05a52dd26e0d9a58b2bb7f96906ccb1e6adf0c26;hpb=f4fd7b0e74572c8fddbfe9e3e55bc624f8ba0c6a;p=jalview.git diff --git a/src/jalview/gui/AlignViewport.java b/src/jalview/gui/AlignViewport.java index 05a52dd..88a6e37 100755 --- a/src/jalview/gui/AlignViewport.java +++ b/src/jalview/gui/AlignViewport.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -18,6 +18,10 @@ */ package jalview.gui; +import java.util.*; + +import java.awt.*; + import jalview.analysis.*; import jalview.bin.*; @@ -26,11 +30,6 @@ import jalview.datamodel.*; import jalview.schemes.*; -import java.awt.*; - -import java.util.*; - - /** * DOCUMENT ME! * @@ -51,9 +50,6 @@ public class AlignViewport boolean renderGaps = true; boolean showSequenceFeatures = false; boolean showAnnotation = true; - boolean showConservation = true; - boolean showQuality = true; - boolean showIdentity = true; boolean colourAppliesToAllGroups = true; ColourSchemeI globalColourScheme = null; boolean conservationColourSelected = false; @@ -64,6 +60,7 @@ public class AlignViewport boolean validCharWidth; int wrappedWidth; Font font; + boolean seqNameItalics; AlignmentI alignment; ColumnSelection colSel = new ColumnSelection(); int threshold; @@ -84,7 +81,7 @@ public class AlignViewport /** DOCUMENT ME!! */ - public Vector vconsensus; + public Hashtable [] hconsensus; AlignmentAnnotation consensus; AlignmentAnnotation conservation; AlignmentAnnotation quality; @@ -94,7 +91,8 @@ public class AlignViewport public int ConsPercGaps = 25; // JBPNote : This should be a scalable property! // JBPNote Prolly only need this in the applet version. - private java.beans.PropertyChangeSupport changeSupport = new java.beans.PropertyChangeSupport(this); + private java.beans.PropertyChangeSupport changeSupport = new java.beans. + PropertyChangeSupport(this); boolean ignoreGapsInConsensusCalculation = false; @@ -104,13 +102,28 @@ public class AlignViewport boolean padGaps = false; + Rectangle explodedPosition; + + String viewName; + + String sequenceSetID; + + boolean gatherViewsHere = false; + + Stack historyList = new Stack(); + Stack redoList = new Stack(); + + Hashtable sequenceColours; + + int thresholdTextColour = 0; + Color textColour = Color.black; + Color textColour2 = Color.white; + + boolean rightAlignIds = false; + + Hashtable hiddenRepSequences; + - public AlignViewport(AlignmentI al, boolean dataset) - { - isDataset = dataset; - setAlignment(al); - init(); - } /** * Creates a new AlignViewport object. * @@ -126,13 +139,17 @@ public class AlignViewport * @param al AlignmentI * @param hiddenColumns ColumnSelection */ - public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns) { + public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns) + { setAlignment(al); - if (hiddenColumns!=null) { + if (hiddenColumns != null) + { this.colSel = hiddenColumns; if (hiddenColumns.getHiddenColumns() != null) + { hasHiddenColumns = true; } + } init(); } @@ -147,19 +164,19 @@ public class AlignViewport showJVSuffix = Cache.getDefault("SHOW_JVSUFFIX", true); showAnnotation = Cache.getDefault("SHOW_ANNOTATIONS", true); - showConservation = Cache.getDefault("SHOW_CONSERVATION", true); - showQuality = Cache.getDefault("SHOW_QUALITY", true); - showIdentity = Cache.getDefault("SHOW_IDENTITY", true); + rightAlignIds = Cache.getDefault("RIGHT_ALIGN_IDS", false); autoCalculateConsensus = Cache.getDefault("AUTO_CALC_CONSENSUS", true); - padGaps = Cache.getDefault("PAD_GAPS", false); + padGaps = Cache.getDefault("PAD_GAPS", true); String fontName = Cache.getDefault("FONT_NAME", "SansSerif"); String fontStyle = Cache.getDefault("FONT_STYLE", Font.PLAIN + "") ; String fontSize = Cache.getDefault("FONT_SIZE", "10"); + seqNameItalics = Cache.getDefault("ID_ITALICS", true); + int style = 0; if (fontStyle.equals("bold")) @@ -173,16 +190,55 @@ public class AlignViewport setFont(new Font(fontName, style, Integer.parseInt(fontSize))); - alignment.setGapCharacter( Cache.getDefault("GAP_SYMBOL", "-").charAt(0) ); // We must set conservation and consensus before setting colour, // as Blosum and Clustal require this to be done - if(vconsensus==null && !isDataset) + if(hconsensus==null && !isDataset) { - updateConservation(); - updateConsensus(); + if(!alignment.isNucleotide()) + { + conservation = new AlignmentAnnotation("Conservation", + "Conservation of total alignment less than " + + ConsPercGaps + "% gaps", + new Annotation[1], 0f, + 11f, + AlignmentAnnotation.BAR_GRAPH); + conservation.hasText = true; + conservation.autoCalculated=true; + + + if (Cache.getDefault("SHOW_CONSERVATION", true)) + { + alignment.addAnnotation(conservation); + } + + if (Cache.getDefault("SHOW_QUALITY", true)) + { + quality = new AlignmentAnnotation("Quality", + "Alignment Quality based on Blosum62 scores", + new Annotation[1], + 0f, + 11f, + AlignmentAnnotation.BAR_GRAPH); + quality.hasText = true; + quality.autoCalculated=true; + + alignment.addAnnotation(quality); + } + } + + consensus = new AlignmentAnnotation("Consensus", "PID", + new Annotation[1], 0f, 100f, + AlignmentAnnotation.BAR_GRAPH); + consensus.hasText = true; + consensus.autoCalculated=true; + + if (Cache.getDefault("SHOW_IDENTITY", true)) + { + alignment.addAnnotation(consensus); + } } if (jalview.bin.Cache.getProperty("DEFAULT_COLOUR") != null) @@ -193,14 +249,17 @@ public class AlignViewport if (globalColourScheme instanceof UserColourScheme) { globalColourScheme = UserDefinedColours.loadDefaultColours(); - ((UserColourScheme)globalColourScheme).setThreshold(0, getIgnoreGapsConsensus()); + ( (UserColourScheme) globalColourScheme).setThreshold(0, + getIgnoreGapsConsensus()); } if (globalColourScheme != null) { - globalColourScheme.setConsensus(vconsensus); + globalColourScheme.setConsensus(hconsensus); } } + + wrapAlignment = jalview.bin.Cache.getDefault("WRAP_ALIGNMENT", false); } @@ -220,250 +279,355 @@ public class AlignViewport return showSequenceFeatures; } - /** - * DOCUMENT ME! - */ - public void updateConservation() + class ConservationThread + extends Thread { - if(alignment.isNucleotide()) - return; - - try{ - Conservation cons = new jalview.analysis.Conservation("All", - jalview.schemes.ResidueProperties.propHash, 3, - alignment.getSequences(), 0, alignment.getWidth() - 1); - cons.calculate(); - cons.verdict(false, ConsPercGaps); - cons.findQuality(); + AlignmentPanel ap; + public ConservationThread(AlignmentPanel ap) + { + this.ap = ap; + } - int alWidth = alignment.getWidth(); - Annotation[] annotations = new Annotation[alWidth]; - Annotation[] qannotations = new Annotation[alWidth]; - String sequence = cons.getConsSequence().getSequence(); - float minR; - float minG; - float minB; - float maxR; - float maxG; - float maxB; - minR = 0.3f; - minG = 0.0f; - minB = 0f; - maxR = 1.0f - minR; - maxG = 0.9f - minG; - maxB = 0f - minB; // scalable range for colouring both Conservation and Quality - - float min = 0f; - float max = 11f; - float qmin = cons.qualityRange[0].floatValue(); - float qmax = cons.qualityRange[1].floatValue(); - - for (int i = 0; i < alWidth; i++) + public void run() + { + try { - float value = 0; + updatingConservation = true; - try + while (UPDATING_CONSERVATION) { - value = Integer.parseInt(sequence.charAt(i) + ""); - } - catch (Exception ex) - { - if (sequence.charAt(i) == '*') + try { - value = 11; + if (ap != null) + { + ap.paintAlignment(true); + } + Thread.sleep(200); } - - if (sequence.charAt(i) == '+') + catch (Exception ex) { - value = 10; + ex.printStackTrace(); } } - float vprop = value - min; - vprop /= max; - annotations[i] = new Annotation(sequence.charAt(i) + "", - String.valueOf(value), ' ', value, - new Color(minR + (maxR * vprop), - minG + (maxG * vprop), - minB + (maxB * vprop))); - - // Quality calc - value = ( (Double) cons.quality.get(i)).floatValue(); - vprop = value - qmin; - vprop /= qmax; - qannotations[i] = new Annotation(" ", String.valueOf(value), ' ', - value, - new Color(minR + (maxR * vprop), - minG + (maxG * vprop), - minB + (maxB * vprop))); - } + UPDATING_CONSERVATION = true; - if (conservation == null) + + int alWidth = alignment.getWidth(); + if(alWidth<0) { - conservation = new AlignmentAnnotation("Conservation", - "Conservation of total alignment less than " + - ConsPercGaps + "% gaps", - annotations, 0f, // cons.qualityRange[0].floatValue(), - 11f, // cons.qualityRange[1].floatValue() - AlignmentAnnotation.BAR_GRAPH); - - if (showConservation) + return; + } + + Conservation cons = new jalview.analysis.Conservation("All", + jalview.schemes.ResidueProperties.propHash, 3, + alignment.getSequences(), 0, alWidth -1); + + cons.calculate(); + cons.verdict(false, ConsPercGaps); + + if (quality!=null) { - alignment.addAnnotation(conservation); + cons.findQuality(); } - quality = new AlignmentAnnotation("Quality", - "Alignment Quality based on Blosum62 scores", - qannotations, - cons.qualityRange[0].floatValue(), - cons.qualityRange[1].floatValue(), - AlignmentAnnotation.BAR_GRAPH); + char [] sequence = cons.getConsSequence().getSequence(); + float minR; + float minG; + float minB; + float maxR; + float maxG; + float maxB; + minR = 0.3f; + minG = 0.0f; + minB = 0f; + maxR = 1.0f - minR; + maxG = 0.9f - minG; + maxB = 0f - minB; // scalable range for colouring both Conservation and Quality + + float min = 0f; + float max = 11f; + float qmin = 0f; + float qmax = 0f; + + char c; + + conservation.annotations = new Annotation[alWidth]; + + if (quality!=null) + { + quality.graphMax = cons.qualityRange[1].floatValue(); + quality.annotations = new Annotation[alWidth]; + qmin = cons.qualityRange[0].floatValue(); + qmax = cons.qualityRange[1].floatValue(); + } - if (showQuality) + for (int i = 0; i < alWidth; i++) { - alignment.addAnnotation(quality); + float value = 0; + + c = sequence[i]; + + if (Character.isDigit(c)) + { + value = (int) (c - '0'); + } + else if (c == '*') + { + value = 11; + } + else if (c == '+') + { + value = 10; + } + + float vprop = value - min; + vprop /= max; + conservation.annotations[i] = + new Annotation(String.valueOf(c), + String.valueOf(value), ' ', value, + new Color(minR + (maxR * vprop), + minG + (maxG * vprop), + minB + (maxB * vprop))); + + // Quality calc + if (quality!=null) + { + value = ( (Double) cons.quality.get(i)).floatValue(); + vprop = value - qmin; + vprop /= qmax; + quality.annotations[i] = new Annotation(" ", String.valueOf(value), + ' ', + value, + new Color(minR + (maxR * vprop), + minG + (maxG * vprop), + minB + (maxB * vprop))); + } } } - else - { - conservation.annotations = annotations; - quality.annotations = qannotations; - quality.graphMax = cons.qualityRange[1].floatValue(); - } - } - catch (OutOfMemoryError error) - { - javax.swing.SwingUtilities.invokeLater(new Runnable() + catch (OutOfMemoryError error) { - public void run() + javax.swing.SwingUtilities.invokeLater(new Runnable() { - javax.swing.JOptionPane.showInternalMessageDialog(Desktop.desktop, - "Out of memory calculating conservation!!" - + - "\nSee help files for increasing Java Virtual Machine memory." - , "Out of memory", - javax.swing.JOptionPane.WARNING_MESSAGE); - } - }); - System.out.println("Conservation calculation: " + error); - System.gc(); + + public void run() + { + javax.swing.JOptionPane.showInternalMessageDialog(Desktop.desktop, + "Out of memory calculating conservation!!" + + + "\nSee help files for increasing Java Virtual Machine memory." + , "Out of memory", + javax.swing.JOptionPane.WARNING_MESSAGE); + } + }); + + conservation = null; + quality = null; + + System.out.println("Conservation calculation: " + error); + System.gc(); + + } + + UPDATING_CONSERVATION = false; + updatingConservation = false; + + if(ap!=null) + { + ap.paintAlignment(true); + } } } + + ConservationThread conservationThread; + + ConsensusThread consensusThread; + + boolean consUpdateNeeded = false; + + static boolean UPDATING_CONSENSUS = false; + + static boolean UPDATING_CONSERVATION = false; + + boolean updatingConsensus = false; + + boolean updatingConservation = false; + /** * DOCUMENT ME! */ - public void updateConsensus() + public void updateConservation(final AlignmentPanel ap) + { + if (alignment.isNucleotide() || conservation==null) { - try{ - Annotation[] annotations = new Annotation[alignment.getWidth()]; + return; + } - // this routine prevents vconsensus becoming a new object each time - // consenus is calculated. Important for speed of Blosum62 - // and PID colouring of alignment - if (vconsensus == null) - { - vconsensus = alignment.getAAFrequency(); - } - else - { - Vector temp = alignment.getAAFrequency(); - vconsensus.clear(); + conservationThread = new ConservationThread(ap); + conservationThread.start(); + } + + /** + * DOCUMENT ME! + */ + public void updateConsensus(final AlignmentPanel ap) + { + consensusThread = new ConsensusThread(ap); + consensusThread.start(); + } - Enumeration e = temp.elements(); + class ConsensusThread + extends Thread + { + AlignmentPanel ap; + public ConsensusThread(AlignmentPanel ap) + { + this.ap = ap; + } + public void run() + { + updatingConsensus = true; + while (UPDATING_CONSENSUS) + { + try + { + if (ap != null) + { + ap.paintAlignment(true); + } - while (e.hasMoreElements()) + Thread.sleep(200); + } + catch (Exception ex) { - vconsensus.add(e.nextElement()); + ex.printStackTrace(); } } - Hashtable hash = null; - for (int i = 0; i < alignment.getWidth(); i++) + UPDATING_CONSENSUS = true; + + try + { + int aWidth = alignment.getWidth(); + if(aWidth<0) { - hash = (Hashtable) vconsensus.elementAt(i); + return; + } + + consensus.annotations = null; + consensus.annotations = new Annotation[aWidth]; - float value = 0; - if (ignoreGapsInConsensusCalculation) - value = ( (Float) hash.get("pid_nogaps")).floatValue(); - else - value = ( (Float) hash.get("pid_gaps")).floatValue(); - String maxRes = hash.get("maxResidue").toString(); - String mouseOver = hash.get("maxResidue") + " "; + hconsensus = new Hashtable[aWidth]; + AAFrequency.calculate(alignment.getSequencesArray(), + 0, + alignment.getWidth(), + hconsensus); - if (maxRes.length() > 1) + for (int i = 0; i < aWidth; i++) + { + float value = 0; + if (ignoreGapsInConsensusCalculation) + { + value = ( (Float) hconsensus[i].get(AAFrequency.PID_NOGAPS)). + floatValue(); + } + else { - mouseOver = "[" + maxRes + "] "; - maxRes = "+"; + value = ( (Float) hconsensus[i].get(AAFrequency.PID_GAPS)). + floatValue(); } - mouseOver += ( (int) value + "%"); - annotations[i] = new Annotation(maxRes, mouseOver, ' ', value); - } + String maxRes = hconsensus[i].get(AAFrequency.MAXRESIDUE).toString(); + String mouseOver = hconsensus[i].get(AAFrequency.MAXRESIDUE) + " "; - if (consensus == null) - { - consensus = new AlignmentAnnotation("Consensus", "PID", - annotations, 0f, 100f,AlignmentAnnotation.BAR_GRAPH); + if (maxRes.length() > 1) + { + mouseOver = "[" + maxRes + "] "; + maxRes = "+"; + } - if (showIdentity) - { - alignment.addAnnotation(consensus); + mouseOver += ( (int) value + "%"); + consensus.annotations[i] = new Annotation(maxRes, mouseOver, ' ', + value); } - } - else + + + if (globalColourScheme != null) { - consensus.annotations = annotations; + globalColourScheme.setConsensus(hconsensus); } - if (globalColourScheme != null) - globalColourScheme.setConsensus(vconsensus); - - }catch(OutOfMemoryError error) - { - javax.swing.SwingUtilities.invokeLater(new Runnable() + } + catch (OutOfMemoryError error) { - public void run() + alignment.deleteAnnotation(consensus); + + consensus = null; + hconsensus = null; + javax.swing.SwingUtilities.invokeLater(new Runnable() { - javax.swing.JOptionPane.showInternalMessageDialog(Desktop.desktop, - "Out of memory calculating consensus!!" - + - "\nSee help files for increasing Java Virtual Machine memory." - , "Out of memory", - javax.swing.JOptionPane.WARNING_MESSAGE); - } - }); + public void run() + { + javax.swing.JOptionPane.showInternalMessageDialog(Desktop.desktop, + "Out of memory calculating consensus!!" + + + "\nSee help files for increasing Java Virtual Machine memory." + , "Out of memory", + javax.swing.JOptionPane.WARNING_MESSAGE); + } + }); + System.out.println("Consensus calculation: " + error); + System.gc(); + } + UPDATING_CONSENSUS = false; + updatingConsensus = false; - System.out.println("Consensus calculation: " + error); - System.gc(); + if (ap != null) + { + ap.paintAlignment(true); + } } - } /** * get the consensus sequence as displayed under the PID consensus annotation row. * @return consensus sequence as a new sequence object */ - public SequenceI getConsensusSeq() { + public SequenceI getConsensusSeq() + { if (consensus==null) - updateConsensus(); + { + updateConsensus(null); + } if (consensus==null) + { return null; + } StringBuffer seqs=new StringBuffer(); - for (int i=0; i0) { if(selectionGroup==null) @@ -1188,15 +1398,19 @@ public class AlignViewport } if(alignment.getHiddenSequences().getSize()<1) + { hasHiddenRows = false; } + } public void showColumn(int col) { colSel.revealHiddenColumns(col); if(colSel.getHiddenColumns()==null) + { hasHiddenColumns = false; } + } public void showAllHiddenColumns() { @@ -1213,7 +1427,7 @@ public class AlignViewport selectionGroup = new SequenceGroup(); selectionGroup.setEndRes(alignment.getWidth()-1); } - Vector tmp = alignment.getHiddenSequences().showAll(); + Vector tmp = alignment.getHiddenSequences().showAll(hiddenRepSequences); for(int t=0; t