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.ViewStyleI;
47 import jalview.bin.Cache;
48 import jalview.commands.CommandI;
49 import jalview.datamodel.AlignedCodonFrame;
50 import jalview.datamodel.Alignment;
51 import jalview.datamodel.AlignmentI;
52 import jalview.datamodel.ColumnSelection;
53 import jalview.datamodel.PDBEntry;
54 import jalview.datamodel.SearchResults;
55 import jalview.datamodel.Sequence;
56 import jalview.datamodel.SequenceGroup;
57 import jalview.datamodel.SequenceI;
58 import jalview.schemes.ColourSchemeProperty;
59 import jalview.schemes.UserColourScheme;
60 import jalview.structure.CommandListener;
61 import jalview.structure.SelectionSource;
62 import jalview.structure.StructureSelectionManager;
63 import jalview.structure.VamsasSource;
64 import jalview.util.MessageManager;
65 import jalview.viewmodel.AlignmentViewport;
66 import jalview.ws.params.AutoCalcSetting;
68 import java.awt.Container;
69 import java.awt.Dimension;
71 import java.awt.Rectangle;
72 import java.util.ArrayList;
73 import java.util.Hashtable;
74 import java.util.List;
76 import java.util.Vector;
78 import javax.swing.JInternalFrame;
79 import javax.swing.JOptionPane;
85 * @version $Revision: 1.141 $
87 public class AlignViewport extends AlignmentViewport implements
88 SelectionSource, CommandListener
92 NJTree currentTree = null;
94 boolean cursorMode = false;
96 boolean antiAlias = false;
98 private Rectangle explodedGeometry;
103 * Flag set true on the view that should 'gather' multiple views of the same
104 * sequence set id when a project is reloaded. Set false on all views when
105 * they are 'exploded' into separate windows. Set true on the current view
106 * when 'Gather' is performed, and also on the first tab when the first new
109 private boolean gatherViewsHere = false;
111 private AnnotationColumnChooser annotationColumnSelectionState;
113 * Creates a new AlignViewport object.
118 public AlignViewport(AlignmentI al)
125 * Create a new AlignViewport object with a specific sequence set ID
129 * (may be null - but potential for ambiguous constructor exception)
131 public AlignViewport(AlignmentI al, String seqsetid)
133 this(al, seqsetid, null);
136 public AlignViewport(AlignmentI al, String seqsetid, String viewid)
138 sequenceSetID = seqsetid;
140 // TODO remove these once 2.4.VAMSAS release finished
141 if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
143 Cache.log.debug("Setting viewport's sequence set id : "
146 if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
148 Cache.log.debug("Setting viewport's view id : " + viewId);
155 * Create a new AlignViewport with hidden regions
159 * @param hiddenColumns
162 public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns)
165 if (hiddenColumns != null)
167 colSel = hiddenColumns;
173 * New viewport with hidden columns and an existing sequence set id
176 * @param hiddenColumns
180 public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns,
183 this(al, hiddenColumns, seqsetid, null);
187 * New viewport with hidden columns and an existing sequence set id and viewid
190 * @param hiddenColumns
196 public AlignViewport(AlignmentI al, ColumnSelection hiddenColumns,
197 String seqsetid, String viewid)
199 sequenceSetID = seqsetid;
201 // TODO remove these once 2.4.VAMSAS release finished
202 if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
204 Cache.log.debug("Setting viewport's sequence set id : "
207 if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
209 Cache.log.debug("Setting viewport's view id : " + viewId);
212 if (hiddenColumns != null)
214 colSel = hiddenColumns;
220 * Apply any settings saved in user preferences
222 private void applyViewProperties()
224 antiAlias = Cache.getDefault("ANTI_ALIAS", false);
226 viewStyle.setShowJVSuffix(Cache.getDefault("SHOW_JVSUFFIX", true));
227 setShowAnnotation(Cache.getDefault("SHOW_ANNOTATIONS", true));
229 setRightAlignIds(Cache.getDefault("RIGHT_ALIGN_IDS", false));
230 setCentreColumnLabels(Cache.getDefault("CENTRE_COLUMN_LABELS", false));
231 autoCalculateConsensus = Cache.getDefault("AUTO_CALC_CONSENSUS", true);
233 setPadGaps(Cache.getDefault("PAD_GAPS", true));
234 setShowNPFeats(Cache.getDefault("SHOW_NPFEATS_TOOLTIP", true));
235 setShowDBRefs(Cache.getDefault("SHOW_DBREFS_TOOLTIP", true));
236 viewStyle.setSeqNameItalics(Cache.getDefault("ID_ITALICS", true));
237 viewStyle.setWrapAlignment(Cache.getDefault("WRAP_ALIGNMENT", false));
238 viewStyle.setShowUnconserved(Cache
239 .getDefault("SHOW_UNCONSERVED", false));
240 sortByTree = Cache.getDefault("SORT_BY_TREE", false);
241 followSelection = Cache.getDefault("FOLLOW_SELECTIONS", true);
242 sortAnnotationsBy = SequenceAnnotationOrder.valueOf(Cache.getDefault(
243 Preferences.SORT_ANNOTATIONS,
244 SequenceAnnotationOrder.NONE.name()));
245 showAutocalculatedAbove = Cache.getDefault(
246 Preferences.SHOW_AUTOCALC_ABOVE, false);
247 viewStyle.setScaleProteinAsCdna(Cache.getDefault(
248 Preferences.SCALE_PROTEIN_TO_CDNA, true));
254 this.endRes = alignment.getWidth() - 1;
256 this.endSeq = alignment.getHeight() - 1;
257 applyViewProperties();
259 String fontName = Cache.getDefault("FONT_NAME", "SansSerif");
260 String fontStyle = Cache.getDefault("FONT_STYLE", Font.PLAIN + "");
261 String fontSize = Cache.getDefault("FONT_SIZE", "10");
265 if (fontStyle.equals("bold"))
269 else if (fontStyle.equals("italic"))
274 setFont(new Font(fontName, style, Integer.parseInt(fontSize)), true);
277 .setGapCharacter(Cache.getDefault("GAP_SYMBOL", "-").charAt(0));
279 // We must set conservation and consensus before setting colour,
280 // as Blosum and Clustal require this to be done
281 if (hconsensus == null && !isDataset)
283 if (!alignment.isNucleotide())
285 showConservation = Cache.getDefault("SHOW_CONSERVATION", true);
286 showQuality = Cache.getDefault("SHOW_QUALITY", true);
287 showGroupConservation = Cache.getDefault("SHOW_GROUP_CONSERVATION",
290 showConsensusHistogram = Cache.getDefault("SHOW_CONSENSUS_HISTOGRAM",
292 showSequenceLogo = Cache.getDefault("SHOW_CONSENSUS_LOGO", false);
293 normaliseSequenceLogo = Cache.getDefault("NORMALISE_CONSENSUS_LOGO",
295 showGroupConsensus = Cache.getDefault("SHOW_GROUP_CONSENSUS", false);
296 showConsensus = Cache.getDefault("SHOW_IDENTITY", true);
298 initAutoAnnotation();
299 String colourProperty = alignment.isNucleotide() ? Preferences.DEFAULT_COLOUR_NUC
300 : Preferences.DEFAULT_COLOUR_PROT;
301 String propertyValue = Cache.getProperty(colourProperty);
302 if (propertyValue == null)
304 // fall back on this property for backwards compatibility
305 propertyValue = Cache.getProperty(Preferences.DEFAULT_COLOUR);
307 if (propertyValue != null)
309 globalColourScheme = ColourSchemeProperty.getColour(alignment,
312 if (globalColourScheme instanceof UserColourScheme)
314 globalColourScheme = UserDefinedColours.loadDefaultColours();
315 ((UserColourScheme) globalColourScheme).setThreshold(0,
316 isIgnoreGapsConsensus());
319 if (globalColourScheme != null)
321 globalColourScheme.setConsensus(hconsensus);
327 * get the consensus sequence as displayed under the PID consensus annotation
330 * @return consensus sequence as a new sequence object
332 public SequenceI getConsensusSeq()
334 if (consensus == null)
336 updateConsensus(null);
338 if (consensus == null)
342 StringBuffer seqs = new StringBuffer();
343 for (int i = 0; i < consensus.annotations.length; i++)
345 if (consensus.annotations[i] != null)
347 if (consensus.annotations[i].description.charAt(0) == '[')
349 seqs.append(consensus.annotations[i].description.charAt(1));
353 seqs.append(consensus.annotations[i].displayCharacter);
358 SequenceI sq = new Sequence("Consensus", seqs.toString());
359 sq.setDescription("Percentage Identity Consensus "
360 + ((ignoreGapsInConsensusCalculation) ? " without gaps" : ""));
364 boolean validCharWidth;
367 * update view settings with the given font. You may need to call
368 * alignPanel.fontChanged to update the layout geometry
371 * when true, charWidth/height is set according to font mentrics
373 public void setFont(Font f, boolean setGrid)
377 Container c = new Container();
379 java.awt.FontMetrics fm = c.getFontMetrics(font);
380 int w = viewStyle.getCharWidth(), ww = fm.charWidth('M'), h = viewStyle
384 setCharHeight(fm.getHeight());
387 viewStyle.setFontName(font.getName());
388 viewStyle.setFontStyle(font.getStyle());
389 viewStyle.setFontSize(font.getSize());
391 validCharWidth = true;
395 public void setViewStyle(ViewStyleI settingsForView)
397 super.setViewStyle(settingsForView);
398 setFont(new Font(viewStyle.getFontName(), viewStyle.getFontStyle(),
399 viewStyle.getFontSize()), false);
405 * @return DOCUMENT ME!
407 public Font getFont()
418 public void setAlignment(AlignmentI align)
420 replaceMappings(align);
421 this.alignment = align;
425 * Replace any codon mappings for this viewport with those for the given
430 public void replaceMappings(AlignmentI align)
434 * Deregister current mappings (if any)
436 deregisterMappings();
439 * Register new mappings (if any)
443 StructureSelectionManager ssm = StructureSelectionManager
444 .getStructureSelectionManager(Desktop.instance);
445 ssm.registerMappings(align.getCodonFrames());
449 * replace mappings on our alignment
451 if (alignment != null && align != null)
453 alignment.setCodonFrames(align.getCodonFrames());
457 protected void deregisterMappings()
459 AlignmentI al = getAlignment();
462 Set<AlignedCodonFrame> mappings = al.getCodonFrames();
463 if (mappings != null)
465 StructureSelectionManager ssm = StructureSelectionManager
466 .getStructureSelectionManager(Desktop.instance);
467 for (AlignedCodonFrame acf : mappings)
469 if (noReferencesTo(acf))
471 ssm.deregisterMapping(acf);
481 * @return DOCUMENT ME!
483 public char getGapCharacter()
485 return getAlignment().getGapCharacter();
494 public void setGapCharacter(char gap)
496 if (getAlignment() != null)
498 getAlignment().setGapCharacter(gap);
505 * @return DOCUMENT ME!
507 public ColumnSelection getColumnSelection()
518 public void setCurrentTree(NJTree tree)
526 * @return DOCUMENT ME!
528 public NJTree getCurrentTree()
534 * returns the visible column regions of the alignment
536 * @param selectedRegionOnly
537 * true to just return the contigs intersecting with the selected
541 public int[] getViewAsVisibleContigs(boolean selectedRegionOnly)
543 int[] viscontigs = null;
544 int start = 0, end = 0;
545 if (selectedRegionOnly && selectionGroup != null)
547 start = selectionGroup.getStartRes();
548 end = selectionGroup.getEndRes() + 1;
552 end = alignment.getWidth();
554 viscontigs = colSel.getVisibleContigs(start, end);
559 * get hash of undo and redo list for the alignment
561 * @return long[] { historyList.hashCode, redoList.hashCode };
563 public long[] getUndoRedoHash()
566 if (historyList == null || redoList == null)
572 { historyList.hashCode(), this.redoList.hashCode() };
576 * test if a particular set of hashcodes are different to the hashcodes for
577 * the undo and redo list.
580 * the stored set of hashcodes as returned by getUndoRedoHash
581 * @return true if the hashcodes differ (ie the alignment has been edited) or
582 * the stored hashcode array differs in size
584 public boolean isUndoRedoHashModified(long[] undoredo)
586 if (undoredo == null)
590 long[] cstate = getUndoRedoHash();
591 if (cstate.length != undoredo.length)
596 for (int i = 0; i < cstate.length; i++)
598 if (cstate[i] != undoredo[i])
606 public boolean followSelection = true;
609 * @return true if view selection should always follow the selections
610 * broadcast by other selection sources
612 public boolean getFollowSelection()
614 return followSelection;
618 * Send the current selection to be broadcast to any selection listeners.
620 public void sendSelection()
622 jalview.structure.StructureSelectionManager
623 .getStructureSelectionManager(Desktop.instance).sendSelection(
624 new SequenceGroup(getSelectionGroup()),
625 new ColumnSelection(getColumnSelection()), this);
629 * return the alignPanel containing the given viewport. Use this to get the
630 * components currently handling the given viewport.
633 * @return null or an alignPanel guaranteed to have non-null alignFrame
636 public AlignmentPanel getAlignPanel()
638 AlignmentPanel[] aps = PaintRefresher.getAssociatedPanels(this
639 .getSequenceSetId());
640 for (int p = 0; aps != null && p < aps.length; p++)
642 if (aps[p].av == this)
650 public boolean getSortByTree()
655 public void setSortByTree(boolean sort)
661 * synthesize a column selection if none exists so it covers the given
662 * selection group. if wholewidth is false, no column selection is made if the
663 * selection group covers the whole alignment width.
668 public void expandColSelection(SequenceGroup sg, boolean wholewidth)
672 && (sgs = sg.getStartRes()) >= 0
673 && sg.getStartRes() <= (sge = sg.getEndRes())
674 && (colSel == null || colSel.getSelected() == null || colSel
675 .getSelected().size() == 0))
677 if (!wholewidth && alignment.getWidth() == (1 + sge - sgs))
684 colSel = new ColumnSelection();
686 for (int cspos = sg.getStartRes(); cspos <= sg.getEndRes(); cspos++)
688 colSel.addElement(cspos);
694 * Returns the (Desktop) instance of the StructureSelectionManager
697 public StructureSelectionManager getStructureSelectionManager()
699 return StructureSelectionManager
700 .getStructureSelectionManager(Desktop.instance);
706 * @return an array of SequenceI arrays, one for each PDBEntry, listing which
707 * sequences in the alignment hold a reference to it
709 public SequenceI[][] collateForPDB(PDBEntry[] pdbEntries)
711 List<SequenceI[]> seqvectors = new ArrayList<SequenceI[]>();
712 for (PDBEntry pdb : pdbEntries)
714 List<SequenceI> seqs = new ArrayList<SequenceI>();
715 for (SequenceI sq : alignment.getSequences())
717 Vector<PDBEntry> pdbs = sq
718 .getDatasetSequence().getAllPDBEntries();
723 for (PDBEntry p1 : pdbs)
725 if (p1.getId().equals(pdb.getId()))
727 if (!seqs.contains(sq))
735 seqvectors.add(seqs.toArray(new SequenceI[seqs.size()]));
737 return seqvectors.toArray(new SequenceI[seqvectors.size()][]);
740 public boolean isNormaliseSequenceLogo()
742 return normaliseSequenceLogo;
745 public void setNormaliseSequenceLogo(boolean state)
747 normaliseSequenceLogo = state;
752 * @return true if alignment characters should be displayed
754 public boolean isValidCharWidth()
756 return validCharWidth;
759 private Hashtable<String, AutoCalcSetting> calcIdParams = new Hashtable<String, AutoCalcSetting>();
761 public AutoCalcSetting getCalcIdSettingsFor(String calcId)
763 return calcIdParams.get(calcId);
766 public void setCalcIdSettingsFor(String calcId, AutoCalcSetting settings,
769 calcIdParams.put(calcId, settings);
770 // TODO: create a restart list to trigger any calculations that need to be
771 // restarted after load
772 // calculator.getRegisteredWorkersOfClass(settings.getWorkerClass())
775 Cache.log.debug("trigger update for " + calcId);
780 * Method called when another alignment's edit (or possibly other) command is
783 * To allow for sequence mappings (e.g. protein to cDNA), we have to first
784 * 'unwind' the command on the source sequences (in simulation, not in fact),
785 * and then for each edit in turn:
787 * <li>compute the equivalent edit on the mapped sequences</li>
788 * <li>apply the mapped edit</li>
789 * <li>'apply' the source edit to the working copy of the source sequences</li>
797 public void mirrorCommand(CommandI command, boolean undo,
798 StructureSelectionManager ssm, VamsasSource source)
801 * Do nothing unless we are a 'complement' of the source. May replace this
802 * with direct calls not via SSM.
804 if (source instanceof AlignViewportI
805 && ((AlignViewportI) source).getCodingComplement() == this)
814 CommandI mappedCommand = ssm.mapCommand(command, undo, getAlignment(),
816 if (mappedCommand != null)
818 AlignmentI[] views = getAlignPanel().alignFrame.getViewAlignments();
819 mappedCommand.doCommand(views);
820 getAlignPanel().alignmentChanged();
825 * Add the sequences from the given alignment to this viewport. Optionally,
826 * may give the user the option to open a new frame, or split panel, with cDNA
827 * and protein linked.
832 public void addAlignment(AlignmentI al, String title)
834 // TODO: promote to AlignViewportI? applet CutAndPasteTransfer is different
836 // JBPComment: title is a largely redundant parameter at the moment
837 // JBPComment: this really should be an 'insert/pre/append' controller
838 // JBPComment: but the DNA/Protein check makes it a bit more complex
840 // refactored from FileLoader / CutAndPasteTransfer / SequenceFetcher with
842 // TODO: create undo object for this JAL-1101
845 * If any cDNA/protein mappings can be made between the alignments, offer to
846 * open a linked alignment with split frame option.
848 if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
850 if (al.getDataset() == null)
852 // need to create ds seqs
853 for (SequenceI sq : al.getSequences())
855 if (sq.getDatasetSequence() == null)
857 sq.createDatasetSequence();
861 if (AlignmentUtils.isMappable(al, getAlignment()))
863 if (openLinkedAlignment(al, title))
871 * No mappings, or offer declined - add sequences to this alignment
873 // TODO: JAL-407 regardless of above - identical sequences (based on ID and
874 // provenance) should share the same dataset sequence
876 for (int i = 0; i < al.getHeight(); i++)
878 getAlignment().addSequence(al.getSequenceAt(i));
881 setEndSeq(getAlignment().getHeight());
882 firePropertyChange("alignment", null, getAlignment().getSequences());
886 * Show a dialog with the option to open and link (cDNA <-> protein) as a new
887 * alignment, either as a standalone alignment or in a split frame. Returns
888 * true if the new alignment was opened, false if not, because the user
889 * declined the offer.
894 protected boolean openLinkedAlignment(AlignmentI al, String title)
896 String[] options = new String[]
897 { MessageManager.getString("action.no"),
898 MessageManager.getString("label.split_window"),
899 MessageManager.getString("label.new_window"), };
900 final String question = JvSwingUtils.wrapTooltip(true,
901 MessageManager.getString("label.open_split_window?"));
902 int response = JOptionPane.showOptionDialog(Desktop.desktop, question,
903 MessageManager.getString("label.open_split_window"),
904 JOptionPane.DEFAULT_OPTION, JOptionPane.PLAIN_MESSAGE, null,
905 options, options[0]);
907 if (response != 1 && response != 2)
911 final boolean openSplitPane = (response == 1);
912 final boolean openInNewWindow = (response == 2);
915 * Identify protein and dna alignments. Make a copy of this one if opening
916 * in a new split pane.
918 AlignmentI thisAlignment = openSplitPane ? new Alignment(getAlignment())
920 AlignmentI protein = al.isNucleotide() ? thisAlignment : al;
921 final AlignmentI cdna = al.isNucleotide() ? al : thisAlignment;
924 * Map sequences. At least one should get mapped as we have already passed
925 * the test for 'mappability'. Any mappings made will be added to the
926 * protein alignment. Note creating dataset sequences on the new alignment
927 * is a pre-requisite for building mappings.
930 AlignmentUtils.mapProteinToCdna(protein, cdna);
933 * Create the AlignFrame for the added alignment. If it is protein, mappings
934 * are registered with StructureSelectionManager as a side-effect.
936 AlignFrame newAlignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
937 AlignFrame.DEFAULT_HEIGHT);
938 newAlignFrame.setTitle(title);
939 newAlignFrame.statusBar.setText(MessageManager.formatMessage(
940 "label.successfully_loaded_file", new Object[]
943 // TODO if we want this (e.g. to enable reload of the alignment from file),
944 // we will need to add parameters to the stack.
945 // if (!protocol.equals(AppletFormatAdapter.PASTE))
947 // alignFrame.setFileName(file, format);
952 Desktop.addInternalFrame(newAlignFrame, title,
953 AlignFrame.DEFAULT_WIDTH,
954 AlignFrame.DEFAULT_HEIGHT);
959 newAlignFrame.setMaximum(jalview.bin.Cache.getDefault(
962 } catch (java.beans.PropertyVetoException ex)
968 al.alignAs(thisAlignment);
969 protein = openSplitFrame(newAlignFrame, thisAlignment);
976 * Helper method to open a new SplitFrame holding linked dna and protein
979 * @param newAlignFrame
980 * containing a new alignment to be shown
982 * cdna/protein complement alignment to show in the other split half
983 * @return the protein alignment in the split frame
985 protected AlignmentI openSplitFrame(AlignFrame newAlignFrame,
986 AlignmentI complement)
989 * Make a new frame with a copy of the alignment we are adding to. If this
990 * is protein, the mappings to cDNA will be registered with 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
1001 cdnaFrame.setVisible(true);
1002 proteinFrame.setVisible(true);
1003 String linkedTitle = MessageManager
1004 .getString("label.linked_view_title");
1007 * Open in split pane. DNA sequence above, protein below.
1009 JInternalFrame splitFrame = new SplitFrame(cdnaFrame, proteinFrame);
1010 Desktop.addInternalFrame(splitFrame, linkedTitle, -1, -1);
1012 return proteinFrame.viewport.getAlignment();
1015 public AnnotationColumnChooser getAnnotationColumnSelectionState()
1017 return annotationColumnSelectionState;
1020 public void setAnnotationColumnSelectionState(
1021 AnnotationColumnChooser currentAnnotationColumnSelectionState)
1023 this.annotationColumnSelectionState = currentAnnotationColumnSelectionState;
1027 public void setIdWidth(int i)
1029 super.setIdWidth(i);
1030 AlignmentPanel ap = getAlignPanel();
1033 // modify GUI elements to reflect geometry change
1034 Dimension idw = getAlignPanel().getIdPanel().getIdCanvas()
1035 .getPreferredSize();
1037 getAlignPanel().getIdPanel().getIdCanvas().setPreferredSize(idw);
1041 public Rectangle getExplodedGeometry()
1043 return explodedGeometry;
1046 public void setExplodedGeometry(Rectangle explodedPosition)
1048 this.explodedGeometry = explodedPosition;
1051 public boolean isGatherViewsHere()
1053 return gatherViewsHere;
1056 public void setGatherViewsHere(boolean gatherViewsHere)
1058 this.gatherViewsHere = gatherViewsHere;
1062 * If this viewport has a (Protein/cDNA) complement, then scroll the
1063 * complementary alignment to match this one.
1065 public void scrollComplementaryAlignment()
1068 * Populate a SearchResults object with the mapped location to scroll to. If
1069 * there is no complement, or it is not following highlights, or no mapping
1070 * is found, the result will be empty.
1072 SearchResults sr = new SearchResults();
1073 int verticalOffset = findComplementScrollTarget(sr);
1076 // TODO would like next line without cast but needs more refactoring...
1077 final AlignmentPanel complementPanel = ((AlignViewport) getCodingComplement()).getAlignPanel();
1078 complementPanel.setFollowingComplementScroll(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))