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.
23 import jalview.analysis.AlignmentUtils;
24 import jalview.analysis.AnnotationSorter.SequenceAnnotationOrder;
25 import jalview.api.AlignViewportI;
26 import jalview.api.AlignmentViewPanel;
27 import jalview.api.FeatureColourI;
28 import jalview.api.FeatureSettingsModelI;
29 import jalview.api.FeaturesDisplayedI;
30 import jalview.api.ViewStyleI;
31 import jalview.bin.Cache;
32 import jalview.commands.CommandI;
33 import jalview.datamodel.AlignedCodonFrame;
34 import jalview.datamodel.Alignment;
35 import jalview.datamodel.AlignmentI;
36 import jalview.datamodel.ColumnSelection;
37 import jalview.datamodel.HiddenColumns;
38 import jalview.datamodel.SearchResults;
39 import jalview.datamodel.SearchResultsI;
40 import jalview.datamodel.SequenceGroup;
41 import jalview.datamodel.SequenceI;
42 import jalview.renderer.ResidueShader;
43 import jalview.schemes.ColourSchemeI;
44 import jalview.schemes.ColourSchemeProperty;
45 import jalview.schemes.ResidueColourScheme;
46 import jalview.schemes.UserColourScheme;
47 import jalview.structure.SelectionSource;
48 import jalview.structure.StructureSelectionManager;
49 import jalview.structure.VamsasSource;
50 import jalview.util.ColorUtils;
51 import jalview.util.MessageManager;
52 import jalview.viewmodel.AlignmentViewport;
53 import jalview.ws.params.AutoCalcSetting;
55 import java.awt.Container;
56 import java.awt.Dimension;
58 import java.awt.FontMetrics;
59 import java.awt.Rectangle;
60 import java.util.ArrayList;
61 import java.util.Hashtable;
62 import java.util.List;
64 import javax.swing.JInternalFrame;
70 * @version $Revision: 1.141 $
72 public class AlignViewport extends AlignmentViewport
73 implements SelectionSource
77 boolean cursorMode = false;
79 boolean antiAlias = false;
81 private Rectangle explodedGeometry = null;
83 private String viewName = null;
86 * Flag set true on the view that should 'gather' multiple views of the same
87 * sequence set id when a project is reloaded. Set false on all views when
88 * they are 'exploded' into separate windows. Set true on the current view
89 * when 'Gather' is performed, and also on the first tab when the first new
92 private boolean gatherViewsHere = false;
94 private AnnotationColumnChooser annotationColumnSelectionState;
97 * Creates a new AlignViewport object.
102 public AlignViewport(AlignmentI al)
109 * Create a new AlignViewport object with a specific sequence set ID
113 * (may be null - but potential for ambiguous constructor exception)
115 public AlignViewport(AlignmentI al, String seqsetid)
117 this(al, seqsetid, null);
120 public AlignViewport(AlignmentI al, String seqsetid, String viewid)
123 sequenceSetID = seqsetid;
125 // TODO remove these once 2.4.VAMSAS release finished
126 if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
129 "Setting viewport's sequence set id : " + sequenceSetID);
131 if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
133 Cache.log.debug("Setting viewport's view id : " + viewId);
140 * Create a new AlignViewport with hidden regions
144 * @param hiddenColumns
147 public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns)
150 if (hiddenColumns != null)
152 al.setHiddenColumns(hiddenColumns);
158 * New viewport with hidden columns and an existing sequence set id
161 * @param hiddenColumns
165 public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns,
168 this(al, hiddenColumns, seqsetid, null);
172 * New viewport with hidden columns and an existing sequence set id and viewid
175 * @param hiddenColumns
181 public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns,
182 String seqsetid, String viewid)
185 sequenceSetID = seqsetid;
187 // TODO remove these once 2.4.VAMSAS release finished
188 if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
191 "Setting viewport's sequence set id : " + sequenceSetID);
193 if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
195 Cache.log.debug("Setting viewport's view id : " + viewId);
198 if (hiddenColumns != null)
200 al.setHiddenColumns(hiddenColumns);
206 * Apply any settings saved in user preferences
208 private void applyViewProperties()
210 antiAlias = Cache.getDefault("ANTI_ALIAS", true);
212 viewStyle.setShowJVSuffix(Cache.getDefault("SHOW_JVSUFFIX", true));
213 setShowAnnotation(Cache.getDefault("SHOW_ANNOTATIONS", true));
215 setRightAlignIds(Cache.getDefault("RIGHT_ALIGN_IDS", false));
216 setCentreColumnLabels(Cache.getDefault("CENTRE_COLUMN_LABELS", false));
217 autoCalculateConsensus = Cache.getDefault("AUTO_CALC_CONSENSUS", true);
219 setPadGaps(Cache.getDefault("PAD_GAPS", true));
220 setShowNPFeats(Cache.getDefault("SHOW_NPFEATS_TOOLTIP", true));
221 setShowDBRefs(Cache.getDefault("SHOW_DBREFS_TOOLTIP", true));
222 viewStyle.setSeqNameItalics(Cache.getDefault("ID_ITALICS", true));
223 viewStyle.setWrapAlignment(Cache.getDefault("WRAP_ALIGNMENT", false));
224 viewStyle.setShowUnconserved(
225 Cache.getDefault("SHOW_UNCONSERVED", false));
226 sortByTree = Cache.getDefault("SORT_BY_TREE", false);
227 followSelection = Cache.getDefault("FOLLOW_SELECTIONS", true);
228 sortAnnotationsBy = SequenceAnnotationOrder
229 .valueOf(Cache.getDefault(Preferences.SORT_ANNOTATIONS,
230 SequenceAnnotationOrder.NONE.name()));
231 showAutocalculatedAbove = Cache
232 .getDefault(Preferences.SHOW_AUTOCALC_ABOVE, false);
233 viewStyle.setScaleProteinAsCdna(
234 Cache.getDefault(Preferences.SCALE_PROTEIN_TO_CDNA, true));
239 applyViewProperties();
241 String fontName = Cache.getDefault("FONT_NAME", "SansSerif");
242 String fontStyle = Cache.getDefault("FONT_STYLE", Font.PLAIN + "");
243 String fontSize = Cache.getDefault("FONT_SIZE", "10");
247 if (fontStyle.equals("bold"))
251 else if (fontStyle.equals("italic"))
256 setFont(new Font(fontName, style, Integer.parseInt(fontSize)), true);
259 .setGapCharacter(Cache.getDefault("GAP_SYMBOL", "-").charAt(0));
261 // We must set conservation and consensus before setting colour,
262 // as Blosum and Clustal require this to be done
263 if (hconsensus == null && !isDataset)
265 if (!alignment.isNucleotide())
267 showConservation = Cache.getDefault("SHOW_CONSERVATION", true);
268 showQuality = Cache.getDefault("SHOW_QUALITY", true);
269 showGroupConservation = Cache.getDefault("SHOW_GROUP_CONSERVATION",
272 showConsensusHistogram = Cache.getDefault("SHOW_CONSENSUS_HISTOGRAM",
274 showSequenceLogo = Cache.getDefault("SHOW_CONSENSUS_LOGO", false);
275 normaliseSequenceLogo = Cache.getDefault("NORMALISE_CONSENSUS_LOGO",
277 showGroupConsensus = Cache.getDefault("SHOW_GROUP_CONSENSUS", false);
278 showConsensus = Cache.getDefault("SHOW_IDENTITY", true);
280 showOccupancy = Cache.getDefault(Preferences.SHOW_OCCUPANCY, true);
282 initAutoAnnotation();
283 String colourProperty = alignment.isNucleotide()
284 ? Preferences.DEFAULT_COLOUR_NUC
285 : Preferences.DEFAULT_COLOUR_PROT;
286 String schemeName = Cache.getProperty(colourProperty);
287 if (schemeName == null)
289 // only DEFAULT_COLOUR available in Jalview before 2.9
290 schemeName = Cache.getDefault(Preferences.DEFAULT_COLOUR,
291 ResidueColourScheme.NONE);
293 ColourSchemeI colourScheme = ColourSchemeProperty
294 .getColourScheme(this, alignment, schemeName);
295 residueShading = new ResidueShader(colourScheme);
297 if (colourScheme instanceof UserColourScheme)
299 residueShading = new ResidueShader(
300 UserDefinedColours.loadDefaultColours());
301 residueShading.setThreshold(0, isIgnoreGapsConsensus());
304 if (residueShading != null)
306 residueShading.setConsensus(hconsensus);
308 setColourAppliesToAllGroups(true);
311 boolean validCharWidth;
317 public void setFont(Font f, boolean setGrid)
321 Container c = new Container();
325 FontMetrics fm = c.getFontMetrics(font);
326 int ww = fm.charWidth('M');
327 setCharHeight(fm.getHeight());
330 viewStyle.setFontName(font.getName());
331 viewStyle.setFontStyle(font.getStyle());
332 viewStyle.setFontSize(font.getSize());
334 validCharWidth = true;
338 public void setViewStyle(ViewStyleI settingsForView)
340 super.setViewStyle(settingsForView);
341 setFont(new Font(viewStyle.getFontName(), viewStyle.getFontStyle(),
342 viewStyle.getFontSize()), false);
348 * @return DOCUMENT ME!
350 public Font getFont()
362 public void setAlignment(AlignmentI align)
364 replaceMappings(align);
365 super.setAlignment(align);
369 * Replace any codon mappings for this viewport with those for the given
374 public void replaceMappings(AlignmentI align)
378 * Deregister current mappings (if any)
380 deregisterMappings();
383 * Register new mappings (if any)
387 StructureSelectionManager ssm = StructureSelectionManager
388 .getStructureSelectionManager(Desktop.instance);
389 ssm.registerMappings(align.getCodonFrames());
393 * replace mappings on our alignment
395 if (alignment != null && align != null)
397 alignment.setCodonFrames(align.getCodonFrames());
401 protected void deregisterMappings()
403 AlignmentI al = getAlignment();
406 List<AlignedCodonFrame> mappings = al.getCodonFrames();
407 if (mappings != null)
409 StructureSelectionManager ssm = StructureSelectionManager
410 .getStructureSelectionManager(Desktop.instance);
411 for (AlignedCodonFrame acf : mappings)
413 if (noReferencesTo(acf))
415 ssm.deregisterMapping(acf);
425 * @return DOCUMENT ME!
428 public char getGapCharacter()
430 return getAlignment().getGapCharacter();
439 public void setGapCharacter(char gap)
441 if (getAlignment() != null)
443 getAlignment().setGapCharacter(gap);
448 * get hash of undo and redo list for the alignment
450 * @return long[] { historyList.hashCode, redoList.hashCode };
452 public long[] getUndoRedoHash()
455 if (historyList == null || redoList == null)
457 return new long[] { -1, -1 };
459 return new long[] { historyList.hashCode(), this.redoList.hashCode() };
463 * test if a particular set of hashcodes are different to the hashcodes for
464 * the undo and redo list.
467 * the stored set of hashcodes as returned by getUndoRedoHash
468 * @return true if the hashcodes differ (ie the alignment has been edited) or
469 * the stored hashcode array differs in size
471 public boolean isUndoRedoHashModified(long[] undoredo)
473 if (undoredo == null)
477 long[] cstate = getUndoRedoHash();
478 if (cstate.length != undoredo.length)
483 for (int i = 0; i < cstate.length; i++)
485 if (cstate[i] != undoredo[i])
493 public boolean followSelection = true;
496 * @return true if view selection should always follow the selections
497 * broadcast by other selection sources
499 public boolean getFollowSelection()
501 return followSelection;
505 * Send the current selection to be broadcast to any selection listeners.
508 public void sendSelection()
510 jalview.structure.StructureSelectionManager
511 .getStructureSelectionManager(Desktop.instance)
512 .sendSelection(new SequenceGroup(getSelectionGroup()),
513 new ColumnSelection(getColumnSelection()),
514 new HiddenColumns(getAlignment().getHiddenColumns()),
519 * return the alignPanel containing the given viewport. Use this to get the
520 * components currently handling the given viewport.
523 * @return null or an alignPanel guaranteed to have non-null alignFrame
526 public AlignmentPanel getAlignPanel()
528 AlignmentPanel[] aps = PaintRefresher
529 .getAssociatedPanels(this.getSequenceSetId());
530 for (int p = 0; aps != null && p < aps.length; p++)
532 if (aps[p].av == this)
540 public boolean getSortByTree()
545 public void setSortByTree(boolean sort)
551 * Returns the (Desktop) instance of the StructureSelectionManager
554 public StructureSelectionManager getStructureSelectionManager()
556 return StructureSelectionManager
557 .getStructureSelectionManager(Desktop.instance);
561 public boolean isNormaliseSequenceLogo()
563 return normaliseSequenceLogo;
566 public void setNormaliseSequenceLogo(boolean state)
568 normaliseSequenceLogo = state;
573 * @return true if alignment characters should be displayed
576 public boolean isValidCharWidth()
578 return validCharWidth;
581 private Hashtable<String, AutoCalcSetting> calcIdParams = new Hashtable<>();
583 public AutoCalcSetting getCalcIdSettingsFor(String calcId)
585 return calcIdParams.get(calcId);
588 public void setCalcIdSettingsFor(String calcId, AutoCalcSetting settings,
591 calcIdParams.put(calcId, settings);
592 // TODO: create a restart list to trigger any calculations that need to be
593 // restarted after load
594 // calculator.getRegisteredWorkersOfClass(settings.getWorkerClass())
597 Cache.log.debug("trigger update for " + calcId);
602 * Method called when another alignment's edit (or possibly other) command is
605 * To allow for sequence mappings (e.g. protein to cDNA), we have to first
606 * 'unwind' the command on the source sequences (in simulation, not in fact),
607 * and then for each edit in turn:
609 * <li>compute the equivalent edit on the mapped sequences</li>
610 * <li>apply the mapped edit</li>
611 * <li>'apply' the source edit to the working copy of the source
620 public void mirrorCommand(CommandI command, boolean undo,
621 StructureSelectionManager ssm, VamsasSource source)
624 * Do nothing unless we are a 'complement' of the source. May replace this
625 * with direct calls not via SSM.
627 if (source instanceof AlignViewportI
628 && ((AlignViewportI) source).getCodingComplement() == this)
637 CommandI mappedCommand = ssm.mapCommand(command, undo, getAlignment(),
639 if (mappedCommand != null)
641 AlignmentI[] views = getAlignPanel().alignFrame.getViewAlignments();
642 mappedCommand.doCommand(views);
643 getAlignPanel().alignmentChanged();
648 * Add the sequences from the given alignment to this viewport. Optionally,
649 * may give the user the option to open a new frame, or split panel, with cDNA
650 * and protein linked.
655 public void addAlignment(AlignmentI toAdd, String title)
657 // TODO: promote to AlignViewportI? applet CutAndPasteTransfer is different
659 // JBPComment: title is a largely redundant parameter at the moment
660 // JBPComment: this really should be an 'insert/pre/append' controller
661 // JBPComment: but the DNA/Protein check makes it a bit more complex
663 // refactored from FileLoader / CutAndPasteTransfer / SequenceFetcher with
665 // TODO: create undo object for this JAL-1101
668 * Ensure datasets are created for the new alignment as
669 * mappings operate on dataset sequences
671 toAdd.setDataset(null);
674 * Check if any added sequence could be the object of a mapping or
675 * cross-reference; if so, make the mapping explicit
677 getAlignment().realiseMappings(toAdd.getSequences());
680 * If any cDNA/protein mappings exist or can be made between the alignments,
681 * offer to open a split frame with linked alignments
683 if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
685 if (AlignmentUtils.isMappable(toAdd, getAlignment()))
687 openLinkedAlignment(toAdd, title);
691 addDataToAlignment(toAdd);
695 * adds sequences to this alignment
699 void addDataToAlignment(AlignmentI toAdd)
701 // TODO: JAL-407 regardless of above - identical sequences (based on ID and
702 // provenance) should share the same dataset sequence
704 AlignmentI al = getAlignment();
705 String gap = String.valueOf(al.getGapCharacter());
706 for (int i = 0; i < toAdd.getHeight(); i++)
708 SequenceI seq = toAdd.getSequenceAt(i);
711 * - 'align' any mapped sequences as per existing
712 * e.g. cdna to genome, domain hit to protein sequence
713 * very experimental! (need a separate menu option for this)
714 * - only add mapped sequences ('select targets from a dataset')
716 if (true /*AlignmentUtils.alignSequenceAs(seq, al, gap, true, true)*/)
722 ranges.setEndSeq(getAlignment().getHeight() - 1); // BH 2019.04.18
723 firePropertyChange("alignment", null, getAlignment().getSequences());
727 * Show a dialog with the option to open and link (cDNA <-> protein) as a new
728 * alignment, either as a standalone alignment or in a split frame. Returns
729 * true if the new alignment was opened, false if not, because the user
730 * declined the offer.
735 protected void openLinkedAlignment(AlignmentI al, String title)
737 String[] options = new String[] { MessageManager.getString("action.no"),
738 MessageManager.getString("label.split_window"),
739 MessageManager.getString("label.new_window"), };
740 final String question = JvSwingUtils.wrapTooltip(true,
741 MessageManager.getString("label.open_split_window?"));
742 final AlignViewport us = this;
745 * options No, Split Window, New Window correspond to
746 * dialog responses 0, 1, 2 (even though JOptionPane shows them
749 JvOptionPane dialog = JvOptionPane.newOptionDialog(Desktop.desktop)
750 .setResponseHandler(0, new Runnable()
755 addDataToAlignment(al);
757 }).setResponseHandler(1, new Runnable()
762 us.openLinkedAlignmentAs(al, title, true);
764 }).setResponseHandler(2, new Runnable()
769 us.openLinkedAlignmentAs(al, title, false);
772 dialog.showDialog(question,
773 MessageManager.getString("label.open_split_window"),
774 JvOptionPane.DEFAULT_OPTION, JvOptionPane.PLAIN_MESSAGE, null,
775 options, options[0]);
778 protected void openLinkedAlignmentAs(AlignmentI al, String title,
779 boolean newWindowOrSplitPane)
782 * Identify protein and dna alignments. Make a copy of this one if opening
783 * in a new split pane.
785 AlignmentI thisAlignment = newWindowOrSplitPane
786 ? new Alignment(getAlignment())
788 AlignmentI protein = al.isNucleotide() ? thisAlignment : al;
789 final AlignmentI cdna = al.isNucleotide() ? al : thisAlignment;
792 * Map sequences. At least one should get mapped as we have already passed
793 * the test for 'mappability'. Any mappings made will be added to the
794 * protein alignment. Note creating dataset sequences on the new alignment
795 * is a pre-requisite for building mappings.
798 AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna);
801 * Create the AlignFrame for the added alignment. If it is protein, mappings
802 * are registered with StructureSelectionManager as a side-effect.
804 AlignFrame newAlignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
805 AlignFrame.DEFAULT_HEIGHT);
806 newAlignFrame.setTitle(title);
807 newAlignFrame.setStatus(MessageManager
808 .formatMessage("label.successfully_loaded_file", new Object[]
811 // TODO if we want this (e.g. to enable reload of the alignment from file),
812 // we will need to add parameters to the stack.
813 // if (!protocol.equals(DataSourceType.PASTE))
815 // alignFrame.setFileName(file, format);
818 if (!newWindowOrSplitPane)
820 Desktop.addInternalFrame(newAlignFrame, title,
821 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
826 newAlignFrame.setMaximum(
827 jalview.bin.Cache.getDefault("SHOW_FULLSCREEN", false));
828 } catch (java.beans.PropertyVetoException ex)
832 if (newWindowOrSplitPane)
834 al.alignAs(thisAlignment);
835 protein = openSplitFrame(newAlignFrame, thisAlignment);
840 * Helper method to open a new SplitFrame holding linked dna and protein
843 * @param newAlignFrame
844 * containing a new alignment to be shown
846 * cdna/protein complement alignment to show in the other split half
847 * @return the protein alignment in the split frame
849 protected AlignmentI openSplitFrame(AlignFrame newAlignFrame,
850 AlignmentI complement)
853 * Make a new frame with a copy of the alignment we are adding to. If this
854 * is protein, the mappings to cDNA will be registered with
855 * StructureSelectionManager as a side-effect.
857 AlignFrame copyMe = new AlignFrame(complement, AlignFrame.DEFAULT_WIDTH,
858 AlignFrame.DEFAULT_HEIGHT);
859 copyMe.setTitle(getAlignPanel().alignFrame.getTitle());
861 AlignmentI al = newAlignFrame.viewport.getAlignment();
862 final AlignFrame proteinFrame = al.isNucleotide() ? copyMe
864 final AlignFrame cdnaFrame = al.isNucleotide() ? newAlignFrame : copyMe;
865 cdnaFrame.setVisible(true);
866 proteinFrame.setVisible(true);
867 String linkedTitle = MessageManager
868 .getString("label.linked_view_title");
871 * Open in split pane. DNA sequence above, protein below.
873 JInternalFrame splitFrame = new SplitFrame(cdnaFrame, proteinFrame);
874 Desktop.addInternalFrame(splitFrame, linkedTitle, -1, -1);
876 return proteinFrame.viewport.getAlignment();
879 public AnnotationColumnChooser getAnnotationColumnSelectionState()
881 return annotationColumnSelectionState;
884 public void setAnnotationColumnSelectionState(
885 AnnotationColumnChooser currentAnnotationColumnSelectionState)
887 this.annotationColumnSelectionState = currentAnnotationColumnSelectionState;
891 public void setIdWidth(int i)
894 AlignmentPanel ap = getAlignPanel();
897 // modify GUI elements to reflect geometry change
898 Dimension idw = ap.getIdPanel().getIdCanvas().getPreferredSize();
900 ap.getIdPanel().getIdCanvas().setPreferredSize(idw);
904 public Rectangle getExplodedGeometry()
906 return explodedGeometry;
909 public void setExplodedGeometry(Rectangle explodedPosition)
911 this.explodedGeometry = explodedPosition;
914 public boolean isGatherViewsHere()
916 return gatherViewsHere;
919 public void setGatherViewsHere(boolean gatherViewsHere)
921 this.gatherViewsHere = gatherViewsHere;
925 * If this viewport has a (Protein/cDNA) complement, then scroll the
926 * complementary alignment to match this one.
928 public void scrollComplementaryAlignment()
931 * Populate a SearchResults object with the mapped location to scroll to. If
932 * there is no complement, or it is not following highlights, or no mapping
933 * is found, the result will be empty.
935 SearchResultsI sr = new SearchResults();
936 int verticalOffset = findComplementScrollTarget(sr);
939 // TODO would like next line without cast but needs more refactoring...
940 final AlignmentPanel complementPanel = ((AlignViewport) getCodingComplement())
942 complementPanel.setToScrollComplementPanel(false);
943 complementPanel.scrollToCentre(sr, verticalOffset);
944 complementPanel.setToScrollComplementPanel(true);
949 * Answers true if no alignment holds a reference to the given mapping
954 protected boolean noReferencesTo(AlignedCodonFrame acf)
956 AlignFrame[] frames = Desktop.getAlignFrames();
961 for (AlignFrame af : frames)
965 for (AlignmentViewPanel ap : af.getAlignPanels())
967 AlignmentI al = ap.getAlignment();
968 if (al != null && al.getCodonFrames().contains(acf))
979 * Applies the supplied feature settings descriptor to currently known
980 * features. This supports an 'initial configuration' of feature colouring
981 * based on a preset or user favourite. This may then be modified in the usual
982 * way using the Feature Settings dialogue.
984 * @param featureSettings
987 public void applyFeaturesStyle(FeatureSettingsModelI featureSettings)
989 transferFeaturesStyles(featureSettings, false);
993 * Applies the supplied feature settings descriptor to currently known features.
994 * This supports an 'initial configuration' of feature colouring based on a
995 * preset or user favourite. This may then be modified in the usual way using
996 * the Feature Settings dialogue.
998 * @param featureSettings
1001 public void mergeFeaturesStyle(FeatureSettingsModelI featureSettings)
1003 transferFeaturesStyles(featureSettings, true);
1007 * when mergeOnly is set, then group and feature visibility or feature colours
1008 * are not modified for features and groups already known to the feature
1009 * renderer. Feature ordering is always adjusted, and transparency is always set
1012 * @param featureSettings
1015 private void transferFeaturesStyles(FeatureSettingsModelI featureSettings,
1018 if (featureSettings == null)
1023 FeatureRenderer fr = getAlignPanel().getSeqPanel().seqCanvas
1024 .getFeatureRenderer();
1025 List<String> origRenderOrder = new ArrayList(),
1026 origGroups = new ArrayList();
1027 // preserve original render order - allows differentiation between user configured colours and autogenerated ones
1028 origRenderOrder.addAll(fr.getRenderOrder());
1029 origGroups.addAll(fr.getFeatureGroups());
1031 fr.findAllFeatures(true);
1032 List<String> renderOrder = fr.getRenderOrder();
1033 FeaturesDisplayedI displayed = fr.getFeaturesDisplayed();
1036 // only clear displayed features if we are mergeing
1039 // TODO this clears displayed.featuresRegistered - do we care?
1041 // JAL-3330 - JBP - yes we do - calling applyFeatureStyle to a view where
1042 // feature visibility has already been configured is not very friendly
1044 * set feature colour if specified by feature settings
1045 * set visibility of all features
1047 for (String type : renderOrder)
1049 FeatureColourI preferredColour = featureSettings
1050 .getFeatureColour(type);
1051 FeatureColourI origColour = fr.getFeatureStyle(type);
1052 if (!mergeOnly || (!origRenderOrder.contains(type)
1053 || origColour == null
1054 || (!origColour.isGraduatedColour()
1055 && origColour.getColour() != null
1056 && origColour.getColour().equals(
1057 ColorUtils.createColourFromName(type)))))
1059 // if we are merging, only update if there wasn't already a colour defined for
1061 if (preferredColour != null)
1063 fr.setColour(type, preferredColour);
1065 if (featureSettings.isFeatureDisplayed(type))
1067 displayed.setVisible(type);
1073 * set visibility of feature groups
1075 for (String group : fr.getFeatureGroups())
1077 if (!mergeOnly || !origGroups.contains(group))
1079 // when merging, display groups only if the aren't already marked as not visible
1080 fr.setGroupVisibility(group,
1081 featureSettings.isGroupDisplayed(group));
1086 * order the features
1088 if (featureSettings.optimiseOrder())
1090 // TODO not supported (yet?)
1094 fr.orderFeatures(featureSettings);
1096 fr.setTransparency(featureSettings.getTransparency());
1099 public String getViewName()
1104 public void setViewName(String viewName)
1106 this.viewName = viewName;