Merge remote-tracking branch 'origin/develop' into bug/JAL-2491
[jalview.git] / src / jalview / gui / AlignViewport.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
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.
11  *  
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.
16  * 
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.
20  */
21 package jalview.gui;
22
23 import jalview.analysis.AlignmentUtils;
24 import jalview.analysis.AnnotationSorter.SequenceAnnotationOrder;
25 import jalview.analysis.TreeModel;
26 import jalview.api.AlignViewportI;
27 import jalview.api.AlignmentViewPanel;
28 import jalview.api.FeatureColourI;
29 import jalview.api.FeatureSettingsModelI;
30 import jalview.api.FeaturesDisplayedI;
31 import jalview.api.ViewStyleI;
32 import jalview.bin.Cache;
33 import jalview.commands.CommandI;
34 import jalview.datamodel.AlignedCodonFrame;
35 import jalview.datamodel.Alignment;
36 import jalview.datamodel.AlignmentI;
37 import jalview.datamodel.ColumnSelection;
38 import jalview.datamodel.HiddenColumns;
39 import jalview.datamodel.PDBEntry;
40 import jalview.datamodel.SearchResults;
41 import jalview.datamodel.SearchResultsI;
42 import jalview.datamodel.Sequence;
43 import jalview.datamodel.SequenceGroup;
44 import jalview.datamodel.SequenceI;
45 import jalview.renderer.ResidueShader;
46 import jalview.schemes.ColourSchemeI;
47 import jalview.schemes.ColourSchemeProperty;
48 import jalview.schemes.ResidueColourScheme;
49 import jalview.schemes.UserColourScheme;
50 import jalview.structure.SelectionSource;
51 import jalview.structure.StructureSelectionManager;
52 import jalview.structure.VamsasSource;
53 import jalview.util.MessageManager;
54 import jalview.viewmodel.AlignmentViewport;
55 import jalview.ws.params.AutoCalcSetting;
56
57 import java.awt.Container;
58 import java.awt.Dimension;
59 import java.awt.Font;
60 import java.awt.FontMetrics;
61 import java.awt.Rectangle;
62 import java.util.ArrayList;
63 import java.util.Hashtable;
64 import java.util.List;
65 import java.util.Vector;
66
67 import javax.swing.JInternalFrame;
68
69 /**
70  * DOCUMENT ME!
71  * 
72  * @author $author$
73  * @version $Revision: 1.141 $
74  */
75 public class AlignViewport extends AlignmentViewport implements
76         SelectionSource
77 {
78   Font font;
79
80   TreeModel currentTree = null;
81
82   boolean cursorMode = false;
83
84   boolean antiAlias = false;
85
86   private Rectangle explodedGeometry;
87
88   String viewName;
89
90   /*
91    * Flag set true on the view that should 'gather' multiple views of the same
92    * sequence set id when a project is reloaded. Set false on all views when
93    * they are 'exploded' into separate windows. Set true on the current view
94    * when 'Gather' is performed, and also on the first tab when the first new
95    * view is created.
96    */
97   private boolean gatherViewsHere = false;
98
99   private AnnotationColumnChooser annotationColumnSelectionState;
100
101   /**
102    * Creates a new AlignViewport object.
103    * 
104    * @param al
105    *          alignment to view
106    */
107   public AlignViewport(AlignmentI al)
108   {
109     super(al);
110     init();
111   }
112
113   /**
114    * Create a new AlignViewport object with a specific sequence set ID
115    * 
116    * @param al
117    * @param seqsetid
118    *          (may be null - but potential for ambiguous constructor exception)
119    */
120   public AlignViewport(AlignmentI al, String seqsetid)
121   {
122     this(al, seqsetid, null);
123   }
124
125   public AlignViewport(AlignmentI al, String seqsetid, String viewid)
126   {
127     super(al);
128     sequenceSetID = seqsetid;
129     viewId = viewid;
130     // TODO remove these once 2.4.VAMSAS release finished
131     if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
132     {
133       Cache.log.debug("Setting viewport's sequence set id : "
134               + sequenceSetID);
135     }
136     if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
137     {
138       Cache.log.debug("Setting viewport's view id : " + viewId);
139     }
140     init();
141
142   }
143
144   /**
145    * Create a new AlignViewport with hidden regions
146    * 
147    * @param al
148    *          AlignmentI
149    * @param hiddenColumns
150    *          ColumnSelection
151    */
152   public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns)
153   {
154     super(al);
155     if (hiddenColumns != null)
156     {
157       al.setHiddenColumns(hiddenColumns);
158     }
159     init();
160   }
161
162   /**
163    * New viewport with hidden columns and an existing sequence set id
164    * 
165    * @param al
166    * @param hiddenColumns
167    * @param seqsetid
168    *          (may be null)
169    */
170   public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns,
171           String seqsetid)
172   {
173     this(al, hiddenColumns, seqsetid, null);
174   }
175
176   /**
177    * New viewport with hidden columns and an existing sequence set id and viewid
178    * 
179    * @param al
180    * @param hiddenColumns
181    * @param seqsetid
182    *          (may be null)
183    * @param viewid
184    *          (may be null)
185    */
186   public AlignViewport(AlignmentI al, HiddenColumns hiddenColumns,
187           String seqsetid, String viewid)
188   {
189     super(al);
190     sequenceSetID = seqsetid;
191     viewId = viewid;
192     // TODO remove these once 2.4.VAMSAS release finished
193     if (Cache.log != null && Cache.log.isDebugEnabled() && seqsetid != null)
194     {
195       Cache.log.debug("Setting viewport's sequence set id : "
196               + sequenceSetID);
197     }
198     if (Cache.log != null && Cache.log.isDebugEnabled() && viewId != null)
199     {
200       Cache.log.debug("Setting viewport's view id : " + viewId);
201     }
202
203     if (hiddenColumns != null)
204     {
205       al.setHiddenColumns(hiddenColumns);
206     }
207     init();
208   }
209
210   /**
211    * Apply any settings saved in user preferences
212    */
213   private void applyViewProperties()
214   {
215     antiAlias = Cache.getDefault("ANTI_ALIAS", false);
216
217     viewStyle.setShowJVSuffix(Cache.getDefault("SHOW_JVSUFFIX", true));
218     setShowAnnotation(Cache.getDefault("SHOW_ANNOTATIONS", true));
219
220     setRightAlignIds(Cache.getDefault("RIGHT_ALIGN_IDS", false));
221     setCentreColumnLabels(Cache.getDefault("CENTRE_COLUMN_LABELS", false));
222     autoCalculateConsensus = Cache.getDefault("AUTO_CALC_CONSENSUS", true);
223
224     setPadGaps(Cache.getDefault("PAD_GAPS", true));
225     setShowNPFeats(Cache.getDefault("SHOW_NPFEATS_TOOLTIP", true));
226     setShowDBRefs(Cache.getDefault("SHOW_DBREFS_TOOLTIP", true));
227     viewStyle.setSeqNameItalics(Cache.getDefault("ID_ITALICS", true));
228     viewStyle.setWrapAlignment(Cache.getDefault("WRAP_ALIGNMENT", false));
229     viewStyle.setShowUnconserved(Cache
230             .getDefault("SHOW_UNCONSERVED", false));
231     sortByTree = Cache.getDefault("SORT_BY_TREE", false);
232     followSelection = Cache.getDefault("FOLLOW_SELECTIONS", true);
233     sortAnnotationsBy = SequenceAnnotationOrder.valueOf(Cache.getDefault(
234             Preferences.SORT_ANNOTATIONS,
235             SequenceAnnotationOrder.NONE.name()));
236     showAutocalculatedAbove = Cache.getDefault(
237             Preferences.SHOW_AUTOCALC_ABOVE, false);
238     viewStyle.setScaleProteinAsCdna(Cache.getDefault(
239             Preferences.SCALE_PROTEIN_TO_CDNA, true));
240   }
241
242   void init()
243   {
244     applyViewProperties();
245
246     String fontName = Cache.getDefault("FONT_NAME", "SansSerif");
247     String fontStyle = Cache.getDefault("FONT_STYLE", Font.PLAIN + "");
248     String fontSize = Cache.getDefault("FONT_SIZE", "10");
249
250     int style = 0;
251
252     if (fontStyle.equals("bold"))
253     {
254       style = 1;
255     }
256     else if (fontStyle.equals("italic"))
257     {
258       style = 2;
259     }
260
261     setFont(new Font(fontName, style, Integer.parseInt(fontSize)), true);
262
263     alignment
264             .setGapCharacter(Cache.getDefault("GAP_SYMBOL", "-").charAt(0));
265
266     // We must set conservation and consensus before setting colour,
267     // as Blosum and Clustal require this to be done
268     if (hconsensus == null && !isDataset)
269     {
270       if (!alignment.isNucleotide())
271       {
272         showConservation = Cache.getDefault("SHOW_CONSERVATION", true);
273         showQuality = Cache.getDefault("SHOW_QUALITY", true);
274         showGroupConservation = Cache.getDefault("SHOW_GROUP_CONSERVATION",
275                 false);
276       }
277       showConsensusHistogram = Cache.getDefault("SHOW_CONSENSUS_HISTOGRAM",
278               true);
279       showSequenceLogo = Cache.getDefault("SHOW_CONSENSUS_LOGO", false);
280       normaliseSequenceLogo = Cache.getDefault("NORMALISE_CONSENSUS_LOGO",
281               false);
282       showGroupConsensus = Cache.getDefault("SHOW_GROUP_CONSENSUS", false);
283       showConsensus = Cache.getDefault("SHOW_IDENTITY", true);
284
285       showOccupancy = Cache.getDefault(Preferences.SHOW_OCCUPANCY, true);
286     }
287     initAutoAnnotation();
288     String colourProperty = alignment.isNucleotide() ? Preferences.DEFAULT_COLOUR_NUC
289             : Preferences.DEFAULT_COLOUR_PROT;
290     String schemeName = Cache.getProperty(colourProperty);
291     if (schemeName == null)
292     {
293       // only DEFAULT_COLOUR available in Jalview before 2.9
294       schemeName = Cache.getDefault(Preferences.DEFAULT_COLOUR,
295               ResidueColourScheme.NONE);
296     }
297     ColourSchemeI colourScheme = ColourSchemeProperty.getColourScheme(
298             alignment, schemeName);
299     residueShading = new ResidueShader(colourScheme);
300
301     if (colourScheme instanceof UserColourScheme)
302     {
303       residueShading = new ResidueShader(
304               UserDefinedColours.loadDefaultColours());
305       residueShading.setThreshold(0, isIgnoreGapsConsensus());
306     }
307
308     if (residueShading != null)
309     {
310       residueShading.setConsensus(hconsensus);
311     }
312   }
313
314   /**
315    * get the consensus sequence as displayed under the PID consensus annotation
316    * row.
317    * 
318    * @return consensus sequence as a new sequence object
319    */
320   public SequenceI getConsensusSeq()
321   {
322     if (consensus == null)
323     {
324       updateConsensus(null);
325     }
326     if (consensus == null)
327     {
328       return null;
329     }
330     StringBuffer seqs = new StringBuffer();
331     for (int i = 0; i < consensus.annotations.length; i++)
332     {
333       if (consensus.annotations[i] != null)
334       {
335         if (consensus.annotations[i].description.charAt(0) == '[')
336         {
337           seqs.append(consensus.annotations[i].description.charAt(1));
338         }
339         else
340         {
341           seqs.append(consensus.annotations[i].displayCharacter);
342         }
343       }
344     }
345
346     SequenceI sq = new Sequence("Consensus", seqs.toString());
347     sq.setDescription("Percentage Identity Consensus "
348             + ((ignoreGapsInConsensusCalculation) ? " without gaps" : ""));
349     return sq;
350   }
351
352   boolean validCharWidth;
353
354   /**
355    * {@inheritDoc}
356    */
357   @Override
358   public void setFont(Font f, boolean setGrid)
359   {
360     font = f;
361
362     Container c = new Container();
363
364     if (setGrid)
365     {
366       FontMetrics fm = c.getFontMetrics(font);
367       int ww = fm.charWidth('M');
368       setCharHeight(fm.getHeight());
369       setCharWidth(ww);
370     }
371     viewStyle.setFontName(font.getName());
372     viewStyle.setFontStyle(font.getStyle());
373     viewStyle.setFontSize(font.getSize());
374
375     validCharWidth = true;
376   }
377
378   @Override
379   public void setViewStyle(ViewStyleI settingsForView)
380   {
381     super.setViewStyle(settingsForView);
382     setFont(new Font(viewStyle.getFontName(), viewStyle.getFontStyle(),
383             viewStyle.getFontSize()), false);
384   }
385
386   /**
387    * DOCUMENT ME!
388    * 
389    * @return DOCUMENT ME!
390    */
391   public Font getFont()
392   {
393     return font;
394   }
395
396   /**
397    * DOCUMENT ME!
398    * 
399    * @param align
400    *          DOCUMENT ME!
401    */
402   @Override
403   public void setAlignment(AlignmentI align)
404   {
405     replaceMappings(align);
406     super.setAlignment(align);
407   }
408
409   /**
410    * Replace any codon mappings for this viewport with those for the given
411    * viewport
412    * 
413    * @param align
414    */
415   public void replaceMappings(AlignmentI align)
416   {
417
418     /*
419      * Deregister current mappings (if any)
420      */
421     deregisterMappings();
422
423     /*
424      * Register new mappings (if any)
425      */
426     if (align != null)
427     {
428       StructureSelectionManager ssm = StructureSelectionManager
429               .getStructureSelectionManager(Desktop.instance);
430       ssm.registerMappings(align.getCodonFrames());
431     }
432
433     /*
434      * replace mappings on our alignment
435      */
436     if (alignment != null && align != null)
437     {
438       alignment.setCodonFrames(align.getCodonFrames());
439     }
440   }
441
442   protected void deregisterMappings()
443   {
444     AlignmentI al = getAlignment();
445     if (al != null)
446     {
447       List<AlignedCodonFrame> mappings = al.getCodonFrames();
448       if (mappings != null)
449       {
450         StructureSelectionManager ssm = StructureSelectionManager
451                 .getStructureSelectionManager(Desktop.instance);
452         for (AlignedCodonFrame acf : mappings)
453         {
454           if (noReferencesTo(acf))
455           {
456             ssm.deregisterMapping(acf);
457           }
458         }
459       }
460     }
461   }
462
463   /**
464    * DOCUMENT ME!
465    * 
466    * @return DOCUMENT ME!
467    */
468   @Override
469   public char getGapCharacter()
470   {
471     return getAlignment().getGapCharacter();
472   }
473
474   /**
475    * DOCUMENT ME!
476    * 
477    * @param gap
478    *          DOCUMENT ME!
479    */
480   public void setGapCharacter(char gap)
481   {
482     if (getAlignment() != null)
483     {
484       getAlignment().setGapCharacter(gap);
485     }
486   }
487
488   /**
489    * DOCUMENT ME!
490    * 
491    * @param tree
492    *          DOCUMENT ME!
493    */
494   public void setCurrentTree(TreeModel tree)
495   {
496     currentTree = tree;
497   }
498
499   /**
500    * DOCUMENT ME!
501    * 
502    * @return DOCUMENT ME!
503    */
504   public TreeModel getCurrentTree()
505   {
506     return currentTree;
507   }
508
509   /**
510    * returns the visible column regions of the alignment
511    * 
512    * @param selectedRegionOnly
513    *          true to just return the contigs intersecting with the selected
514    *          area
515    * @return
516    */
517   public int[] getViewAsVisibleContigs(boolean selectedRegionOnly)
518   {
519     int[] viscontigs = null;
520     int start = 0, end = 0;
521     if (selectedRegionOnly && selectionGroup != null)
522     {
523       start = selectionGroup.getStartRes();
524       end = selectionGroup.getEndRes() + 1;
525     }
526     else
527     {
528       end = alignment.getWidth();
529     }
530     viscontigs = alignment.getHiddenColumns().getVisibleContigs(start, end);
531     return viscontigs;
532   }
533
534   /**
535    * get hash of undo and redo list for the alignment
536    * 
537    * @return long[] { historyList.hashCode, redoList.hashCode };
538    */
539   public long[] getUndoRedoHash()
540   {
541     // TODO: JAL-1126
542     if (historyList == null || redoList == null)
543     {
544       return new long[] { -1, -1 };
545     }
546     return new long[] { historyList.hashCode(), this.redoList.hashCode() };
547   }
548
549   /**
550    * test if a particular set of hashcodes are different to the hashcodes for
551    * the undo and redo list.
552    * 
553    * @param undoredo
554    *          the stored set of hashcodes as returned by getUndoRedoHash
555    * @return true if the hashcodes differ (ie the alignment has been edited) or
556    *         the stored hashcode array differs in size
557    */
558   public boolean isUndoRedoHashModified(long[] undoredo)
559   {
560     if (undoredo == null)
561     {
562       return true;
563     }
564     long[] cstate = getUndoRedoHash();
565     if (cstate.length != undoredo.length)
566     {
567       return true;
568     }
569
570     for (int i = 0; i < cstate.length; i++)
571     {
572       if (cstate[i] != undoredo[i])
573       {
574         return true;
575       }
576     }
577     return false;
578   }
579
580   public boolean followSelection = true;
581
582   /**
583    * @return true if view selection should always follow the selections
584    *         broadcast by other selection sources
585    */
586   public boolean getFollowSelection()
587   {
588     return followSelection;
589   }
590
591   /**
592    * Send the current selection to be broadcast to any selection listeners.
593    */
594   @Override
595   public void sendSelection()
596   {
597     jalview.structure.StructureSelectionManager
598             .getStructureSelectionManager(Desktop.instance).sendSelection(
599                     new SequenceGroup(getSelectionGroup()),
600                     new ColumnSelection(getColumnSelection()),
601                     new HiddenColumns(getAlignment().getHiddenColumns()),
602                     this);
603   }
604
605   /**
606    * return the alignPanel containing the given viewport. Use this to get the
607    * components currently handling the given viewport.
608    * 
609    * @param av
610    * @return null or an alignPanel guaranteed to have non-null alignFrame
611    *         reference
612    */
613   public AlignmentPanel getAlignPanel()
614   {
615     AlignmentPanel[] aps = PaintRefresher.getAssociatedPanels(this
616             .getSequenceSetId());
617     for (int p = 0; aps != null && p < aps.length; p++)
618     {
619       if (aps[p].av == this)
620       {
621         return aps[p];
622       }
623     }
624     return null;
625   }
626
627   public boolean getSortByTree()
628   {
629     return sortByTree;
630   }
631
632   public void setSortByTree(boolean sort)
633   {
634     sortByTree = sort;
635   }
636
637   /**
638    * Returns the (Desktop) instance of the StructureSelectionManager
639    */
640   @Override
641   public StructureSelectionManager getStructureSelectionManager()
642   {
643     return StructureSelectionManager
644             .getStructureSelectionManager(Desktop.instance);
645   }
646
647   /**
648    * 
649    * @param pdbEntries
650    * @return an array of SequenceI arrays, one for each PDBEntry, listing which
651    *         sequences in the alignment hold a reference to it
652    */
653   public SequenceI[][] collateForPDB(PDBEntry[] pdbEntries)
654   {
655     List<SequenceI[]> seqvectors = new ArrayList<SequenceI[]>();
656     for (PDBEntry pdb : pdbEntries)
657     {
658       List<SequenceI> choosenSeqs = new ArrayList<SequenceI>();
659       for (SequenceI sq : alignment.getSequences())
660       {
661         Vector<PDBEntry> pdbRefEntries = sq.getDatasetSequence()
662                 .getAllPDBEntries();
663         if (pdbRefEntries == null)
664         {
665           continue;
666         }
667         for (PDBEntry pdbRefEntry : pdbRefEntries)
668         {
669           if (pdbRefEntry.getId().equals(pdb.getId()))
670           {
671             if (pdbRefEntry.getChainCode() != null
672                     && pdb.getChainCode() != null)
673             {
674               if (pdbRefEntry.getChainCode().equalsIgnoreCase(
675                       pdb.getChainCode())
676                       && !choosenSeqs.contains(sq))
677               {
678                 choosenSeqs.add(sq);
679                 continue;
680               }
681             }
682             else
683             {
684               if (!choosenSeqs.contains(sq))
685               {
686                 choosenSeqs.add(sq);
687                 continue;
688               }
689             }
690
691           }
692         }
693       }
694       seqvectors
695               .add(choosenSeqs.toArray(new SequenceI[choosenSeqs.size()]));
696     }
697     return seqvectors.toArray(new SequenceI[seqvectors.size()][]);
698   }
699
700   @Override
701   public boolean isNormaliseSequenceLogo()
702   {
703     return normaliseSequenceLogo;
704   }
705
706   public void setNormaliseSequenceLogo(boolean state)
707   {
708     normaliseSequenceLogo = state;
709   }
710
711   /**
712    * 
713    * @return true if alignment characters should be displayed
714    */
715   @Override
716   public boolean isValidCharWidth()
717   {
718     return validCharWidth;
719   }
720
721   private Hashtable<String, AutoCalcSetting> calcIdParams = new Hashtable<String, AutoCalcSetting>();
722
723   public AutoCalcSetting getCalcIdSettingsFor(String calcId)
724   {
725     return calcIdParams.get(calcId);
726   }
727
728   public void setCalcIdSettingsFor(String calcId, AutoCalcSetting settings,
729           boolean needsUpdate)
730   {
731     calcIdParams.put(calcId, settings);
732     // TODO: create a restart list to trigger any calculations that need to be
733     // restarted after load
734     // calculator.getRegisteredWorkersOfClass(settings.getWorkerClass())
735     if (needsUpdate)
736     {
737       Cache.log.debug("trigger update for " + calcId);
738     }
739   }
740
741   /**
742    * Method called when another alignment's edit (or possibly other) command is
743    * broadcast to here.
744    *
745    * To allow for sequence mappings (e.g. protein to cDNA), we have to first
746    * 'unwind' the command on the source sequences (in simulation, not in fact),
747    * and then for each edit in turn:
748    * <ul>
749    * <li>compute the equivalent edit on the mapped sequences</li>
750    * <li>apply the mapped edit</li>
751    * <li>'apply' the source edit to the working copy of the source sequences</li>
752    * </ul>
753    * 
754    * @param command
755    * @param undo
756    * @param ssm
757    */
758   @Override
759   public void mirrorCommand(CommandI command, boolean undo,
760           StructureSelectionManager ssm, VamsasSource source)
761   {
762     /*
763      * Do nothing unless we are a 'complement' of the source. May replace this
764      * with direct calls not via SSM.
765      */
766     if (source instanceof AlignViewportI
767             && ((AlignViewportI) source).getCodingComplement() == this)
768     {
769       // ok to continue;
770     }
771     else
772     {
773       return;
774     }
775
776     CommandI mappedCommand = ssm.mapCommand(command, undo, getAlignment(),
777             getGapCharacter());
778     if (mappedCommand != null)
779     {
780       AlignmentI[] views = getAlignPanel().alignFrame.getViewAlignments();
781       mappedCommand.doCommand(views);
782       getAlignPanel().alignmentChanged();
783     }
784   }
785
786   /**
787    * Add the sequences from the given alignment to this viewport. Optionally,
788    * may give the user the option to open a new frame, or split panel, with cDNA
789    * and protein linked.
790    * 
791    * @param toAdd
792    * @param title
793    */
794   public void addAlignment(AlignmentI toAdd, String title)
795   {
796     // TODO: promote to AlignViewportI? applet CutAndPasteTransfer is different
797
798     // JBPComment: title is a largely redundant parameter at the moment
799     // JBPComment: this really should be an 'insert/pre/append' controller
800     // JBPComment: but the DNA/Protein check makes it a bit more complex
801
802     // refactored from FileLoader / CutAndPasteTransfer / SequenceFetcher with
803     // this comment:
804     // TODO: create undo object for this JAL-1101
805
806     /*
807      * Ensure datasets are created for the new alignment as
808      * mappings operate on dataset sequences
809      */
810     toAdd.setDataset(null);
811
812     /*
813      * Check if any added sequence could be the object of a mapping or
814      * cross-reference; if so, make the mapping explicit 
815      */
816     getAlignment().realiseMappings(toAdd.getSequences());
817
818     /*
819      * If any cDNA/protein mappings exist or can be made between the alignments, 
820      * offer to open a split frame with linked alignments
821      */
822     if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
823     {
824       if (AlignmentUtils.isMappable(toAdd, getAlignment()))
825       {
826         if (openLinkedAlignment(toAdd, title))
827         {
828           return;
829         }
830       }
831     }
832
833     /*
834      * No mappings, or offer declined - add sequences to this alignment
835      */
836     // TODO: JAL-407 regardless of above - identical sequences (based on ID and
837     // provenance) should share the same dataset sequence
838
839     AlignmentI al = getAlignment();
840     String gap = String.valueOf(al.getGapCharacter());
841     for (int i = 0; i < toAdd.getHeight(); i++)
842     {
843       SequenceI seq = toAdd.getSequenceAt(i);
844       /*
845        * experimental!
846        * - 'align' any mapped sequences as per existing 
847        *    e.g. cdna to genome, domain hit to protein sequence
848        * very experimental! (need a separate menu option for this)
849        * - only add mapped sequences ('select targets from a dataset')
850        */
851       if (true /*AlignmentUtils.alignSequenceAs(seq, al, gap, true, true)*/)
852       {
853         al.addSequence(seq);
854       }
855     }
856
857     ranges.setEndSeq(getAlignment().getHeight());
858     firePropertyChange("alignment", null, getAlignment().getSequences());
859   }
860
861   /**
862    * Show a dialog with the option to open and link (cDNA <-> protein) as a new
863    * alignment, either as a standalone alignment or in a split frame. Returns
864    * true if the new alignment was opened, false if not, because the user
865    * declined the offer.
866    * 
867    * @param al
868    * @param title
869    */
870   protected boolean openLinkedAlignment(AlignmentI al, String title)
871   {
872     String[] options = new String[] {
873         MessageManager.getString("action.no"),
874         MessageManager.getString("label.split_window"),
875         MessageManager.getString("label.new_window"), };
876     final String question = JvSwingUtils.wrapTooltip(true,
877             MessageManager.getString("label.open_split_window?"));
878     int response = JvOptionPane.showOptionDialog(Desktop.desktop, question,
879             MessageManager.getString("label.open_split_window"),
880             JvOptionPane.DEFAULT_OPTION, JvOptionPane.PLAIN_MESSAGE, null,
881             options, options[0]);
882
883     if (response != 1 && response != 2)
884     {
885       return false;
886     }
887     final boolean openSplitPane = (response == 1);
888     final boolean openInNewWindow = (response == 2);
889
890     /*
891      * Identify protein and dna alignments. Make a copy of this one if opening
892      * in a new split pane.
893      */
894     AlignmentI thisAlignment = openSplitPane ? new Alignment(getAlignment())
895             : getAlignment();
896     AlignmentI protein = al.isNucleotide() ? thisAlignment : al;
897     final AlignmentI cdna = al.isNucleotide() ? al : thisAlignment;
898
899     /*
900      * Map sequences. At least one should get mapped as we have already passed
901      * the test for 'mappability'. Any mappings made will be added to the
902      * protein alignment. Note creating dataset sequences on the new alignment
903      * is a pre-requisite for building mappings.
904      */
905     al.setDataset(null);
906     AlignmentUtils.mapProteinAlignmentToCdna(protein, cdna);
907
908     /*
909      * Create the AlignFrame for the added alignment. If it is protein, mappings
910      * are registered with StructureSelectionManager as a side-effect.
911      */
912     AlignFrame newAlignFrame = new AlignFrame(al, AlignFrame.DEFAULT_WIDTH,
913             AlignFrame.DEFAULT_HEIGHT);
914     newAlignFrame.setTitle(title);
915     newAlignFrame.statusBar.setText(MessageManager.formatMessage(
916             "label.successfully_loaded_file", new Object[] { title }));
917
918     // TODO if we want this (e.g. to enable reload of the alignment from file),
919     // we will need to add parameters to the stack.
920     // if (!protocol.equals(DataSourceType.PASTE))
921     // {
922     // alignFrame.setFileName(file, format);
923     // }
924
925     if (openInNewWindow)
926     {
927       Desktop.addInternalFrame(newAlignFrame, title,
928               AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
929     }
930
931     try
932     {
933       newAlignFrame.setMaximum(jalview.bin.Cache.getDefault(
934               "SHOW_FULLSCREEN", false));
935     } catch (java.beans.PropertyVetoException ex)
936     {
937     }
938
939     if (openSplitPane)
940     {
941       al.alignAs(thisAlignment);
942       protein = openSplitFrame(newAlignFrame, thisAlignment);
943     }
944
945     return true;
946   }
947
948   /**
949    * Helper method to open a new SplitFrame holding linked dna and protein
950    * alignments.
951    * 
952    * @param newAlignFrame
953    *          containing a new alignment to be shown
954    * @param complement
955    *          cdna/protein complement alignment to show in the other split half
956    * @return the protein alignment in the split frame
957    */
958   protected AlignmentI openSplitFrame(AlignFrame newAlignFrame,
959           AlignmentI complement)
960   {
961     /*
962      * Make a new frame with a copy of the alignment we are adding to. If this
963      * is protein, the mappings to cDNA will be registered with
964      * StructureSelectionManager as a side-effect.
965      */
966     AlignFrame copyMe = new AlignFrame(complement,
967             AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
968     copyMe.setTitle(getAlignPanel().alignFrame.getTitle());
969
970     AlignmentI al = newAlignFrame.viewport.getAlignment();
971     final AlignFrame proteinFrame = al.isNucleotide() ? copyMe
972             : newAlignFrame;
973     final AlignFrame cdnaFrame = al.isNucleotide() ? newAlignFrame : copyMe;
974     cdnaFrame.setVisible(true);
975     proteinFrame.setVisible(true);
976     String linkedTitle = MessageManager
977             .getString("label.linked_view_title");
978
979     /*
980      * Open in split pane. DNA sequence above, protein below.
981      */
982     JInternalFrame splitFrame = new SplitFrame(cdnaFrame, proteinFrame);
983     Desktop.addInternalFrame(splitFrame, linkedTitle, -1, -1);
984
985     return proteinFrame.viewport.getAlignment();
986   }
987
988   public AnnotationColumnChooser getAnnotationColumnSelectionState()
989   {
990     return annotationColumnSelectionState;
991   }
992
993   public void setAnnotationColumnSelectionState(
994           AnnotationColumnChooser currentAnnotationColumnSelectionState)
995   {
996     this.annotationColumnSelectionState = currentAnnotationColumnSelectionState;
997   }
998
999   @Override
1000   public void setIdWidth(int i)
1001   {
1002     super.setIdWidth(i);
1003     AlignmentPanel ap = getAlignPanel();
1004     if (ap != null)
1005     {
1006       // modify GUI elements to reflect geometry change
1007       Dimension idw = getAlignPanel().getIdPanel().getIdCanvas()
1008               .getPreferredSize();
1009       idw.width = i;
1010       getAlignPanel().getIdPanel().getIdCanvas().setPreferredSize(idw);
1011     }
1012   }
1013
1014   public Rectangle getExplodedGeometry()
1015   {
1016     return explodedGeometry;
1017   }
1018
1019   public void setExplodedGeometry(Rectangle explodedPosition)
1020   {
1021     this.explodedGeometry = explodedPosition;
1022   }
1023
1024   public boolean isGatherViewsHere()
1025   {
1026     return gatherViewsHere;
1027   }
1028
1029   public void setGatherViewsHere(boolean gatherViewsHere)
1030   {
1031     this.gatherViewsHere = gatherViewsHere;
1032   }
1033
1034   /**
1035    * If this viewport has a (Protein/cDNA) complement, then scroll the
1036    * complementary alignment to match this one.
1037    */
1038   public void scrollComplementaryAlignment()
1039   {
1040     /*
1041      * Populate a SearchResults object with the mapped location to scroll to. If
1042      * there is no complement, or it is not following highlights, or no mapping
1043      * is found, the result will be empty.
1044      */
1045     SearchResultsI sr = new SearchResults();
1046     int verticalOffset = findComplementScrollTarget(sr);
1047     if (!sr.isEmpty())
1048     {
1049       // TODO would like next line without cast but needs more refactoring...
1050       final AlignmentPanel complementPanel = ((AlignViewport) getCodingComplement())
1051               .getAlignPanel();
1052       complementPanel.setToScrollComplementPanel(false);
1053       complementPanel.scrollToCentre(sr, verticalOffset);
1054       complementPanel.setToScrollComplementPanel(true);
1055     }
1056   }
1057
1058   /**
1059    * Answers true if no alignment holds a reference to the given mapping
1060    * 
1061    * @param acf
1062    * @return
1063    */
1064   protected boolean noReferencesTo(AlignedCodonFrame acf)
1065   {
1066     AlignFrame[] frames = Desktop.getAlignFrames();
1067     if (frames == null)
1068     {
1069       return true;
1070     }
1071     for (AlignFrame af : frames)
1072     {
1073       if (!af.isClosed())
1074       {
1075         for (AlignmentViewPanel ap : af.getAlignPanels())
1076         {
1077           AlignmentI al = ap.getAlignment();
1078           if (al != null && al.getCodonFrames().contains(acf))
1079           {
1080             return false;
1081           }
1082         }
1083       }
1084     }
1085     return true;
1086   }
1087
1088   /**
1089    * Applies the supplied feature settings descriptor to currently known
1090    * features. This supports an 'initial configuration' of feature colouring
1091    * based on a preset or user favourite. This may then be modified in the usual
1092    * way using the Feature Settings dialogue.
1093    * 
1094    * @param featureSettings
1095    */
1096   @Override
1097   public void applyFeaturesStyle(FeatureSettingsModelI featureSettings)
1098   {
1099     if (featureSettings == null)
1100     {
1101       return;
1102     }
1103
1104     FeatureRenderer fr = getAlignPanel().getSeqPanel().seqCanvas
1105             .getFeatureRenderer();
1106     fr.findAllFeatures(true);
1107     List<String> renderOrder = fr.getRenderOrder();
1108     FeaturesDisplayedI displayed = fr.getFeaturesDisplayed();
1109     displayed.clear();
1110     // TODO this clears displayed.featuresRegistered - do we care?
1111
1112     /*
1113      * set feature colour if specified by feature settings
1114      * set visibility of all features
1115      */
1116     for (String type : renderOrder)
1117     {
1118       FeatureColourI preferredColour = featureSettings
1119               .getFeatureColour(type);
1120       if (preferredColour != null)
1121       {
1122         fr.setColour(type, preferredColour);
1123       }
1124       if (featureSettings.isFeatureDisplayed(type))
1125       {
1126         displayed.setVisible(type);
1127       }
1128     }
1129
1130     /*
1131      * set visibility of feature groups
1132      */
1133     for (String group : fr.getFeatureGroups())
1134     {
1135       fr.setGroupVisibility(group, featureSettings.isGroupDisplayed(group));
1136     }
1137
1138     /*
1139      * order the features
1140      */
1141     if (featureSettings.optimiseOrder())
1142     {
1143       // TODO not supported (yet?)
1144     }
1145     else
1146     {
1147       fr.orderFeatures(featureSettings);
1148     }
1149     fr.setTransparency(featureSettings.getTransparency());
1150   }
1151
1152 }