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.
22 * Jalview - A Sequence Alignment Editor and Viewer
23 * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
25 * This program is free software; you can redistribute it and/or
26 * modify it under the terms of the GNU General Public License
27 * as published by the Free Software Foundation; either version 2
28 * of the License, or (at your option) any later version.
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
35 * You should have received a copy of the GNU General Public License
36 * along with this program; if not, write to the Free Software
37 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
41 import jalview.analysis.AlignmentUtils;
42 import jalview.analysis.AnnotationSorter.SequenceAnnotationOrder;
43 import jalview.analysis.NJTree;
44 import jalview.api.AlignViewportI;
45 import jalview.api.AlignmentViewPanel;
46 import jalview.api.FeatureColourI;
47 import jalview.api.FeatureSettingsModelI;
48 import jalview.api.FeaturesDisplayedI;
49 import jalview.api.ViewStyleI;
50 import jalview.bin.Cache;
51 import jalview.commands.CommandI;
52 import jalview.datamodel.AlignedCodonFrame;
53 import jalview.datamodel.Alignment;
54 import jalview.datamodel.AlignmentI;
55 import jalview.datamodel.ColumnSelection;
56 import jalview.datamodel.PDBEntry;
57 import jalview.datamodel.SearchResults;
58 import jalview.datamodel.Sequence;
59 import jalview.datamodel.SequenceGroup;
60 import jalview.datamodel.SequenceI;
61 import jalview.schemes.ColourSchemeProperty;
62 import jalview.schemes.UserColourScheme;
63 import jalview.structure.CommandListener;
64 import jalview.structure.SelectionSource;
65 import jalview.structure.StructureSelectionManager;
66 import jalview.structure.VamsasSource;
67 import jalview.util.MessageManager;
68 import jalview.viewmodel.AlignmentViewport;
69 import jalview.ws.params.AutoCalcSetting;
71 import java.awt.Container;
72 import java.awt.Dimension;
74 import java.awt.Rectangle;
75 import java.util.ArrayList;
76 import java.util.Hashtable;
77 import java.util.List;
78 import java.util.Vector;
80 import javax.swing.JInternalFrame;
81 import javax.swing.JOptionPane;
87 * @version $Revision: 1.141 $
89 public class AlignViewport extends AlignmentViewport implements
90 SelectionSource, CommandListener
94 NJTree currentTree = null;
96 boolean cursorMode = false;
98 boolean antiAlias = false;
100 private Rectangle explodedGeometry;
105 * Flag set true on the view that should 'gather' multiple views of the same
106 * sequence set id when a project is reloaded. Set false on all views when
107 * they are 'exploded' into separate windows. Set true on the current view
108 * when 'Gather' is performed, and also on the first tab when the first new
111 private boolean gatherViewsHere = false;
113 private AnnotationColumnChooser annotationColumnSelectionState;
116 * Creates a new AlignViewport object.
121 public AlignViewport(AlignmentI al)
128 * Create a new AlignViewport object with a specific sequence set ID
132 * (may be null - but potential for ambiguous constructor exception)
134 public AlignViewport(AlignmentI al, String seqsetid)
136 this(al, seqsetid, null);
139 public AlignViewport(AlignmentI al, String seqsetid, String viewid)
141 sequenceSetID = seqsetid;
143 // TODO remove these once 2.4.VAMSAS release finished
144 if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
146 Cache.log.debug("Setting viewport's sequence set id : "
149 if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
151 Cache.log.debug("Setting viewport's view id : " + viewId);
158 * Create a new AlignViewport with hidden regions
162 * @param hiddenColumns
165 public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns)
168 if (hiddenColumns != null)
170 colSel = hiddenColumns;
176 * New viewport with hidden columns and an existing sequence set id
179 * @param hiddenColumns
183 public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns,
186 this(al, hiddenColumns, seqsetid, null);
190 * New viewport with hidden columns and an existing sequence set id and viewid
193 * @param hiddenColumns
199 public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns,
200 String seqsetid, String viewid)
202 sequenceSetID = seqsetid;
204 // TODO remove these once 2.4.VAMSAS release finished
205 if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
207 Cache.log.debug("Setting viewport's sequence set id : "
210 if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
212 Cache.log.debug("Setting viewport's view id : " + viewId);
215 if (hiddenColumns != null)
217 colSel = hiddenColumns;
223 * Apply any settings saved in user preferences
225 private void applyViewProperties()
227 antiAlias = Cache.getDefault("ANTI_ALIAS", false);
229 viewStyle.setShowJVSuffix(Cache.getDefault("SHOW_JVSUFFIX", true));
230 setShowAnnotation(Cache.getDefault("SHOW_ANNOTATIONS", true));
232 setRightAlignIds(Cache.getDefault("RIGHT_ALIGN_IDS", false));
233 setCentreColumnLabels(Cache.getDefault("CENTRE_COLUMN_LABELS", false));
234 autoCalculateConsensus = Cache.getDefault("AUTO_CALC_CONSENSUS", true);
236 setPadGaps(Cache.getDefault("PAD_GAPS", true));
237 setShowNPFeats(Cache.getDefault("SHOW_NPFEATS_TOOLTIP", true));
238 setShowDBRefs(Cache.getDefault("SHOW_DBREFS_TOOLTIP", true));
239 viewStyle.setSeqNameItalics(Cache.getDefault("ID_ITALICS", true));
240 viewStyle.setWrapAlignment(Cache.getDefault("WRAP_ALIGNMENT", false));
241 viewStyle.setShowUnconserved(Cache
242 .getDefault("SHOW_UNCONSERVED", false));
243 sortByTree = Cache.getDefault("SORT_BY_TREE", false);
244 followSelection = Cache.getDefault("FOLLOW_SELECTIONS", true);
245 sortAnnotationsBy = SequenceAnnotationOrder.valueOf(Cache.getDefault(
246 Preferences.SORT_ANNOTATIONS,
247 SequenceAnnotationOrder.NONE.name()));
248 showAutocalculatedAbove = Cache.getDefault(
249 Preferences.SHOW_AUTOCALC_ABOVE, false);
250 viewStyle.setScaleProteinAsCdna(Cache.getDefault(
251 Preferences.SCALE_PROTEIN_TO_CDNA, true));
257 this.endRes = alignment.getWidth() - 1;
259 this.endSeq = alignment.getHeight() - 1;
260 applyViewProperties();
262 String fontName = Cache.getDefault("FONT_NAME", "SansSerif");
263 String fontStyle = Cache.getDefault("FONT_STYLE", Font.PLAIN + "");
264 String fontSize = Cache.getDefault("FONT_SIZE", "10");
268 if (fontStyle.equals("bold"))
272 else if (fontStyle.equals("italic"))
277 setFont(new Font(fontName, style, Integer.parseInt(fontSize)), true);
280 .setGapCharacter(Cache.getDefault("GAP_SYMBOL", "-").charAt(0));
282 // We must set conservation and consensus before setting colour,
283 // as Blosum and Clustal require this to be done
284 if (hconsensus == null && !isDataset)
286 if (!alignment.isNucleotide())
288 showConservation = Cache.getDefault("SHOW_CONSERVATION", true);
289 showQuality = Cache.getDefault("SHOW_QUALITY", true);
290 showGroupConservation = Cache.getDefault("SHOW_GROUP_CONSERVATION",
293 showConsensusHistogram = Cache.getDefault("SHOW_CONSENSUS_HISTOGRAM",
295 showSequenceLogo = Cache.getDefault("SHOW_CONSENSUS_LOGO", false);
296 normaliseSequenceLogo = Cache.getDefault("NORMALISE_CONSENSUS_LOGO",
298 showGroupConsensus = Cache.getDefault("SHOW_GROUP_CONSENSUS", false);
299 showConsensus = Cache.getDefault("SHOW_IDENTITY", true);
301 initAutoAnnotation();
302 String colourProperty = alignment.isNucleotide() ? Preferences.DEFAULT_COLOUR_NUC
303 : Preferences.DEFAULT_COLOUR_PROT;
304 String propertyValue = Cache.getProperty(colourProperty);
305 if (propertyValue == null)
307 // fall back on this property for backwards compatibility
308 propertyValue = Cache.getProperty(Preferences.DEFAULT_COLOUR);
310 if (propertyValue != null)
312 globalColourScheme = ColourSchemeProperty.getColour(alignment,
315 if (globalColourScheme instanceof UserColourScheme)
317 globalColourScheme = UserDefinedColours.loadDefaultColours();
318 ((UserColourScheme) globalColourScheme).setThreshold(0,
319 isIgnoreGapsConsensus());
322 if (globalColourScheme != null)
324 globalColourScheme.setConsensus(hconsensus);
330 * get the consensus sequence as displayed under the PID consensus annotation
333 * @return consensus sequence as a new sequence object
335 public SequenceI getConsensusSeq()
337 if (consensus == null)
339 updateConsensus(null);
341 if (consensus == null)
345 StringBuffer seqs = new StringBuffer();
346 for (int i = 0; i < consensus.annotations.length; i++)
348 if (consensus.annotations[i] != null)
350 if (consensus.annotations[i].description.charAt(0) == '[')
352 seqs.append(consensus.annotations[i].description.charAt(1));
356 seqs.append(consensus.annotations[i].displayCharacter);
361 SequenceI sq = new Sequence("Consensus", seqs.toString());
362 sq.setDescription("Percentage Identity Consensus "
363 + ((ignoreGapsInConsensusCalculation) ? " without gaps" : ""));
367 boolean validCharWidth;
370 * update view settings with the given font. You may need to call
371 * alignPanel.fontChanged to update the layout geometry
374 * when true, charWidth/height is set according to font mentrics
376 public void setFont(Font f, boolean setGrid)
380 Container c = new Container();
382 java.awt.FontMetrics fm = c.getFontMetrics(font);
383 int w = viewStyle.getCharWidth(), ww = fm.charWidth('M'), h = viewStyle
387 setCharHeight(fm.getHeight());
390 viewStyle.setFontName(font.getName());
391 viewStyle.setFontStyle(font.getStyle());
392 viewStyle.setFontSize(font.getSize());
394 validCharWidth = true;
398 public void setViewStyle(ViewStyleI settingsForView)
400 super.setViewStyle(settingsForView);
401 setFont(new Font(viewStyle.getFontName(), viewStyle.getFontStyle(),
402 viewStyle.getFontSize()), false);
409 * @return DOCUMENT ME!
411 public Font getFont()
422 public void setAlignment(AlignmentI align)
424 replaceMappings(align);
425 this.alignment = align;
429 * Replace any codon mappings for this viewport with those for the given
434 public void replaceMappings(AlignmentI align)
438 * Deregister current mappings (if any)
440 deregisterMappings();
443 * Register new mappings (if any)
447 StructureSelectionManager ssm = StructureSelectionManager
448 .getStructureSelectionManager(Desktop.instance);
449 ssm.registerMappings(align.getCodonFrames());
453 * replace mappings on our alignment
455 if (alignment != null && align != null)
457 alignment.setCodonFrames(align.getCodonFrames());
461 protected void deregisterMappings()
463 AlignmentI al = getAlignment();
466 List<AlignedCodonFrame> mappings = al.getCodonFrames();
467 if (mappings != null)
469 StructureSelectionManager ssm = StructureSelectionManager
470 .getStructureSelectionManager(Desktop.instance);
471 for (AlignedCodonFrame acf : mappings)
473 if (noReferencesTo(acf))
475 ssm.deregisterMapping(acf);
485 * @return DOCUMENT ME!
488 public char getGapCharacter()
490 return getAlignment().getGapCharacter();
499 public void setGapCharacter(char gap)
501 if (getAlignment() != null)
503 getAlignment().setGapCharacter(gap);
510 * @return DOCUMENT ME!
513 public ColumnSelection getColumnSelection()
524 public void setCurrentTree(NJTree tree)
532 * @return DOCUMENT ME!
534 public NJTree getCurrentTree()
540 * returns the visible column regions of the alignment
542 * @param selectedRegionOnly
543 * true to just return the contigs intersecting with the selected
547 public int[] getViewAsVisibleContigs(boolean selectedRegionOnly)
549 int[] viscontigs = null;
550 int start = 0, end = 0;
551 if (selectedRegionOnly && selectionGroup != null)
553 start = selectionGroup.getStartRes();
554 end = selectionGroup.getEndRes() + 1;
558 end = alignment.getWidth();
560 viscontigs = colSel.getVisibleContigs(start, end);
565 * get hash of undo and redo list for the alignment
567 * @return long[] { historyList.hashCode, redoList.hashCode };
569 public long[] getUndoRedoHash()
572 if (historyList == null || redoList == null)
574 return new long[] { -1, -1 };
576 return new long[] { historyList.hashCode(), this.redoList.hashCode() };
580 * test if a particular set of hashcodes are different to the hashcodes for
581 * the undo and redo list.
584 * the stored set of hashcodes as returned by getUndoRedoHash
585 * @return true if the hashcodes differ (ie the alignment has been edited) or
586 * the stored hashcode array differs in size
588 public boolean isUndoRedoHashModified(long[] undoredo)
590 if (undoredo == null)
594 long[] cstate = getUndoRedoHash();
595 if (cstate.length != undoredo.length)
600 for (int i = 0; i < cstate.length; i++)
602 if (cstate[i] != undoredo[i])
610 public boolean followSelection = true;
613 * @return true if view selection should always follow the selections
614 * broadcast by other selection sources
616 public boolean getFollowSelection()
618 return followSelection;
622 * Send the current selection to be broadcast to any selection listeners.
625 public void sendSelection()
627 jalview.structure.StructureSelectionManager
628 .getStructureSelectionManager(Desktop.instance).sendSelection(
629 new SequenceGroup(getSelectionGroup()),
630 new ColumnSelection(getColumnSelection()), this);
634 * return the alignPanel containing the given viewport. Use this to get the
635 * components currently handling the given viewport.
638 * @return null or an alignPanel guaranteed to have non-null alignFrame
641 public AlignmentPanel getAlignPanel()
643 AlignmentPanel[] aps = PaintRefresher.getAssociatedPanels(this
644 .getSequenceSetId());
645 for (int p = 0; aps != null && p < aps.length; p++)
647 if (aps[p].av == this)
655 public boolean getSortByTree()
660 public void setSortByTree(boolean sort)
666 * Returns the (Desktop) instance of the StructureSelectionManager
669 public StructureSelectionManager getStructureSelectionManager()
671 return StructureSelectionManager
672 .getStructureSelectionManager(Desktop.instance);
678 * @return an array of SequenceI arrays, one for each PDBEntry, listing which
679 * sequences in the alignment hold a reference to it
681 public SequenceI[][] collateForPDB(PDBEntry[] pdbEntries)
683 List<SequenceI[]> seqvectors = new ArrayList<SequenceI[]>();
684 for (PDBEntry pdb : pdbEntries)
686 List<SequenceI> choosenSeqs = new ArrayList<SequenceI>();
687 for (SequenceI sq : alignment.getSequences())
689 Vector<PDBEntry> pdbRefEntries = sq.getDatasetSequence().getAllPDBEntries();
690 if (pdbRefEntries == null)
694 for (PDBEntry pdbRefEntry : pdbRefEntries)
696 if (pdbRefEntry.getId().equals(pdb.getId()))
698 if (pdbRefEntry.getChainCode() != null
699 && pdb.getChainCode() != null)
701 if (pdbRefEntry.getChainCode().equalsIgnoreCase(
703 && !choosenSeqs.contains(sq))
711 if (!choosenSeqs.contains(sq))
721 seqvectors.add(choosenSeqs.toArray(new SequenceI[choosenSeqs.size()]));
723 return seqvectors.toArray(new SequenceI[seqvectors.size()][]);
727 public boolean isNormaliseSequenceLogo()
729 return normaliseSequenceLogo;
732 public void setNormaliseSequenceLogo(boolean state)
734 normaliseSequenceLogo = state;
739 * @return true if alignment characters should be displayed
742 public boolean isValidCharWidth()
744 return validCharWidth;
747 private Hashtable<String, AutoCalcSetting> calcIdParams = new Hashtable<String, AutoCalcSetting>();
749 public AutoCalcSetting getCalcIdSettingsFor(String calcId)
751 return calcIdParams.get(calcId);
754 public void setCalcIdSettingsFor(String calcId, AutoCalcSetting settings,
757 calcIdParams.put(calcId, settings);
758 // TODO: create a restart list to trigger any calculations that need to be
759 // restarted after load
760 // calculator.getRegisteredWorkersOfClass(settings.getWorkerClass())
763 Cache.log.debug("trigger update for " + calcId);
768 * Method called when another alignment's edit (or possibly other) command is
771 * To allow for sequence mappings (e.g. protein to cDNA), we have to first
772 * 'unwind' the command on the source sequences (in simulation, not in fact),
773 * and then for each edit in turn:
775 * <li>compute the equivalent edit on the mapped sequences</li>
776 * <li>apply the mapped edit</li>
777 * <li>'apply' the source edit to the working copy of the source sequences</li>
785 public void mirrorCommand(CommandI command, boolean undo,
786 StructureSelectionManager ssm, VamsasSource source)
789 * Do nothing unless we are a 'complement' of the source. May replace this
790 * with direct calls not via SSM.
792 if (source instanceof AlignViewportI
793 && ((AlignViewportI) source).getCodingComplement() == this)
802 CommandI mappedCommand = ssm.mapCommand(command, undo, getAlignment(),
804 if (mappedCommand != null)
806 AlignmentI[] views = getAlignPanel().alignFrame.getViewAlignments();
807 mappedCommand.doCommand(views);
808 getAlignPanel().alignmentChanged();
813 * Add the sequences from the given alignment to this viewport. Optionally,
814 * may give the user the option to open a new frame, or split panel, with cDNA
815 * and protein linked.
820 public void addAlignment(AlignmentI toAdd, String title)
822 // TODO: promote to AlignViewportI? applet CutAndPasteTransfer is different
824 // JBPComment: title is a largely redundant parameter at the moment
825 // JBPComment: this really should be an 'insert/pre/append' controller
826 // JBPComment: but the DNA/Protein check makes it a bit more complex
828 // refactored from FileLoader / CutAndPasteTransfer / SequenceFetcher with
830 // TODO: create undo object for this JAL-1101
833 * Ensure datasets are created for the new alignment as
834 * mappings operate on dataset sequences
836 toAdd.setDataset(null);
839 * Check if any added sequence could be the object of a mapping or
840 * cross-reference; if so, make the mapping explicit
842 getAlignment().realiseMappings(toAdd.getSequences());
845 * If any cDNA/protein mappings exist or can be made between the alignments,
846 * offer to open a split frame with linked alignments
848 if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
850 if (AlignmentUtils.isMappable(toAdd, getAlignment()))
852 if (openLinkedAlignment(toAdd, title))
860 * No mappings, or offer declined - add sequences to this alignment
862 // TODO: JAL-407 regardless of above - identical sequences (based on ID and
863 // provenance) should share the same dataset sequence
865 AlignmentI al = getAlignment();
866 String gap = String.valueOf(al.getGapCharacter());
867 for (int i = 0; i < toAdd.getHeight(); i++)
869 SequenceI seq = toAdd.getSequenceAt(i);
872 * - 'align' any mapped sequences as per existing
873 * e.g. cdna to genome, domain hit to protein sequence
874 * very experimental! (need a separate menu option for this)
875 * - only add mapped sequences ('select targets from a dataset')
877 if (true /*AlignmentUtils.alignSequenceAs(seq, al, gap, true, true)*/)
883 setEndSeq(getAlignment().getHeight());
884 firePropertyChange("alignment", null, getAlignment().getSequences());
888 * Show a dialog with the option to open and link (cDNA <-> protein) as a new
889 * alignment, either as a standalone alignment or in a split frame. Returns
890 * true if the new alignment was opened, false if not, because the user
891 * declined the offer.
896 protected boolean openLinkedAlignment(AlignmentI al, String title)
898 String[] options = new String[] {
899 MessageManager.getString("action.no"),
900 MessageManager.getString("label.split_window"),
901 MessageManager.getString("label.new_window"), };
902 final String question = JvSwingUtils.wrapTooltip(true,
903 MessageManager.getString("label.open_split_window?"));
904 int response = JOptionPane.showOptionDialog(Desktop.desktop, question,
905 MessageManager.getString("label.open_split_window"),
906 JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null,
907 options, options[0]);
909 if (response != 1 && response != 2)
913 final boolean openSplitPane = (response == 1);
914 final boolean openInNewWindow = (response == 2);
917 * Identify protein and dna alignments. Make a copy of this one if opening
918 * in a new split pane.
920 AlignmentI thisAlignment = openSplitPane ? new Alignment(getAlignment())
922 AlignmentI protein = al.isNucleotide() ? thisAlignment : al;
923 final AlignmentI cdna = al.isNucleotide() ? al : thisAlignment;
926 * Map sequences. At least one should get mapped as we have already passed
927 * the test for 'mappability'. Any mappings made will be added to the
928 * protein alignment. Note creating dataset sequences on the new alignment
929 * is a pre-requisite for building mappings.
932 AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna);
935 * Create the AlignFrame for the added alignment. If it is protein, mappings
936 * are registered with StructureSelectionManager as a side-effect.
938 AlignFrame newAlignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
939 AlignFrame.DEFAULT_HEIGHT);
940 newAlignFrame.setTitle(title);
941 newAlignFrame.statusBar.setText(MessageManager.formatMessage(
942 "label.successfully_loaded_file", new Object[] { title }));
944 // TODO if we want this (e.g. to enable reload of the alignment from file),
945 // we will need to add parameters to the stack.
946 // if (!protocol.equals(AppletFormatAdapter.PASTE))
948 // alignFrame.setFileName(file, format);
953 Desktop.addInternalFrame(newAlignFrame, title,
954 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
959 newAlignFrame.setMaximum(jalview.bin.Cache.getDefault(
960 "SHOW_FULLSCREEN", false));
961 } catch (java.beans.PropertyVetoException ex)
967 al.alignAs(thisAlignment);
968 protein = openSplitFrame(newAlignFrame, thisAlignment);
975 * Helper method to open a new SplitFrame holding linked dna and protein
978 * @param newAlignFrame
979 * containing a new alignment to be shown
981 * cdna/protein complement alignment to show in the other split half
982 * @return the protein alignment in the split frame
984 protected AlignmentI openSplitFrame(AlignFrame newAlignFrame,
985 AlignmentI complement)
988 * Make a new frame with a copy of the alignment we are adding to. If this
989 * is protein, the mappings to cDNA will be registered with
990 * StructureSelectionManager as a side-effect.
992 AlignFrame copyMe = new AlignFrame(complement,
993 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
994 copyMe.setTitle(getAlignPanel().alignFrame.getTitle());
996 AlignmentI al = newAlignFrame.viewport.getAlignment();
997 final AlignFrame proteinFrame = al.isNucleotide() ? copyMe
999 final AlignFrame cdnaFrame = al.isNucleotide() ? newAlignFrame : copyMe;
1000 cdnaFrame.setVisible(true);
1001 proteinFrame.setVisible(true);
1002 String linkedTitle = MessageManager
1003 .getString("label.linked_view_title");
1006 * Open in split pane. DNA sequence above, protein below.
1008 JInternalFrame splitFrame = new SplitFrame(cdnaFrame, proteinFrame);
1009 Desktop.addInternalFrame(splitFrame, linkedTitle, -1, -1);
1011 return proteinFrame.viewport.getAlignment();
1014 public AnnotationColumnChooser getAnnotationColumnSelectionState()
1016 return annotationColumnSelectionState;
1019 public void setAnnotationColumnSelectionState(
1020 AnnotationColumnChooser currentAnnotationColumnSelectionState)
1022 this.annotationColumnSelectionState = currentAnnotationColumnSelectionState;
1026 public void setIdWidth(int i)
1028 super.setIdWidth(i);
1029 AlignmentPanel ap = getAlignPanel();
1032 // modify GUI elements to reflect geometry change
1033 Dimension idw = getAlignPanel().getIdPanel().getIdCanvas()
1034 .getPreferredSize();
1036 getAlignPanel().getIdPanel().getIdCanvas().setPreferredSize(idw);
1040 public Rectangle getExplodedGeometry()
1042 return explodedGeometry;
1045 public void setExplodedGeometry(Rectangle explodedPosition)
1047 this.explodedGeometry = explodedPosition;
1050 public boolean isGatherViewsHere()
1052 return gatherViewsHere;
1055 public void setGatherViewsHere(boolean gatherViewsHere)
1057 this.gatherViewsHere = gatherViewsHere;
1061 * If this viewport has a (Protein/cDNA) complement, then scroll the
1062 * complementary alignment to match this one.
1064 public void scrollComplementaryAlignment()
1067 * Populate a SearchResults object with the mapped location to scroll to. If
1068 * there is no complement, or it is not following highlights, or no mapping
1069 * is found, the result will be empty.
1071 SearchResults sr = new SearchResults();
1072 int verticalOffset = findComplementScrollTarget(sr);
1075 // TODO would like next line without cast but needs more refactoring...
1076 final AlignmentPanel complementPanel = ((AlignViewport) getCodingComplement())
1078 complementPanel.setDontScrollComplement(true);
1079 complementPanel.scrollToCentre(sr, verticalOffset);
1084 * Answers true if no alignment holds a reference to the given mapping
1089 protected boolean noReferencesTo(AlignedCodonFrame acf)
1091 AlignFrame[] frames = Desktop.getAlignFrames();
1096 for (AlignFrame af : frames)
1100 for (AlignmentViewPanel ap : af.getAlignPanels())
1102 AlignmentI al = ap.getAlignment();
1103 if (al != null && al.getCodonFrames().contains(acf))
1114 * Applies the supplied feature settings descriptor to currently known
1115 * features. This supports an 'initial configuration' of feature colouring
1116 * based on a preset or user favourite. This may then be modified in the usual
1117 * way using the Feature Settings dialogue.
1119 * @param featureSettings
1122 public void applyFeaturesStyle(FeatureSettingsModelI featureSettings)
1124 if (featureSettings == null)
1129 FeatureRenderer fr = getAlignPanel().getSeqPanel().seqCanvas
1130 .getFeatureRenderer();
1131 fr.findAllFeatures(true);
1132 List<String> renderOrder = fr.getRenderOrder();
1133 FeaturesDisplayedI displayed = fr.getFeaturesDisplayed();
1135 // TODO this clears displayed.featuresRegistered - do we care?
1138 * set feature colour if specified by feature settings
1139 * set visibility of all features
1141 for (String type : renderOrder)
1143 FeatureColourI preferredColour = featureSettings
1144 .getFeatureColour(type);
1145 if (preferredColour != null)
1147 fr.setColour(type, preferredColour);
1149 if (featureSettings.isFeatureDisplayed(type))
1151 displayed.setVisible(type);
1156 * set visibility of feature groups
1158 for (String group : fr.getFeatureGroups())
1160 fr.setGroupVisibility(group, featureSettings.isGroupDisplayed(group));
1164 * order the features
1166 if (featureSettings.optimiseOrder())
1168 // TODO not supported (yet?)
1172 fr.orderFeatures(featureSettings);
1174 fr.setTransparency(featureSettings.getTransparency());