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.viewmodel;
23 import jalview.analysis.AnnotationSorter.SequenceAnnotationOrder;
24 import jalview.analysis.Conservation;
25 import jalview.api.AlignCalcManagerI;
26 import jalview.api.AlignViewportI;
27 import jalview.api.AlignmentViewPanel;
28 import jalview.api.FeaturesDisplayedI;
29 import jalview.api.ViewStyleI;
30 import jalview.commands.CommandI;
31 import jalview.datamodel.AlignedCodonFrame;
32 import jalview.datamodel.AlignmentAnnotation;
33 import jalview.datamodel.AlignmentI;
34 import jalview.datamodel.AlignmentView;
35 import jalview.datamodel.Annotation;
36 import jalview.datamodel.CigarArray;
37 import jalview.datamodel.ColumnSelection;
38 import jalview.datamodel.HiddenColumns;
39 import jalview.datamodel.HiddenSequences;
40 import jalview.datamodel.ProfilesI;
41 import jalview.datamodel.SearchResultsI;
42 import jalview.datamodel.Sequence;
43 import jalview.datamodel.SequenceCollectionI;
44 import jalview.datamodel.SequenceGroup;
45 import jalview.datamodel.SequenceI;
46 import jalview.renderer.ResidueShader;
47 import jalview.renderer.ResidueShaderI;
48 import jalview.schemes.ColourSchemeI;
49 import jalview.structure.CommandListener;
50 import jalview.structure.StructureSelectionManager;
51 import jalview.structure.VamsasSource;
52 import jalview.util.Comparison;
53 import jalview.util.MapList;
54 import jalview.util.MappingUtils;
55 import jalview.util.MessageManager;
56 import jalview.viewmodel.styles.ViewStyle;
57 import jalview.workers.AlignCalcManager;
58 import jalview.workers.ComplementConsensusThread;
59 import jalview.workers.ConsensusThread;
60 import jalview.workers.StrucConsensusThread;
62 import java.awt.Color;
63 import java.beans.PropertyChangeSupport;
64 import java.util.ArrayDeque;
65 import java.util.ArrayList;
66 import java.util.BitSet;
67 import java.util.Deque;
68 import java.util.HashMap;
69 import java.util.Hashtable;
70 import java.util.List;
74 * base class holding visualization and analysis attributes and common logic for
75 * an active alignment view displayed in the GUI
80 public abstract class AlignmentViewport implements AlignViewportI,
81 CommandListener, VamsasSource
83 final protected ViewportRanges ranges;
85 protected ViewStyleI viewStyle = new ViewStyle();
88 * A viewport that hosts the cDna view of this (protein), or vice versa (if
91 AlignViewportI codingComplement = null;
93 FeaturesDisplayedI featuresDisplayed = null;
95 protected Deque<CommandI> historyList = new ArrayDeque<>();
97 protected Deque<CommandI> redoList = new ArrayDeque<>();
100 * alignment displayed in the viewport. Please use get/setter
102 protected AlignmentI alignment;
104 public AlignmentViewport(AlignmentI al)
107 ranges = new ViewportRanges(al);
112 * @see jalview.api.ViewStyleI#setFontName(java.lang.String)
115 public void setFontName(String name)
117 viewStyle.setFontName(name);
122 * @see jalview.api.ViewStyleI#setFontStyle(int)
125 public void setFontStyle(int style)
127 viewStyle.setFontStyle(style);
132 * @see jalview.api.ViewStyleI#setFontSize(int)
135 public void setFontSize(int size)
137 viewStyle.setFontSize(size);
142 * @see jalview.api.ViewStyleI#getFontStyle()
145 public int getFontStyle()
147 return viewStyle.getFontStyle();
152 * @see jalview.api.ViewStyleI#getFontName()
155 public String getFontName()
157 return viewStyle.getFontName();
162 * @see jalview.api.ViewStyleI#getFontSize()
165 public int getFontSize()
167 return viewStyle.getFontSize();
171 * @param upperCasebold
172 * @see jalview.api.ViewStyleI#setUpperCasebold(boolean)
175 public void setUpperCasebold(boolean upperCasebold)
177 viewStyle.setUpperCasebold(upperCasebold);
182 * @see jalview.api.ViewStyleI#isUpperCasebold()
185 public boolean isUpperCasebold()
187 return viewStyle.isUpperCasebold();
192 * @see jalview.api.ViewStyleI#isSeqNameItalics()
195 public boolean isSeqNameItalics()
197 return viewStyle.isSeqNameItalics();
201 * @param colourByReferenceSeq
202 * @see jalview.api.ViewStyleI#setColourByReferenceSeq(boolean)
205 public void setColourByReferenceSeq(boolean colourByReferenceSeq)
207 viewStyle.setColourByReferenceSeq(colourByReferenceSeq);
212 * @see jalview.api.ViewStyleI#setColourAppliesToAllGroups(boolean)
215 public void setColourAppliesToAllGroups(boolean b)
217 viewStyle.setColourAppliesToAllGroups(b);
222 * @see jalview.api.ViewStyleI#getColourAppliesToAllGroups()
225 public boolean getColourAppliesToAllGroups()
227 return viewStyle.getColourAppliesToAllGroups();
232 * @see jalview.api.ViewStyleI#getAbovePIDThreshold()
235 public boolean getAbovePIDThreshold()
237 return viewStyle.getAbovePIDThreshold();
242 * @see jalview.api.ViewStyleI#setIncrement(int)
245 public void setIncrement(int inc)
247 viewStyle.setIncrement(inc);
252 * @see jalview.api.ViewStyleI#getIncrement()
255 public int getIncrement()
257 return viewStyle.getIncrement();
262 * @see jalview.api.ViewStyleI#setConservationSelected(boolean)
265 public void setConservationSelected(boolean b)
267 viewStyle.setConservationSelected(b);
272 * @see jalview.api.ViewStyleI#setShowHiddenMarkers(boolean)
275 public void setShowHiddenMarkers(boolean show)
277 viewStyle.setShowHiddenMarkers(show);
282 * @see jalview.api.ViewStyleI#getShowHiddenMarkers()
285 public boolean getShowHiddenMarkers()
287 return viewStyle.getShowHiddenMarkers();
292 * @see jalview.api.ViewStyleI#setScaleRightWrapped(boolean)
295 public void setScaleRightWrapped(boolean b)
297 viewStyle.setScaleRightWrapped(b);
302 * @see jalview.api.ViewStyleI#setScaleLeftWrapped(boolean)
305 public void setScaleLeftWrapped(boolean b)
307 viewStyle.setScaleLeftWrapped(b);
312 * @see jalview.api.ViewStyleI#setScaleAboveWrapped(boolean)
315 public void setScaleAboveWrapped(boolean b)
317 viewStyle.setScaleAboveWrapped(b);
322 * @see jalview.api.ViewStyleI#getScaleLeftWrapped()
325 public boolean getScaleLeftWrapped()
327 return viewStyle.getScaleLeftWrapped();
332 * @see jalview.api.ViewStyleI#getScaleAboveWrapped()
335 public boolean getScaleAboveWrapped()
337 return viewStyle.getScaleAboveWrapped();
342 * @see jalview.api.ViewStyleI#getScaleRightWrapped()
345 public boolean getScaleRightWrapped()
347 return viewStyle.getScaleRightWrapped();
352 * @see jalview.api.ViewStyleI#setAbovePIDThreshold(boolean)
355 public void setAbovePIDThreshold(boolean b)
357 viewStyle.setAbovePIDThreshold(b);
362 * @see jalview.api.ViewStyleI#setThreshold(int)
365 public void setThreshold(int thresh)
367 viewStyle.setThreshold(thresh);
372 * @see jalview.api.ViewStyleI#getThreshold()
375 public int getThreshold()
377 return viewStyle.getThreshold();
382 * @see jalview.api.ViewStyleI#getShowJVSuffix()
385 public boolean getShowJVSuffix()
387 return viewStyle.getShowJVSuffix();
392 * @see jalview.api.ViewStyleI#setShowJVSuffix(boolean)
395 public void setShowJVSuffix(boolean b)
397 viewStyle.setShowJVSuffix(b);
402 * @see jalview.api.ViewStyleI#setWrapAlignment(boolean)
405 public void setWrapAlignment(boolean state)
407 viewStyle.setWrapAlignment(state);
408 ranges.setWrappedMode(state);
413 * @see jalview.api.ViewStyleI#setShowText(boolean)
416 public void setShowText(boolean state)
418 viewStyle.setShowText(state);
423 * @see jalview.api.ViewStyleI#setRenderGaps(boolean)
426 public void setRenderGaps(boolean state)
428 viewStyle.setRenderGaps(state);
433 * @see jalview.api.ViewStyleI#getColourText()
436 public boolean getColourText()
438 return viewStyle.getColourText();
443 * @see jalview.api.ViewStyleI#setColourText(boolean)
446 public void setColourText(boolean state)
448 viewStyle.setColourText(state);
453 * @see jalview.api.ViewStyleI#getWrapAlignment()
456 public boolean getWrapAlignment()
458 return viewStyle.getWrapAlignment();
463 * @see jalview.api.ViewStyleI#getShowText()
466 public boolean getShowText()
468 return viewStyle.getShowText();
473 * @see jalview.api.ViewStyleI#getWrappedWidth()
476 public int getWrappedWidth()
478 return viewStyle.getWrappedWidth();
483 * @see jalview.api.ViewStyleI#setWrappedWidth(int)
486 public void setWrappedWidth(int w)
488 viewStyle.setWrappedWidth(w);
493 * @see jalview.api.ViewStyleI#getCharHeight()
496 public int getCharHeight()
498 return viewStyle.getCharHeight();
503 * @see jalview.api.ViewStyleI#setCharHeight(int)
506 public void setCharHeight(int h)
508 viewStyle.setCharHeight(h);
513 * @see jalview.api.ViewStyleI#getCharWidth()
516 public int getCharWidth()
518 return viewStyle.getCharWidth();
523 * @see jalview.api.ViewStyleI#setCharWidth(int)
526 public void setCharWidth(int w)
528 viewStyle.setCharWidth(w);
533 * @see jalview.api.ViewStyleI#getShowBoxes()
536 public boolean getShowBoxes()
538 return viewStyle.getShowBoxes();
543 * @see jalview.api.ViewStyleI#getShowUnconserved()
546 public boolean getShowUnconserved()
548 return viewStyle.getShowUnconserved();
552 * @param showunconserved
553 * @see jalview.api.ViewStyleI#setShowUnconserved(boolean)
556 public void setShowUnconserved(boolean showunconserved)
558 viewStyle.setShowUnconserved(showunconserved);
563 * @see jalview.api.ViewStyleI#setSeqNameItalics(boolean)
566 public void setSeqNameItalics(boolean default1)
568 viewStyle.setSeqNameItalics(default1);
574 public AlignmentI getAlignment()
580 public char getGapCharacter()
582 return alignment.getGapCharacter();
585 protected String sequenceSetID;
588 * probably unused indicator that view is of a dataset rather than an
591 protected boolean isDataset = false;
593 public void setDataset(boolean b)
598 public boolean isDataset()
603 private Map<SequenceI, SequenceCollectionI> hiddenRepSequences;
605 protected ColumnSelection colSel = new ColumnSelection();
607 public boolean autoCalculateConsensus = true;
609 protected boolean autoCalculateStrucConsensus = true;
611 protected boolean ignoreGapsInConsensusCalculation = false;
613 protected ResidueShaderI residueShading = new ResidueShader();
616 public void setGlobalColourScheme(ColourSchemeI cs)
618 // TODO: logic refactored from AlignFrame changeColour -
619 // TODO: autorecalc stuff should be changed to rely on the worker system
620 // check to see if we should implement a changeColour(cs) method rather than
621 // put the logic in here
622 // - means that caller decides if they want to just modify state and defer
623 // calculation till later or to do all calculations in thread.
627 * only instantiate alignment colouring once, thereafter update it;
628 * this means that any conservation or PID threshold settings
629 * persist when the alignment colour scheme is changed
631 if (residueShading == null)
633 residueShading = new ResidueShader(viewStyle);
635 residueShading.setColourScheme(cs);
637 // TODO: do threshold and increment belong in ViewStyle or ResidueShader?
638 // ...problem: groups need these, but do not currently have a ViewStyle
642 if (getConservationSelected())
644 residueShading.setConservation(hconservation);
646 residueShading.alignmentChanged(alignment, hiddenRepSequences);
650 * if 'apply colour to all groups' is selected... do so
651 * (but don't transfer any colour threshold settings to groups)
653 if (getColourAppliesToAllGroups())
655 for (SequenceGroup sg : getAlignment().getGroups())
658 * retain any colour thresholds per group while
659 * changing choice of colour scheme (JAL-2386)
661 sg.setColourScheme(cs);
664 sg.getGroupColourScheme()
665 .alignmentChanged(sg, hiddenRepSequences);
672 public ColourSchemeI getGlobalColourScheme()
674 return residueShading == null ? null : residueShading
679 public ResidueShaderI getResidueShading()
681 return residueShading;
684 protected AlignmentAnnotation consensus;
686 protected AlignmentAnnotation complementConsensus;
688 protected AlignmentAnnotation gapcounts;
690 protected AlignmentAnnotation strucConsensus;
692 protected AlignmentAnnotation conservation;
694 protected AlignmentAnnotation quality;
696 protected AlignmentAnnotation[] groupConsensus;
698 protected AlignmentAnnotation[] groupConservation;
701 * results of alignment consensus analysis for visible portion of view
703 protected ProfilesI hconsensus = null;
706 * results of cDNA complement consensus visible portion of view
708 protected Hashtable[] hcomplementConsensus = null;
711 * results of secondary structure base pair consensus for visible portion of
714 protected Hashtable[] hStrucConsensus = null;
716 protected Conservation hconservation = null;
719 public void setConservation(Conservation cons)
721 hconservation = cons;
725 * percentage gaps allowed in a column before all amino acid properties should
726 * be considered unconserved
728 int ConsPercGaps = 25; // JBPNote : This should be a scalable property!
731 public int getConsPercGaps()
737 public void setSequenceConsensusHash(ProfilesI hconsensus)
739 this.hconsensus = hconsensus;
743 public void setComplementConsensusHash(Hashtable[] hconsensus)
745 this.hcomplementConsensus = hconsensus;
749 public ProfilesI getSequenceConsensusHash()
755 public Hashtable[] getComplementConsensusHash()
757 return hcomplementConsensus;
761 public Hashtable[] getRnaStructureConsensusHash()
763 return hStrucConsensus;
767 public void setRnaStructureConsensusHash(Hashtable[] hStrucConsensus)
769 this.hStrucConsensus = hStrucConsensus;
774 public AlignmentAnnotation getAlignmentQualityAnnot()
780 public AlignmentAnnotation getAlignmentConservationAnnotation()
786 public AlignmentAnnotation getAlignmentConsensusAnnotation()
792 public AlignmentAnnotation getAlignmentGapAnnotation()
798 public AlignmentAnnotation getComplementConsensusAnnotation()
800 return complementConsensus;
804 public AlignmentAnnotation getAlignmentStrucConsensusAnnotation()
806 return strucConsensus;
809 protected AlignCalcManagerI calculator = new AlignCalcManager();
812 * trigger update of conservation annotation
814 public void updateConservation(final AlignmentViewPanel ap)
816 // see note in mantis : issue number 8585
817 if (alignment.isNucleotide()
818 || (conservation == null && quality == null)
819 || !autoCalculateConsensus)
824 .getRegisteredWorkersOfClass(jalview.workers.ConservationThread.class) == null)
826 calculator.registerWorker(new jalview.workers.ConservationThread(
832 * trigger update of consensus annotation
834 public void updateConsensus(final AlignmentViewPanel ap)
836 // see note in mantis : issue number 8585
837 if (consensus == null || !autoCalculateConsensus)
841 if (calculator.getRegisteredWorkersOfClass(ConsensusThread.class) == null)
843 calculator.registerWorker(new ConsensusThread(this, ap));
847 * A separate thread to compute cDNA consensus for a protein alignment
848 * which has mapping to cDNA
850 final AlignmentI al = this.getAlignment();
851 if (!al.isNucleotide() && al.getCodonFrames() != null
852 && !al.getCodonFrames().isEmpty())
855 * fudge - check first for protein-to-nucleotide mappings
856 * (we don't want to do this for protein-to-protein)
858 boolean doConsensus = false;
859 for (AlignedCodonFrame mapping : al.getCodonFrames())
861 // TODO hold mapping type e.g. dna-to-protein in AlignedCodonFrame?
862 MapList[] mapLists = mapping.getdnaToProt();
863 // mapLists can be empty if project load has not finished resolving seqs
864 if (mapLists.length > 0 && mapLists[0].getFromRatio() == 3)
873 .getRegisteredWorkersOfClass(ComplementConsensusThread.class) == null)
876 .registerWorker(new ComplementConsensusThread(this, ap));
882 // --------START Structure Conservation
883 public void updateStrucConsensus(final AlignmentViewPanel ap)
885 if (autoCalculateStrucConsensus && strucConsensus == null
886 && alignment.isNucleotide() && alignment.hasRNAStructure())
888 // secondary structure has been added - so init the consensus line
892 // see note in mantis : issue number 8585
893 if (strucConsensus == null || !autoCalculateStrucConsensus)
897 if (calculator.getRegisteredWorkersOfClass(StrucConsensusThread.class) == null)
899 calculator.registerWorker(new StrucConsensusThread(this, ap));
903 public boolean isCalcInProgress()
905 return calculator.isWorking();
909 public boolean isCalculationInProgress(
910 AlignmentAnnotation alignmentAnnotation)
912 if (!alignmentAnnotation.autoCalculated)
916 if (calculator.workingInvolvedWith(alignmentAnnotation))
918 // System.err.println("grey out ("+alignmentAnnotation.label+")");
924 public void setAlignment(AlignmentI align)
926 this.alignment = align;
930 * Clean up references when this viewport is closed
933 public void dispose()
936 * defensively null out references to large objects in case
937 * this object is not garbage collected (as if!)
940 complementConsensus = null;
941 strucConsensus = null;
944 groupConsensus = null;
945 groupConservation = null;
947 hcomplementConsensus = null;
948 // colour scheme may hold reference to consensus
949 residueShading = null;
950 // TODO remove listeners from changeSupport?
951 changeSupport = null;
956 public boolean isClosed()
958 // TODO: check that this isClosed is only true after panel is closed, not
959 // before it is fully constructed.
960 return alignment == null;
964 public AlignCalcManagerI getCalcManager()
970 * should conservation rows be shown for groups
972 protected boolean showGroupConservation = false;
975 * should consensus rows be shown for groups
977 protected boolean showGroupConsensus = false;
980 * should consensus profile be rendered by default
982 protected boolean showSequenceLogo = false;
985 * should consensus profile be rendered normalised to row height
987 protected boolean normaliseSequenceLogo = false;
990 * should consensus histograms be rendered by default
992 protected boolean showConsensusHistogram = true;
995 * @return the showConsensusProfile
998 public boolean isShowSequenceLogo()
1000 return showSequenceLogo;
1004 * @param showSequenceLogo
1007 public void setShowSequenceLogo(boolean showSequenceLogo)
1009 if (showSequenceLogo != this.showSequenceLogo)
1011 // TODO: decouple settings setting from calculation when refactoring
1012 // annotation update method from alignframe to viewport
1013 this.showSequenceLogo = showSequenceLogo;
1014 calculator.updateAnnotationFor(ConsensusThread.class);
1015 calculator.updateAnnotationFor(ComplementConsensusThread.class);
1016 calculator.updateAnnotationFor(StrucConsensusThread.class);
1018 this.showSequenceLogo = showSequenceLogo;
1022 * @param showConsensusHistogram
1023 * the showConsensusHistogram to set
1025 public void setShowConsensusHistogram(boolean showConsensusHistogram)
1027 this.showConsensusHistogram = showConsensusHistogram;
1031 * @return the showGroupConservation
1033 public boolean isShowGroupConservation()
1035 return showGroupConservation;
1039 * @param showGroupConservation
1040 * the showGroupConservation to set
1042 public void setShowGroupConservation(boolean showGroupConservation)
1044 this.showGroupConservation = showGroupConservation;
1048 * @return the showGroupConsensus
1050 public boolean isShowGroupConsensus()
1052 return showGroupConsensus;
1056 * @param showGroupConsensus
1057 * the showGroupConsensus to set
1059 public void setShowGroupConsensus(boolean showGroupConsensus)
1061 this.showGroupConsensus = showGroupConsensus;
1066 * @return flag to indicate if the consensus histogram should be rendered by
1070 public boolean isShowConsensusHistogram()
1072 return this.showConsensusHistogram;
1076 * when set, updateAlignment will always ensure sequences are of equal length
1078 private boolean padGaps = false;
1081 * when set, alignment should be reordered according to a newly opened tree
1083 public boolean sortByTree = false;
1088 * @return null or the currently selected sequence region
1091 public SequenceGroup getSelectionGroup()
1093 return selectionGroup;
1097 * Set the selection group for this window. Also sets the current alignment as
1098 * the context for the group, if it does not already have one.
1101 * - group holding references to sequences in this alignment view
1105 public void setSelectionGroup(SequenceGroup sg)
1107 selectionGroup = sg;
1108 if (sg != null && sg.getContext() == null)
1110 sg.setContext(alignment);
1114 public void setHiddenColumns(HiddenColumns hidden)
1116 this.alignment.setHiddenColumns(hidden);
1120 public ColumnSelection getColumnSelection()
1126 public void setColumnSelection(ColumnSelection colSel)
1128 this.colSel = colSel;
1131 updateHiddenColumns();
1133 isColSelChanged(true);
1141 public Map<SequenceI, SequenceCollectionI> getHiddenRepSequences()
1143 return hiddenRepSequences;
1147 public void setHiddenRepSequences(
1148 Map<SequenceI, SequenceCollectionI> hiddenRepSequences)
1150 this.hiddenRepSequences = hiddenRepSequences;
1154 public boolean hasSelectedColumns()
1156 ColumnSelection columnSelection = getColumnSelection();
1157 return columnSelection != null && columnSelection.hasSelectedColumns();
1161 public boolean hasHiddenColumns()
1163 return alignment.getHiddenColumns() != null
1164 && alignment.getHiddenColumns().hasHiddenColumns();
1167 public void updateHiddenColumns()
1169 // this method doesn't really do anything now. But - it could, since a
1170 // column Selection could be in the process of modification
1171 // hasHiddenColumns = colSel.hasHiddenColumns();
1175 public boolean hasHiddenRows()
1177 return alignment.getHiddenSequences().getSize() > 0;
1180 protected SequenceGroup selectionGroup;
1182 public void setSequenceSetId(String newid)
1184 if (sequenceSetID != null)
1187 .println("Warning - overwriting a sequenceSetId for a viewport!");
1189 sequenceSetID = new String(newid);
1193 public String getSequenceSetId()
1195 if (sequenceSetID == null)
1197 sequenceSetID = alignment.hashCode() + "";
1200 return sequenceSetID;
1204 * unique viewId for synchronizing state (e.g. with stored Jalview Project)
1207 protected String viewId = null;
1210 public String getViewId()
1214 viewId = this.getSequenceSetId() + "." + this.hashCode() + "";
1219 public void setIgnoreGapsConsensus(boolean b, AlignmentViewPanel ap)
1221 ignoreGapsInConsensusCalculation = b;
1224 updateConsensus(ap);
1225 if (residueShading != null)
1227 residueShading.setThreshold(residueShading.getThreshold(),
1228 ignoreGapsInConsensusCalculation);
1234 private long sgrouphash = -1, colselhash = -1;
1237 * checks current SelectionGroup against record of last hash value, and
1241 * update the record of last hash value
1243 * @return true if SelectionGroup changed since last call (when b is true)
1245 public boolean isSelectionGroupChanged(boolean b)
1247 int hc = (selectionGroup == null || selectionGroup.getSize() == 0) ? -1
1248 : selectionGroup.hashCode();
1249 if (hc != -1 && hc != sgrouphash)
1261 * checks current colsel against record of last hash value, and optionally
1265 * update the record of last hash value
1266 * @return true if colsel changed since last call (when b is true)
1268 public boolean isColSelChanged(boolean b)
1270 int hc = (colSel == null || colSel.isEmpty()) ? -1 : colSel.hashCode();
1271 if (hc != -1 && hc != colselhash)
1283 public boolean isIgnoreGapsConsensus()
1285 return ignoreGapsInConsensusCalculation;
1288 // property change stuff
1289 // JBPNote Prolly only need this in the applet version.
1290 private PropertyChangeSupport changeSupport = new PropertyChangeSupport(
1293 protected boolean showConservation = true;
1295 protected boolean showQuality = true;
1297 protected boolean showConsensus = true;
1299 protected boolean showOccupancy = true;
1301 private Map<SequenceI, Color> sequenceColours = new HashMap<>();
1303 protected SequenceAnnotationOrder sortAnnotationsBy = null;
1305 protected boolean showAutocalculatedAbove;
1308 * when set, view will scroll to show the highlighted position
1310 private boolean followHighlight = true;
1313 * Property change listener for changes in alignment
1318 public void addPropertyChangeListener(
1319 java.beans.PropertyChangeListener listener)
1321 changeSupport.addPropertyChangeListener(listener);
1330 public void removePropertyChangeListener(
1331 java.beans.PropertyChangeListener listener)
1333 changeSupport.removePropertyChangeListener(listener);
1337 * Property change listener for changes in alignment
1346 public void firePropertyChange(String prop, Object oldvalue,
1349 changeSupport.firePropertyChange(prop, oldvalue, newvalue);
1352 // common hide/show column stuff
1354 public void hideSelectedColumns()
1356 if (colSel.isEmpty())
1361 colSel.hideSelectedColumns(alignment);
1362 setSelectionGroup(null);
1363 isColSelChanged(true);
1366 public void hideColumns(int start, int end)
1370 colSel.hideSelectedColumns(start, alignment.getHiddenColumns());
1374 alignment.getHiddenColumns().hideColumns(start, end);
1376 isColSelChanged(true);
1379 public void showColumn(int col)
1381 alignment.getHiddenColumns().revealHiddenColumns(col, colSel);
1382 isColSelChanged(true);
1385 public void showAllHiddenColumns()
1387 alignment.getHiddenColumns().revealAllHiddenColumns(colSel);
1388 isColSelChanged(true);
1391 // common hide/show seq stuff
1392 public void showAllHiddenSeqs()
1394 int startSeq = ranges.getStartSeq();
1395 int endSeq = ranges.getEndSeq();
1397 if (alignment.getHiddenSequences().getSize() > 0)
1399 if (selectionGroup == null)
1401 selectionGroup = new SequenceGroup();
1402 selectionGroup.setEndRes(alignment.getWidth() - 1);
1404 List<SequenceI> tmp = alignment.getHiddenSequences().showAll(
1405 hiddenRepSequences);
1406 for (SequenceI seq : tmp)
1408 selectionGroup.addSequence(seq, false);
1409 setSequenceAnnotationsVisible(seq, true);
1412 hiddenRepSequences = null;
1414 ranges.setStartEndSeq(startSeq, endSeq + tmp.size());
1416 firePropertyChange("alignment", null, alignment.getSequences());
1417 // used to set hasHiddenRows/hiddenRepSequences here, after the property
1423 public void showSequence(int index)
1425 int startSeq = ranges.getStartSeq();
1426 int endSeq = ranges.getEndSeq();
1428 List<SequenceI> tmp = alignment.getHiddenSequences().showSequence(
1429 index, hiddenRepSequences);
1432 if (selectionGroup == null)
1434 selectionGroup = new SequenceGroup();
1435 selectionGroup.setEndRes(alignment.getWidth() - 1);
1438 for (SequenceI seq : tmp)
1440 selectionGroup.addSequence(seq, false);
1441 setSequenceAnnotationsVisible(seq, true);
1444 ranges.setStartEndSeq(startSeq, endSeq + tmp.size());
1446 firePropertyChange("alignment", null, alignment.getSequences());
1451 public void hideAllSelectedSeqs()
1453 if (selectionGroup == null || selectionGroup.getSize() < 1)
1458 SequenceI[] seqs = selectionGroup.getSequencesInOrder(alignment);
1462 setSelectionGroup(null);
1465 public void hideSequence(SequenceI[] seq)
1468 * cache offset to first visible sequence
1470 int startSeq = ranges.getStartSeq();
1474 for (int i = 0; i < seq.length; i++)
1476 alignment.getHiddenSequences().hideSequence(seq[i]);
1477 setSequenceAnnotationsVisible(seq[i], false);
1479 ranges.setStartSeq(startSeq);
1480 firePropertyChange("alignment", null, alignment.getSequences());
1485 * Hides the specified sequence, or the sequences it represents
1488 * the sequence to hide, or keep as representative
1489 * @param representGroup
1490 * if true, hide the current selection group except for the
1491 * representative sequence
1493 public void hideSequences(SequenceI sequence, boolean representGroup)
1495 if (selectionGroup == null || selectionGroup.getSize() < 1)
1497 hideSequence(new SequenceI[] { sequence });
1503 hideRepSequences(sequence, selectionGroup);
1504 setSelectionGroup(null);
1508 int gsize = selectionGroup.getSize();
1509 SequenceI[] hseqs = selectionGroup.getSequences().toArray(
1510 new SequenceI[gsize]);
1512 hideSequence(hseqs);
1513 setSelectionGroup(null);
1518 * Set visibility for any annotations for the given sequence.
1522 protected void setSequenceAnnotationsVisible(SequenceI sequenceI,
1525 AlignmentAnnotation[] anns = alignment.getAlignmentAnnotation();
1528 for (AlignmentAnnotation ann : anns)
1530 if (ann.sequenceRef == sequenceI)
1532 ann.visible = visible;
1538 public void hideRepSequences(SequenceI repSequence, SequenceGroup sg)
1540 int sSize = sg.getSize();
1546 if (hiddenRepSequences == null)
1548 hiddenRepSequences = new Hashtable<>();
1551 hiddenRepSequences.put(repSequence, sg);
1553 // Hide all sequences except the repSequence
1554 SequenceI[] seqs = new SequenceI[sSize - 1];
1556 for (int i = 0; i < sSize; i++)
1558 if (sg.getSequenceAt(i) != repSequence)
1560 if (index == sSize - 1)
1565 seqs[index++] = sg.getSequenceAt(i);
1568 sg.setSeqrep(repSequence); // note: not done in 2.7applet
1569 sg.setHidereps(true); // note: not done in 2.7applet
1576 * @return null or the current reference sequence
1578 public SequenceI getReferenceSeq()
1580 return alignment.getSeqrep();
1585 * @return true iff seq is the reference for the alignment
1587 public boolean isReferenceSeq(SequenceI seq)
1589 return alignment.getSeqrep() == seq;
1595 * @return true if there are sequences represented by this sequence that are
1598 public boolean isHiddenRepSequence(SequenceI seq)
1600 return (hiddenRepSequences != null && hiddenRepSequences
1607 * @return null or a sequence group containing the sequences that seq
1610 public SequenceGroup getRepresentedSequences(SequenceI seq)
1612 return (SequenceGroup) (hiddenRepSequences == null ? null
1613 : hiddenRepSequences.get(seq));
1617 public int adjustForHiddenSeqs(int alignmentIndex)
1619 return alignment.getHiddenSequences().adjustForHiddenSeqs(
1624 public void invertColumnSelection()
1626 colSel.invertColumnSelection(0, alignment.getWidth(), alignment);
1630 public SequenceI[] getSelectionAsNewSequence()
1632 SequenceI[] sequences;
1633 // JBPNote: Need to test jalviewLite.getSelectedSequencesAsAlignmentFrom -
1634 // this was the only caller in the applet for this method
1635 // JBPNote: in applet, this method returned references to the alignment
1636 // sequences, and it did not honour the presence/absence of annotation
1637 // attached to the alignment (probably!)
1638 if (selectionGroup == null || selectionGroup.getSize() == 0)
1640 sequences = alignment.getSequencesArray();
1641 AlignmentAnnotation[] annots = alignment.getAlignmentAnnotation();
1642 for (int i = 0; i < sequences.length; i++)
1644 // construct new sequence with subset of visible annotation
1645 sequences[i] = new Sequence(sequences[i], annots);
1650 sequences = selectionGroup.getSelectionAsNewSequences(alignment);
1657 public SequenceI[] getSequenceSelection()
1659 SequenceI[] sequences = null;
1660 if (selectionGroup != null)
1662 sequences = selectionGroup.getSequencesInOrder(alignment);
1664 if (sequences == null)
1666 sequences = alignment.getSequencesArray();
1672 public CigarArray getViewAsCigars(boolean selectedRegionOnly)
1674 return new CigarArray(alignment, alignment.getHiddenColumns(),
1675 (selectedRegionOnly ? selectionGroup : null));
1679 public jalview.datamodel.AlignmentView getAlignmentView(
1680 boolean selectedOnly)
1682 return getAlignmentView(selectedOnly, false);
1686 public jalview.datamodel.AlignmentView getAlignmentView(
1687 boolean selectedOnly, boolean markGroups)
1689 return new AlignmentView(alignment, alignment.getHiddenColumns(),
1690 selectionGroup, alignment.getHiddenColumns() != null
1691 && alignment.getHiddenColumns().hasHiddenColumns(),
1697 public String[] getViewAsString(boolean selectedRegionOnly)
1699 return getViewAsString(selectedRegionOnly, true);
1703 public String[] getViewAsString(boolean selectedRegionOnly,
1704 boolean exportHiddenSeqs)
1706 String[] selection = null;
1707 SequenceI[] seqs = null;
1709 int start = 0, end = 0;
1710 if (selectedRegionOnly && selectionGroup != null)
1712 iSize = selectionGroup.getSize();
1713 seqs = selectionGroup.getSequencesInOrder(alignment);
1714 start = selectionGroup.getStartRes();
1715 end = selectionGroup.getEndRes() + 1;
1719 if (hasHiddenRows() && exportHiddenSeqs)
1721 AlignmentI fullAlignment = alignment.getHiddenSequences()
1722 .getFullAlignment();
1723 iSize = fullAlignment.getHeight();
1724 seqs = fullAlignment.getSequencesArray();
1725 end = fullAlignment.getWidth();
1729 iSize = alignment.getHeight();
1730 seqs = alignment.getSequencesArray();
1731 end = alignment.getWidth();
1735 selection = new String[iSize];
1736 if (alignment.getHiddenColumns() != null
1737 && alignment.getHiddenColumns().hasHiddenColumns())
1739 selection = alignment.getHiddenColumns().getVisibleSequenceStrings(
1744 for (i = 0; i < iSize; i++)
1746 selection[i] = seqs[i].getSequenceAsString(start, end);
1754 public List<int[]> getVisibleRegionBoundaries(int min, int max)
1756 ArrayList<int[]> regions = new ArrayList<>();
1762 HiddenColumns hidden = alignment.getHiddenColumns();
1763 if (hidden != null && hidden.hasHiddenColumns())
1767 start = hidden.adjustForHiddenColumns(start);
1770 end = hidden.getHiddenBoundaryRight(start);
1781 regions.add(new int[] { start, end });
1783 if (hidden != null && hidden.hasHiddenColumns())
1785 start = hidden.adjustForHiddenColumns(end);
1786 start = hidden.getHiddenBoundaryLeft(start) + 1;
1788 } while (end < max);
1790 int[][] startEnd = new int[regions.size()][2];
1796 public List<AlignmentAnnotation> getVisibleAlignmentAnnotation(
1797 boolean selectedOnly)
1799 ArrayList<AlignmentAnnotation> ala = new ArrayList<>();
1800 AlignmentAnnotation[] aa;
1801 if ((aa = alignment.getAlignmentAnnotation()) != null)
1803 for (AlignmentAnnotation annot : aa)
1805 AlignmentAnnotation clone = new AlignmentAnnotation(annot);
1806 if (selectedOnly && selectionGroup != null)
1808 alignment.getHiddenColumns().makeVisibleAnnotation(
1809 selectionGroup.getStartRes(),
1810 selectionGroup.getEndRes(), clone);
1814 alignment.getHiddenColumns().makeVisibleAnnotation(clone);
1823 public boolean isPadGaps()
1829 public void setPadGaps(boolean padGaps)
1831 this.padGaps = padGaps;
1835 * apply any post-edit constraints and trigger any calculations needed after
1836 * an edit has been performed on the alignment
1841 public void alignmentChanged(AlignmentViewPanel ap)
1845 alignment.padGaps();
1847 if (autoCalculateConsensus)
1849 updateConsensus(ap);
1851 if (hconsensus != null && autoCalculateConsensus)
1853 updateConservation(ap);
1855 if (autoCalculateStrucConsensus)
1857 updateStrucConsensus(ap);
1860 // Reset endRes of groups if beyond alignment width
1861 int alWidth = alignment.getWidth();
1862 List<SequenceGroup> groups = alignment.getGroups();
1865 for (SequenceGroup sg : groups)
1867 if (sg.getEndRes() > alWidth)
1869 sg.setEndRes(alWidth - 1);
1874 if (selectionGroup != null && selectionGroup.getEndRes() > alWidth)
1876 selectionGroup.setEndRes(alWidth - 1);
1879 updateAllColourSchemes();
1880 calculator.restartWorkers();
1881 // alignment.adjustSequenceAnnotations();
1885 * reset scope and do calculations for all applied colourschemes on alignment
1887 void updateAllColourSchemes()
1889 ResidueShaderI rs = residueShading;
1892 rs.alignmentChanged(alignment, hiddenRepSequences);
1894 rs.setConsensus(hconsensus);
1895 if (rs.conservationApplied())
1897 rs.setConservation(Conservation.calculateConservation("All",
1898 alignment.getSequences(), 0, alignment.getWidth(), false,
1899 getConsPercGaps(), false));
1903 for (SequenceGroup sg : alignment.getGroups())
1907 sg.cs.alignmentChanged(sg, hiddenRepSequences);
1909 sg.recalcConservation();
1913 protected void initAutoAnnotation()
1915 // TODO: add menu option action that nulls or creates consensus object
1916 // depending on if the user wants to see the annotation or not in a
1917 // specific alignment
1919 if (hconsensus == null && !isDataset)
1921 if (!alignment.isNucleotide())
1930 consensus = new AlignmentAnnotation("Consensus",
1931 MessageManager.getString("label.consensus_descr"),
1932 new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH);
1933 initConsensus(consensus);
1936 initComplementConsensus();
1941 * If this is a protein alignment and there are mappings to cDNA, adds the
1942 * cDNA consensus annotation and returns true, else returns false.
1944 public boolean initComplementConsensus()
1946 if (!alignment.isNucleotide())
1948 final List<AlignedCodonFrame> codonMappings = alignment
1950 if (codonMappings != null && !codonMappings.isEmpty())
1952 boolean doConsensus = false;
1953 for (AlignedCodonFrame mapping : codonMappings)
1955 // TODO hold mapping type e.g. dna-to-protein in AlignedCodonFrame?
1956 MapList[] mapLists = mapping.getdnaToProt();
1957 // mapLists can be empty if project load has not finished resolving
1959 if (mapLists.length > 0 && mapLists[0].getFromRatio() == 3)
1967 complementConsensus = new AlignmentAnnotation("cDNA Consensus",
1969 .getString("label.complement_consensus_descr"),
1970 new Annotation[1], 0f, 100f,
1971 AlignmentAnnotation.BAR_GRAPH);
1972 initConsensus(complementConsensus);
1980 private void initConsensus(AlignmentAnnotation aa)
1983 aa.autoCalculated = true;
1987 alignment.addAnnotation(aa);
1991 // these should be extracted from the view model - style and settings for
1992 // derived annotation
1993 private void initGapCounts()
1997 gapcounts = new AlignmentAnnotation("Occupancy",
1998 MessageManager.getString("label.occupancy_descr"),
1999 new Annotation[1], 0f,
2000 alignment.getHeight(), AlignmentAnnotation.BAR_GRAPH);
2001 gapcounts.hasText = true;
2002 gapcounts.autoCalculated = true;
2003 gapcounts.scaleColLabel = true;
2004 gapcounts.graph = AlignmentAnnotation.BAR_GRAPH;
2006 alignment.addAnnotation(gapcounts);
2010 private void initConservation()
2012 if (showConservation)
2014 if (conservation == null)
2016 conservation = new AlignmentAnnotation("Conservation",
2017 MessageManager.formatMessage("label.conservation_descr",
2018 getConsPercGaps()), new Annotation[1],
2019 0f, 11f, AlignmentAnnotation.BAR_GRAPH);
2020 conservation.hasText = true;
2021 conservation.autoCalculated = true;
2022 alignment.addAnnotation(conservation);
2027 private void initQuality()
2031 if (quality == null)
2033 quality = new AlignmentAnnotation("Quality",
2034 MessageManager.getString("label.quality_descr"),
2035 new Annotation[1], 0f, 11f, AlignmentAnnotation.BAR_GRAPH);
2036 quality.hasText = true;
2037 quality.autoCalculated = true;
2038 alignment.addAnnotation(quality);
2043 private void initRNAStructure()
2045 if (alignment.hasRNAStructure() && strucConsensus == null)
2047 strucConsensus = new AlignmentAnnotation("StrucConsensus",
2048 MessageManager.getString("label.strucconsensus_descr"),
2049 new Annotation[1], 0f, 100f, AlignmentAnnotation.BAR_GRAPH);
2050 strucConsensus.hasText = true;
2051 strucConsensus.autoCalculated = true;
2055 alignment.addAnnotation(strucConsensus);
2063 * @see jalview.api.AlignViewportI#calcPanelHeight()
2066 public int calcPanelHeight()
2068 // setHeight of panels
2069 AlignmentAnnotation[] anns = getAlignment().getAlignmentAnnotation();
2071 int charHeight = getCharHeight();
2074 BitSet graphgrp = new BitSet();
2075 for (AlignmentAnnotation aa : anns)
2079 System.err.println("Null annotation row: ignoring.");
2086 if (aa.graphGroup > -1)
2088 if (graphgrp.get(aa.graphGroup))
2094 graphgrp.set(aa.graphGroup);
2101 aa.height += charHeight;
2111 aa.height += aa.graphHeight;
2119 height += aa.height;
2131 public void updateGroupAnnotationSettings(boolean applyGlobalSettings,
2132 boolean preserveNewGroupSettings)
2134 boolean updateCalcs = false;
2135 boolean conv = isShowGroupConservation();
2136 boolean cons = isShowGroupConsensus();
2137 boolean showprf = isShowSequenceLogo();
2138 boolean showConsHist = isShowConsensusHistogram();
2139 boolean normLogo = isNormaliseSequenceLogo();
2142 * TODO reorder the annotation rows according to group/sequence ordering on
2145 boolean sortg = true;
2147 // remove old automatic annotation
2148 // add any new annotation
2150 // intersect alignment annotation with alignment groups
2152 AlignmentAnnotation[] aan = alignment.getAlignmentAnnotation();
2153 List<SequenceGroup> oldrfs = new ArrayList<>();
2156 for (int an = 0; an < aan.length; an++)
2158 if (aan[an].autoCalculated && aan[an].groupRef != null)
2160 oldrfs.add(aan[an].groupRef);
2161 alignment.deleteAnnotation(aan[an], false);
2165 if (alignment.getGroups() != null)
2167 for (SequenceGroup sg : alignment.getGroups())
2169 updateCalcs = false;
2170 if (applyGlobalSettings
2171 || (!preserveNewGroupSettings && !oldrfs.contains(sg)))
2173 // set defaults for this group's conservation/consensus
2174 sg.setshowSequenceLogo(showprf);
2175 sg.setShowConsensusHistogram(showConsHist);
2176 sg.setNormaliseSequenceLogo(normLogo);
2181 alignment.addAnnotation(sg.getConservationRow(), 0);
2186 alignment.addAnnotation(sg.getConsensus(), 0);
2188 // refresh the annotation rows
2191 sg.recalcConservation();
2199 public boolean isDisplayReferenceSeq()
2201 return alignment.hasSeqrep() && viewStyle.isDisplayReferenceSeq();
2205 public void setDisplayReferenceSeq(boolean displayReferenceSeq)
2207 viewStyle.setDisplayReferenceSeq(displayReferenceSeq);
2211 public boolean isColourByReferenceSeq()
2213 return alignment.hasSeqrep() && viewStyle.isColourByReferenceSeq();
2217 public Color getSequenceColour(SequenceI seq)
2219 Color sqc = sequenceColours.get(seq);
2220 return (sqc == null ? Color.white : sqc);
2224 public void setSequenceColour(SequenceI seq, Color col)
2228 sequenceColours.remove(seq);
2232 sequenceColours.put(seq, col);
2237 public void updateSequenceIdColours()
2239 for (SequenceGroup sg : alignment.getGroups())
2241 if (sg.idColour != null)
2243 for (SequenceI s : sg.getSequences(getHiddenRepSequences()))
2245 sequenceColours.put(s, sg.idColour);
2252 public void clearSequenceColours()
2254 sequenceColours.clear();
2258 public AlignViewportI getCodingComplement()
2260 return this.codingComplement;
2264 * Set this as the (cDna/protein) complement of the given viewport. Also
2265 * ensures the reverse relationship is set on the given viewport.
2268 public void setCodingComplement(AlignViewportI av)
2272 System.err.println("Ignoring recursive setCodingComplement request");
2276 this.codingComplement = av;
2277 // avoid infinite recursion!
2278 if (av.getCodingComplement() != this)
2280 av.setCodingComplement(this);
2286 public boolean isNucleotide()
2288 return getAlignment() == null ? false : getAlignment().isNucleotide();
2292 public FeaturesDisplayedI getFeaturesDisplayed()
2294 return featuresDisplayed;
2298 public void setFeaturesDisplayed(FeaturesDisplayedI featuresDisplayedI)
2300 featuresDisplayed = featuresDisplayedI;
2304 public boolean areFeaturesDisplayed()
2306 return featuresDisplayed != null
2307 && featuresDisplayed.getRegisteredFeaturesCount() > 0;
2314 * features are displayed if true
2317 public void setShowSequenceFeatures(boolean b)
2319 viewStyle.setShowSequenceFeatures(b);
2323 public boolean isShowSequenceFeatures()
2325 return viewStyle.isShowSequenceFeatures();
2329 public void setShowSequenceFeaturesHeight(boolean selected)
2331 viewStyle.setShowSequenceFeaturesHeight(selected);
2335 public boolean isShowSequenceFeaturesHeight()
2337 return viewStyle.isShowSequenceFeaturesHeight();
2341 public void setShowAnnotation(boolean b)
2343 viewStyle.setShowAnnotation(b);
2347 public boolean isShowAnnotation()
2349 return viewStyle.isShowAnnotation();
2353 public boolean isRightAlignIds()
2355 return viewStyle.isRightAlignIds();
2359 public void setRightAlignIds(boolean rightAlignIds)
2361 viewStyle.setRightAlignIds(rightAlignIds);
2365 public boolean getConservationSelected()
2367 return viewStyle.getConservationSelected();
2371 public void setShowBoxes(boolean state)
2373 viewStyle.setShowBoxes(state);
2378 * @see jalview.api.ViewStyleI#getTextColour()
2381 public Color getTextColour()
2383 return viewStyle.getTextColour();
2388 * @see jalview.api.ViewStyleI#getTextColour2()
2391 public Color getTextColour2()
2393 return viewStyle.getTextColour2();
2398 * @see jalview.api.ViewStyleI#getThresholdTextColour()
2401 public int getThresholdTextColour()
2403 return viewStyle.getThresholdTextColour();
2408 * @see jalview.api.ViewStyleI#isConservationColourSelected()
2411 public boolean isConservationColourSelected()
2413 return viewStyle.isConservationColourSelected();
2418 * @see jalview.api.ViewStyleI#isRenderGaps()
2421 public boolean isRenderGaps()
2423 return viewStyle.isRenderGaps();
2428 * @see jalview.api.ViewStyleI#isShowColourText()
2431 public boolean isShowColourText()
2433 return viewStyle.isShowColourText();
2437 * @param conservationColourSelected
2438 * @see jalview.api.ViewStyleI#setConservationColourSelected(boolean)
2441 public void setConservationColourSelected(
2442 boolean conservationColourSelected)
2444 viewStyle.setConservationColourSelected(conservationColourSelected);
2448 * @param showColourText
2449 * @see jalview.api.ViewStyleI#setShowColourText(boolean)
2452 public void setShowColourText(boolean showColourText)
2454 viewStyle.setShowColourText(showColourText);
2459 * @see jalview.api.ViewStyleI#setTextColour(java.awt.Color)
2462 public void setTextColour(Color textColour)
2464 viewStyle.setTextColour(textColour);
2468 * @param thresholdTextColour
2469 * @see jalview.api.ViewStyleI#setThresholdTextColour(int)
2472 public void setThresholdTextColour(int thresholdTextColour)
2474 viewStyle.setThresholdTextColour(thresholdTextColour);
2478 * @param textColour2
2479 * @see jalview.api.ViewStyleI#setTextColour2(java.awt.Color)
2482 public void setTextColour2(Color textColour2)
2484 viewStyle.setTextColour2(textColour2);
2488 public ViewStyleI getViewStyle()
2490 return new ViewStyle(viewStyle);
2494 public void setViewStyle(ViewStyleI settingsForView)
2496 viewStyle = new ViewStyle(settingsForView);
2497 if (residueShading != null)
2499 residueShading.setConservationApplied(settingsForView
2500 .isConservationColourSelected());
2505 public boolean sameStyle(ViewStyleI them)
2507 return viewStyle.sameStyle(them);
2512 * @see jalview.api.ViewStyleI#getIdWidth()
2515 public int getIdWidth()
2517 return viewStyle.getIdWidth();
2522 * @see jalview.api.ViewStyleI#setIdWidth(int)
2525 public void setIdWidth(int i)
2527 viewStyle.setIdWidth(i);
2532 * @see jalview.api.ViewStyleI#isCentreColumnLabels()
2535 public boolean isCentreColumnLabels()
2537 return viewStyle.isCentreColumnLabels();
2541 * @param centreColumnLabels
2542 * @see jalview.api.ViewStyleI#setCentreColumnLabels(boolean)
2545 public void setCentreColumnLabels(boolean centreColumnLabels)
2547 viewStyle.setCentreColumnLabels(centreColumnLabels);
2552 * @see jalview.api.ViewStyleI#setShowDBRefs(boolean)
2555 public void setShowDBRefs(boolean showdbrefs)
2557 viewStyle.setShowDBRefs(showdbrefs);
2562 * @see jalview.api.ViewStyleI#isShowDBRefs()
2565 public boolean isShowDBRefs()
2567 return viewStyle.isShowDBRefs();
2572 * @see jalview.api.ViewStyleI#isShowNPFeats()
2575 public boolean isShowNPFeats()
2577 return viewStyle.isShowNPFeats();
2581 * @param shownpfeats
2582 * @see jalview.api.ViewStyleI#setShowNPFeats(boolean)
2585 public void setShowNPFeats(boolean shownpfeats)
2587 viewStyle.setShowNPFeats(shownpfeats);
2590 public abstract StructureSelectionManager getStructureSelectionManager();
2593 * Add one command to the command history list.
2597 public void addToHistoryList(CommandI command)
2599 if (this.historyList != null)
2601 this.historyList.push(command);
2602 broadcastCommand(command, false);
2606 protected void broadcastCommand(CommandI command, boolean undo)
2608 getStructureSelectionManager().commandPerformed(command, undo,
2613 * Add one command to the command redo list.
2617 public void addToRedoList(CommandI command)
2619 if (this.redoList != null)
2621 this.redoList.push(command);
2623 broadcastCommand(command, true);
2627 * Clear the command redo list.
2629 public void clearRedoList()
2631 if (this.redoList != null)
2633 this.redoList.clear();
2637 public void setHistoryList(Deque<CommandI> list)
2639 this.historyList = list;
2642 public Deque<CommandI> getHistoryList()
2644 return this.historyList;
2647 public void setRedoList(Deque<CommandI> list)
2649 this.redoList = list;
2652 public Deque<CommandI> getRedoList()
2654 return this.redoList;
2658 public VamsasSource getVamsasSource()
2663 public SequenceAnnotationOrder getSortAnnotationsBy()
2665 return sortAnnotationsBy;
2668 public void setSortAnnotationsBy(SequenceAnnotationOrder sortAnnotationsBy)
2670 this.sortAnnotationsBy = sortAnnotationsBy;
2673 public boolean isShowAutocalculatedAbove()
2675 return showAutocalculatedAbove;
2678 public void setShowAutocalculatedAbove(boolean showAutocalculatedAbove)
2680 this.showAutocalculatedAbove = showAutocalculatedAbove;
2684 public boolean isScaleProteinAsCdna()
2686 return viewStyle.isScaleProteinAsCdna();
2690 public void setScaleProteinAsCdna(boolean b)
2692 viewStyle.setScaleProteinAsCdna(b);
2696 public boolean isProteinFontAsCdna()
2698 return viewStyle.isProteinFontAsCdna();
2702 public void setProteinFontAsCdna(boolean b)
2704 viewStyle.setProteinFontAsCdna(b);
2708 * @return true if view should scroll to show the highlighted region of a
2713 public final boolean isFollowHighlight()
2715 return followHighlight;
2719 public final void setFollowHighlight(boolean b)
2721 this.followHighlight = b;
2725 public ViewportRanges getRanges()
2731 * Helper method to populate the SearchResults with the location in the
2732 * complementary alignment to scroll to, in order to match this one.
2735 * the SearchResults to add to
2736 * @return the offset (below top of visible region) of the matched sequence
2738 protected int findComplementScrollTarget(SearchResultsI sr)
2740 final AlignViewportI complement = getCodingComplement();
2741 if (complement == null || !complement.isFollowHighlight())
2745 boolean iAmProtein = !getAlignment().isNucleotide();
2746 AlignmentI proteinAlignment = iAmProtein ? getAlignment() : complement
2748 if (proteinAlignment == null)
2752 final List<AlignedCodonFrame> mappings = proteinAlignment
2756 * Heuristic: find the first mapped sequence (if any) with a non-gapped
2757 * residue in the middle column of the visible region. Scroll the
2758 * complementary alignment to line up the corresponding residue.
2761 SequenceI sequence = null;
2764 * locate 'middle' column (true middle if an odd number visible, left of
2765 * middle if an even number visible)
2767 int middleColumn = ranges.getStartRes()
2768 + (ranges.getEndRes() - ranges.getStartRes()) / 2;
2769 final HiddenSequences hiddenSequences = getAlignment()
2770 .getHiddenSequences();
2773 * searching to the bottom of the alignment gives smoother scrolling across
2774 * all gapped visible regions
2776 int lastSeq = alignment.getHeight() - 1;
2777 List<AlignedCodonFrame> seqMappings = null;
2778 for (int seqNo = ranges.getStartSeq(); seqNo < lastSeq; seqNo++, seqOffset++)
2780 sequence = getAlignment().getSequenceAt(seqNo);
2781 if (hiddenSequences != null && hiddenSequences.isHidden(sequence))
2785 if (Comparison.isGap(sequence.getCharAt(middleColumn)))
2789 seqMappings = MappingUtils
2790 .findMappingsForSequenceAndOthers(sequence, mappings,
2791 getCodingComplement().getAlignment().getSequences());
2792 if (!seqMappings.isEmpty())
2798 if (sequence == null || seqMappings == null || seqMappings.isEmpty())
2801 * No ungapped mapped sequence in middle column - do nothing
2805 MappingUtils.addSearchResults(sr, sequence,
2806 sequence.findPosition(middleColumn), seqMappings);
2811 * synthesize a column selection if none exists so it covers the given
2812 * selection group. if wholewidth is false, no column selection is made if the
2813 * selection group covers the whole alignment width.
2818 public void expandColSelection(SequenceGroup sg, boolean wholewidth)
2821 if (sg != null && (sgs = sg.getStartRes()) >= 0
2822 && sg.getStartRes() <= (sge = sg.getEndRes())
2823 && !this.hasSelectedColumns())
2825 if (!wholewidth && alignment.getWidth() == (1 + sge - sgs))
2832 colSel = new ColumnSelection();
2834 for (int cspos = sg.getStartRes(); cspos <= sg.getEndRes(); cspos++)
2836 colSel.addElement(cspos);
2842 * hold status of current selection group - defined on alignment or not.
2844 private boolean selectionIsDefinedGroup = false;
2847 public boolean isSelectionDefinedGroup()
2849 if (selectionGroup == null)
2853 if (isSelectionGroupChanged(true))
2855 selectionIsDefinedGroup = false;
2856 List<SequenceGroup> gps = alignment.getGroups();
2857 if (gps == null || gps.size() == 0)
2859 selectionIsDefinedGroup = false;
2863 selectionIsDefinedGroup = gps.contains(selectionGroup);
2866 return selectionGroup.isDefined() || selectionIsDefinedGroup;
2870 * null, or currently highlighted results on this view
2872 private SearchResultsI searchResults = null;
2875 public boolean hasSearchResults()
2877 return searchResults != null;
2881 public void setSearchResults(SearchResultsI results)
2883 searchResults = results;
2887 public SearchResultsI getSearchResults()
2889 return searchResults;
2893 * get the consensus sequence as displayed under the PID consensus annotation
2896 * @return consensus sequence as a new sequence object
2898 public SequenceI getConsensusSeq()
2900 if (consensus == null)
2902 updateConsensus(null);
2904 if (consensus == null)
2908 StringBuffer seqs = new StringBuffer();
2909 for (int i = 0; i < consensus.annotations.length; i++)
2911 Annotation annotation = consensus.annotations[i];
2912 if (annotation != null)
2914 String description = annotation.description;
2915 if (description != null && description.startsWith("["))
2917 // consensus is a tie - just pick the first one
2918 seqs.append(description.charAt(1));
2922 seqs.append(annotation.displayCharacter);
2927 SequenceI sq = new Sequence("Consensus", seqs.toString());
2928 sq.setDescription("Percentage Identity Consensus "
2929 + ((ignoreGapsInConsensusCalculation) ? " without gaps" : ""));