a36c1869c23c0aec162c40aaafb64a9a2056beb2
[jalview.git] / src / jalview / gui / AlignFrame.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 java.util.Locale;
24
25 import java.awt.BorderLayout;
26 import java.awt.Color;
27 import java.awt.Component;
28 import java.awt.Rectangle;
29 import java.awt.Toolkit;
30 import java.awt.datatransfer.Clipboard;
31 import java.awt.datatransfer.DataFlavor;
32 import java.awt.datatransfer.StringSelection;
33 import java.awt.datatransfer.Transferable;
34 import java.awt.dnd.DnDConstants;
35 import java.awt.dnd.DropTargetDragEvent;
36 import java.awt.dnd.DropTargetDropEvent;
37 import java.awt.dnd.DropTargetEvent;
38 import java.awt.dnd.DropTargetListener;
39 import java.awt.event.ActionEvent;
40 import java.awt.event.ActionListener;
41 import java.awt.event.FocusAdapter;
42 import java.awt.event.FocusEvent;
43 import java.awt.event.ItemEvent;
44 import java.awt.event.ItemListener;
45 import java.awt.event.KeyAdapter;
46 import java.awt.event.KeyEvent;
47 import java.awt.event.MouseEvent;
48 import java.awt.print.PageFormat;
49 import java.awt.print.PrinterJob;
50 import java.beans.PropertyChangeEvent;
51 import java.io.File;
52 import java.io.FileWriter;
53 import java.io.IOException;
54 import java.io.PrintWriter;
55 import java.net.URL;
56 import java.util.ArrayList;
57 import java.util.Arrays;
58 import java.util.Deque;
59 import java.util.Enumeration;
60 import java.util.Hashtable;
61 import java.util.List;
62 import java.util.Vector;
63
64 import javax.swing.ButtonGroup;
65 import javax.swing.JCheckBoxMenuItem;
66 import javax.swing.JComponent;
67 import javax.swing.JEditorPane;
68 import javax.swing.JInternalFrame;
69 import javax.swing.JLabel;
70 import javax.swing.JLayeredPane;
71 import javax.swing.JMenu;
72 import javax.swing.JMenuItem;
73 import javax.swing.JPanel;
74 import javax.swing.JScrollPane;
75 import javax.swing.SwingUtilities;
76
77 import ext.vamsas.ServiceHandle;
78 import jalview.analysis.AlignmentSorter;
79 import jalview.analysis.AlignmentUtils;
80 import jalview.analysis.CrossRef;
81 import jalview.analysis.Dna;
82 import jalview.analysis.GeneticCodeI;
83 import jalview.analysis.ParseProperties;
84 import jalview.analysis.SequenceIdMatcher;
85 import jalview.api.AlignExportSettingsI;
86 import jalview.api.AlignViewControllerGuiI;
87 import jalview.api.AlignViewControllerI;
88 import jalview.api.AlignViewportI;
89 import jalview.api.AlignmentViewPanel;
90 import jalview.api.FeatureSettingsControllerI;
91 import jalview.api.FeatureSettingsModelI;
92 import jalview.api.SplitContainerI;
93 import jalview.api.ViewStyleI;
94 import jalview.api.analysis.SimilarityParamsI;
95 import jalview.bin.Cache;
96 import jalview.bin.Jalview;
97 import jalview.commands.CommandI;
98 import jalview.commands.EditCommand;
99 import jalview.commands.EditCommand.Action;
100 import jalview.commands.OrderCommand;
101 import jalview.commands.RemoveGapColCommand;
102 import jalview.commands.RemoveGapsCommand;
103 import jalview.commands.SlideSequencesCommand;
104 import jalview.commands.TrimRegionCommand;
105 import jalview.datamodel.AlignExportSettingsAdapter;
106 import jalview.datamodel.AlignedCodonFrame;
107 import jalview.datamodel.Alignment;
108 import jalview.datamodel.AlignmentAnnotation;
109 import jalview.datamodel.AlignmentExportData;
110 import jalview.datamodel.AlignmentI;
111 import jalview.datamodel.AlignmentOrder;
112 import jalview.datamodel.AlignmentView;
113 import jalview.datamodel.ColumnSelection;
114 import jalview.datamodel.HiddenColumns;
115 import jalview.datamodel.PDBEntry;
116 import jalview.datamodel.SeqCigar;
117 import jalview.datamodel.Sequence;
118 import jalview.datamodel.SequenceGroup;
119 import jalview.datamodel.SequenceI;
120 import jalview.gui.ColourMenuHelper.ColourChangeListener;
121 import jalview.gui.ViewSelectionMenu.ViewSetProvider;
122 import jalview.io.AlignmentProperties;
123 import jalview.io.AnnotationFile;
124 import jalview.io.BackupFiles;
125 import jalview.io.BioJsHTMLOutput;
126 import jalview.io.DataSourceType;
127 import jalview.io.FileFormat;
128 import jalview.io.FileFormatI;
129 import jalview.io.FileFormats;
130 import jalview.io.FileLoader;
131 import jalview.io.FileParse;
132 import jalview.io.FormatAdapter;
133 import jalview.io.HtmlSvgOutput;
134 import jalview.io.IdentifyFile;
135 import jalview.io.JPredFile;
136 import jalview.io.JalviewFileChooser;
137 import jalview.io.JalviewFileView;
138 import jalview.io.JnetAnnotationMaker;
139 import jalview.io.NewickFile;
140 import jalview.io.ScoreMatrixFile;
141 import jalview.io.TCoffeeScoreFile;
142 import jalview.io.vcf.VCFLoader;
143 import jalview.jbgui.GAlignFrame;
144 import jalview.project.Jalview2XML;
145 import jalview.schemes.ColourSchemeI;
146 import jalview.schemes.ColourSchemes;
147 import jalview.schemes.ResidueColourScheme;
148 import jalview.schemes.TCoffeeColourScheme;
149 import jalview.util.HttpUtils;
150 import jalview.util.ImageMaker.TYPE;
151 import jalview.util.MessageManager;
152 import jalview.util.Platform;
153 import jalview.viewmodel.AlignmentViewport;
154 import jalview.viewmodel.ViewportRanges;
155 import jalview.ws.DBRefFetcher;
156 import jalview.ws.DBRefFetcher.FetchFinishedListenerI;
157 import jalview.ws.jws1.Discoverer;
158 import jalview.ws.jws2.Jws2Discoverer;
159 import jalview.ws.jws2.jabaws2.Jws2Instance;
160 import jalview.ws.seqfetcher.DbSourceProxy;
161
162 /**
163  * DOCUMENT ME!
164  * 
165  * @author $author$
166  * @version $Revision$
167  */
168 @SuppressWarnings("serial")
169 public class AlignFrame extends GAlignFrame implements DropTargetListener,
170         IProgressIndicator, AlignViewControllerGuiI, ColourChangeListener
171 {
172
173   public static final int DEFAULT_WIDTH = 700;
174
175   public static final int DEFAULT_HEIGHT = 500;
176
177   /*
178    * The currently displayed panel (selected tabbed view if more than one)
179    */
180   public AlignmentPanel alignPanel;
181
182   AlignViewport viewport;
183
184   public AlignViewControllerI avc;
185
186   List<AlignmentPanel> alignPanels = new ArrayList<>();
187
188   /**
189    * Last format used to load or save alignments in this window
190    */
191   FileFormatI currentFileFormat = null;
192
193   /**
194    * Current filename for this alignment
195    */
196   String fileName = null;
197
198   File fileObject;
199
200   /**
201    * Creates a new AlignFrame object with specific width and height.
202    * 
203    * @param al
204    * @param width
205    * @param height
206    */
207   public AlignFrame(AlignmentI al, int width, int height)
208   {
209     this(al, null, width, height);
210   }
211
212   /**
213    * Creates a new AlignFrame object with specific width, height and
214    * sequenceSetId
215    * 
216    * @param al
217    * @param width
218    * @param height
219    * @param sequenceSetId
220    */
221   public AlignFrame(AlignmentI al, int width, int height,
222           String sequenceSetId)
223   {
224     this(al, null, width, height, sequenceSetId);
225   }
226
227   /**
228    * Creates a new AlignFrame object with specific width, height and
229    * sequenceSetId
230    * 
231    * @param al
232    * @param width
233    * @param height
234    * @param sequenceSetId
235    * @param viewId
236    */
237   public AlignFrame(AlignmentI al, int width, int height,
238           String sequenceSetId, String viewId)
239   {
240     this(al, null, width, height, sequenceSetId, viewId);
241   }
242
243   /**
244    * new alignment window with hidden columns
245    * 
246    * @param al
247    *          AlignmentI
248    * @param hiddenColumns
249    *          ColumnSelection or null
250    * @param width
251    *          Width of alignment frame
252    * @param height
253    *          height of frame.
254    */
255   public AlignFrame(AlignmentI al, HiddenColumns hiddenColumns, int width,
256           int height)
257   {
258     this(al, hiddenColumns, width, height, null);
259   }
260
261   /**
262    * Create alignment frame for al with hiddenColumns, a specific width and
263    * height, and specific sequenceId
264    * 
265    * @param al
266    * @param hiddenColumns
267    * @param width
268    * @param height
269    * @param sequenceSetId
270    *          (may be null)
271    */
272   public AlignFrame(AlignmentI al, HiddenColumns hiddenColumns, int width,
273           int height, String sequenceSetId)
274   {
275     this(al, hiddenColumns, width, height, sequenceSetId, null);
276   }
277
278   /**
279    * Create alignment frame for al with hiddenColumns, a specific width and
280    * height, and specific sequenceId
281    * 
282    * @param al
283    * @param hiddenColumns
284    * @param width
285    * @param height
286    * @param sequenceSetId
287    *          (may be null)
288    * @param viewId
289    *          (may be null)
290    */
291   public AlignFrame(AlignmentI al, HiddenColumns hiddenColumns, int width,
292           int height, String sequenceSetId, String viewId)
293   {
294     setSize(width, height);
295
296     if (al.getDataset() == null)
297     {
298       al.setDataset(null);
299     }
300
301     viewport = new AlignViewport(al, hiddenColumns, sequenceSetId, viewId);
302
303     alignPanel = new AlignmentPanel(this, viewport);
304
305     addAlignmentPanel(alignPanel, true);
306     init();
307   }
308
309   public AlignFrame(AlignmentI al, SequenceI[] hiddenSeqs,
310           HiddenColumns hiddenColumns, int width, int height)
311   {
312     setSize(width, height);
313
314     if (al.getDataset() == null)
315     {
316       al.setDataset(null);
317     }
318
319     viewport = new AlignViewport(al, hiddenColumns);
320
321     if (hiddenSeqs != null && hiddenSeqs.length > 0)
322     {
323       viewport.hideSequence(hiddenSeqs);
324     }
325     alignPanel = new AlignmentPanel(this, viewport);
326     addAlignmentPanel(alignPanel, true);
327     init();
328   }
329
330   /**
331    * Make a new AlignFrame from existing alignmentPanels
332    * 
333    * @param ap
334    *          AlignmentPanel
335    * @param av
336    *          AlignViewport
337    */
338   public AlignFrame(AlignmentPanel ap)
339   {
340     viewport = ap.av;
341     alignPanel = ap;
342     addAlignmentPanel(ap, false);
343     init();
344   }
345
346   /**
347    * initalise the alignframe from the underlying viewport data and the
348    * configurations
349    */
350   void init()
351   {
352     // setBackground(Color.white); // BH 2019
353
354     if (!Jalview.isHeadlessMode())
355     {
356       progressBar = new ProgressBar(this.statusPanel, this.statusBar);
357     }
358
359     avc = new jalview.controller.AlignViewController(this, viewport,
360             alignPanel);
361     if (viewport.getAlignmentConservationAnnotation() == null)
362     {
363       // BLOSUM62Colour.setEnabled(false);
364       conservationMenuItem.setEnabled(false);
365       modifyConservation.setEnabled(false);
366       // PIDColour.setEnabled(false);
367       // abovePIDThreshold.setEnabled(false);
368       // modifyPID.setEnabled(false);
369     }
370
371     String sortby = jalview.bin.Cache.getDefault("SORT_ALIGNMENT",
372             "No sort");
373
374     if (sortby.equals("Id"))
375     {
376       sortIDMenuItem_actionPerformed(null);
377     }
378     else if (sortby.equals("Pairwise Identity"))
379     {
380       sortPairwiseMenuItem_actionPerformed(null);
381     }
382
383     this.alignPanel.av
384             .setShowAutocalculatedAbove(isShowAutoCalculatedAbove());
385
386     setMenusFromViewport(viewport);
387     buildSortByAnnotationScoresMenu();
388     calculateTree.addActionListener(new ActionListener()
389     {
390
391       @Override
392       public void actionPerformed(ActionEvent e)
393       {
394         openTreePcaDialog();
395       }
396     });
397     buildColourMenu();
398
399     if (Desktop.desktop != null)
400     {
401       this.setDropTarget(new java.awt.dnd.DropTarget(this, this));
402       if (!Platform.isJS())
403       {
404         addServiceListeners();
405       }
406       setGUINucleotide();
407     }
408
409     if (viewport.getWrapAlignment())
410     {
411       wrapMenuItem_actionPerformed(null);
412     }
413
414     if (jalview.bin.Cache.getDefault("SHOW_OVERVIEW", false))
415     {
416       this.overviewMenuItem_actionPerformed(null);
417     }
418
419     addKeyListener();
420
421     final List<AlignmentViewPanel> selviews = new ArrayList<>();
422     final List<AlignmentPanel> origview = new ArrayList<>();
423     final String menuLabel = MessageManager
424             .getString("label.copy_format_from");
425     ViewSelectionMenu vsel = new ViewSelectionMenu(menuLabel,
426             new ViewSetProvider()
427             {
428
429               @Override
430               public AlignmentPanel[] getAllAlignmentPanels()
431               {
432                 origview.clear();
433                 origview.add(alignPanel);
434                 // make an array of all alignment panels except for this one
435                 List<AlignmentPanel> aps = new ArrayList<>(
436                         Arrays.asList(Desktop.getAlignmentPanels(null)));
437                 aps.remove(AlignFrame.this.alignPanel);
438                 return aps.toArray(new AlignmentPanel[aps.size()]);
439               }
440             }, selviews, new ItemListener()
441             {
442
443               @Override
444               public void itemStateChanged(ItemEvent e)
445               {
446                 if (origview.size() > 0)
447                 {
448                   final AlignmentPanel ap = origview.get(0);
449
450                   /*
451                    * Copy the ViewStyle of the selected panel to 'this one'.
452                    * Don't change value of 'scaleProteinAsCdna' unless copying
453                    * from a SplitFrame.
454                    */
455                   ViewStyleI vs = selviews.get(0).getAlignViewport()
456                           .getViewStyle();
457                   boolean fromSplitFrame = selviews.get(0)
458                           .getAlignViewport().getCodingComplement() != null;
459                   if (!fromSplitFrame)
460                   {
461                     vs.setScaleProteinAsCdna(ap.getAlignViewport()
462                             .getViewStyle().isScaleProteinAsCdna());
463                   }
464                   ap.getAlignViewport().setViewStyle(vs);
465
466                   /*
467                    * Also rescale ViewStyle of SplitFrame complement if there is
468                    * one _and_ it is set to 'scaledProteinAsCdna'; we don't copy
469                    * the whole ViewStyle (allow cDNA protein to have different
470                    * fonts)
471                    */
472                   AlignViewportI complement = ap.getAlignViewport()
473                           .getCodingComplement();
474                   if (complement != null && vs.isScaleProteinAsCdna())
475                   {
476                     AlignFrame af = Desktop.getAlignFrameFor(complement);
477                     ((SplitFrame) af.getSplitViewContainer())
478                             .adjustLayout();
479                     af.setMenusForViewport();
480                   }
481
482                   ap.updateLayout();
483                   ap.setSelected(true);
484                   ap.alignFrame.setMenusForViewport();
485
486                 }
487               }
488             });
489     if (Cache.getDefault("VERSION", "DEVELOPMENT").toLowerCase(Locale.ROOT)
490             .indexOf("devel") > -1
491             || Cache.getDefault("VERSION", "DEVELOPMENT").toLowerCase(Locale.ROOT)
492                     .indexOf("test") > -1)
493     {
494       formatMenu.add(vsel);
495     }
496     addFocusListener(new FocusAdapter()
497     {
498       @Override
499       public void focusGained(FocusEvent e)
500       {
501         Jalview.setCurrentAlignFrame(AlignFrame.this);
502       }
503     });
504
505   }
506
507   /**
508    * Change the filename and format for the alignment, and enable the 'reload'
509    * button functionality.
510    * 
511    * @param file
512    *          valid filename
513    * @param format
514    *          format of file
515    */
516   public void setFileName(String file, FileFormatI format)
517   {
518     fileName = file;
519     setFileFormat(format);
520     reload.setEnabled(true);
521   }
522
523   /**
524    * JavaScript will have this, maybe others. More dependable than a file name
525    * and maintains a reference to the actual bytes loaded.
526    * 
527    * @param file
528    */
529   public void setFileObject(File file)
530   {
531     this.fileObject = file;
532   }
533
534   /**
535    * Add a KeyListener with handlers for various KeyPressed and KeyReleased
536    * events
537    */
538   void addKeyListener()
539   {
540     addKeyListener(new KeyAdapter()
541     {
542       @Override
543       public void keyPressed(KeyEvent evt)
544       {
545         if (viewport.cursorMode
546                 && ((evt.getKeyCode() >= KeyEvent.VK_0
547                         && evt.getKeyCode() <= KeyEvent.VK_9)
548                         || (evt.getKeyCode() >= KeyEvent.VK_NUMPAD0
549                                 && evt.getKeyCode() <= KeyEvent.VK_NUMPAD9))
550                 && Character.isDigit(evt.getKeyChar()))
551         {
552           alignPanel.getSeqPanel().numberPressed(evt.getKeyChar());
553         }
554
555         switch (evt.getKeyCode())
556         {
557
558         case 27: // escape key
559           deselectAllSequenceMenuItem_actionPerformed(null);
560
561           break;
562
563         case KeyEvent.VK_DOWN:
564           if (evt.isAltDown() || !viewport.cursorMode)
565           {
566             moveSelectedSequences(false);
567           }
568           if (viewport.cursorMode)
569           {
570             alignPanel.getSeqPanel().moveCursor(0, 1, evt.isShiftDown());
571           }
572           break;
573
574         case KeyEvent.VK_UP:
575           if (evt.isAltDown() || !viewport.cursorMode)
576           {
577             moveSelectedSequences(true);
578           }
579           if (viewport.cursorMode)
580           {
581             alignPanel.getSeqPanel().moveCursor(0, -1,evt.isShiftDown());
582           }
583
584           break;
585
586         case KeyEvent.VK_LEFT:
587           if (evt.isAltDown() || !viewport.cursorMode)
588           {
589             slideSequences(false,
590                     alignPanel.getSeqPanel().getKeyboardNo1());
591           }
592           else
593           {
594             alignPanel.getSeqPanel().moveCursor(-1, 0, evt.isShiftDown());
595           }
596
597           break;
598
599         case KeyEvent.VK_RIGHT:
600           if (evt.isAltDown() || !viewport.cursorMode)
601           {
602             slideSequences(true, alignPanel.getSeqPanel().getKeyboardNo1());
603           }
604           else
605           {
606             alignPanel.getSeqPanel().moveCursor(1, 0, evt.isShiftDown());
607           }
608           break;
609
610         case KeyEvent.VK_SPACE:
611           if (viewport.cursorMode)
612           {
613             alignPanel.getSeqPanel().insertGapAtCursor(evt.isControlDown()
614                     || evt.isShiftDown() || evt.isAltDown());
615           }
616           break;
617
618         // case KeyEvent.VK_A:
619         // if (viewport.cursorMode)
620         // {
621         // alignPanel.seqPanel.insertNucAtCursor(false,"A");
622         // //System.out.println("A");
623         // }
624         // break;
625         /*
626          * case KeyEvent.VK_CLOSE_BRACKET: if (viewport.cursorMode) {
627          * System.out.println("closing bracket"); } break;
628          */
629         case KeyEvent.VK_DELETE:
630         case KeyEvent.VK_BACK_SPACE:
631           if (!viewport.cursorMode)
632           {
633             cut_actionPerformed();
634           }
635           else
636           {
637             alignPanel.getSeqPanel().deleteGapAtCursor(evt.isControlDown()
638                     || evt.isShiftDown() || evt.isAltDown());
639           }
640
641           break;
642
643         case KeyEvent.VK_S:
644           if (viewport.cursorMode)
645           {
646             alignPanel.getSeqPanel().setCursorRow();
647           }
648           break;
649         case KeyEvent.VK_C:
650           if (viewport.cursorMode && !evt.isControlDown())
651           {
652             alignPanel.getSeqPanel().setCursorColumn();
653           }
654           break;
655         case KeyEvent.VK_P:
656           if (viewport.cursorMode)
657           {
658             alignPanel.getSeqPanel().setCursorPosition();
659           }
660           break;
661
662         case KeyEvent.VK_ENTER:
663         case KeyEvent.VK_COMMA:
664           if (viewport.cursorMode)
665           {
666             alignPanel.getSeqPanel().setCursorRowAndColumn();
667           }
668           break;
669
670         case KeyEvent.VK_Q:
671           if (viewport.cursorMode)
672           {
673             alignPanel.getSeqPanel().setSelectionAreaAtCursor(true);
674           }
675           break;
676         case KeyEvent.VK_M:
677           if (viewport.cursorMode)
678           {
679             alignPanel.getSeqPanel().setSelectionAreaAtCursor(false);
680           }
681           break;
682
683         case KeyEvent.VK_F2:
684           viewport.cursorMode = !viewport.cursorMode;
685           setStatus(MessageManager
686                   .formatMessage("label.keyboard_editing_mode", new String[]
687                   { (viewport.cursorMode ? "on" : "off") }));
688           if (viewport.cursorMode)
689           {
690             ViewportRanges ranges = viewport.getRanges();
691             alignPanel.getSeqPanel().seqCanvas.cursorX = ranges
692                     .getStartRes();
693             alignPanel.getSeqPanel().seqCanvas.cursorY = ranges
694                     .getStartSeq();
695           }
696           alignPanel.getSeqPanel().seqCanvas.repaint();
697           break;
698
699         case KeyEvent.VK_F1:
700           try
701           {
702             Help.showHelpWindow();
703           } catch (Exception ex)
704           {
705             ex.printStackTrace();
706           }
707           break;
708         case KeyEvent.VK_H:
709         {
710           boolean toggleSeqs = !evt.isControlDown();
711           boolean toggleCols = !evt.isShiftDown();
712           toggleHiddenRegions(toggleSeqs, toggleCols);
713           break;
714         }
715         case KeyEvent.VK_B:
716         {
717           boolean toggleSel = evt.isControlDown() || evt.isMetaDown();
718           boolean modifyExisting = true; // always modify, don't clear
719                                          // evt.isShiftDown();
720           boolean invertHighlighted = evt.isAltDown();
721           avc.markHighlightedColumns(invertHighlighted, modifyExisting,
722                   toggleSel);
723           break;
724         }
725         case KeyEvent.VK_PAGE_UP:
726           viewport.getRanges().pageUp();
727           break;
728         case KeyEvent.VK_PAGE_DOWN:
729           viewport.getRanges().pageDown();
730           break;
731         }
732       }
733
734       @Override
735       public void keyReleased(KeyEvent evt)
736       {
737         switch (evt.getKeyCode())
738         {
739         case KeyEvent.VK_LEFT:
740           if (evt.isAltDown() || !viewport.cursorMode)
741           {
742             viewport.firePropertyChange("alignment", null,
743                     viewport.getAlignment().getSequences());
744           }
745           break;
746
747         case KeyEvent.VK_RIGHT:
748           if (evt.isAltDown() || !viewport.cursorMode)
749           {
750             viewport.firePropertyChange("alignment", null,
751                     viewport.getAlignment().getSequences());
752           }
753           break;
754         }
755       }
756     });
757   }
758
759   public void addAlignmentPanel(final AlignmentPanel ap, boolean newPanel)
760   {
761     ap.alignFrame = this;
762     avc = new jalview.controller.AlignViewController(this, viewport,
763             alignPanel);
764
765     alignPanels.add(ap);
766
767     PaintRefresher.Register(ap, ap.av.getSequenceSetId());
768
769     int aSize = alignPanels.size();
770
771     tabbedPane.setVisible(aSize > 1 || ap.av.getViewName() != null);
772
773     if (aSize == 1 && ap.av.getViewName() == null)
774     {
775       this.getContentPane().add(ap, BorderLayout.CENTER);
776     }
777     else
778     {
779       if (aSize == 2)
780       {
781         setInitialTabVisible();
782       }
783
784       expandViews.setEnabled(true);
785       gatherViews.setEnabled(true);
786       tabbedPane.addTab(ap.av.getViewName(), ap);
787
788       ap.setVisible(false);
789     }
790
791     if (newPanel)
792     {
793       if (ap.av.isPadGaps())
794       {
795         ap.av.getAlignment().padGaps();
796       }
797       ap.av.updateConservation(ap);
798       ap.av.updateConsensus(ap);
799       ap.av.updateStrucConsensus(ap);
800     }
801   }
802
803   public void setInitialTabVisible()
804   {
805     expandViews.setEnabled(true);
806     gatherViews.setEnabled(true);
807     tabbedPane.setVisible(true);
808     AlignmentPanel first = alignPanels.get(0);
809     tabbedPane.addTab(first.av.getViewName(), first);
810     this.getContentPane().add(tabbedPane, BorderLayout.CENTER);
811   }
812
813   public AlignViewport getViewport()
814   {
815     return viewport;
816   }
817
818   /* Set up intrinsic listeners for dynamically generated GUI bits. */
819   private void addServiceListeners()
820   {
821     final java.beans.PropertyChangeListener thisListener;
822     Desktop.instance.addJalviewPropertyChangeListener("services",
823             thisListener = new java.beans.PropertyChangeListener()
824             {
825               @Override
826               public void propertyChange(PropertyChangeEvent evt)
827               {
828                 // // System.out.println("Discoverer property change.");
829                 // if (evt.getPropertyName().equals("services"))
830                 {
831                   SwingUtilities.invokeLater(new Runnable()
832                   {
833
834                     @Override
835                     public void run()
836                     {
837                       System.err.println(
838                               "Rebuild WS Menu for service change");
839                       BuildWebServiceMenu();
840                     }
841
842                   });
843                 }
844               }
845             });
846     addInternalFrameListener(new javax.swing.event.InternalFrameAdapter()
847     {
848       @Override
849       public void internalFrameClosed(
850               javax.swing.event.InternalFrameEvent evt)
851       {
852         // System.out.println("deregistering discoverer listener");
853         Desktop.instance.removeJalviewPropertyChangeListener("services",
854                 thisListener);
855         closeMenuItem_actionPerformed(true);
856       }
857     });
858     // Finally, build the menu once to get current service state
859     new Thread(new Runnable()
860     {
861       @Override
862       public void run()
863       {
864         BuildWebServiceMenu();
865       }
866     }).start();
867   }
868
869   /**
870    * Configure menu items that vary according to whether the alignment is
871    * nucleotide or protein
872    */
873   public void setGUINucleotide()
874   {
875     AlignmentI al = getViewport().getAlignment();
876     boolean nucleotide = al.isNucleotide();
877
878     loadVcf.setVisible(nucleotide);
879     showTranslation.setVisible(nucleotide);
880     showReverse.setVisible(nucleotide);
881     showReverseComplement.setVisible(nucleotide);
882     conservationMenuItem.setEnabled(!nucleotide);
883     modifyConservation
884             .setEnabled(!nucleotide && conservationMenuItem.isSelected());
885     showGroupConservation.setEnabled(!nucleotide);
886
887     showComplementMenuItem
888             .setText(nucleotide ? MessageManager.getString("label.protein")
889                     : MessageManager.getString("label.nucleotide"));
890   }
891
892   /**
893    * set up menus for the current viewport. This may be called after any
894    * operation that affects the data in the current view (selection changed,
895    * etc) to update the menus to reflect the new state.
896    */
897   @Override
898   public void setMenusForViewport()
899   {
900     setMenusFromViewport(viewport);
901   }
902
903   /**
904    * Need to call this method when tabs are selected for multiple views, or when
905    * loading from Jalview2XML.java
906    * 
907    * @param av
908    *          AlignViewport
909    */
910   public void setMenusFromViewport(AlignViewport av)
911   {
912     padGapsMenuitem.setSelected(av.isPadGaps());
913     colourTextMenuItem.setSelected(av.isShowColourText());
914     abovePIDThreshold.setSelected(av.getAbovePIDThreshold());
915     modifyPID.setEnabled(abovePIDThreshold.isSelected());
916     conservationMenuItem.setSelected(av.getConservationSelected());
917     modifyConservation.setEnabled(conservationMenuItem.isSelected());
918     seqLimits.setSelected(av.getShowJVSuffix());
919     idRightAlign.setSelected(av.isRightAlignIds());
920     centreColumnLabelsMenuItem.setState(av.isCentreColumnLabels());
921     renderGapsMenuItem.setSelected(av.isRenderGaps());
922     wrapMenuItem.setSelected(av.getWrapAlignment());
923     scaleAbove.setVisible(av.getWrapAlignment());
924     scaleLeft.setVisible(av.getWrapAlignment());
925     scaleRight.setVisible(av.getWrapAlignment());
926     annotationPanelMenuItem.setState(av.isShowAnnotation());
927     /*
928      * Show/hide annotations only enabled if annotation panel is shown
929      */
930     showAllSeqAnnotations.setEnabled(annotationPanelMenuItem.getState());
931     hideAllSeqAnnotations.setEnabled(annotationPanelMenuItem.getState());
932     showAllAlAnnotations.setEnabled(annotationPanelMenuItem.getState());
933     hideAllAlAnnotations.setEnabled(annotationPanelMenuItem.getState());
934     viewBoxesMenuItem.setSelected(av.getShowBoxes());
935     viewTextMenuItem.setSelected(av.getShowText());
936     showNonconservedMenuItem.setSelected(av.getShowUnconserved());
937     showGroupConsensus.setSelected(av.isShowGroupConsensus());
938     showGroupConservation.setSelected(av.isShowGroupConservation());
939     showConsensusHistogram.setSelected(av.isShowConsensusHistogram());
940     showSequenceLogo.setSelected(av.isShowSequenceLogo());
941     normaliseSequenceLogo.setSelected(av.isNormaliseSequenceLogo());
942
943     ColourMenuHelper.setColourSelected(colourMenu,
944             av.getGlobalColourScheme());
945
946     showSeqFeatures.setSelected(av.isShowSequenceFeatures());
947     hiddenMarkers.setState(av.getShowHiddenMarkers());
948     applyToAllGroups.setState(av.getColourAppliesToAllGroups());
949     showNpFeatsMenuitem.setSelected(av.isShowNPFeats());
950     showDbRefsMenuitem.setSelected(av.isShowDBRefs());
951     autoCalculate.setSelected(av.autoCalculateConsensus);
952     sortByTree.setSelected(av.sortByTree);
953     listenToViewSelections.setSelected(av.followSelection);
954
955     showProducts.setEnabled(canShowProducts());
956     setGroovyEnabled(Desktop.getGroovyConsole() != null);
957
958     updateEditMenuBar();
959   }
960
961   /**
962    * Set the enabled state of the 'Run Groovy' option in the Calculate menu
963    * 
964    * @param b
965    */
966   public void setGroovyEnabled(boolean b)
967   {
968     runGroovy.setEnabled(b);
969   }
970
971   private IProgressIndicator progressBar;
972
973   /*
974    * (non-Javadoc)
975    * 
976    * @see jalview.gui.IProgressIndicator#setProgressBar(java.lang.String, long)
977    */
978   @Override
979   public void setProgressBar(String message, long id)
980   {
981     progressBar.setProgressBar(message, id);
982   }
983
984   @Override
985   public void registerHandler(final long id,
986           final IProgressIndicatorHandler handler)
987   {
988     progressBar.registerHandler(id, handler);
989   }
990
991   /**
992    * 
993    * @return true if any progress bars are still active
994    */
995   @Override
996   public boolean operationInProgress()
997   {
998     return progressBar.operationInProgress();
999   }
1000
1001   /**
1002    * Sets the text of the status bar. Note that setting a null or empty value
1003    * will cause the status bar to be hidden, with possibly undesirable flicker
1004    * of the screen layout.
1005    */
1006   @Override
1007   public void setStatus(String text)
1008   {
1009     statusBar.setText(text == null || text.isEmpty() ? " " : text);
1010   }
1011
1012   /*
1013    * Added so Castor Mapping file can obtain Jalview Version
1014    */
1015   public String getVersion()
1016   {
1017     return jalview.bin.Cache.getProperty("VERSION");
1018   }
1019
1020   public FeatureRenderer getFeatureRenderer()
1021   {
1022     return alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer();
1023   }
1024
1025   @Override
1026   public void fetchSequence_actionPerformed()
1027   {
1028     new SequenceFetcher(this);
1029   }
1030
1031   @Override
1032   public void addFromFile_actionPerformed(ActionEvent e)
1033   {
1034     Desktop.instance.inputLocalFileMenuItem_actionPerformed(viewport);
1035   }
1036
1037   @Override
1038   public void reload_actionPerformed(ActionEvent e)
1039   {
1040     if (fileName != null)
1041     {
1042       // TODO: JAL-1108 - ensure all associated frames are closed regardless of
1043       // originating file's format
1044       // TODO: work out how to recover feature settings for correct view(s) when
1045       // file is reloaded.
1046       if (FileFormat.Jalview.equals(currentFileFormat))
1047       {
1048         JInternalFrame[] frames = Desktop.desktop.getAllFrames();
1049         for (int i = 0; i < frames.length; i++)
1050         {
1051           if (frames[i] instanceof AlignFrame && frames[i] != this
1052                   && ((AlignFrame) frames[i]).fileName != null
1053                   && ((AlignFrame) frames[i]).fileName.equals(fileName))
1054           {
1055             try
1056             {
1057               frames[i].setSelected(true);
1058               Desktop.instance.closeAssociatedWindows();
1059             } catch (java.beans.PropertyVetoException ex)
1060             {
1061             }
1062           }
1063
1064         }
1065         Desktop.instance.closeAssociatedWindows();
1066
1067         FileLoader loader = new FileLoader();
1068         DataSourceType protocol = HttpUtils.startsWithHttpOrHttps(fileName)
1069                 ? DataSourceType.URL
1070                 : DataSourceType.FILE;
1071         loader.LoadFile(viewport, fileName, protocol, currentFileFormat);
1072       }
1073       else
1074       {
1075         Rectangle bounds = this.getBounds();
1076
1077         FileLoader loader = new FileLoader();
1078
1079         AlignFrame newframe = null;
1080
1081         if (fileObject == null)
1082         {
1083
1084           DataSourceType protocol = HttpUtils.startsWithHttpOrHttps(
1085                   fileName) ? DataSourceType.URL : DataSourceType.FILE;
1086           newframe = loader.LoadFileWaitTillLoaded(fileName, protocol,
1087                   currentFileFormat);
1088         }
1089         else
1090         {
1091           newframe = loader.LoadFileWaitTillLoaded(fileObject,
1092                   DataSourceType.FILE, currentFileFormat);
1093         }
1094
1095         newframe.setBounds(bounds);
1096         if (featureSettings != null && featureSettings.isShowing())
1097         {
1098           final Rectangle fspos = featureSettings.frame.getBounds();
1099           // TODO: need a 'show feature settings' function that takes bounds -
1100           // need to refactor Desktop.addFrame
1101           newframe.featureSettings_actionPerformed(null);
1102           final FeatureSettings nfs = newframe.featureSettings;
1103           SwingUtilities.invokeLater(new Runnable()
1104           {
1105             @Override
1106             public void run()
1107             {
1108               nfs.frame.setBounds(fspos);
1109             }
1110           });
1111           this.featureSettings.close();
1112           this.featureSettings = null;
1113         }
1114         this.closeMenuItem_actionPerformed(true);
1115       }
1116     }
1117   }
1118
1119   @Override
1120   public void addFromText_actionPerformed(ActionEvent e)
1121   {
1122     Desktop.instance
1123             .inputTextboxMenuItem_actionPerformed(viewport.getAlignPanel());
1124   }
1125
1126   @Override
1127   public void addFromURL_actionPerformed(ActionEvent e)
1128   {
1129     Desktop.instance.inputURLMenuItem_actionPerformed(viewport);
1130   }
1131
1132   @Override
1133   public void save_actionPerformed(ActionEvent e)
1134   {
1135     if (fileName == null || (currentFileFormat == null)
1136             || HttpUtils.startsWithHttpOrHttps(fileName))
1137     {
1138       saveAs_actionPerformed();
1139     }
1140     else
1141     {
1142       saveAlignment(fileName, currentFileFormat);
1143     }
1144   }
1145
1146   /**
1147    * Saves the alignment to a file with a name chosen by the user, if necessary
1148    * warning if a file would be overwritten
1149    */
1150   @Override
1151   public void saveAs_actionPerformed()
1152   {
1153     String format = currentFileFormat == null ? null
1154             : currentFileFormat.getName();
1155     JalviewFileChooser chooser = JalviewFileChooser
1156             .forWrite(Cache.getProperty("LAST_DIRECTORY"), format);
1157
1158     chooser.setFileView(new JalviewFileView());
1159     chooser.setDialogTitle(
1160             MessageManager.getString("label.save_alignment_to_file"));
1161     chooser.setToolTipText(MessageManager.getString("action.save"));
1162
1163     int value = chooser.showSaveDialog(this);
1164
1165     if (value != JalviewFileChooser.APPROVE_OPTION)
1166     {
1167       return;
1168     }
1169     currentFileFormat = chooser.getSelectedFormat();
1170     // todo is this (2005) test now obsolete - value is never null?
1171     while (currentFileFormat == null)
1172     {
1173       JvOptionPane.showInternalMessageDialog(Desktop.desktop,
1174               MessageManager
1175                       .getString("label.select_file_format_before_saving"),
1176               MessageManager.getString("label.file_format_not_specified"),
1177               JvOptionPane.WARNING_MESSAGE);
1178       currentFileFormat = chooser.getSelectedFormat();
1179       value = chooser.showSaveDialog(this);
1180       if (value != JalviewFileChooser.APPROVE_OPTION)
1181       {
1182         return;
1183       }
1184     }
1185
1186     fileName = chooser.getSelectedFile().getPath();
1187
1188     Cache.setProperty("DEFAULT_FILE_FORMAT", currentFileFormat.getName());
1189     Cache.setProperty("LAST_DIRECTORY", fileName);
1190     saveAlignment(fileName, currentFileFormat);
1191   }
1192
1193   boolean lastSaveSuccessful = false;
1194
1195   FileFormatI lastFormatSaved;
1196
1197   String lastFilenameSaved;
1198
1199   /**
1200    * Raise a dialog or status message for the last call to saveAlignment.
1201    *
1202    * @return true if last call to saveAlignment(file, format) was successful.
1203    */
1204   public boolean isSaveAlignmentSuccessful()
1205   {
1206
1207     if (!lastSaveSuccessful)
1208     {
1209       if (!Platform.isHeadless())
1210       {
1211         JvOptionPane.showInternalMessageDialog(this, MessageManager
1212                 .formatMessage("label.couldnt_save_file", new Object[]
1213                 { lastFilenameSaved }),
1214                 MessageManager.getString("label.error_saving_file"),
1215                 JvOptionPane.WARNING_MESSAGE);
1216       }
1217       else
1218       {
1219         Cache.log.error(MessageManager
1220                 .formatMessage("label.couldnt_save_file", new Object[]
1221                 { lastFilenameSaved }));
1222       }
1223     }
1224     else
1225     {
1226
1227       setStatus(MessageManager.formatMessage(
1228               "label.successfully_saved_to_file_in_format", new Object[]
1229               { lastFilenameSaved, lastFormatSaved }));
1230
1231     }
1232     return lastSaveSuccessful;
1233   }
1234
1235   /**
1236    * Saves the alignment to the specified file path, in the specified format,
1237    * which may be an alignment format, or Jalview project format. If the
1238    * alignment has hidden regions, or the format is one capable of including
1239    * non-sequence data (features, annotations, groups), then the user may be
1240    * prompted to specify what to include in the output.
1241    * 
1242    * @param file
1243    * @param format
1244    */
1245   public void saveAlignment(String file, FileFormatI format)
1246   {
1247     lastSaveSuccessful = true;
1248     lastFilenameSaved = file;
1249     lastFormatSaved = format;
1250
1251     if (FileFormat.Jalview.equals(format))
1252     {
1253       String shortName = title;
1254       if (shortName.indexOf(File.separatorChar) > -1)
1255       {
1256         shortName = shortName
1257                 .substring(shortName.lastIndexOf(File.separatorChar) + 1);
1258       }
1259       lastSaveSuccessful = new Jalview2XML().saveAlignment(this, file,
1260               shortName);
1261
1262       statusBar.setText(MessageManager.formatMessage(
1263               "label.successfully_saved_to_file_in_format", new Object[]
1264               { file, format }));
1265
1266       return;
1267     }
1268
1269     AlignExportSettingsI options = new AlignExportSettingsAdapter(false);
1270     Runnable cancelAction = new Runnable()
1271     {
1272       @Override
1273       public void run()
1274       {
1275         lastSaveSuccessful = false;
1276       }
1277     };
1278     Runnable outputAction = new Runnable()
1279     {
1280       @Override
1281       public void run()
1282       {
1283         // todo defer this to inside formatSequences (or later)
1284         AlignmentExportData exportData = viewport
1285                 .getAlignExportData(options);
1286         String output = new FormatAdapter(alignPanel, options)
1287                 .formatSequences(format, exportData.getAlignment(),
1288                         exportData.getOmitHidden(),
1289                         exportData.getStartEndPostions(),
1290                         viewport.getAlignment().getHiddenColumns());
1291         if (output == null)
1292         {
1293           lastSaveSuccessful = false;
1294         }
1295         else
1296         {
1297           // create backupfiles object and get new temp filename destination
1298           boolean doBackup = BackupFiles.getEnabled();
1299           BackupFiles backupfiles = null;
1300           if (doBackup)
1301           {
1302             Cache.log.trace(
1303                     "ALIGNFRAME making backupfiles object for " + file);
1304             backupfiles = new BackupFiles(file);
1305           }
1306           try
1307           {
1308             String tempFilePath = doBackup ? backupfiles.getTempFilePath()
1309                     : file;
1310             Cache.log.trace("ALIGNFRAME setting PrintWriter");
1311             PrintWriter out = new PrintWriter(new FileWriter(tempFilePath));
1312
1313             if (backupfiles != null)
1314             {
1315               Cache.log.trace("ALIGNFRAME about to write to temp file "
1316                       + backupfiles.getTempFilePath());
1317             }
1318
1319             out.print(output);
1320             Cache.log.trace("ALIGNFRAME about to close file");
1321             out.close();
1322             Cache.log.trace("ALIGNFRAME closed file");
1323             AlignFrame.this.setTitle(file);
1324             statusBar.setText(MessageManager.formatMessage(
1325                     "label.successfully_saved_to_file_in_format",
1326                     new Object[]
1327                     { fileName, format.getName() }));
1328             lastSaveSuccessful = true;
1329           } catch (IOException e)
1330           {
1331             lastSaveSuccessful = false;
1332             Cache.log.error(
1333                     "ALIGNFRAME Something happened writing the temp file");
1334             Cache.log.error(e.getMessage());
1335             Cache.log.debug(Cache.getStackTraceString(e));
1336           } catch (Exception ex)
1337           {
1338             lastSaveSuccessful = false;
1339             Cache.log.error(
1340                     "ALIGNFRAME Something unexpected happened writing the temp file");
1341             Cache.log.error(ex.getMessage());
1342             Cache.log.debug(Cache.getStackTraceString(ex));
1343           }
1344
1345           if (doBackup)
1346           {
1347             backupfiles.setWriteSuccess(lastSaveSuccessful);
1348             Cache.log.debug("ALIGNFRAME writing temp file was "
1349                     + (lastSaveSuccessful ? "" : "NOT ") + "successful");
1350             // do the backup file roll and rename the temp file to actual file
1351             Cache.log.trace(
1352                     "ALIGNFRAME about to rollBackupsAndRenameTempFile");
1353             lastSaveSuccessful = backupfiles.rollBackupsAndRenameTempFile();
1354             Cache.log.debug(
1355                     "ALIGNFRAME performed rollBackupsAndRenameTempFile "
1356                             + (lastSaveSuccessful ? "" : "un")
1357                             + "successfully");
1358           }
1359         }
1360       }
1361     };
1362
1363     /*
1364      * show dialog with export options if applicable; else just do it
1365      */
1366     if (AlignExportOptions.isNeeded(viewport, format))
1367     {
1368       AlignExportOptions choices = new AlignExportOptions(
1369               alignPanel.getAlignViewport(), format, options);
1370       choices.setResponseAction(0, outputAction);
1371       choices.setResponseAction(1, cancelAction);
1372       choices.showDialog();
1373     }
1374     else
1375     {
1376       outputAction.run();
1377     }
1378   }
1379
1380   /**
1381    * Outputs the alignment to textbox in the requested format, if necessary
1382    * first prompting the user for whether to include hidden regions or
1383    * non-sequence data
1384    * 
1385    * @param fileFormatName
1386    */
1387   @Override
1388   protected void outputText_actionPerformed(String fileFormatName)
1389   {
1390     FileFormatI fileFormat = FileFormats.getInstance()
1391             .forName(fileFormatName);
1392     AlignExportSettingsI options = new AlignExportSettingsAdapter(false);
1393     Runnable outputAction = new Runnable()
1394     {
1395       @Override
1396       public void run()
1397       {
1398         // todo defer this to inside formatSequences (or later)
1399         AlignmentExportData exportData = viewport
1400                 .getAlignExportData(options);
1401         CutAndPasteTransfer cap = new CutAndPasteTransfer();
1402         cap.setForInput(null);
1403         try
1404         {
1405           FileFormatI format = fileFormat;
1406           cap.setText(new FormatAdapter(alignPanel, options)
1407                   .formatSequences(format, exportData.getAlignment(),
1408                           exportData.getOmitHidden(),
1409                           exportData.getStartEndPostions(),
1410                           viewport.getAlignment().getHiddenColumns()));
1411           Desktop.addInternalFrame(cap, MessageManager.formatMessage(
1412                   "label.alignment_output_command", new Object[]
1413                   { fileFormat.getName() }), 600, 500);
1414         } catch (OutOfMemoryError oom)
1415         {
1416           new OOMWarning("Outputting alignment as " + fileFormat.getName(),
1417                   oom);
1418           cap.dispose();
1419         }
1420       }
1421     };
1422
1423     /*
1424      * show dialog with export options if applicable; else just do it
1425      */
1426     if (AlignExportOptions.isNeeded(viewport, fileFormat))
1427     {
1428       AlignExportOptions choices = new AlignExportOptions(
1429               alignPanel.getAlignViewport(), fileFormat, options);
1430       choices.setResponseAction(0, outputAction);
1431       choices.showDialog();
1432     }
1433     else
1434     {
1435       outputAction.run();
1436     }
1437   }
1438
1439   /**
1440    * DOCUMENT ME!
1441    * 
1442    * @param e
1443    *          DOCUMENT ME!
1444    */
1445   @Override
1446   protected void htmlMenuItem_actionPerformed(ActionEvent e)
1447   {
1448     HtmlSvgOutput htmlSVG = new HtmlSvgOutput(alignPanel);
1449     htmlSVG.exportHTML(null);
1450   }
1451
1452   @Override
1453   public void bioJSMenuItem_actionPerformed(ActionEvent e)
1454   {
1455     BioJsHTMLOutput bjs = new BioJsHTMLOutput(alignPanel);
1456     bjs.exportHTML(null);
1457   }
1458
1459   public void createImageMap(File file, String image)
1460   {
1461     alignPanel.makePNGImageMap(file, image);
1462   }
1463
1464   /**
1465    * Creates a PNG image of the alignment and writes it to the given file. If
1466    * the file is null, the user is prompted to choose a file.
1467    * 
1468    * @param f
1469    */
1470   @Override
1471   public void createPNG(File f)
1472   {
1473     alignPanel.makeAlignmentImage(TYPE.PNG, f);
1474   }
1475
1476   /**
1477    * Creates an EPS image of the alignment and writes it to the given file. If
1478    * the file is null, the user is prompted to choose a file.
1479    * 
1480    * @param f
1481    */
1482   @Override
1483   public void createEPS(File f)
1484   {
1485     alignPanel.makeAlignmentImage(TYPE.EPS, f);
1486   }
1487
1488   /**
1489    * Creates an SVG image of the alignment and writes it to the given file. If
1490    * the file is null, the user is prompted to choose a file.
1491    * 
1492    * @param f
1493    */
1494   @Override
1495   public void createSVG(File f)
1496   {
1497     alignPanel.makeAlignmentImage(TYPE.SVG, f);
1498   }
1499
1500   @Override
1501   public void pageSetup_actionPerformed(ActionEvent e)
1502   {
1503     PrinterJob printJob = PrinterJob.getPrinterJob();
1504     PrintThread.pf = printJob.pageDialog(printJob.defaultPage());
1505   }
1506
1507   /**
1508    * DOCUMENT ME!
1509    * 
1510    * @param e
1511    *          DOCUMENT ME!
1512    */
1513   @Override
1514   public void printMenuItem_actionPerformed(ActionEvent e)
1515   {
1516     // Putting in a thread avoids Swing painting problems
1517     PrintThread thread = new PrintThread(alignPanel);
1518     thread.start();
1519   }
1520
1521   @Override
1522   public void exportFeatures_actionPerformed(ActionEvent e)
1523   {
1524     new AnnotationExporter(alignPanel).exportFeatures();
1525   }
1526
1527   @Override
1528   public void exportAnnotations_actionPerformed(ActionEvent e)
1529   {
1530     new AnnotationExporter(alignPanel).exportAnnotations();
1531   }
1532
1533   @Override
1534   public void associatedData_actionPerformed(ActionEvent e)
1535   {
1536     final JalviewFileChooser chooser = new JalviewFileChooser(
1537             jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
1538     chooser.setFileView(new JalviewFileView());
1539     String tooltip = MessageManager
1540             .getString("label.load_jalview_annotations");
1541     chooser.setDialogTitle(tooltip);
1542     chooser.setToolTipText(tooltip);
1543     chooser.setResponseHandler(0, new Runnable()
1544     {
1545       @Override
1546       public void run()
1547       {
1548         String choice = chooser.getSelectedFile().getPath();
1549         jalview.bin.Cache.setProperty("LAST_DIRECTORY", choice);
1550         loadJalviewDataFile(chooser.getSelectedFile(), null, null, null);
1551       }
1552     });
1553
1554     chooser.showOpenDialog(this);
1555   }
1556
1557   /**
1558    * Close the current view or all views in the alignment frame. If the frame
1559    * only contains one view then the alignment will be removed from memory.
1560    * 
1561    * @param closeAllTabs
1562    */
1563   @Override
1564   public void closeMenuItem_actionPerformed(boolean closeAllTabs)
1565   {
1566     if (alignPanels != null && alignPanels.size() < 2)
1567     {
1568       closeAllTabs = true;
1569     }
1570
1571     try
1572     {
1573       if (alignPanels != null)
1574       {
1575         if (closeAllTabs)
1576         {
1577           if (this.isClosed())
1578           {
1579             // really close all the windows - otherwise wait till
1580             // setClosed(true) is called
1581             for (int i = 0; i < alignPanels.size(); i++)
1582             {
1583               AlignmentPanel ap = alignPanels.get(i);
1584               ap.closePanel();
1585             }
1586           }
1587         }
1588         else
1589         {
1590           closeView(alignPanel);
1591         }
1592       }
1593       if (closeAllTabs)
1594       {
1595         if (featureSettings != null && featureSettings.isOpen())
1596         {
1597           featureSettings.close();
1598           featureSettings = null;
1599         }
1600         /*
1601          * this will raise an INTERNAL_FRAME_CLOSED event and this method will
1602          * be called recursively, with the frame now in 'closed' state
1603          */
1604         this.setClosed(true);
1605       }
1606     } catch (Exception ex)
1607     {
1608       ex.printStackTrace();
1609     }
1610   }
1611
1612   /**
1613    * Close the specified panel and close up tabs appropriately.
1614    * 
1615    * @param panelToClose
1616    */
1617   public void closeView(AlignmentPanel panelToClose)
1618   {
1619     int index = tabbedPane.getSelectedIndex();
1620     int closedindex = tabbedPane.indexOfComponent(panelToClose);
1621     alignPanels.remove(panelToClose);
1622     panelToClose.closePanel();
1623     panelToClose = null;
1624
1625     tabbedPane.removeTabAt(closedindex);
1626     tabbedPane.validate();
1627
1628     if (index > closedindex || index == tabbedPane.getTabCount())
1629     {
1630       // modify currently selected tab index if necessary.
1631       index--;
1632     }
1633
1634     this.tabSelectionChanged(index);
1635   }
1636
1637   /**
1638    * DOCUMENT ME!
1639    */
1640   void updateEditMenuBar()
1641   {
1642
1643     if (viewport.getHistoryList().size() > 0)
1644     {
1645       undoMenuItem.setEnabled(true);
1646       CommandI command = viewport.getHistoryList().peek();
1647       undoMenuItem.setText(MessageManager
1648               .formatMessage("label.undo_command", new Object[]
1649               { command.getDescription() }));
1650     }
1651     else
1652     {
1653       undoMenuItem.setEnabled(false);
1654       undoMenuItem.setText(MessageManager.getString("action.undo"));
1655     }
1656
1657     if (viewport.getRedoList().size() > 0)
1658     {
1659       redoMenuItem.setEnabled(true);
1660
1661       CommandI command = viewport.getRedoList().peek();
1662       redoMenuItem.setText(MessageManager
1663               .formatMessage("label.redo_command", new Object[]
1664               { command.getDescription() }));
1665     }
1666     else
1667     {
1668       redoMenuItem.setEnabled(false);
1669       redoMenuItem.setText(MessageManager.getString("action.redo"));
1670     }
1671   }
1672
1673   @Override
1674   public void addHistoryItem(CommandI command)
1675   {
1676     if (command.getSize() > 0)
1677     {
1678       viewport.addToHistoryList(command);
1679       viewport.clearRedoList();
1680       updateEditMenuBar();
1681       viewport.updateHiddenColumns();
1682       // viewport.hasHiddenColumns = (viewport.getColumnSelection() != null
1683       // && viewport.getColumnSelection().getHiddenColumns() != null &&
1684       // viewport.getColumnSelection()
1685       // .getHiddenColumns().size() > 0);
1686     }
1687   }
1688
1689   /**
1690    * 
1691    * @return alignment objects for all views
1692    */
1693   AlignmentI[] getViewAlignments()
1694   {
1695     if (alignPanels != null)
1696     {
1697       AlignmentI[] als = new AlignmentI[alignPanels.size()];
1698       int i = 0;
1699       for (AlignmentPanel ap : alignPanels)
1700       {
1701         als[i++] = ap.av.getAlignment();
1702       }
1703       return als;
1704     }
1705     if (viewport != null)
1706     {
1707       return new AlignmentI[] { viewport.getAlignment() };
1708     }
1709     return null;
1710   }
1711
1712   /**
1713    * DOCUMENT ME!
1714    * 
1715    * @param e
1716    *          DOCUMENT ME!
1717    */
1718   @Override
1719   protected void undoMenuItem_actionPerformed(ActionEvent e)
1720   {
1721     if (viewport.getHistoryList().isEmpty())
1722     {
1723       return;
1724     }
1725     CommandI command = viewport.getHistoryList().pop();
1726     viewport.addToRedoList(command);
1727     command.undoCommand(getViewAlignments());
1728
1729     AlignmentViewport originalSource = getOriginatingSource(command);
1730     updateEditMenuBar();
1731
1732     if (originalSource != null)
1733     {
1734       if (originalSource != viewport)
1735       {
1736         Cache.log.warn(
1737                 "Implementation worry: mismatch of viewport origin for undo");
1738       }
1739       originalSource.updateHiddenColumns();
1740       // originalSource.hasHiddenColumns = (viewport.getColumnSelection() !=
1741       // null
1742       // && viewport.getColumnSelection().getHiddenColumns() != null &&
1743       // viewport.getColumnSelection()
1744       // .getHiddenColumns().size() > 0);
1745       originalSource.firePropertyChange("alignment", null,
1746               originalSource.getAlignment().getSequences());
1747     }
1748   }
1749
1750   /**
1751    * DOCUMENT ME!
1752    * 
1753    * @param e
1754    *          DOCUMENT ME!
1755    */
1756   @Override
1757   protected void redoMenuItem_actionPerformed(ActionEvent e)
1758   {
1759     if (viewport.getRedoList().size() < 1)
1760     {
1761       return;
1762     }
1763
1764     CommandI command = viewport.getRedoList().pop();
1765     viewport.addToHistoryList(command);
1766     command.doCommand(getViewAlignments());
1767
1768     AlignmentViewport originalSource = getOriginatingSource(command);
1769     updateEditMenuBar();
1770
1771     if (originalSource != null)
1772     {
1773
1774       if (originalSource != viewport)
1775       {
1776         Cache.log.warn(
1777                 "Implementation worry: mismatch of viewport origin for redo");
1778       }
1779       originalSource.updateHiddenColumns();
1780       // originalSource.hasHiddenColumns = (viewport.getColumnSelection() !=
1781       // null
1782       // && viewport.getColumnSelection().getHiddenColumns() != null &&
1783       // viewport.getColumnSelection()
1784       // .getHiddenColumns().size() > 0);
1785       originalSource.firePropertyChange("alignment", null,
1786               originalSource.getAlignment().getSequences());
1787     }
1788   }
1789
1790   AlignmentViewport getOriginatingSource(CommandI command)
1791   {
1792     AlignmentViewport originalSource = null;
1793     // For sequence removal and addition, we need to fire
1794     // the property change event FROM the viewport where the
1795     // original alignment was altered
1796     AlignmentI al = null;
1797     if (command instanceof EditCommand)
1798     {
1799       EditCommand editCommand = (EditCommand) command;
1800       al = editCommand.getAlignment();
1801       List<Component> comps = PaintRefresher.components
1802               .get(viewport.getSequenceSetId());
1803
1804       for (Component comp : comps)
1805       {
1806         if (comp instanceof AlignmentPanel)
1807         {
1808           if (al == ((AlignmentPanel) comp).av.getAlignment())
1809           {
1810             originalSource = ((AlignmentPanel) comp).av;
1811             break;
1812           }
1813         }
1814       }
1815     }
1816
1817     if (originalSource == null)
1818     {
1819       // The original view is closed, we must validate
1820       // the current view against the closed view first
1821       if (al != null)
1822       {
1823         PaintRefresher.validateSequences(al, viewport.getAlignment());
1824       }
1825
1826       originalSource = viewport;
1827     }
1828
1829     return originalSource;
1830   }
1831
1832   /**
1833    * Calls AlignmentI.moveSelectedSequencesByOne with current sequence selection
1834    * or the sequence under cursor in keyboard mode
1835    * 
1836    * @param up
1837    *          or down (if !up)
1838    */
1839   public void moveSelectedSequences(boolean up)
1840   {
1841     SequenceGroup sg = viewport.getSelectionGroup();
1842
1843     if (sg == null)
1844     {
1845       if (viewport.cursorMode)
1846       {
1847         sg = new SequenceGroup();
1848         sg.addSequence(viewport.getAlignment().getSequenceAt(
1849                 alignPanel.getSeqPanel().seqCanvas.cursorY), false);
1850       }
1851       else
1852       {
1853         return;
1854       }
1855     }
1856
1857     if (sg.getSize() < 1)
1858     {
1859       return;
1860     }
1861
1862     // TODO: JAL-3733 - add an event to the undo buffer for this !
1863
1864     viewport.getAlignment().moveSelectedSequencesByOne(sg,
1865             viewport.getHiddenRepSequences(), up);
1866     alignPanel.paintAlignment(true, false);
1867   }
1868
1869   synchronized void slideSequences(boolean right, int size)
1870   {
1871     List<SequenceI> sg = new ArrayList<>();
1872     if (viewport.cursorMode)
1873     {
1874       sg.add(viewport.getAlignment()
1875               .getSequenceAt(alignPanel.getSeqPanel().seqCanvas.cursorY));
1876     }
1877     else if (viewport.getSelectionGroup() != null
1878             && viewport.getSelectionGroup().getSize() != viewport
1879                     .getAlignment().getHeight())
1880     {
1881       sg = viewport.getSelectionGroup()
1882               .getSequences(viewport.getHiddenRepSequences());
1883     }
1884
1885     if (sg.size() < 1)
1886     {
1887       return;
1888     }
1889
1890     List<SequenceI> invertGroup = new ArrayList<>();
1891
1892     for (SequenceI seq : viewport.getAlignment().getSequences())
1893     {
1894       if (!sg.contains(seq))
1895       {
1896         invertGroup.add(seq);
1897       }
1898     }
1899
1900     SequenceI[] seqs1 = sg.toArray(new SequenceI[0]);
1901
1902     SequenceI[] seqs2 = new SequenceI[invertGroup.size()];
1903     for (int i = 0; i < invertGroup.size(); i++)
1904     {
1905       seqs2[i] = invertGroup.get(i);
1906     }
1907
1908     SlideSequencesCommand ssc;
1909     if (right)
1910     {
1911       ssc = new SlideSequencesCommand("Slide Sequences", seqs2, seqs1, size,
1912               viewport.getGapCharacter());
1913     }
1914     else
1915     {
1916       ssc = new SlideSequencesCommand("Slide Sequences", seqs1, seqs2, size,
1917               viewport.getGapCharacter());
1918     }
1919
1920     int groupAdjustment = 0;
1921     if (ssc.getGapsInsertedBegin() && right)
1922     {
1923       if (viewport.cursorMode)
1924       {
1925         alignPanel.getSeqPanel().moveCursor(size, 0);
1926       }
1927       else
1928       {
1929         groupAdjustment = size;
1930       }
1931     }
1932     else if (!ssc.getGapsInsertedBegin() && !right)
1933     {
1934       if (viewport.cursorMode)
1935       {
1936         alignPanel.getSeqPanel().moveCursor(-size, 0);
1937       }
1938       else
1939       {
1940         groupAdjustment = -size;
1941       }
1942     }
1943
1944     if (groupAdjustment != 0)
1945     {
1946       viewport.getSelectionGroup().setStartRes(
1947               viewport.getSelectionGroup().getStartRes() + groupAdjustment);
1948       viewport.getSelectionGroup().setEndRes(
1949               viewport.getSelectionGroup().getEndRes() + groupAdjustment);
1950     }
1951
1952     /*
1953      * just extend the last slide command if compatible; but not if in
1954      * SplitFrame mode (to ensure all edits are broadcast - JAL-1802)
1955      */
1956     boolean appendHistoryItem = false;
1957     Deque<CommandI> historyList = viewport.getHistoryList();
1958     boolean inSplitFrame = getSplitViewContainer() != null;
1959     if (!inSplitFrame && historyList != null && historyList.size() > 0
1960             && historyList.peek() instanceof SlideSequencesCommand)
1961     {
1962       appendHistoryItem = ssc.appendSlideCommand(
1963               (SlideSequencesCommand) historyList.peek());
1964     }
1965
1966     if (!appendHistoryItem)
1967     {
1968       addHistoryItem(ssc);
1969     }
1970
1971     repaint();
1972   }
1973
1974   /**
1975    * DOCUMENT ME!
1976    * 
1977    * @param e
1978    *          DOCUMENT ME!
1979    */
1980   @Override
1981   protected void copy_actionPerformed()
1982   {
1983     if (viewport.getSelectionGroup() == null)
1984     {
1985       return;
1986     }
1987     // TODO: preserve the ordering of displayed alignment annotation in any
1988     // internal paste (particularly sequence associated annotation)
1989     SequenceI[] seqs = viewport.getSelectionAsNewSequence();
1990     String[] omitHidden = null;
1991
1992     if (viewport.hasHiddenColumns())
1993     {
1994       omitHidden = viewport.getViewAsString(true);
1995     }
1996
1997     String output = new FormatAdapter().formatSequences(FileFormat.Fasta,
1998             seqs, omitHidden, null);
1999
2000     StringSelection ss = new StringSelection(output);
2001
2002     try
2003     {
2004       jalview.gui.Desktop.internalCopy = true;
2005       // Its really worth setting the clipboard contents
2006       // to empty before setting the large StringSelection!!
2007       Toolkit.getDefaultToolkit().getSystemClipboard()
2008               .setContents(new StringSelection(""), null);
2009
2010       Toolkit.getDefaultToolkit().getSystemClipboard().setContents(ss,
2011               Desktop.instance);
2012     } catch (OutOfMemoryError er)
2013     {
2014       new OOMWarning("copying region", er);
2015       return;
2016     }
2017
2018     HiddenColumns hiddenColumns = null;
2019     if (viewport.hasHiddenColumns())
2020     {
2021       int hiddenOffset = viewport.getSelectionGroup().getStartRes();
2022       int hiddenCutoff = viewport.getSelectionGroup().getEndRes();
2023
2024       // create new HiddenColumns object with copy of hidden regions
2025       // between startRes and endRes, offset by startRes
2026       hiddenColumns = new HiddenColumns(
2027               viewport.getAlignment().getHiddenColumns(), hiddenOffset,
2028               hiddenCutoff, hiddenOffset);
2029     }
2030
2031     Desktop.jalviewClipboard = new Object[] { seqs,
2032         viewport.getAlignment().getDataset(), hiddenColumns };
2033     setStatus(MessageManager.formatMessage(
2034             "label.copied_sequences_to_clipboard", new Object[]
2035             { Integer.valueOf(seqs.length).toString() }));
2036   }
2037
2038   /**
2039    * DOCUMENT ME!
2040    * 
2041    * @param e
2042    *          DOCUMENT ME!
2043    */
2044   @Override
2045   protected void pasteNew_actionPerformed(ActionEvent e)
2046   {
2047     paste(true);
2048   }
2049
2050   /**
2051    * DOCUMENT ME!
2052    * 
2053    * @param e
2054    *          DOCUMENT ME!
2055    */
2056   @Override
2057   protected void pasteThis_actionPerformed(ActionEvent e)
2058   {
2059     paste(false);
2060   }
2061
2062   /**
2063    * Paste contents of Jalview clipboard
2064    * 
2065    * @param newAlignment
2066    *          true to paste to a new alignment, otherwise add to this.
2067    */
2068   void paste(boolean newAlignment)
2069   {
2070     boolean externalPaste = true;
2071     try
2072     {
2073       Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
2074       Transferable contents = c.getContents(this);
2075
2076       if (contents == null)
2077       {
2078         return;
2079       }
2080
2081       String str;
2082       FileFormatI format;
2083       try
2084       {
2085         str = (String) contents.getTransferData(DataFlavor.stringFlavor);
2086         if (str.length() < 1)
2087         {
2088           return;
2089         }
2090
2091         format = new IdentifyFile().identify(str, DataSourceType.PASTE);
2092
2093       } catch (OutOfMemoryError er)
2094       {
2095         new OOMWarning("Out of memory pasting sequences!!", er);
2096         return;
2097       }
2098
2099       SequenceI[] sequences;
2100       boolean annotationAdded = false;
2101       AlignmentI alignment = null;
2102
2103       if (Desktop.jalviewClipboard != null)
2104       {
2105         // The clipboard was filled from within Jalview, we must use the
2106         // sequences
2107         // And dataset from the copied alignment
2108         SequenceI[] newseq = (SequenceI[]) Desktop.jalviewClipboard[0];
2109         // be doubly sure that we create *new* sequence objects.
2110         sequences = new SequenceI[newseq.length];
2111         for (int i = 0; i < newseq.length; i++)
2112         {
2113           sequences[i] = new Sequence(newseq[i]);
2114         }
2115         alignment = new Alignment(sequences);
2116         externalPaste = false;
2117       }
2118       else
2119       {
2120         // parse the clipboard as an alignment.
2121         alignment = new FormatAdapter().readFile(str, DataSourceType.PASTE,
2122                 format);
2123         sequences = alignment.getSequencesArray();
2124       }
2125
2126       int alwidth = 0;
2127       ArrayList<Integer> newGraphGroups = new ArrayList<>();
2128       int fgroup = -1;
2129
2130       if (newAlignment)
2131       {
2132
2133         if (Desktop.jalviewClipboard != null)
2134         {
2135           // dataset is inherited
2136           alignment.setDataset((Alignment) Desktop.jalviewClipboard[1]);
2137         }
2138         else
2139         {
2140           // new dataset is constructed
2141           alignment.setDataset(null);
2142         }
2143         alwidth = alignment.getWidth() + 1;
2144       }
2145       else
2146       {
2147         AlignmentI pastedal = alignment; // preserve pasted alignment object
2148         // Add pasted sequences and dataset into existing alignment.
2149         alignment = viewport.getAlignment();
2150         alwidth = alignment.getWidth() + 1;
2151         // decide if we need to import sequences from an existing dataset
2152         boolean importDs = Desktop.jalviewClipboard != null
2153                 && Desktop.jalviewClipboard[1] != alignment.getDataset();
2154         // importDs==true instructs us to copy over new dataset sequences from
2155         // an existing alignment
2156         Vector<SequenceI> newDs = (importDs) ? new Vector<>() : null; // used to
2157                                                                       // create
2158         // minimum dataset set
2159
2160         for (int i = 0; i < sequences.length; i++)
2161         {
2162           if (importDs)
2163           {
2164             newDs.addElement(null);
2165           }
2166           SequenceI ds = sequences[i].getDatasetSequence(); // null for a simple
2167           // paste
2168           if (importDs && ds != null)
2169           {
2170             if (!newDs.contains(ds))
2171             {
2172               newDs.setElementAt(ds, i);
2173               ds = new Sequence(ds);
2174               // update with new dataset sequence
2175               sequences[i].setDatasetSequence(ds);
2176             }
2177             else
2178             {
2179               ds = sequences[newDs.indexOf(ds)].getDatasetSequence();
2180             }
2181           }
2182           else
2183           {
2184             // copy and derive new dataset sequence
2185             sequences[i] = sequences[i].deriveSequence();
2186             alignment.getDataset()
2187                     .addSequence(sequences[i].getDatasetSequence());
2188             // TODO: avoid creation of duplicate dataset sequences with a
2189             // 'contains' method using SequenceI.equals()/SequenceI.contains()
2190           }
2191           alignment.addSequence(sequences[i]); // merges dataset
2192         }
2193         if (newDs != null)
2194         {
2195           newDs.clear(); // tidy up
2196         }
2197         if (alignment.getAlignmentAnnotation() != null)
2198         {
2199           for (AlignmentAnnotation alan : alignment
2200                   .getAlignmentAnnotation())
2201           {
2202             if (alan.graphGroup > fgroup)
2203             {
2204               fgroup = alan.graphGroup;
2205             }
2206           }
2207         }
2208         if (pastedal.getAlignmentAnnotation() != null)
2209         {
2210           // Add any annotation attached to alignment.
2211           AlignmentAnnotation[] alann = pastedal.getAlignmentAnnotation();
2212           for (int i = 0; i < alann.length; i++)
2213           {
2214             annotationAdded = true;
2215             if (alann[i].sequenceRef == null && !alann[i].autoCalculated)
2216             {
2217               AlignmentAnnotation newann = new AlignmentAnnotation(
2218                       alann[i]);
2219               if (newann.graphGroup > -1)
2220               {
2221                 if (newGraphGroups.size() <= newann.graphGroup
2222                         || newGraphGroups.get(newann.graphGroup) == null)
2223                 {
2224                   for (int q = newGraphGroups
2225                           .size(); q <= newann.graphGroup; q++)
2226                   {
2227                     newGraphGroups.add(q, null);
2228                   }
2229                   newGraphGroups.set(newann.graphGroup,
2230                           Integer.valueOf(++fgroup));
2231                 }
2232                 newann.graphGroup = newGraphGroups.get(newann.graphGroup)
2233                         .intValue();
2234               }
2235
2236               newann.padAnnotation(alwidth);
2237               alignment.addAnnotation(newann);
2238             }
2239           }
2240         }
2241       }
2242       if (!newAlignment)
2243       {
2244         // /////
2245         // ADD HISTORY ITEM
2246         //
2247         addHistoryItem(new EditCommand(
2248                 MessageManager.getString("label.add_sequences"),
2249                 Action.PASTE, sequences, 0, alignment.getWidth(),
2250                 alignment));
2251       }
2252       // Add any annotations attached to sequences
2253       for (int i = 0; i < sequences.length; i++)
2254       {
2255         if (sequences[i].getAnnotation() != null)
2256         {
2257           AlignmentAnnotation newann;
2258           for (int a = 0; a < sequences[i].getAnnotation().length; a++)
2259           {
2260             annotationAdded = true;
2261             newann = sequences[i].getAnnotation()[a];
2262             newann.adjustForAlignment();
2263             newann.padAnnotation(alwidth);
2264             if (newann.graphGroup > -1)
2265             {
2266               if (newann.graphGroup > -1)
2267               {
2268                 if (newGraphGroups.size() <= newann.graphGroup
2269                         || newGraphGroups.get(newann.graphGroup) == null)
2270                 {
2271                   for (int q = newGraphGroups
2272                           .size(); q <= newann.graphGroup; q++)
2273                   {
2274                     newGraphGroups.add(q, null);
2275                   }
2276                   newGraphGroups.set(newann.graphGroup,
2277                           Integer.valueOf(++fgroup));
2278                 }
2279                 newann.graphGroup = newGraphGroups.get(newann.graphGroup)
2280                         .intValue();
2281               }
2282             }
2283             alignment.addAnnotation(sequences[i].getAnnotation()[a]); // annotation
2284             // was
2285             // duplicated
2286             // earlier
2287             alignment.setAnnotationIndex(sequences[i].getAnnotation()[a],
2288                     a);
2289           }
2290         }
2291       }
2292       if (!newAlignment)
2293       {
2294
2295         // propagate alignment changed.
2296         viewport.getRanges().setEndSeq(alignment.getHeight() - 1);
2297         if (annotationAdded)
2298         {
2299           // Duplicate sequence annotation in all views.
2300           AlignmentI[] alview = this.getViewAlignments();
2301           for (int i = 0; i < sequences.length; i++)
2302           {
2303             AlignmentAnnotation sann[] = sequences[i].getAnnotation();
2304             if (sann == null)
2305             {
2306               continue;
2307             }
2308             for (int avnum = 0; avnum < alview.length; avnum++)
2309             {
2310               if (alview[avnum] != alignment)
2311               {
2312                 // duplicate in a view other than the one with input focus
2313                 int avwidth = alview[avnum].getWidth() + 1;
2314                 // this relies on sann being preserved after we
2315                 // modify the sequence's annotation array for each duplication
2316                 for (int a = 0; a < sann.length; a++)
2317                 {
2318                   AlignmentAnnotation newann = new AlignmentAnnotation(
2319                           sann[a]);
2320                   sequences[i].addAlignmentAnnotation(newann);
2321                   newann.padAnnotation(avwidth);
2322                   alview[avnum].addAnnotation(newann); // annotation was
2323                   // duplicated earlier
2324                   // TODO JAL-1145 graphGroups are not updated for sequence
2325                   // annotation added to several views. This may cause
2326                   // strangeness
2327                   alview[avnum].setAnnotationIndex(newann, a);
2328                 }
2329               }
2330             }
2331           }
2332           buildSortByAnnotationScoresMenu();
2333         }
2334         viewport.firePropertyChange("alignment", null,
2335                 alignment.getSequences());
2336         if (alignPanels != null)
2337         {
2338           for (AlignmentPanel ap : alignPanels)
2339           {
2340             ap.validateAnnotationDimensions(false);
2341           }
2342         }
2343         else
2344         {
2345           alignPanel.validateAnnotationDimensions(false);
2346         }
2347
2348       }
2349       else
2350       {
2351         AlignFrame af = new AlignFrame(alignment, DEFAULT_WIDTH,
2352                 DEFAULT_HEIGHT);
2353         String newtitle = new String("Copied sequences");
2354
2355         if (Desktop.jalviewClipboard != null
2356                 && Desktop.jalviewClipboard[2] != null)
2357         {
2358           HiddenColumns hc = (HiddenColumns) Desktop.jalviewClipboard[2];
2359           af.viewport.setHiddenColumns(hc);
2360         }
2361
2362         // >>>This is a fix for the moment, until a better solution is
2363         // found!!<<<
2364         af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
2365                 .transferSettings(alignPanel.getSeqPanel().seqCanvas
2366                         .getFeatureRenderer());
2367
2368         // TODO: maintain provenance of an alignment, rather than just make the
2369         // title a concatenation of operations.
2370         if (!externalPaste)
2371         {
2372           if (title.startsWith("Copied sequences"))
2373           {
2374             newtitle = title;
2375           }
2376           else
2377           {
2378             newtitle = newtitle.concat("- from " + title);
2379           }
2380         }
2381         else
2382         {
2383           newtitle = new String("Pasted sequences");
2384         }
2385
2386         Desktop.addInternalFrame(af, newtitle, DEFAULT_WIDTH,
2387                 DEFAULT_HEIGHT);
2388
2389       }
2390
2391     } catch (Exception ex)
2392     {
2393       ex.printStackTrace();
2394       System.out.println("Exception whilst pasting: " + ex);
2395       // could be anything being pasted in here
2396     }
2397
2398   }
2399
2400   @Override
2401   protected void expand_newalign(ActionEvent e)
2402   {
2403     try
2404     {
2405       AlignmentI alignment = AlignmentUtils
2406               .expandContext(getViewport().getAlignment(), -1);
2407       AlignFrame af = new AlignFrame(alignment, DEFAULT_WIDTH,
2408               DEFAULT_HEIGHT);
2409       String newtitle = new String("Flanking alignment");
2410
2411       if (Desktop.jalviewClipboard != null
2412               && Desktop.jalviewClipboard[2] != null)
2413       {
2414         HiddenColumns hc = (HiddenColumns) Desktop.jalviewClipboard[2];
2415         af.viewport.setHiddenColumns(hc);
2416       }
2417
2418       // >>>This is a fix for the moment, until a better solution is
2419       // found!!<<<
2420       af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
2421               .transferSettings(alignPanel.getSeqPanel().seqCanvas
2422                       .getFeatureRenderer());
2423
2424       // TODO: maintain provenance of an alignment, rather than just make the
2425       // title a concatenation of operations.
2426       {
2427         if (title.startsWith("Copied sequences"))
2428         {
2429           newtitle = title;
2430         }
2431         else
2432         {
2433           newtitle = newtitle.concat("- from " + title);
2434         }
2435       }
2436
2437       Desktop.addInternalFrame(af, newtitle, DEFAULT_WIDTH, DEFAULT_HEIGHT);
2438
2439     } catch (Exception ex)
2440     {
2441       ex.printStackTrace();
2442       System.out.println("Exception whilst pasting: " + ex);
2443       // could be anything being pasted in here
2444     } catch (OutOfMemoryError oom)
2445     {
2446       new OOMWarning("Viewing flanking region of alignment", oom);
2447     }
2448   }
2449
2450   /**
2451    * Action Cut (delete and copy) the selected region
2452    */
2453   @Override
2454   protected void cut_actionPerformed()
2455   {
2456     copy_actionPerformed();
2457     delete_actionPerformed();
2458   }
2459
2460   /**
2461    * Performs menu option to Delete the currently selected region
2462    */
2463   @Override
2464   protected void delete_actionPerformed()
2465   {
2466
2467     SequenceGroup sg = viewport.getSelectionGroup();
2468     if (sg == null)
2469     {
2470       return;
2471     }
2472
2473     Runnable okAction = new Runnable()
2474     {
2475       @Override
2476       public void run()
2477       {
2478         SequenceI[] cut = sg.getSequences()
2479                 .toArray(new SequenceI[sg.getSize()]);
2480
2481         addHistoryItem(new EditCommand(
2482                 MessageManager.getString("label.cut_sequences"), Action.CUT,
2483                 cut, sg.getStartRes(),
2484                 sg.getEndRes() - sg.getStartRes() + 1,
2485                 viewport.getAlignment()));
2486
2487         viewport.setSelectionGroup(null);
2488         viewport.sendSelection();
2489         viewport.getAlignment().deleteGroup(sg);
2490
2491         viewport.firePropertyChange("alignment", null,
2492                 viewport.getAlignment().getSequences());
2493         if (viewport.getAlignment().getHeight() < 1)
2494         {
2495           try
2496           {
2497             AlignFrame.this.setClosed(true);
2498           } catch (Exception ex)
2499           {
2500           }
2501         }
2502       }
2503     };
2504
2505     /*
2506      * If the cut affects all sequences, prompt for confirmation
2507      */
2508     boolean wholeHeight = sg.getSize() == viewport.getAlignment()
2509             .getHeight();
2510     boolean wholeWidth = (((sg.getEndRes() - sg.getStartRes())
2511             + 1) == viewport.getAlignment().getWidth()) ? true : false;
2512     if (wholeHeight && wholeWidth)
2513     {
2514       JvOptionPane dialog = JvOptionPane.newOptionDialog(Desktop.desktop);
2515       dialog.setResponseHandler(0, okAction); // 0 = OK_OPTION
2516       Object[] options = new Object[] {
2517           MessageManager.getString("action.ok"),
2518           MessageManager.getString("action.cancel") };
2519       dialog.showDialog(MessageManager.getString("warn.delete_all"),
2520               MessageManager.getString("label.delete_all"),
2521               JvOptionPane.DEFAULT_OPTION, JvOptionPane.PLAIN_MESSAGE, null,
2522               options, options[0]);
2523     }
2524     else
2525     {
2526       okAction.run();
2527     }
2528   }
2529
2530   /**
2531    * DOCUMENT ME!
2532    * 
2533    * @param e
2534    *          DOCUMENT ME!
2535    */
2536   @Override
2537   protected void deleteGroups_actionPerformed(ActionEvent e)
2538   {
2539     if (avc.deleteGroups())
2540     {
2541       PaintRefresher.Refresh(this, viewport.getSequenceSetId());
2542       alignPanel.updateAnnotation();
2543       alignPanel.paintAlignment(true, true);
2544     }
2545   }
2546
2547   /**
2548    * DOCUMENT ME!
2549    * 
2550    * @param e
2551    *          DOCUMENT ME!
2552    */
2553   @Override
2554   public void selectAllSequenceMenuItem_actionPerformed(ActionEvent e)
2555   {
2556     SequenceGroup sg = new SequenceGroup(
2557             viewport.getAlignment().getSequences());
2558
2559     sg.setEndRes(viewport.getAlignment().getWidth() - 1);
2560     viewport.setSelectionGroup(sg);
2561     viewport.isSelectionGroupChanged(true);
2562     viewport.sendSelection();
2563     // JAL-2034 - should delegate to
2564     // alignPanel to decide if overview needs
2565     // updating.
2566     alignPanel.paintAlignment(false, false);
2567     PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2568   }
2569
2570   /**
2571    * DOCUMENT ME!
2572    * 
2573    * @param e
2574    *          DOCUMENT ME!
2575    */
2576   @Override
2577   public void deselectAllSequenceMenuItem_actionPerformed(ActionEvent e)
2578   {
2579     if (viewport.cursorMode)
2580     {
2581       alignPanel.getSeqPanel().keyboardNo1 = null;
2582       alignPanel.getSeqPanel().keyboardNo2 = null;
2583     }
2584     viewport.setSelectionGroup(null);
2585     viewport.getColumnSelection().clear();
2586     viewport.setSearchResults(null);
2587     alignPanel.getIdPanel().getIdCanvas().searchResults = null;
2588     // JAL-2034 - should delegate to
2589     // alignPanel to decide if overview needs
2590     // updating.
2591     alignPanel.paintAlignment(false, false);
2592     PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2593     viewport.sendSelection();
2594   }
2595
2596   /**
2597    * DOCUMENT ME!
2598    * 
2599    * @param e
2600    *          DOCUMENT ME!
2601    */
2602   @Override
2603   public void invertSequenceMenuItem_actionPerformed(ActionEvent e)
2604   {
2605     SequenceGroup sg = viewport.getSelectionGroup();
2606
2607     if (sg == null)
2608     {
2609       selectAllSequenceMenuItem_actionPerformed(null);
2610
2611       return;
2612     }
2613
2614     for (int i = 0; i < viewport.getAlignment().getSequences().size(); i++)
2615     {
2616       sg.addOrRemove(viewport.getAlignment().getSequenceAt(i), false);
2617     }
2618     // JAL-2034 - should delegate to
2619     // alignPanel to decide if overview needs
2620     // updating.
2621
2622     alignPanel.paintAlignment(true, false);
2623     PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2624     viewport.sendSelection();
2625   }
2626
2627   @Override
2628   public void invertColSel_actionPerformed(ActionEvent e)
2629   {
2630     viewport.invertColumnSelection();
2631     alignPanel.paintAlignment(true, false);
2632     viewport.sendSelection();
2633   }
2634
2635   /**
2636    * DOCUMENT ME!
2637    * 
2638    * @param e
2639    *          DOCUMENT ME!
2640    */
2641   @Override
2642   public void remove2LeftMenuItem_actionPerformed(ActionEvent e)
2643   {
2644     trimAlignment(true);
2645   }
2646
2647   /**
2648    * DOCUMENT ME!
2649    * 
2650    * @param e
2651    *          DOCUMENT ME!
2652    */
2653   @Override
2654   public void remove2RightMenuItem_actionPerformed(ActionEvent e)
2655   {
2656     trimAlignment(false);
2657   }
2658
2659   void trimAlignment(boolean trimLeft)
2660   {
2661     ColumnSelection colSel = viewport.getColumnSelection();
2662     int column;
2663
2664     if (!colSel.isEmpty())
2665     {
2666       if (trimLeft)
2667       {
2668         column = colSel.getMin();
2669       }
2670       else
2671       {
2672         column = colSel.getMax();
2673       }
2674
2675       SequenceI[] seqs;
2676       if (viewport.getSelectionGroup() != null)
2677       {
2678         seqs = viewport.getSelectionGroup()
2679                 .getSequencesAsArray(viewport.getHiddenRepSequences());
2680       }
2681       else
2682       {
2683         seqs = viewport.getAlignment().getSequencesArray();
2684       }
2685
2686       TrimRegionCommand trimRegion;
2687       if (trimLeft)
2688       {
2689         trimRegion = new TrimRegionCommand("Remove Left", true, seqs,
2690                 column, viewport.getAlignment());
2691         viewport.getRanges().setStartRes(0);
2692       }
2693       else
2694       {
2695         trimRegion = new TrimRegionCommand("Remove Right", false, seqs,
2696                 column, viewport.getAlignment());
2697       }
2698
2699       setStatus(MessageManager.formatMessage("label.removed_columns",
2700               new String[]
2701               { Integer.valueOf(trimRegion.getSize()).toString() }));
2702
2703       addHistoryItem(trimRegion);
2704
2705       for (SequenceGroup sg : viewport.getAlignment().getGroups())
2706       {
2707         if ((trimLeft && !sg.adjustForRemoveLeft(column))
2708                 || (!trimLeft && !sg.adjustForRemoveRight(column)))
2709         {
2710           viewport.getAlignment().deleteGroup(sg);
2711         }
2712       }
2713
2714       viewport.firePropertyChange("alignment", null,
2715               viewport.getAlignment().getSequences());
2716     }
2717   }
2718
2719   /**
2720    * DOCUMENT ME!
2721    * 
2722    * @param e
2723    *          DOCUMENT ME!
2724    */
2725   @Override
2726   public void removeGappedColumnMenuItem_actionPerformed(ActionEvent e)
2727   {
2728     int start = 0, end = viewport.getAlignment().getWidth() - 1;
2729
2730     SequenceI[] seqs;
2731     if (viewport.getSelectionGroup() != null)
2732     {
2733       seqs = viewport.getSelectionGroup()
2734               .getSequencesAsArray(viewport.getHiddenRepSequences());
2735       start = viewport.getSelectionGroup().getStartRes();
2736       end = viewport.getSelectionGroup().getEndRes();
2737     }
2738     else
2739     {
2740       seqs = viewport.getAlignment().getSequencesArray();
2741     }
2742
2743     RemoveGapColCommand removeGapCols = new RemoveGapColCommand(
2744             "Remove Gapped Columns", seqs, start, end,
2745             viewport.getAlignment());
2746
2747     addHistoryItem(removeGapCols);
2748
2749     setStatus(MessageManager.formatMessage("label.removed_empty_columns",
2750             new Object[]
2751             { Integer.valueOf(removeGapCols.getSize()).toString() }));
2752
2753     // This is to maintain viewport position on first residue
2754     // of first sequence
2755     SequenceI seq = viewport.getAlignment().getSequenceAt(0);
2756     ViewportRanges ranges = viewport.getRanges();
2757     int startRes = seq.findPosition(ranges.getStartRes());
2758     // ShiftList shifts;
2759     // viewport.getAlignment().removeGaps(shifts=new ShiftList());
2760     // edit.alColumnChanges=shifts.getInverse();
2761     // if (viewport.hasHiddenColumns)
2762     // viewport.getColumnSelection().compensateForEdits(shifts);
2763     ranges.setStartRes(seq.findIndex(startRes) - 1);
2764     viewport.firePropertyChange("alignment", null,
2765             viewport.getAlignment().getSequences());
2766
2767   }
2768
2769   /**
2770    * DOCUMENT ME!
2771    * 
2772    * @param e
2773    *          DOCUMENT ME!
2774    */
2775   @Override
2776   public void removeAllGapsMenuItem_actionPerformed(ActionEvent e)
2777   {
2778     int start = 0, end = viewport.getAlignment().getWidth() - 1;
2779
2780     SequenceI[] seqs;
2781     if (viewport.getSelectionGroup() != null)
2782     {
2783       seqs = viewport.getSelectionGroup()
2784               .getSequencesAsArray(viewport.getHiddenRepSequences());
2785       start = viewport.getSelectionGroup().getStartRes();
2786       end = viewport.getSelectionGroup().getEndRes();
2787     }
2788     else
2789     {
2790       seqs = viewport.getAlignment().getSequencesArray();
2791     }
2792
2793     // This is to maintain viewport position on first residue
2794     // of first sequence
2795     SequenceI seq = viewport.getAlignment().getSequenceAt(0);
2796     int startRes = seq.findPosition(viewport.getRanges().getStartRes());
2797
2798     addHistoryItem(new RemoveGapsCommand("Remove Gaps", seqs, start, end,
2799             viewport.getAlignment()));
2800
2801     viewport.getRanges().setStartRes(seq.findIndex(startRes) - 1);
2802
2803     viewport.firePropertyChange("alignment", null,
2804             viewport.getAlignment().getSequences());
2805
2806   }
2807
2808   /**
2809    * DOCUMENT ME!
2810    * 
2811    * @param e
2812    *          DOCUMENT ME!
2813    */
2814   @Override
2815   public void padGapsMenuitem_actionPerformed(ActionEvent e)
2816   {
2817     viewport.setPadGaps(padGapsMenuitem.isSelected());
2818     viewport.firePropertyChange("alignment", null,
2819             viewport.getAlignment().getSequences());
2820   }
2821
2822   /**
2823    * Opens a Finder dialog
2824    * 
2825    * @param e
2826    */
2827   @Override
2828   public void findMenuItem_actionPerformed(ActionEvent e)
2829   {
2830     new Finder(alignPanel, false, null);
2831   }
2832
2833   /**
2834    * Create a new view of the current alignment.
2835    */
2836   @Override
2837   public void newView_actionPerformed(ActionEvent e)
2838   {
2839     newView(null, true);
2840   }
2841
2842   /**
2843    * Creates and shows a new view of the current alignment.
2844    * 
2845    * @param viewTitle
2846    *          title of newly created view; if null, one will be generated
2847    * @param copyAnnotation
2848    *          if true then duplicate all annnotation, groups and settings
2849    * @return new alignment panel, already displayed.
2850    */
2851   public AlignmentPanel newView(String viewTitle, boolean copyAnnotation)
2852   {
2853     /*
2854      * Create a new AlignmentPanel (with its own, new Viewport)
2855      */
2856     AlignmentPanel newap = new jalview.project.Jalview2XML()
2857             .copyAlignPanel(alignPanel);
2858     if (!copyAnnotation)
2859     {
2860       /*
2861        * remove all groups and annotation except for the automatic stuff
2862        */
2863       newap.av.getAlignment().deleteAllGroups();
2864       newap.av.getAlignment().deleteAllAnnotations(false);
2865     }
2866
2867     newap.av.setGatherViewsHere(false);
2868
2869     if (viewport.getViewName() == null)
2870     {
2871       viewport.setViewName(
2872               MessageManager.getString("label.view_name_original"));
2873     }
2874
2875     /*
2876      * Views share the same edits undo and redo stacks
2877      */
2878     newap.av.setHistoryList(viewport.getHistoryList());
2879     newap.av.setRedoList(viewport.getRedoList());
2880
2881     /*
2882      * copy any visualisation settings that are not saved in the project
2883      */
2884     newap.av.setColourAppliesToAllGroups(
2885             viewport.getColourAppliesToAllGroups());
2886
2887     /*
2888      * Views share the same mappings; need to deregister any new mappings
2889      * created by copyAlignPanel, and register the new reference to the shared
2890      * mappings
2891      */
2892     newap.av.replaceMappings(viewport.getAlignment());
2893
2894     /*
2895      * start up cDNA consensus (if applicable) now mappings are in place
2896      */
2897     if (newap.av.initComplementConsensus())
2898     {
2899       newap.refresh(true); // adjust layout of annotations
2900     }
2901
2902     newap.av.setViewName(getNewViewName(viewTitle));
2903
2904     addAlignmentPanel(newap, true);
2905     newap.alignmentChanged();
2906
2907     if (alignPanels.size() == 2)
2908     {
2909       viewport.setGatherViewsHere(true);
2910     }
2911     tabbedPane.setSelectedIndex(tabbedPane.getTabCount() - 1);
2912     return newap;
2913   }
2914
2915   /**
2916    * Make a new name for the view, ensuring it is unique within the current
2917    * sequenceSetId. (This used to be essential for Jalview Project archives, but
2918    * these now use viewId. Unique view names are still desirable for usability.)
2919    * 
2920    * @param viewTitle
2921    * @return
2922    */
2923   protected String getNewViewName(String viewTitle)
2924   {
2925     int index = Desktop.getViewCount(viewport.getSequenceSetId());
2926     boolean addFirstIndex = false;
2927     if (viewTitle == null || viewTitle.trim().length() == 0)
2928     {
2929       viewTitle = MessageManager.getString("action.view");
2930       addFirstIndex = true;
2931     }
2932     else
2933     {
2934       index = 1;// we count from 1 if given a specific name
2935     }
2936     String newViewName = viewTitle + ((addFirstIndex) ? " " + index : "");
2937
2938     List<Component> comps = PaintRefresher.components
2939             .get(viewport.getSequenceSetId());
2940
2941     List<String> existingNames = getExistingViewNames(comps);
2942
2943     while (existingNames.contains(newViewName))
2944     {
2945       newViewName = viewTitle + " " + (++index);
2946     }
2947     return newViewName;
2948   }
2949
2950   /**
2951    * Returns a list of distinct view names found in the given list of
2952    * components. View names are held on the viewport of an AlignmentPanel.
2953    * 
2954    * @param comps
2955    * @return
2956    */
2957   protected List<String> getExistingViewNames(List<Component> comps)
2958   {
2959     List<String> existingNames = new ArrayList<>();
2960     for (Component comp : comps)
2961     {
2962       if (comp instanceof AlignmentPanel)
2963       {
2964         AlignmentPanel ap = (AlignmentPanel) comp;
2965         if (!existingNames.contains(ap.av.getViewName()))
2966         {
2967           existingNames.add(ap.av.getViewName());
2968         }
2969       }
2970     }
2971     return existingNames;
2972   }
2973
2974   /**
2975    * Explode tabbed views into separate windows.
2976    */
2977   @Override
2978   public void expandViews_actionPerformed(ActionEvent e)
2979   {
2980     Desktop.explodeViews(this);
2981   }
2982
2983   /**
2984    * Gather views in separate windows back into a tabbed presentation.
2985    */
2986   @Override
2987   public void gatherViews_actionPerformed(ActionEvent e)
2988   {
2989     Desktop.instance.gatherViews(this);
2990   }
2991
2992   /**
2993    * DOCUMENT ME!
2994    * 
2995    * @param e
2996    *          DOCUMENT ME!
2997    */
2998   @Override
2999   public void font_actionPerformed(ActionEvent e)
3000   {
3001     new FontChooser(alignPanel);
3002   }
3003
3004   /**
3005    * DOCUMENT ME!
3006    * 
3007    * @param e
3008    *          DOCUMENT ME!
3009    */
3010   @Override
3011   protected void seqLimit_actionPerformed(ActionEvent e)
3012   {
3013     viewport.setShowJVSuffix(seqLimits.isSelected());
3014
3015     alignPanel.getIdPanel().getIdCanvas()
3016             .setPreferredSize(alignPanel.calculateIdWidth());
3017     alignPanel.paintAlignment(true, false);
3018   }
3019
3020   @Override
3021   public void idRightAlign_actionPerformed(ActionEvent e)
3022   {
3023     viewport.setRightAlignIds(idRightAlign.isSelected());
3024     alignPanel.paintAlignment(false, false);
3025   }
3026
3027   @Override
3028   public void centreColumnLabels_actionPerformed(ActionEvent e)
3029   {
3030     viewport.setCentreColumnLabels(centreColumnLabelsMenuItem.getState());
3031     alignPanel.paintAlignment(false, false);
3032   }
3033
3034   /*
3035    * (non-Javadoc)
3036    * 
3037    * @see jalview.jbgui.GAlignFrame#followHighlight_actionPerformed()
3038    */
3039   @Override
3040   protected void followHighlight_actionPerformed()
3041   {
3042     /*
3043      * Set the 'follow' flag on the Viewport (and scroll to position if now
3044      * true).
3045      */
3046     final boolean state = this.followHighlightMenuItem.getState();
3047     viewport.setFollowHighlight(state);
3048     if (state)
3049     {
3050       alignPanel.scrollToPosition(viewport.getSearchResults());
3051     }
3052   }
3053
3054   /**
3055    * DOCUMENT ME!
3056    * 
3057    * @param e
3058    *          DOCUMENT ME!
3059    */
3060   @Override
3061   protected void colourTextMenuItem_actionPerformed(ActionEvent e)
3062   {
3063     viewport.setColourText(colourTextMenuItem.isSelected());
3064     alignPanel.paintAlignment(false, false);
3065   }
3066
3067   /**
3068    * DOCUMENT ME!
3069    * 
3070    * @param e
3071    *          DOCUMENT ME!
3072    */
3073   @Override
3074   public void wrapMenuItem_actionPerformed(ActionEvent e)
3075   {
3076     scaleAbove.setVisible(wrapMenuItem.isSelected());
3077     scaleLeft.setVisible(wrapMenuItem.isSelected());
3078     scaleRight.setVisible(wrapMenuItem.isSelected());
3079     viewport.setWrapAlignment(wrapMenuItem.isSelected());
3080     alignPanel.updateLayout();
3081   }
3082
3083   @Override
3084   public void showAllSeqs_actionPerformed(ActionEvent e)
3085   {
3086     viewport.showAllHiddenSeqs();
3087   }
3088
3089   @Override
3090   public void showAllColumns_actionPerformed(ActionEvent e)
3091   {
3092     viewport.showAllHiddenColumns();
3093     alignPanel.paintAlignment(true, true);
3094     viewport.sendSelection();
3095   }
3096
3097   @Override
3098   public void hideSelSequences_actionPerformed(ActionEvent e)
3099   {
3100     viewport.hideAllSelectedSeqs();
3101   }
3102
3103   /**
3104    * called by key handler and the hide all/show all menu items
3105    * 
3106    * @param toggleSeqs
3107    * @param toggleCols
3108    */
3109   protected void toggleHiddenRegions(boolean toggleSeqs, boolean toggleCols)
3110   {
3111
3112     boolean hide = false;
3113     SequenceGroup sg = viewport.getSelectionGroup();
3114     if (!toggleSeqs && !toggleCols)
3115     {
3116       // Hide everything by the current selection - this is a hack - we do the
3117       // invert and then hide
3118       // first check that there will be visible columns after the invert.
3119       if (viewport.hasSelectedColumns() || (sg != null && sg.getSize() > 0
3120               && sg.getStartRes() <= sg.getEndRes()))
3121       {
3122         // now invert the sequence set, if required - empty selection implies
3123         // that no hiding is required.
3124         if (sg != null)
3125         {
3126           invertSequenceMenuItem_actionPerformed(null);
3127           sg = viewport.getSelectionGroup();
3128           toggleSeqs = true;
3129
3130         }
3131         viewport.expandColSelection(sg, true);
3132         // finally invert the column selection and get the new sequence
3133         // selection.
3134         invertColSel_actionPerformed(null);
3135         toggleCols = true;
3136       }
3137     }
3138
3139     if (toggleSeqs)
3140     {
3141       if (sg != null && sg.getSize() != viewport.getAlignment().getHeight())
3142       {
3143         hideSelSequences_actionPerformed(null);
3144         hide = true;
3145       }
3146       else if (!(toggleCols && viewport.hasSelectedColumns()))
3147       {
3148         showAllSeqs_actionPerformed(null);
3149       }
3150     }
3151
3152     if (toggleCols)
3153     {
3154       if (viewport.hasSelectedColumns())
3155       {
3156         hideSelColumns_actionPerformed(null);
3157         if (!toggleSeqs)
3158         {
3159           viewport.setSelectionGroup(sg);
3160         }
3161       }
3162       else if (!hide)
3163       {
3164         showAllColumns_actionPerformed(null);
3165       }
3166     }
3167   }
3168
3169   /*
3170    * (non-Javadoc)
3171    * 
3172    * @see
3173    * jalview.jbgui.GAlignFrame#hideAllButSelection_actionPerformed(java.awt.
3174    * event.ActionEvent)
3175    */
3176   @Override
3177   public void hideAllButSelection_actionPerformed(ActionEvent e)
3178   {
3179     toggleHiddenRegions(false, false);
3180     viewport.sendSelection();
3181   }
3182
3183   /*
3184    * (non-Javadoc)
3185    * 
3186    * @see
3187    * jalview.jbgui.GAlignFrame#hideAllSelection_actionPerformed(java.awt.event
3188    * .ActionEvent)
3189    */
3190   @Override
3191   public void hideAllSelection_actionPerformed(ActionEvent e)
3192   {
3193     SequenceGroup sg = viewport.getSelectionGroup();
3194     viewport.expandColSelection(sg, false);
3195     viewport.hideAllSelectedSeqs();
3196     viewport.hideSelectedColumns();
3197     alignPanel.updateLayout();
3198     alignPanel.paintAlignment(true, true);
3199     viewport.sendSelection();
3200   }
3201
3202   /*
3203    * (non-Javadoc)
3204    * 
3205    * @see
3206    * jalview.jbgui.GAlignFrame#showAllhidden_actionPerformed(java.awt.event.
3207    * ActionEvent)
3208    */
3209   @Override
3210   public void showAllhidden_actionPerformed(ActionEvent e)
3211   {
3212     viewport.showAllHiddenColumns();
3213     viewport.showAllHiddenSeqs();
3214     alignPanel.paintAlignment(true, true);
3215     viewport.sendSelection();
3216   }
3217
3218   @Override
3219   public void hideSelColumns_actionPerformed(ActionEvent e)
3220   {
3221     viewport.hideSelectedColumns();
3222     alignPanel.updateLayout();
3223     alignPanel.paintAlignment(true, true);
3224     viewport.sendSelection();
3225   }
3226
3227   @Override
3228   public void hiddenMarkers_actionPerformed(ActionEvent e)
3229   {
3230     viewport.setShowHiddenMarkers(hiddenMarkers.isSelected());
3231     repaint();
3232   }
3233
3234   /**
3235    * DOCUMENT ME!
3236    * 
3237    * @param e
3238    *          DOCUMENT ME!
3239    */
3240   @Override
3241   protected void scaleAbove_actionPerformed(ActionEvent e)
3242   {
3243     viewport.setScaleAboveWrapped(scaleAbove.isSelected());
3244     alignPanel.updateLayout();
3245     alignPanel.paintAlignment(true, false);
3246   }
3247
3248   /**
3249    * DOCUMENT ME!
3250    * 
3251    * @param e
3252    *          DOCUMENT ME!
3253    */
3254   @Override
3255   protected void scaleLeft_actionPerformed(ActionEvent e)
3256   {
3257     viewport.setScaleLeftWrapped(scaleLeft.isSelected());
3258     alignPanel.updateLayout();
3259     alignPanel.paintAlignment(true, false);
3260   }
3261
3262   /**
3263    * DOCUMENT ME!
3264    * 
3265    * @param e
3266    *          DOCUMENT ME!
3267    */
3268   @Override
3269   protected void scaleRight_actionPerformed(ActionEvent e)
3270   {
3271     viewport.setScaleRightWrapped(scaleRight.isSelected());
3272     alignPanel.updateLayout();
3273     alignPanel.paintAlignment(true, false);
3274   }
3275
3276   /**
3277    * DOCUMENT ME!
3278    * 
3279    * @param e
3280    *          DOCUMENT ME!
3281    */
3282   @Override
3283   public void viewBoxesMenuItem_actionPerformed(ActionEvent e)
3284   {
3285     viewport.setShowBoxes(viewBoxesMenuItem.isSelected());
3286     alignPanel.paintAlignment(false, false);
3287   }
3288
3289   /**
3290    * DOCUMENT ME!
3291    * 
3292    * @param e
3293    *          DOCUMENT ME!
3294    */
3295   @Override
3296   public void viewTextMenuItem_actionPerformed(ActionEvent e)
3297   {
3298     viewport.setShowText(viewTextMenuItem.isSelected());
3299     alignPanel.paintAlignment(false, false);
3300   }
3301
3302   /**
3303    * DOCUMENT ME!
3304    * 
3305    * @param e
3306    *          DOCUMENT ME!
3307    */
3308   @Override
3309   protected void renderGapsMenuItem_actionPerformed(ActionEvent e)
3310   {
3311     viewport.setRenderGaps(renderGapsMenuItem.isSelected());
3312     alignPanel.paintAlignment(false, false);
3313   }
3314
3315   public FeatureSettings featureSettings;
3316
3317   @Override
3318   public FeatureSettingsControllerI getFeatureSettingsUI()
3319   {
3320     return featureSettings;
3321   }
3322
3323   @Override
3324   public void featureSettings_actionPerformed(ActionEvent e)
3325   {
3326     showFeatureSettingsUI();
3327   }
3328
3329   @Override
3330   public FeatureSettingsControllerI showFeatureSettingsUI()
3331   {
3332     if (featureSettings != null)
3333     {
3334       featureSettings.closeOldSettings();
3335       featureSettings = null;
3336     }
3337     if (!showSeqFeatures.isSelected())
3338     {
3339       // make sure features are actually displayed
3340       showSeqFeatures.setSelected(true);
3341       showSeqFeatures_actionPerformed(null);
3342     }
3343     featureSettings = new FeatureSettings(this);
3344     return featureSettings;
3345   }
3346
3347   /**
3348    * Set or clear 'Show Sequence Features'
3349    * 
3350    * @param evt
3351    *          DOCUMENT ME!
3352    */
3353   @Override
3354   public void showSeqFeatures_actionPerformed(ActionEvent evt)
3355   {
3356     viewport.setShowSequenceFeatures(showSeqFeatures.isSelected());
3357     alignPanel.paintAlignment(true, true);
3358   }
3359
3360   /**
3361    * Action on toggle of the 'Show annotations' menu item. This shows or hides
3362    * the annotations panel as a whole.
3363    * 
3364    * The options to show/hide all annotations should be enabled when the panel
3365    * is shown, and disabled when the panel is hidden.
3366    * 
3367    * @param e
3368    */
3369   @Override
3370   public void annotationPanelMenuItem_actionPerformed(ActionEvent e)
3371   {
3372     final boolean setVisible = annotationPanelMenuItem.isSelected();
3373     viewport.setShowAnnotation(setVisible);
3374     this.showAllSeqAnnotations.setEnabled(setVisible);
3375     this.hideAllSeqAnnotations.setEnabled(setVisible);
3376     this.showAllAlAnnotations.setEnabled(setVisible);
3377     this.hideAllAlAnnotations.setEnabled(setVisible);
3378     alignPanel.updateLayout();
3379   }
3380
3381   @Override
3382         public void alignmentProperties() {
3383                 JComponent pane;
3384                 StringBuilder contents = new StringBuilder(128);
3385                 contents.append("<html><body>");
3386                 contents.append(new AlignmentProperties(viewport.getAlignment()).formatAsHtml());
3387                 contents.append("</body></html>");
3388
3389                 String content = contents.toString();
3390
3391                 JInternalFrame frame = null;
3392                 if (Platform.isJS()) {
3393                         JLabel textLabel = new JLabel();
3394                         textLabel.setText(content);
3395                         textLabel.setBackground(Color.WHITE);
3396
3397                         pane = new JPanel(new BorderLayout());
3398                         ((JPanel) pane).setOpaque(true);
3399                         pane.setBackground(Color.WHITE);
3400                         ((JPanel) pane).add(textLabel, BorderLayout.NORTH);
3401                         frame = new JInternalFrame();
3402                         frame.getContentPane().add(new JScrollPane(pane));
3403                 } else
3404                 /**
3405                  * Java only
3406                  * 
3407                  * @j2sIgnore
3408                  */
3409                 {
3410                         CutAndPasteHtmlTransfer cap = new CutAndPasteHtmlTransfer();
3411                         cap.setText(content);
3412                         frame = cap;
3413                 }
3414
3415                 Desktop.addInternalFrame(frame,
3416                                 MessageManager.formatMessage("label.alignment_properties", new Object[] { getTitle() }), 500, 400);
3417         }
3418
3419   /**
3420    * DOCUMENT ME!
3421    * 
3422    * @param e
3423    *          DOCUMENT ME!
3424    */
3425   @Override
3426   public void overviewMenuItem_actionPerformed(ActionEvent e)
3427   {
3428     if (alignPanel.overviewPanel != null)
3429     {
3430       return;
3431     }
3432
3433     JInternalFrame frame = new JInternalFrame();
3434     final OverviewPanel overview = new OverviewPanel(alignPanel);
3435     frame.setContentPane(overview);
3436     Desktop.addInternalFrame(frame, MessageManager
3437             .formatMessage("label.overview_params", new Object[]
3438             { this.getTitle() }), true, frame.getWidth(), frame.getHeight(),
3439             true, true);
3440     frame.pack();
3441     frame.setLayer(JLayeredPane.PALETTE_LAYER);
3442     frame.addInternalFrameListener(
3443             new javax.swing.event.InternalFrameAdapter()
3444             {
3445               @Override
3446               public void internalFrameClosed(
3447                       javax.swing.event.InternalFrameEvent evt)
3448               {
3449                 overview.dispose();
3450                 alignPanel.setOverviewPanel(null);
3451               }
3452             });
3453     if (getKeyListeners().length > 0)
3454     {
3455       frame.addKeyListener(getKeyListeners()[0]);
3456     }
3457
3458     alignPanel.setOverviewPanel(overview);
3459   }
3460
3461   @Override
3462   public void textColour_actionPerformed()
3463   {
3464     new TextColourChooser().chooseColour(alignPanel, null);
3465   }
3466
3467   /*
3468    * public void covariationColour_actionPerformed() {
3469    * changeColour(new
3470    * CovariationColourScheme(viewport.getAlignment().getAlignmentAnnotation
3471    * ()[0])); }
3472    */
3473   @Override
3474   public void annotationColour_actionPerformed()
3475   {
3476     new AnnotationColourChooser(viewport, alignPanel);
3477   }
3478
3479   @Override
3480   public void annotationColumn_actionPerformed(ActionEvent e)
3481   {
3482     new AnnotationColumnChooser(viewport, alignPanel);
3483   }
3484
3485   /**
3486    * Action on the user checking or unchecking the option to apply the selected
3487    * colour scheme to all groups. If unchecked, groups may have their own
3488    * independent colour schemes.
3489    * 
3490    * @param selected
3491    */
3492   @Override
3493   public void applyToAllGroups_actionPerformed(boolean selected)
3494   {
3495     viewport.setColourAppliesToAllGroups(selected);
3496   }
3497
3498   /**
3499    * Action on user selecting a colour from the colour menu
3500    * 
3501    * @param name
3502    *          the name (not the menu item label!) of the colour scheme
3503    */
3504   @Override
3505   public void changeColour_actionPerformed(String name)
3506   {
3507     /*
3508      * 'User Defined' opens a panel to configure or load a
3509      * user-defined colour scheme
3510      */
3511     if (ResidueColourScheme.USER_DEFINED_MENU.equals(name))
3512     {
3513       new UserDefinedColours(alignPanel);
3514       return;
3515     }
3516
3517     /*
3518      * otherwise set the chosen colour scheme (or null for 'None')
3519      */
3520     ColourSchemeI cs = ColourSchemes.getInstance().getColourScheme(name,
3521             viewport, viewport.getAlignment(),
3522             viewport.getHiddenRepSequences());
3523     changeColour(cs);
3524   }
3525
3526   /**
3527    * Actions on setting or changing the alignment colour scheme
3528    * 
3529    * @param cs
3530    */
3531   @Override
3532   public void changeColour(ColourSchemeI cs)
3533   {
3534     // TODO: pull up to controller method
3535     ColourMenuHelper.setColourSelected(colourMenu, cs);
3536
3537     viewport.setGlobalColourScheme(cs);
3538
3539     alignPanel.paintAlignment(true, true);
3540   }
3541
3542   /**
3543    * Show the PID threshold slider panel
3544    */
3545   @Override
3546   protected void modifyPID_actionPerformed()
3547   {
3548     SliderPanel.setPIDSliderSource(alignPanel, viewport.getResidueShading(),
3549             alignPanel.getViewName());
3550     SliderPanel.showPIDSlider();
3551   }
3552
3553   /**
3554    * Show the Conservation slider panel
3555    */
3556   @Override
3557   protected void modifyConservation_actionPerformed()
3558   {
3559     SliderPanel.setConservationSlider(alignPanel,
3560             viewport.getResidueShading(), alignPanel.getViewName());
3561     SliderPanel.showConservationSlider();
3562   }
3563
3564   /**
3565    * Action on selecting or deselecting (Colour) By Conservation
3566    */
3567   @Override
3568   public void conservationMenuItem_actionPerformed(boolean selected)
3569   {
3570     modifyConservation.setEnabled(selected);
3571     viewport.setConservationSelected(selected);
3572     viewport.getResidueShading().setConservationApplied(selected);
3573
3574     changeColour(viewport.getGlobalColourScheme());
3575     if (selected)
3576     {
3577       modifyConservation_actionPerformed();
3578     }
3579     else
3580     {
3581       SliderPanel.hideConservationSlider();
3582     }
3583   }
3584
3585   /**
3586    * Action on selecting or deselecting (Colour) Above PID Threshold
3587    */
3588   @Override
3589   public void abovePIDThreshold_actionPerformed(boolean selected)
3590   {
3591     modifyPID.setEnabled(selected);
3592     viewport.setAbovePIDThreshold(selected);
3593     if (!selected)
3594     {
3595       viewport.getResidueShading().setThreshold(0,
3596               viewport.isIgnoreGapsConsensus());
3597     }
3598
3599     changeColour(viewport.getGlobalColourScheme());
3600     if (selected)
3601     {
3602       modifyPID_actionPerformed();
3603     }
3604     else
3605     {
3606       SliderPanel.hidePIDSlider();
3607     }
3608   }
3609
3610   /**
3611    * DOCUMENT ME!
3612    * 
3613    * @param e
3614    *          DOCUMENT ME!
3615    */
3616   @Override
3617   public void sortPairwiseMenuItem_actionPerformed(ActionEvent e)
3618   {
3619     SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3620     AlignmentSorter.sortByPID(viewport.getAlignment(),
3621             viewport.getAlignment().getSequenceAt(0));
3622     addHistoryItem(new OrderCommand("Pairwise Sort", oldOrder,
3623             viewport.getAlignment()));
3624     alignPanel.paintAlignment(true, false);
3625   }
3626
3627   /**
3628    * DOCUMENT ME!
3629    * 
3630    * @param e
3631    *          DOCUMENT ME!
3632    */
3633   @Override
3634   public void sortIDMenuItem_actionPerformed(ActionEvent e)
3635   {
3636     SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3637     AlignmentSorter.sortByID(viewport.getAlignment());
3638     addHistoryItem(
3639             new OrderCommand("ID Sort", oldOrder, viewport.getAlignment()));
3640     alignPanel.paintAlignment(true, false);
3641   }
3642
3643   /**
3644    * DOCUMENT ME!
3645    * 
3646    * @param e
3647    *          DOCUMENT ME!
3648    */
3649   @Override
3650   public void sortLengthMenuItem_actionPerformed(ActionEvent e)
3651   {
3652     SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3653     AlignmentSorter.sortByLength(viewport.getAlignment());
3654     addHistoryItem(new OrderCommand("Length Sort", oldOrder,
3655             viewport.getAlignment()));
3656     alignPanel.paintAlignment(true, false);
3657   }
3658
3659   /**
3660    * DOCUMENT ME!
3661    * 
3662    * @param e
3663    *          DOCUMENT ME!
3664    */
3665   @Override
3666   public void sortGroupMenuItem_actionPerformed(ActionEvent e)
3667   {
3668     SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3669     AlignmentSorter.sortByGroup(viewport.getAlignment());
3670     addHistoryItem(new OrderCommand("Group Sort", oldOrder,
3671             viewport.getAlignment()));
3672
3673     alignPanel.paintAlignment(true, false);
3674   }
3675
3676   /**
3677    * DOCUMENT ME!
3678    * 
3679    * @param e
3680    *          DOCUMENT ME!
3681    */
3682   @Override
3683   public void removeRedundancyMenuItem_actionPerformed(ActionEvent e)
3684   {
3685     new RedundancyPanel(alignPanel, this);
3686   }
3687
3688   /**
3689    * DOCUMENT ME!
3690    * 
3691    * @param e
3692    *          DOCUMENT ME!
3693    */
3694   @Override
3695   public void pairwiseAlignmentMenuItem_actionPerformed(ActionEvent e)
3696   {
3697     if ((viewport.getSelectionGroup() == null)
3698             || (viewport.getSelectionGroup().getSize() < 2))
3699     {
3700       JvOptionPane.showInternalMessageDialog(this,
3701               MessageManager.getString(
3702                       "label.you_must_select_least_two_sequences"),
3703               MessageManager.getString("label.invalid_selection"),
3704               JvOptionPane.WARNING_MESSAGE);
3705     }
3706     else
3707     {
3708       JInternalFrame frame = new JInternalFrame();
3709       frame.setContentPane(new PairwiseAlignPanel(viewport));
3710       Desktop.addInternalFrame(frame,
3711               MessageManager.getString("action.pairwise_alignment"), 600,
3712               500);
3713     }
3714   }
3715
3716   @Override
3717   public void autoCalculate_actionPerformed(ActionEvent e)
3718   {
3719     viewport.autoCalculateConsensus = autoCalculate.isSelected();
3720     if (viewport.autoCalculateConsensus)
3721     {
3722       viewport.firePropertyChange("alignment", null,
3723               viewport.getAlignment().getSequences());
3724     }
3725   }
3726
3727   @Override
3728   public void sortByTreeOption_actionPerformed(ActionEvent e)
3729   {
3730     viewport.sortByTree = sortByTree.isSelected();
3731   }
3732
3733   @Override
3734   protected void listenToViewSelections_actionPerformed(ActionEvent e)
3735   {
3736     viewport.followSelection = listenToViewSelections.isSelected();
3737   }
3738
3739   /**
3740    * Constructs a tree panel and adds it to the desktop
3741    * 
3742    * @param type
3743    *          tree type (NJ or AV)
3744    * @param modelName
3745    *          name of score model used to compute the tree
3746    * @param options
3747    *          parameters for the distance or similarity calculation
3748    */
3749   void newTreePanel(String type, String modelName,
3750           SimilarityParamsI options)
3751   {
3752     String frameTitle = "";
3753     TreePanel tp;
3754
3755     boolean onSelection = false;
3756     if (viewport.getSelectionGroup() != null
3757             && viewport.getSelectionGroup().getSize() > 0)
3758     {
3759       SequenceGroup sg = viewport.getSelectionGroup();
3760
3761       /* Decide if the selection is a column region */
3762       for (SequenceI _s : sg.getSequences())
3763       {
3764         if (_s.getLength() < sg.getEndRes())
3765         {
3766           JvOptionPane.showMessageDialog(Desktop.desktop,
3767                   MessageManager.getString(
3768                           "label.selected_region_to_tree_may_only_contain_residues_or_gaps"),
3769                   MessageManager.getString(
3770                           "label.sequences_selection_not_aligned"),
3771                   JvOptionPane.WARNING_MESSAGE);
3772
3773           return;
3774         }
3775       }
3776       onSelection = true;
3777     }
3778     else
3779     {
3780       if (viewport.getAlignment().getHeight() < 2)
3781       {
3782         return;
3783       }
3784     }
3785
3786     tp = new TreePanel(alignPanel, type, modelName, options);
3787     frameTitle = tp.getPanelTitle() + (onSelection ? " on region" : "");
3788
3789     frameTitle += " from ";
3790
3791     if (viewport.getViewName() != null)
3792     {
3793       frameTitle += viewport.getViewName() + " of ";
3794     }
3795
3796     frameTitle += this.title;
3797
3798     Desktop.addInternalFrame(tp, frameTitle, 600, 500);
3799   }
3800
3801   /**
3802    * DOCUMENT ME!
3803    * 
3804    * @param title
3805    *          DOCUMENT ME!
3806    * @param order
3807    *          DOCUMENT ME!
3808    */
3809   public void addSortByOrderMenuItem(String title,
3810           final AlignmentOrder order)
3811   {
3812     final JMenuItem item = new JMenuItem(MessageManager
3813             .formatMessage("action.by_title_param", new Object[]
3814             { title }));
3815     sort.add(item);
3816     item.addActionListener(new java.awt.event.ActionListener()
3817     {
3818       @Override
3819       public void actionPerformed(ActionEvent e)
3820       {
3821         SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3822
3823         // TODO: JBPNote - have to map order entries to curent SequenceI
3824         // pointers
3825         AlignmentSorter.sortBy(viewport.getAlignment(), order);
3826
3827         addHistoryItem(new OrderCommand(order.getName(), oldOrder,
3828                 viewport.getAlignment()));
3829
3830         alignPanel.paintAlignment(true, false);
3831       }
3832     });
3833   }
3834
3835   /**
3836    * Add a new sort by annotation score menu item
3837    * 
3838    * @param sort
3839    *          the menu to add the option to
3840    * @param scoreLabel
3841    *          the label used to retrieve scores for each sequence on the
3842    *          alignment
3843    */
3844   public void addSortByAnnotScoreMenuItem(JMenu sort,
3845           final String scoreLabel)
3846   {
3847     final JMenuItem item = new JMenuItem(scoreLabel);
3848     sort.add(item);
3849     item.addActionListener(new java.awt.event.ActionListener()
3850     {
3851       @Override
3852       public void actionPerformed(ActionEvent e)
3853       {
3854         SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3855         AlignmentSorter.sortByAnnotationScore(scoreLabel,
3856                 viewport.getAlignment());// ,viewport.getSelectionGroup());
3857         addHistoryItem(new OrderCommand("Sort by " + scoreLabel, oldOrder,
3858                 viewport.getAlignment()));
3859         alignPanel.paintAlignment(true, false);
3860       }
3861     });
3862   }
3863
3864   /**
3865    * last hash for alignment's annotation array - used to minimise cost of
3866    * rebuild.
3867    */
3868   protected int _annotationScoreVectorHash;
3869
3870   /**
3871    * search the alignment and rebuild the sort by annotation score submenu the
3872    * last alignment annotation vector hash is stored to minimize cost of
3873    * rebuilding in subsequence calls.
3874    * 
3875    */
3876   @Override
3877   public void buildSortByAnnotationScoresMenu()
3878   {
3879     if (viewport.getAlignment().getAlignmentAnnotation() == null)
3880     {
3881       return;
3882     }
3883
3884     if (viewport.getAlignment().getAlignmentAnnotation()
3885             .hashCode() != _annotationScoreVectorHash)
3886     {
3887       sortByAnnotScore.removeAll();
3888       // almost certainly a quicker way to do this - but we keep it simple
3889       Hashtable<String, String> scoreSorts = new Hashtable<>();
3890       AlignmentAnnotation aann[];
3891       for (SequenceI sqa : viewport.getAlignment().getSequences())
3892       {
3893         aann = sqa.getAnnotation();
3894         for (int i = 0; aann != null && i < aann.length; i++)
3895         {
3896           if (aann[i].hasScore() && aann[i].sequenceRef != null)
3897           {
3898             scoreSorts.put(aann[i].label, aann[i].label);
3899           }
3900         }
3901       }
3902       Enumeration<String> labels = scoreSorts.keys();
3903       while (labels.hasMoreElements())
3904       {
3905         addSortByAnnotScoreMenuItem(sortByAnnotScore, labels.nextElement());
3906       }
3907       sortByAnnotScore.setVisible(scoreSorts.size() > 0);
3908       scoreSorts.clear();
3909
3910       _annotationScoreVectorHash = viewport.getAlignment()
3911               .getAlignmentAnnotation().hashCode();
3912     }
3913   }
3914
3915   /**
3916    * Maintain the Order by->Displayed Tree menu. Creates a new menu item for a
3917    * TreePanel with an appropriate <code>jalview.analysis.AlignmentSorter</code>
3918    * call. Listeners are added to remove the menu item when the treePanel is
3919    * closed, and adjust the tree leaf to sequence mapping when the alignment is
3920    * modified.
3921    */
3922   @Override
3923   public void buildTreeSortMenu()
3924   {
3925     sortByTreeMenu.removeAll();
3926
3927     List<Component> comps = PaintRefresher.components
3928             .get(viewport.getSequenceSetId());
3929     List<TreePanel> treePanels = new ArrayList<>();
3930     for (Component comp : comps)
3931     {
3932       if (comp instanceof TreePanel)
3933       {
3934         treePanels.add((TreePanel) comp);
3935       }
3936     }
3937
3938     if (treePanels.size() < 1)
3939     {
3940       sortByTreeMenu.setVisible(false);
3941       return;
3942     }
3943
3944     sortByTreeMenu.setVisible(true);
3945
3946     for (final TreePanel tp : treePanels)
3947     {
3948       final JMenuItem item = new JMenuItem(tp.getTitle());
3949       item.addActionListener(new java.awt.event.ActionListener()
3950       {
3951         @Override
3952         public void actionPerformed(ActionEvent e)
3953         {
3954           tp.sortByTree_actionPerformed();
3955           addHistoryItem(tp.sortAlignmentIn(alignPanel));
3956
3957         }
3958       });
3959
3960       sortByTreeMenu.add(item);
3961     }
3962   }
3963
3964   public boolean sortBy(AlignmentOrder alorder, String undoname)
3965   {
3966     SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3967     AlignmentSorter.sortBy(viewport.getAlignment(), alorder);
3968     if (undoname != null)
3969     {
3970       addHistoryItem(new OrderCommand(undoname, oldOrder,
3971               viewport.getAlignment()));
3972     }
3973     alignPanel.paintAlignment(true, false);
3974     return true;
3975   }
3976
3977   /**
3978    * Work out whether the whole set of sequences or just the selected set will
3979    * be submitted for multiple alignment.
3980    * 
3981    */
3982   public jalview.datamodel.AlignmentView gatherSequencesForAlignment()
3983   {
3984     // Now, check we have enough sequences
3985     AlignmentView msa = null;
3986
3987     if ((viewport.getSelectionGroup() != null)
3988             && (viewport.getSelectionGroup().getSize() > 1))
3989     {
3990       // JBPNote UGLY! To prettify, make SequenceGroup and Alignment conform to
3991       // some common interface!
3992       /*
3993        * SequenceGroup seqs = viewport.getSelectionGroup(); int sz; msa = new
3994        * SequenceI[sz = seqs.getSize(false)];
3995        * 
3996        * for (int i = 0; i < sz; i++) { msa[i] = (SequenceI)
3997        * seqs.getSequenceAt(i); }
3998        */
3999       msa = viewport.getAlignmentView(true);
4000     }
4001     else if (viewport.getSelectionGroup() != null
4002             && viewport.getSelectionGroup().getSize() == 1)
4003     {
4004       int option = JvOptionPane.showConfirmDialog(this,
4005               MessageManager.getString("warn.oneseq_msainput_selection"),
4006               MessageManager.getString("label.invalid_selection"),
4007               JvOptionPane.OK_CANCEL_OPTION);
4008       if (option == JvOptionPane.OK_OPTION)
4009       {
4010         msa = viewport.getAlignmentView(false);
4011       }
4012     }
4013     else
4014     {
4015       msa = viewport.getAlignmentView(false);
4016     }
4017     return msa;
4018   }
4019
4020   /**
4021    * Decides what is submitted to a secondary structure prediction service: the
4022    * first sequence in the alignment, or in the current selection, or, if the
4023    * alignment is 'aligned' (ie padded with gaps), then the currently selected
4024    * region or the whole alignment. (where the first sequence in the set is the
4025    * one that the prediction will be for).
4026    */
4027   public AlignmentView gatherSeqOrMsaForSecStrPrediction()
4028   {
4029     AlignmentView seqs = null;
4030
4031     if ((viewport.getSelectionGroup() != null)
4032             && (viewport.getSelectionGroup().getSize() > 0))
4033     {
4034       seqs = viewport.getAlignmentView(true);
4035     }
4036     else
4037     {
4038       seqs = viewport.getAlignmentView(false);
4039     }
4040     // limit sequences - JBPNote in future - could spawn multiple prediction
4041     // jobs
4042     // TODO: viewport.getAlignment().isAligned is a global state - the local
4043     // selection may well be aligned - we preserve 2.0.8 behaviour for moment.
4044     if (!viewport.getAlignment().isAligned(false))
4045     {
4046       seqs.setSequences(new SeqCigar[] { seqs.getSequences()[0] });
4047       // TODO: if seqs.getSequences().length>1 then should really have warned
4048       // user!
4049
4050     }
4051     return seqs;
4052   }
4053
4054   /**
4055    * DOCUMENT ME!
4056    * 
4057    * @param e
4058    *          DOCUMENT ME!
4059    */
4060   @Override
4061   protected void loadTreeMenuItem_actionPerformed(ActionEvent e)
4062   {
4063     // Pick the tree file
4064     JalviewFileChooser chooser = new JalviewFileChooser(
4065             jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
4066     chooser.setFileView(new JalviewFileView());
4067     chooser.setDialogTitle(
4068             MessageManager.getString("label.select_newick_like_tree_file"));
4069     chooser.setToolTipText(
4070             MessageManager.getString("label.load_tree_file"));
4071
4072     chooser.setResponseHandler(0, new Runnable()
4073     {
4074       @Override
4075       public void run()
4076       {
4077         String filePath = chooser.getSelectedFile().getPath();
4078         Cache.setProperty("LAST_DIRECTORY", filePath);
4079         NewickFile fin = null;
4080         try
4081         {
4082           fin = new NewickFile(new FileParse(chooser.getSelectedFile(),
4083                   DataSourceType.FILE));
4084           viewport.setCurrentTree(showNewickTree(fin, filePath).getTree());
4085         } catch (Exception ex)
4086         {
4087           JvOptionPane.showMessageDialog(Desktop.desktop, ex.getMessage(),
4088                   MessageManager
4089                           .getString("label.problem_reading_tree_file"),
4090                   JvOptionPane.WARNING_MESSAGE);
4091           ex.printStackTrace();
4092         }
4093         if (fin != null && fin.hasWarningMessage())
4094         {
4095           JvOptionPane.showMessageDialog(Desktop.desktop,
4096                   fin.getWarningMessage(),
4097                   MessageManager.getString(
4098                           "label.possible_problem_with_tree_file"),
4099                   JvOptionPane.WARNING_MESSAGE);
4100         }
4101       }
4102     });
4103     chooser.showOpenDialog(this);
4104   }
4105
4106   public TreePanel showNewickTree(NewickFile nf, String treeTitle)
4107   {
4108     return showNewickTree(nf, treeTitle, 600, 500, 4, 5);
4109   }
4110
4111   public TreePanel showNewickTree(NewickFile nf, String treeTitle, int w,
4112           int h, int x, int y)
4113   {
4114     return showNewickTree(nf, treeTitle, null, w, h, x, y);
4115   }
4116
4117   /**
4118    * Add a treeviewer for the tree extracted from a Newick file object to the
4119    * current alignment view
4120    * 
4121    * @param nf
4122    *          the tree
4123    * @param title
4124    *          tree viewer title
4125    * @param input
4126    *          Associated alignment input data (or null)
4127    * @param w
4128    *          width
4129    * @param h
4130    *          height
4131    * @param x
4132    *          position
4133    * @param y
4134    *          position
4135    * @return TreePanel handle
4136    */
4137   public TreePanel showNewickTree(NewickFile nf, String treeTitle,
4138           AlignmentView input, int w, int h, int x, int y)
4139   {
4140     TreePanel tp = null;
4141
4142     try
4143     {
4144       nf.parse();
4145
4146       if (nf.getTree() != null)
4147       {
4148         tp = new TreePanel(alignPanel, nf, treeTitle, input);
4149
4150         tp.setSize(w, h);
4151
4152         if (x > 0 && y > 0)
4153         {
4154           tp.setLocation(x, y);
4155         }
4156
4157         Desktop.addInternalFrame(tp, treeTitle, w, h);
4158       }
4159     } catch (Exception ex)
4160     {
4161       ex.printStackTrace();
4162     }
4163
4164     return tp;
4165   }
4166
4167   private boolean buildingMenu = false;
4168
4169   /**
4170    * Generates menu items and listener event actions for web service clients
4171    * 
4172    */
4173   public void BuildWebServiceMenu()
4174   {
4175     while (buildingMenu)
4176     {
4177       try
4178       {
4179         System.err.println("Waiting for building menu to finish.");
4180         Thread.sleep(10);
4181       } catch (Exception e)
4182       {
4183       }
4184     }
4185     final AlignFrame me = this;
4186     buildingMenu = true;
4187     new Thread(new Runnable()
4188     {
4189       @Override
4190       public void run()
4191       {
4192         final List<JMenuItem> legacyItems = new ArrayList<>();
4193         try
4194         {
4195           // System.err.println("Building ws menu again "
4196           // + Thread.currentThread());
4197           // TODO: add support for context dependent disabling of services based
4198           // on
4199           // alignment and current selection
4200           // TODO: add additional serviceHandle parameter to specify abstract
4201           // handler
4202           // class independently of AbstractName
4203           // TODO: add in rediscovery GUI function to restart discoverer
4204           // TODO: group services by location as well as function and/or
4205           // introduce
4206           // object broker mechanism.
4207           final Vector<JMenu> wsmenu = new Vector<>();
4208           final IProgressIndicator af = me;
4209
4210           /*
4211            * do not i18n these strings - they are hard-coded in class
4212            * compbio.data.msa.Category, Jws2Discoverer.isRecalculable() and
4213            * SequenceAnnotationWSClient.initSequenceAnnotationWSClient()
4214            */
4215           final JMenu msawsmenu = new JMenu("Alignment");
4216           final JMenu secstrmenu = new JMenu(
4217                   "Secondary Structure Prediction");
4218           final JMenu seqsrchmenu = new JMenu("Sequence Database Search");
4219           final JMenu analymenu = new JMenu("Analysis");
4220           final JMenu dismenu = new JMenu("Protein Disorder");
4221           // JAL-940 - only show secondary structure prediction services from
4222           // the legacy server
4223           if (// Cache.getDefault("SHOW_JWS1_SERVICES", true)
4224               // &&
4225           Discoverer.services != null && (Discoverer.services.size() > 0))
4226           {
4227             // TODO: refactor to allow list of AbstractName/Handler bindings to
4228             // be
4229             // stored or retrieved from elsewhere
4230             // No MSAWS used any more:
4231             // Vector msaws = null; // (Vector)
4232             // Discoverer.services.get("MsaWS");
4233             Vector<ServiceHandle> secstrpr = Discoverer.services
4234                     .get("SecStrPred");
4235             if (secstrpr != null)
4236             {
4237               // Add any secondary structure prediction services
4238               for (int i = 0, j = secstrpr.size(); i < j; i++)
4239               {
4240                 final ext.vamsas.ServiceHandle sh = secstrpr.get(i);
4241                 jalview.ws.WSMenuEntryProviderI impl = jalview.ws.jws1.Discoverer
4242                         .getServiceClient(sh);
4243                 int p = secstrmenu.getItemCount();
4244                 impl.attachWSMenuEntry(secstrmenu, me);
4245                 int q = secstrmenu.getItemCount();
4246                 for (int litm = p; litm < q; litm++)
4247                 {
4248                   legacyItems.add(secstrmenu.getItem(litm));
4249                 }
4250               }
4251             }
4252           }
4253
4254           // Add all submenus in the order they should appear on the web
4255           // services menu
4256           wsmenu.add(msawsmenu);
4257           wsmenu.add(secstrmenu);
4258           wsmenu.add(dismenu);
4259           wsmenu.add(analymenu);
4260           // No search services yet
4261           // wsmenu.add(seqsrchmenu);
4262
4263           javax.swing.SwingUtilities.invokeLater(new Runnable()
4264           {
4265             @Override
4266             public void run()
4267             {
4268               try
4269               {
4270                 webService.removeAll();
4271                 // first, add discovered services onto the webservices menu
4272                 if (wsmenu.size() > 0)
4273                 {
4274                   for (int i = 0, j = wsmenu.size(); i < j; i++)
4275                   {
4276                     webService.add(wsmenu.get(i));
4277                   }
4278                 }
4279                 else
4280                 {
4281                   webService.add(me.webServiceNoServices);
4282                 }
4283                 // TODO: move into separate menu builder class.
4284                 boolean new_sspred = false;
4285                 if (Cache.getDefault("SHOW_JWS2_SERVICES", true))
4286                 {
4287                   Jws2Discoverer jws2servs = Jws2Discoverer.getDiscoverer();
4288                   if (jws2servs != null)
4289                   {
4290                     if (jws2servs.hasServices())
4291                     {
4292                       jws2servs.attachWSMenuEntry(webService, me);
4293                       for (Jws2Instance sv : jws2servs.getServices())
4294                       {
4295                         if (sv.description.toLowerCase(Locale.ROOT).contains("jpred"))
4296                         {
4297                           for (JMenuItem jmi : legacyItems)
4298                           {
4299                             jmi.setVisible(false);
4300                           }
4301                         }
4302                       }
4303
4304                     }
4305                     if (jws2servs.isRunning())
4306                     {
4307                       JMenuItem tm = new JMenuItem(
4308                               "Still discovering JABA Services");
4309                       tm.setEnabled(false);
4310                       webService.add(tm);
4311                     }
4312                   }
4313                 }
4314                 build_urlServiceMenu(me.webService);
4315                 build_fetchdbmenu(webService);
4316                 for (JMenu item : wsmenu)
4317                 {
4318                   if (item.getItemCount() == 0)
4319                   {
4320                     item.setEnabled(false);
4321                   }
4322                   else
4323                   {
4324                     item.setEnabled(true);
4325                   }
4326                 }
4327               } catch (Exception e)
4328               {
4329                 Cache.log.debug(
4330                         "Exception during web service menu building process.",
4331                         e);
4332               }
4333             }
4334           });
4335         } catch (Exception e)
4336         {
4337         }
4338         buildingMenu = false;
4339       }
4340     }).start();
4341
4342   }
4343
4344   /**
4345    * construct any groupURL type service menu entries.
4346    * 
4347    * @param webService
4348    */
4349   protected void build_urlServiceMenu(JMenu webService)
4350   {
4351     // TODO: remove this code when 2.7 is released
4352     // DEBUG - alignmentView
4353     /*
4354      * JMenuItem testAlView = new JMenuItem("Test AlignmentView"); final
4355      * AlignFrame af = this; testAlView.addActionListener(new ActionListener() {
4356      * 
4357      * @Override public void actionPerformed(ActionEvent e) {
4358      * jalview.datamodel.AlignmentView
4359      * .testSelectionViews(af.viewport.getAlignment(),
4360      * af.viewport.getColumnSelection(), af.viewport.selectionGroup); }
4361      * 
4362      * }); webService.add(testAlView);
4363      */
4364     // TODO: refactor to RestClient discoverer and merge menu entries for
4365     // rest-style services with other types of analysis/calculation service
4366     // SHmmr test client - still being implemented.
4367     // DEBUG - alignmentView
4368
4369     for (jalview.ws.rest.RestClient client : jalview.ws.rest.RestClient
4370             .getRestClients())
4371     {
4372       client.attachWSMenuEntry(
4373               JvSwingUtils.findOrCreateMenu(webService, client.getAction()),
4374               this);
4375     }
4376   }
4377
4378   /**
4379    * Searches the alignment sequences for xRefs and builds the Show
4380    * Cross-References menu (formerly called Show Products), with database
4381    * sources for which cross-references are found (protein sources for a
4382    * nucleotide alignment and vice versa)
4383    * 
4384    * @return true if Show Cross-references menu should be enabled
4385    */
4386   public boolean canShowProducts()
4387   {
4388     SequenceI[] seqs = viewport.getAlignment().getSequencesArray();
4389     AlignmentI dataset = viewport.getAlignment().getDataset();
4390
4391     showProducts.removeAll();
4392     final boolean dna = viewport.getAlignment().isNucleotide();
4393
4394     if (seqs == null || seqs.length == 0)
4395     {
4396       // nothing to see here.
4397       return false;
4398     }
4399
4400     boolean showp = false;
4401     try
4402     {
4403       List<String> ptypes = new CrossRef(seqs, dataset)
4404               .findXrefSourcesForSequences(dna);
4405
4406       for (final String source : ptypes)
4407       {
4408         showp = true;
4409         final AlignFrame af = this;
4410         JMenuItem xtype = new JMenuItem(source);
4411         xtype.addActionListener(new ActionListener()
4412         {
4413           @Override
4414           public void actionPerformed(ActionEvent e)
4415           {
4416             showProductsFor(af.viewport.getSequenceSelection(), dna,
4417                     source);
4418           }
4419         });
4420         showProducts.add(xtype);
4421       }
4422       showProducts.setVisible(showp);
4423       showProducts.setEnabled(showp);
4424     } catch (Exception e)
4425     {
4426       Cache.log.warn(
4427               "canShowProducts threw an exception - please report to help@jalview.org",
4428               e);
4429       return false;
4430     }
4431     return showp;
4432   }
4433
4434   /**
4435    * Finds and displays cross-references for the selected sequences (protein
4436    * products for nucleotide sequences, dna coding sequences for peptides).
4437    * 
4438    * @param sel
4439    *          the sequences to show cross-references for
4440    * @param dna
4441    *          true if from a nucleotide alignment (so showing proteins)
4442    * @param source
4443    *          the database to show cross-references for
4444    */
4445   protected void showProductsFor(final SequenceI[] sel, final boolean _odna,
4446           final String source)
4447   {
4448     new Thread(CrossRefAction.getHandlerFor(sel, _odna, source, this))
4449             .start();
4450   }
4451
4452   /**
4453    * Construct and display a new frame containing the translation of this
4454    * frame's DNA sequences to their aligned protein (amino acid) equivalents.
4455    */
4456   @Override
4457   public void showTranslation_actionPerformed(GeneticCodeI codeTable)
4458   {
4459     AlignmentI al = null;
4460     try
4461     {
4462       Dna dna = new Dna(viewport, viewport.getViewAsVisibleContigs(true));
4463
4464       al = dna.translateCdna(codeTable);
4465     } catch (Exception ex)
4466     {
4467       jalview.bin.Cache.log.error(
4468               "Exception during translation. Please report this !", ex);
4469       final String msg = MessageManager.getString(
4470               "label.error_when_translating_sequences_submit_bug_report");
4471       final String errorTitle = MessageManager
4472               .getString("label.implementation_error")
4473               + MessageManager.getString("label.translation_failed");
4474       JvOptionPane.showMessageDialog(Desktop.desktop, msg, errorTitle,
4475               JvOptionPane.ERROR_MESSAGE);
4476       return;
4477     }
4478     if (al == null || al.getHeight() == 0)
4479     {
4480       final String msg = MessageManager.getString(
4481               "label.select_at_least_three_bases_in_at_least_one_sequence_to_cDNA_translation");
4482       final String errorTitle = MessageManager
4483               .getString("label.translation_failed");
4484       JvOptionPane.showMessageDialog(Desktop.desktop, msg, errorTitle,
4485               JvOptionPane.WARNING_MESSAGE);
4486     }
4487     else
4488     {
4489       AlignFrame af = new AlignFrame(al, DEFAULT_WIDTH, DEFAULT_HEIGHT);
4490       af.setFileFormat(this.currentFileFormat);
4491       final String newTitle = MessageManager
4492               .formatMessage("label.translation_of_params", new Object[]
4493               { this.getTitle(), codeTable.getId() });
4494       af.setTitle(newTitle);
4495       if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
4496       {
4497         final SequenceI[] seqs = viewport.getSelectionAsNewSequence();
4498         viewport.openSplitFrame(af, new Alignment(seqs));
4499       }
4500       else
4501       {
4502         Desktop.addInternalFrame(af, newTitle, DEFAULT_WIDTH,
4503                 DEFAULT_HEIGHT);
4504       }
4505     }
4506   }
4507
4508   /**
4509    * Set the file format
4510    * 
4511    * @param format
4512    */
4513   public void setFileFormat(FileFormatI format)
4514   {
4515     this.currentFileFormat = format;
4516   }
4517
4518   /**
4519    * Try to load a features file onto the alignment.
4520    * 
4521    * @param file
4522    *          contents or path to retrieve file or a File object
4523    * @param sourceType
4524    *          access mode of file (see jalview.io.AlignFile)
4525    * @return true if features file was parsed correctly.
4526    */
4527   public boolean parseFeaturesFile(Object file, DataSourceType sourceType)
4528   {
4529     // BH 2018
4530     return avc.parseFeaturesFile(file, sourceType,
4531             Cache.getDefault("RELAXEDSEQIDMATCHING", false));
4532
4533   }
4534
4535   @Override
4536   public void refreshFeatureUI(boolean enableIfNecessary)
4537   {
4538     // note - currently this is only still here rather than in the controller
4539     // because of the featureSettings hard reference that is yet to be
4540     // abstracted
4541     if (enableIfNecessary)
4542     {
4543       viewport.setShowSequenceFeatures(true);
4544       showSeqFeatures.setSelected(true);
4545     }
4546
4547   }
4548
4549   @Override
4550   public void dragEnter(DropTargetDragEvent evt)
4551   {
4552   }
4553
4554   @Override
4555   public void dragExit(DropTargetEvent evt)
4556   {
4557   }
4558
4559   @Override
4560   public void dragOver(DropTargetDragEvent evt)
4561   {
4562   }
4563
4564   @Override
4565   public void dropActionChanged(DropTargetDragEvent evt)
4566   {
4567   }
4568
4569   @Override
4570   public void drop(DropTargetDropEvent evt)
4571   {
4572     // JAL-1552 - acceptDrop required before getTransferable call for
4573     // Java's Transferable for native dnd
4574     evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
4575     Transferable t = evt.getTransferable();
4576
4577     final AlignFrame thisaf = this;
4578     final List<Object> files = new ArrayList<>();
4579     List<DataSourceType> protocols = new ArrayList<>();
4580
4581     try
4582     {
4583       Desktop.transferFromDropTarget(files, protocols, evt, t);
4584     } catch (Exception e)
4585     {
4586       e.printStackTrace();
4587     }
4588     if (files != null)
4589     {
4590       new Thread(new Runnable()
4591       {
4592         @Override
4593         public void run()
4594         {
4595           try
4596           {
4597             // check to see if any of these files have names matching sequences
4598             // in
4599             // the alignment
4600             SequenceIdMatcher idm = new SequenceIdMatcher(
4601                     viewport.getAlignment().getSequencesArray());
4602             /**
4603              * Object[] { String,SequenceI}
4604              */
4605             ArrayList<Object[]> filesmatched = new ArrayList<>();
4606             ArrayList<Object> filesnotmatched = new ArrayList<>();
4607             for (int i = 0; i < files.size(); i++)
4608             {
4609               // BH 2018
4610               Object file = files.get(i);
4611               String fileName = file.toString();
4612               String pdbfn = "";
4613               DataSourceType protocol = (file instanceof File
4614                       ? DataSourceType.FILE
4615                       : FormatAdapter.checkProtocol(fileName));
4616               if (protocol == DataSourceType.FILE)
4617               {
4618                 File fl;
4619                 if (file instanceof File)
4620                 {
4621                   fl = (File) file;
4622                   Platform.cacheFileData(fl);
4623                 }
4624                 else
4625                 {
4626                   fl = new File(fileName);
4627                 }
4628                 pdbfn = fl.getName();
4629               }
4630               else if (protocol == DataSourceType.URL)
4631               {
4632                 URL url = new URL(fileName);
4633                 pdbfn = url.getFile();
4634               }
4635               if (pdbfn.length() > 0)
4636               {
4637                 // attempt to find a match in the alignment
4638                 SequenceI[] mtch = idm.findAllIdMatches(pdbfn);
4639                 int l = 0, c = pdbfn.indexOf(".");
4640                 while (mtch == null && c != -1)
4641                 {
4642                   do
4643                   {
4644                     l = c;
4645                   } while ((c = pdbfn.indexOf(".", l)) > l);
4646                   if (l > -1)
4647                   {
4648                     pdbfn = pdbfn.substring(0, l);
4649                   }
4650                   mtch = idm.findAllIdMatches(pdbfn);
4651                 }
4652                 if (mtch != null)
4653                 {
4654                   FileFormatI type;
4655                   try
4656                   {
4657                     type = new IdentifyFile().identify(file, protocol);
4658                   } catch (Exception ex)
4659                   {
4660                     type = null;
4661                   }
4662                   if (type != null && type.isStructureFile())
4663                   {
4664                     filesmatched.add(new Object[] { file, protocol, mtch });
4665                     continue;
4666                   }
4667                 }
4668                 // File wasn't named like one of the sequences or wasn't a PDB
4669                 // file.
4670                 filesnotmatched.add(file);
4671               }
4672             }
4673             int assocfiles = 0;
4674             if (filesmatched.size() > 0)
4675             {
4676               boolean autoAssociate = Cache
4677                       .getDefault("AUTOASSOCIATE_PDBANDSEQS", false);
4678               if (!autoAssociate)
4679               {
4680                 String msg = MessageManager.formatMessage(
4681                         "label.automatically_associate_structure_files_with_sequences_same_name",
4682                         new Object[]
4683                         { Integer.valueOf(filesmatched.size())
4684                                 .toString() });
4685                 String ttl = MessageManager.getString(
4686                         "label.automatically_associate_structure_files_by_name");
4687                 int choice = JvOptionPane.showConfirmDialog(thisaf, msg,
4688                         ttl, JvOptionPane.YES_NO_OPTION);
4689                 autoAssociate = choice == JvOptionPane.YES_OPTION;
4690               }
4691               if (autoAssociate)
4692               {
4693                 for (Object[] fm : filesmatched)
4694                 {
4695                   // try and associate
4696                   // TODO: may want to set a standard ID naming formalism for
4697                   // associating PDB files which have no IDs.
4698                   for (SequenceI toassoc : (SequenceI[]) fm[2])
4699                   {
4700                     PDBEntry pe = new AssociatePdbFileWithSeq()
4701                             .associatePdbWithSeq(fm[0].toString(),
4702                                     (DataSourceType) fm[1], toassoc, false,
4703                                     Desktop.instance);
4704                     if (pe != null)
4705                     {
4706                       System.err.println("Associated file : "
4707                               + (fm[0].toString()) + " with "
4708                               + toassoc.getDisplayId(true));
4709                       assocfiles++;
4710                     }
4711                   }
4712                   // TODO: do we need to update overview ? only if features are
4713                   // shown I guess
4714                   alignPanel.paintAlignment(true, false);
4715                 }
4716               }
4717               else
4718               {
4719                 /*
4720                  * add declined structures as sequences
4721                  */
4722                 for (Object[] o : filesmatched)
4723                 {
4724                   filesnotmatched.add(o[0]);
4725                 }
4726               }
4727             }
4728             if (filesnotmatched.size() > 0)
4729             {
4730               if (assocfiles > 0 && (Cache.getDefault(
4731                       "AUTOASSOCIATE_PDBANDSEQS_IGNOREOTHERS", false)
4732                       || JvOptionPane.showConfirmDialog(thisaf,
4733                               "<html>" + MessageManager.formatMessage(
4734                                       "label.ignore_unmatched_dropped_files_info",
4735                                       new Object[]
4736                                       { Integer.valueOf(
4737                                               filesnotmatched.size())
4738                                               .toString() })
4739                                       + "</html>",
4740                               MessageManager.getString(
4741                                       "label.ignore_unmatched_dropped_files"),
4742                               JvOptionPane.YES_NO_OPTION) == JvOptionPane.YES_OPTION))
4743               {
4744                 return;
4745               }
4746               for (Object fn : filesnotmatched)
4747               {
4748                 loadJalviewDataFile(fn, null, null, null);
4749               }
4750
4751             }
4752           } catch (Exception ex)
4753           {
4754             ex.printStackTrace();
4755           }
4756         }
4757       }).start();
4758     }
4759   }
4760
4761   /**
4762    * Attempt to load a "dropped" file or URL string, by testing in turn for
4763    * <ul>
4764    * <li>an Annotation file</li>
4765    * <li>a JNet file</li>
4766    * <li>a features file</li>
4767    * <li>else try to interpret as an alignment file</li>
4768    * </ul>
4769    * 
4770    * @param file
4771    *          either a filename or a URL string.
4772    */
4773   public void loadJalviewDataFile(Object file, DataSourceType sourceType,
4774           FileFormatI format, SequenceI assocSeq)
4775   {
4776     // BH 2018 was String file
4777     try
4778     {
4779       if (sourceType == null)
4780       {
4781         sourceType = FormatAdapter.checkProtocol(file);
4782       }
4783       // if the file isn't identified, or not positively identified as some
4784       // other filetype (PFAM is default unidentified alignment file type) then
4785       // try to parse as annotation.
4786       boolean isAnnotation = (format == null
4787               || FileFormat.Pfam.equals(format))
4788                       ? new AnnotationFile().annotateAlignmentView(viewport,
4789                               file, sourceType)
4790                       : false;
4791
4792       if (!isAnnotation)
4793       {
4794         // first see if its a T-COFFEE score file
4795         TCoffeeScoreFile tcf = null;
4796         try
4797         {
4798           tcf = new TCoffeeScoreFile(file, sourceType);
4799           if (tcf.isValid())
4800           {
4801             if (tcf.annotateAlignment(viewport.getAlignment(), true))
4802             {
4803               buildColourMenu();
4804               changeColour(
4805                       new TCoffeeColourScheme(viewport.getAlignment()));
4806               isAnnotation = true;
4807               setStatus(MessageManager.getString(
4808                       "label.successfully_pasted_tcoffee_scores_to_alignment"));
4809             }
4810             else
4811             {
4812               // some problem - if no warning its probable that the ID matching
4813               // process didn't work
4814               JvOptionPane.showMessageDialog(Desktop.desktop,
4815                       tcf.getWarningMessage() == null
4816                               ? MessageManager.getString(
4817                                       "label.check_file_matches_sequence_ids_alignment")
4818                               : tcf.getWarningMessage(),
4819                       MessageManager.getString(
4820                               "label.problem_reading_tcoffee_score_file"),
4821                       JvOptionPane.WARNING_MESSAGE);
4822             }
4823           }
4824           else
4825           {
4826             tcf = null;
4827           }
4828         } catch (Exception x)
4829         {
4830           Cache.log.debug(
4831                   "Exception when processing data source as T-COFFEE score file",
4832                   x);
4833           tcf = null;
4834         }
4835         if (tcf == null)
4836         {
4837           // try to see if its a JNet 'concise' style annotation file *before*
4838           // we
4839           // try to parse it as a features file
4840           if (format == null)
4841           {
4842             format = new IdentifyFile().identify(file, sourceType);
4843           }
4844           if (FileFormat.ScoreMatrix == format)
4845           {
4846             ScoreMatrixFile sm = new ScoreMatrixFile(
4847                     new FileParse(file, sourceType));
4848             sm.parse();
4849             // todo: i18n this message
4850             setStatus(MessageManager.formatMessage(
4851                     "label.successfully_loaded_matrix",
4852                     sm.getMatrixName()));
4853           }
4854           else if (FileFormat.Jnet.equals(format))
4855           {
4856             JPredFile predictions = new JPredFile(file, sourceType);
4857             new JnetAnnotationMaker();
4858             JnetAnnotationMaker.add_annotation(predictions,
4859                     viewport.getAlignment(), 0, false);
4860             viewport.getAlignment().setupJPredAlignment();
4861             isAnnotation = true;
4862           }
4863           // else if (IdentifyFile.FeaturesFile.equals(format))
4864           else if (FileFormat.Features.equals(format))
4865           {
4866             if (parseFeaturesFile(file, sourceType))
4867             {
4868               SplitFrame splitFrame = (SplitFrame) getSplitViewContainer();
4869               if (splitFrame != null)
4870               {
4871                 splitFrame.repaint();
4872               }
4873               else
4874               {
4875                 alignPanel.paintAlignment(true, true);
4876               }
4877             }
4878           }
4879           else
4880           {
4881             new FileLoader().LoadFile(viewport, file, sourceType, format);
4882           }
4883         }
4884       }
4885       if (isAnnotation)
4886       {
4887
4888         alignPanel.adjustAnnotationHeight();
4889         viewport.updateSequenceIdColours();
4890         buildSortByAnnotationScoresMenu();
4891         alignPanel.paintAlignment(true, true);
4892       }
4893     } catch (Exception ex)
4894     {
4895       ex.printStackTrace();
4896     } catch (OutOfMemoryError oom)
4897     {
4898       try
4899       {
4900         System.gc();
4901       } catch (Exception x)
4902       {
4903       }
4904       new OOMWarning(
4905               "loading data "
4906                       + (sourceType != null
4907                               ? (sourceType == DataSourceType.PASTE
4908                                       ? "from clipboard."
4909                                       : "using " + sourceType + " from "
4910                                               + file)
4911                               : ".")
4912                       + (format != null
4913                               ? "(parsing as '" + format + "' file)"
4914                               : ""),
4915               oom, Desktop.desktop);
4916     }
4917   }
4918
4919   /**
4920    * Method invoked by the ChangeListener on the tabbed pane, in other words
4921    * when a different tabbed pane is selected by the user or programmatically.
4922    */
4923   @Override
4924   public void tabSelectionChanged(int index)
4925   {
4926     if (index > -1)
4927     {
4928       alignPanel = alignPanels.get(index);
4929       viewport = alignPanel.av;
4930       avc.setViewportAndAlignmentPanel(viewport, alignPanel);
4931       setMenusFromViewport(viewport);
4932       if (featureSettings != null && featureSettings.isOpen()
4933               && featureSettings.fr.getViewport() != viewport)
4934       {
4935         if (viewport.isShowSequenceFeatures())
4936         {
4937           // refresh the featureSettings to reflect UI change
4938           showFeatureSettingsUI();
4939         }
4940         else
4941         {
4942           // close feature settings for this view.
4943           featureSettings.close();
4944         }
4945       }
4946
4947     }
4948
4949     /*
4950      * 'focus' any colour slider that is open to the selected viewport
4951      */
4952     if (viewport.getConservationSelected())
4953     {
4954       SliderPanel.setConservationSlider(alignPanel,
4955               viewport.getResidueShading(), alignPanel.getViewName());
4956     }
4957     else
4958     {
4959       SliderPanel.hideConservationSlider();
4960     }
4961     if (viewport.getAbovePIDThreshold())
4962     {
4963       SliderPanel.setPIDSliderSource(alignPanel,
4964               viewport.getResidueShading(), alignPanel.getViewName());
4965     }
4966     else
4967     {
4968       SliderPanel.hidePIDSlider();
4969     }
4970
4971     /*
4972      * If there is a frame linked to this one in a SplitPane, switch it to the
4973      * same view tab index. No infinite recursion of calls should happen, since
4974      * tabSelectionChanged() should not get invoked on setting the selected
4975      * index to an unchanged value. Guard against setting an invalid index
4976      * before the new view peer tab has been created.
4977      */
4978     final AlignViewportI peer = viewport.getCodingComplement();
4979     if (peer != null)
4980     {
4981       AlignFrame linkedAlignFrame = ((AlignViewport) peer)
4982               .getAlignPanel().alignFrame;
4983       if (linkedAlignFrame.tabbedPane.getTabCount() > index)
4984       {
4985         linkedAlignFrame.tabbedPane.setSelectedIndex(index);
4986       }
4987     }
4988   }
4989
4990   /**
4991    * On right mouse click on view tab, prompt for and set new view name.
4992    */
4993   @Override
4994   public void tabbedPane_mousePressed(MouseEvent e)
4995   {
4996     if (e.isPopupTrigger())
4997     {
4998       String msg = MessageManager.getString("label.enter_view_name");
4999       String ttl = tabbedPane.getTitleAt(tabbedPane.getSelectedIndex());
5000       String reply = JvOptionPane.showInputDialog(msg, ttl);
5001
5002       if (reply != null)
5003       {
5004         viewport.setViewName(reply);
5005         // TODO warn if reply is in getExistingViewNames()?
5006         tabbedPane.setTitleAt(tabbedPane.getSelectedIndex(), reply);
5007       }
5008     }
5009   }
5010
5011   public AlignViewport getCurrentView()
5012   {
5013     return viewport;
5014   }
5015
5016   /**
5017    * Open the dialog for regex description parsing.
5018    */
5019   @Override
5020   protected void extractScores_actionPerformed(ActionEvent e)
5021   {
5022     ParseProperties pp = new jalview.analysis.ParseProperties(
5023             viewport.getAlignment());
5024     // TODO: verify regex and introduce GUI dialog for version 2.5
5025     // if (pp.getScoresFromDescription("col", "score column ",
5026     // "\\W*([-+]?\\d*\\.?\\d*e?-?\\d*)\\W+([-+]?\\d*\\.?\\d*e?-?\\d*)",
5027     // true)>0)
5028     if (pp.getScoresFromDescription("description column",
5029             "score in description column ", "\\W*([-+eE0-9.]+)", true) > 0)
5030     {
5031       buildSortByAnnotationScoresMenu();
5032     }
5033   }
5034
5035   /*
5036    * (non-Javadoc)
5037    * 
5038    * @see
5039    * jalview.jbgui.GAlignFrame#showDbRefs_actionPerformed(java.awt.event.ActionEvent
5040    * )
5041    */
5042   @Override
5043   protected void showDbRefs_actionPerformed(ActionEvent e)
5044   {
5045     viewport.setShowDBRefs(showDbRefsMenuitem.isSelected());
5046   }
5047
5048   /*
5049    * (non-Javadoc)
5050    * 
5051    * @seejalview.jbgui.GAlignFrame#showNpFeats_actionPerformed(java.awt.event.
5052    * ActionEvent)
5053    */
5054   @Override
5055   protected void showNpFeats_actionPerformed(ActionEvent e)
5056   {
5057     viewport.setShowNPFeats(showNpFeatsMenuitem.isSelected());
5058   }
5059
5060   /**
5061    * find the viewport amongst the tabs in this alignment frame and close that
5062    * tab
5063    * 
5064    * @param av
5065    */
5066   public boolean closeView(AlignViewportI av)
5067   {
5068     if (viewport == av)
5069     {
5070       this.closeMenuItem_actionPerformed(false);
5071       return true;
5072     }
5073     Component[] comp = tabbedPane.getComponents();
5074     for (int i = 0; comp != null && i < comp.length; i++)
5075     {
5076       if (comp[i] instanceof AlignmentPanel)
5077       {
5078         if (((AlignmentPanel) comp[i]).av == av)
5079         {
5080           // close the view.
5081           closeView((AlignmentPanel) comp[i]);
5082           return true;
5083         }
5084       }
5085     }
5086     return false;
5087   }
5088
5089   protected void build_fetchdbmenu(JMenu webService)
5090   {
5091     // Temporary hack - DBRef Fetcher always top level ws entry.
5092     // TODO We probably want to store a sequence database checklist in
5093     // preferences and have checkboxes.. rather than individual sources selected
5094     // here
5095     final JMenu rfetch = new JMenu(
5096             MessageManager.getString("action.fetch_db_references"));
5097     rfetch.setToolTipText(MessageManager.getString(
5098             "label.retrieve_parse_sequence_database_records_alignment_or_selected_sequences"));
5099     webService.add(rfetch);
5100
5101     final JCheckBoxMenuItem trimrs = new JCheckBoxMenuItem(
5102             MessageManager.getString("option.trim_retrieved_seqs"));
5103     trimrs.setToolTipText(
5104             MessageManager.getString("label.trim_retrieved_sequences"));
5105     trimrs.setSelected(
5106             Cache.getDefault(DBRefFetcher.TRIM_RETRIEVED_SEQUENCES, true));
5107     trimrs.addActionListener(new ActionListener()
5108     {
5109       @Override
5110       public void actionPerformed(ActionEvent e)
5111       {
5112         trimrs.setSelected(trimrs.isSelected());
5113         Cache.setProperty(DBRefFetcher.TRIM_RETRIEVED_SEQUENCES,
5114                 Boolean.valueOf(trimrs.isSelected()).toString());
5115       }
5116     });
5117     rfetch.add(trimrs);
5118     JMenuItem fetchr = new JMenuItem(
5119             MessageManager.getString("label.standard_databases"));
5120     fetchr.setToolTipText(
5121             MessageManager.getString("label.fetch_embl_uniprot"));
5122     fetchr.addActionListener(new ActionListener()
5123     {
5124
5125       @Override
5126       public void actionPerformed(ActionEvent e)
5127       {
5128         new Thread(new Runnable()
5129         {
5130           @Override
5131           public void run()
5132           {
5133             boolean isNucleotide = alignPanel.alignFrame.getViewport()
5134                     .getAlignment().isNucleotide();
5135             DBRefFetcher dbRefFetcher = new DBRefFetcher(
5136                     alignPanel.av.getSequenceSelection(),
5137                     alignPanel.alignFrame, null,
5138                     alignPanel.alignFrame.featureSettings, isNucleotide);
5139             dbRefFetcher.addListener(new FetchFinishedListenerI()
5140             {
5141               @Override
5142               public void finished()
5143               {
5144
5145                 for (FeatureSettingsModelI srcSettings : dbRefFetcher
5146                         .getFeatureSettingsModels())
5147                 {
5148
5149                   alignPanel.av.mergeFeaturesStyle(srcSettings);
5150                 }
5151                 AlignFrame.this.setMenusForViewport();
5152               }
5153             });
5154             dbRefFetcher.fetchDBRefs(false);
5155           }
5156         }).start();
5157
5158       }
5159
5160     });
5161     rfetch.add(fetchr);
5162     new Thread(new Runnable()
5163     {
5164       @Override
5165       public void run()
5166       {
5167         final jalview.ws.SequenceFetcher sf = jalview.gui.SequenceFetcher
5168                 .getSequenceFetcherSingleton();
5169         javax.swing.SwingUtilities.invokeLater(new Runnable()
5170         {
5171           @Override
5172           public void run()
5173           {
5174             String[] dbclasses = sf.getNonAlignmentSources();
5175             List<DbSourceProxy> otherdb;
5176             JMenu dfetch = new JMenu();
5177             JMenu ifetch = new JMenu();
5178             JMenuItem fetchr = null;
5179             int comp = 0, icomp = 0, mcomp = 15;
5180             String mname = null;
5181             int dbi = 0;
5182             for (String dbclass : dbclasses)
5183             {
5184               otherdb = sf.getSourceProxy(dbclass);
5185               // add a single entry for this class, or submenu allowing 'fetch
5186               // all' or pick one
5187               if (otherdb == null || otherdb.size() < 1)
5188               {
5189                 continue;
5190               }
5191               if (mname == null)
5192               {
5193                 mname = "From " + dbclass;
5194               }
5195               if (otherdb.size() == 1)
5196               {
5197                 final DbSourceProxy[] dassource = otherdb
5198                         .toArray(new DbSourceProxy[0]);
5199                 DbSourceProxy src = otherdb.get(0);
5200                 fetchr = new JMenuItem(src.getDbSource());
5201                 fetchr.addActionListener(new ActionListener()
5202                 {
5203
5204                   @Override
5205                   public void actionPerformed(ActionEvent e)
5206                   {
5207                     new Thread(new Runnable()
5208                     {
5209
5210                       @Override
5211                       public void run()
5212                       {
5213                         boolean isNucleotide = alignPanel.alignFrame
5214                                 .getViewport().getAlignment()
5215                                 .isNucleotide();
5216                         DBRefFetcher dbRefFetcher = new DBRefFetcher(
5217                                 alignPanel.av.getSequenceSelection(),
5218                                 alignPanel.alignFrame, dassource,
5219                                 alignPanel.alignFrame.featureSettings,
5220                                 isNucleotide);
5221                         dbRefFetcher
5222                                 .addListener(new FetchFinishedListenerI()
5223                                 {
5224                                   @Override
5225                                   public void finished()
5226                                   {
5227                                     FeatureSettingsModelI srcSettings = dassource[0]
5228                                             .getFeatureColourScheme();
5229                                     alignPanel.av.mergeFeaturesStyle(
5230                                             srcSettings);
5231                                     AlignFrame.this.setMenusForViewport();
5232                                   }
5233                                 });
5234                         dbRefFetcher.fetchDBRefs(false);
5235                       }
5236                     }).start();
5237                   }
5238
5239                 });
5240                 fetchr.setToolTipText(JvSwingUtils.wrapTooltip(true,
5241                         MessageManager.formatMessage(
5242                                 "label.fetch_retrieve_from", new Object[]
5243                                 { src.getDbName() })));
5244                 dfetch.add(fetchr);
5245                 comp++;
5246               }
5247               else
5248               {
5249                 final DbSourceProxy[] dassource = otherdb
5250                         .toArray(new DbSourceProxy[0]);
5251                 // fetch all entry
5252                 DbSourceProxy src = otherdb.get(0);
5253                 fetchr = new JMenuItem(MessageManager
5254                         .formatMessage("label.fetch_all_param", new Object[]
5255                         { src.getDbSource() }));
5256                 fetchr.addActionListener(new ActionListener()
5257                 {
5258                   @Override
5259                   public void actionPerformed(ActionEvent e)
5260                   {
5261                     new Thread(new Runnable()
5262                     {
5263
5264                       @Override
5265                       public void run()
5266                       {
5267                         boolean isNucleotide = alignPanel.alignFrame
5268                                 .getViewport().getAlignment()
5269                                 .isNucleotide();
5270                         DBRefFetcher dbRefFetcher = new DBRefFetcher(
5271                                 alignPanel.av.getSequenceSelection(),
5272                                 alignPanel.alignFrame, dassource,
5273                                 alignPanel.alignFrame.featureSettings,
5274                                 isNucleotide);
5275                         dbRefFetcher
5276                                 .addListener(new FetchFinishedListenerI()
5277                                 {
5278                                   @Override
5279                                   public void finished()
5280                                   {
5281                                     AlignFrame.this.setMenusForViewport();
5282                                   }
5283                                 });
5284                         dbRefFetcher.fetchDBRefs(false);
5285                       }
5286                     }).start();
5287                   }
5288                 });
5289
5290                 fetchr.setToolTipText(JvSwingUtils.wrapTooltip(true,
5291                         MessageManager.formatMessage(
5292                                 "label.fetch_retrieve_from_all_sources",
5293                                 new Object[]
5294                                 { Integer.valueOf(otherdb.size())
5295                                         .toString(),
5296                                     src.getDbSource(), src.getDbName() })));
5297                 dfetch.add(fetchr);
5298                 comp++;
5299                 // and then build the rest of the individual menus
5300                 ifetch = new JMenu(MessageManager.formatMessage(
5301                         "label.source_from_db_source", new Object[]
5302                         { src.getDbSource() }));
5303                 icomp = 0;
5304                 String imname = null;
5305                 int i = 0;
5306                 for (DbSourceProxy sproxy : otherdb)
5307                 {
5308                   String dbname = sproxy.getDbName();
5309                   String sname = dbname.length() > 5
5310                           ? dbname.substring(0, 5) + "..."
5311                           : dbname;
5312                   String msname = dbname.length() > 10
5313                           ? dbname.substring(0, 10) + "..."
5314                           : dbname;
5315                   if (imname == null)
5316                   {
5317                     imname = MessageManager
5318                             .formatMessage("label.from_msname", new Object[]
5319                             { sname });
5320                   }
5321                   fetchr = new JMenuItem(msname);
5322                   final DbSourceProxy[] dassrc = { sproxy };
5323                   fetchr.addActionListener(new ActionListener()
5324                   {
5325
5326                     @Override
5327                     public void actionPerformed(ActionEvent e)
5328                     {
5329                       new Thread(new Runnable()
5330                       {
5331
5332                         @Override
5333                         public void run()
5334                         {
5335                           boolean isNucleotide = alignPanel.alignFrame
5336                                   .getViewport().getAlignment()
5337                                   .isNucleotide();
5338                           DBRefFetcher dbRefFetcher = new DBRefFetcher(
5339                                   alignPanel.av.getSequenceSelection(),
5340                                   alignPanel.alignFrame, dassrc,
5341                                   alignPanel.alignFrame.featureSettings,
5342                                   isNucleotide);
5343                           dbRefFetcher
5344                                   .addListener(new FetchFinishedListenerI()
5345                                   {
5346                                     @Override
5347                                     public void finished()
5348                                     {
5349                                       AlignFrame.this.setMenusForViewport();
5350                                     }
5351                                   });
5352                           dbRefFetcher.fetchDBRefs(false);
5353                         }
5354                       }).start();
5355                     }
5356
5357                   });
5358                   fetchr.setToolTipText(
5359                           "<html>" + MessageManager.formatMessage(
5360                                   "label.fetch_retrieve_from", new Object[]
5361                                   { dbname }));
5362                   ifetch.add(fetchr);
5363                   ++i;
5364                   if (++icomp >= mcomp || i == (otherdb.size()))
5365                   {
5366                     ifetch.setText(MessageManager.formatMessage(
5367                             "label.source_to_target", imname, sname));
5368                     dfetch.add(ifetch);
5369                     ifetch = new JMenu();
5370                     imname = null;
5371                     icomp = 0;
5372                     comp++;
5373                   }
5374                 }
5375               }
5376               ++dbi;
5377               if (comp >= mcomp || dbi >= (dbclasses.length))
5378               {
5379                 dfetch.setText(MessageManager.formatMessage(
5380                         "label.source_to_target", mname, dbclass));
5381                 rfetch.add(dfetch);
5382                 dfetch = new JMenu();
5383                 mname = null;
5384                 comp = 0;
5385               }
5386             }
5387           }
5388         });
5389       }
5390     }).start();
5391
5392   }
5393
5394   /**
5395    * Left justify the whole alignment.
5396    */
5397   @Override
5398   protected void justifyLeftMenuItem_actionPerformed(ActionEvent e)
5399   {
5400     AlignmentI al = viewport.getAlignment();
5401     al.justify(false);
5402     viewport.firePropertyChange("alignment", null, al);
5403   }
5404
5405   /**
5406    * Right justify the whole alignment.
5407    */
5408   @Override
5409   protected void justifyRightMenuItem_actionPerformed(ActionEvent e)
5410   {
5411     AlignmentI al = viewport.getAlignment();
5412     al.justify(true);
5413     viewport.firePropertyChange("alignment", null, al);
5414   }
5415
5416   @Override
5417   public void setShowSeqFeatures(boolean b)
5418   {
5419     showSeqFeatures.setSelected(b);
5420     viewport.setShowSequenceFeatures(b);
5421   }
5422
5423   /*
5424    * (non-Javadoc)
5425    * 
5426    * @see
5427    * jalview.jbgui.GAlignFrame#showUnconservedMenuItem_actionPerformed(java.
5428    * awt.event.ActionEvent)
5429    */
5430   @Override
5431   protected void showUnconservedMenuItem_actionPerformed(ActionEvent e)
5432   {
5433     viewport.setShowUnconserved(showNonconservedMenuItem.getState());
5434     alignPanel.paintAlignment(false, false);
5435   }
5436
5437   /*
5438    * (non-Javadoc)
5439    * 
5440    * @see
5441    * jalview.jbgui.GAlignFrame#showGroupConsensus_actionPerformed(java.awt.event
5442    * .ActionEvent)
5443    */
5444   @Override
5445   protected void showGroupConsensus_actionPerformed(ActionEvent e)
5446   {
5447     viewport.setShowGroupConsensus(showGroupConsensus.getState());
5448     alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5449
5450   }
5451
5452   /*
5453    * (non-Javadoc)
5454    * 
5455    * @see
5456    * jalview.jbgui.GAlignFrame#showGroupConservation_actionPerformed(java.awt
5457    * .event.ActionEvent)
5458    */
5459   @Override
5460   protected void showGroupConservation_actionPerformed(ActionEvent e)
5461   {
5462     viewport.setShowGroupConservation(showGroupConservation.getState());
5463     alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5464   }
5465
5466   /*
5467    * (non-Javadoc)
5468    * 
5469    * @see
5470    * jalview.jbgui.GAlignFrame#showConsensusHistogram_actionPerformed(java.awt
5471    * .event.ActionEvent)
5472    */
5473   @Override
5474   protected void showConsensusHistogram_actionPerformed(ActionEvent e)
5475   {
5476     viewport.setShowConsensusHistogram(showConsensusHistogram.getState());
5477     alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5478   }
5479
5480   /*
5481    * (non-Javadoc)
5482    * 
5483    * @see
5484    * jalview.jbgui.GAlignFrame#showConsensusProfile_actionPerformed(java.awt
5485    * .event.ActionEvent)
5486    */
5487   @Override
5488   protected void showSequenceLogo_actionPerformed(ActionEvent e)
5489   {
5490     viewport.setShowSequenceLogo(showSequenceLogo.getState());
5491     alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5492   }
5493
5494   @Override
5495   protected void normaliseSequenceLogo_actionPerformed(ActionEvent e)
5496   {
5497     showSequenceLogo.setState(true);
5498     viewport.setShowSequenceLogo(true);
5499     viewport.setNormaliseSequenceLogo(normaliseSequenceLogo.getState());
5500     alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5501   }
5502
5503   @Override
5504   protected void applyAutoAnnotationSettings_actionPerformed(ActionEvent e)
5505   {
5506     alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5507   }
5508
5509   /*
5510    * (non-Javadoc)
5511    * 
5512    * @see
5513    * jalview.jbgui.GAlignFrame#makeGrpsFromSelection_actionPerformed(java.awt
5514    * .event.ActionEvent)
5515    */
5516   @Override
5517   protected void makeGrpsFromSelection_actionPerformed(ActionEvent e)
5518   {
5519     if (avc.makeGroupsFromSelection())
5520     {
5521       PaintRefresher.Refresh(this, viewport.getSequenceSetId());
5522       alignPanel.updateAnnotation();
5523       alignPanel.paintAlignment(true,
5524               viewport.needToUpdateStructureViews());
5525     }
5526   }
5527
5528   public void clearAlignmentSeqRep()
5529   {
5530     // TODO refactor alignmentseqrep to controller
5531     if (viewport.getAlignment().hasSeqrep())
5532     {
5533       viewport.getAlignment().setSeqrep(null);
5534       PaintRefresher.Refresh(this, viewport.getSequenceSetId());
5535       alignPanel.updateAnnotation();
5536       alignPanel.paintAlignment(true, true);
5537     }
5538   }
5539
5540   @Override
5541   protected void createGroup_actionPerformed(ActionEvent e)
5542   {
5543     if (avc.createGroup())
5544     {
5545       if (applyAutoAnnotationSettings.isSelected())
5546       {
5547         alignPanel.updateAnnotation(true, false);
5548       }
5549       alignPanel.alignmentChanged();
5550     }
5551   }
5552
5553   @Override
5554   protected void unGroup_actionPerformed(ActionEvent e)
5555   {
5556     if (avc.unGroup())
5557     {
5558       alignPanel.alignmentChanged();
5559     }
5560   }
5561
5562   /**
5563    * make the given alignmentPanel the currently selected tab
5564    * 
5565    * @param alignmentPanel
5566    */
5567   public void setDisplayedView(AlignmentPanel alignmentPanel)
5568   {
5569     if (!viewport.getSequenceSetId()
5570             .equals(alignmentPanel.av.getSequenceSetId()))
5571     {
5572       throw new Error(MessageManager.getString(
5573               "error.implementation_error_cannot_show_view_alignment_frame"));
5574     }
5575     if (tabbedPane != null && tabbedPane.getTabCount() > 0 && alignPanels
5576             .indexOf(alignmentPanel) != tabbedPane.getSelectedIndex())
5577     {
5578       tabbedPane.setSelectedIndex(alignPanels.indexOf(alignmentPanel));
5579     }
5580   }
5581
5582   /**
5583    * Action on selection of menu options to Show or Hide annotations.
5584    * 
5585    * @param visible
5586    * @param forSequences
5587    *          update sequence-related annotations
5588    * @param forAlignment
5589    *          update non-sequence-related annotations
5590    */
5591   @Override
5592   protected void setAnnotationsVisibility(boolean visible,
5593           boolean forSequences, boolean forAlignment)
5594   {
5595     AlignmentAnnotation[] anns = alignPanel.getAlignment()
5596             .getAlignmentAnnotation();
5597     if (anns == null)
5598     {
5599       return;
5600     }
5601     for (AlignmentAnnotation aa : anns)
5602     {
5603       /*
5604        * don't display non-positional annotations on an alignment
5605        */
5606       if (aa.annotations == null)
5607       {
5608         continue;
5609       }
5610       boolean apply = (aa.sequenceRef == null && forAlignment)
5611               || (aa.sequenceRef != null && forSequences);
5612       if (apply)
5613       {
5614         aa.visible = visible;
5615       }
5616     }
5617     alignPanel.validateAnnotationDimensions(true);
5618     alignPanel.alignmentChanged();
5619   }
5620
5621   /**
5622    * Store selected annotation sort order for the view and repaint.
5623    */
5624   @Override
5625   protected void sortAnnotations_actionPerformed()
5626   {
5627     this.alignPanel.av.setSortAnnotationsBy(getAnnotationSortOrder());
5628     this.alignPanel.av
5629             .setShowAutocalculatedAbove(isShowAutoCalculatedAbove());
5630     alignPanel.paintAlignment(false, false);
5631   }
5632
5633   /**
5634    * 
5635    * @return alignment panels in this alignment frame
5636    */
5637   public List<? extends AlignmentViewPanel> getAlignPanels()
5638   {
5639     // alignPanels is never null
5640     // return alignPanels == null ? Arrays.asList(alignPanel) : alignPanels;
5641     return alignPanels;
5642   }
5643
5644   /**
5645    * Open a new alignment window, with the cDNA associated with this (protein)
5646    * alignment, aligned as is the protein.
5647    */
5648   protected void viewAsCdna_actionPerformed()
5649   {
5650     // TODO no longer a menu action - refactor as required
5651     final AlignmentI alignment = getViewport().getAlignment();
5652     List<AlignedCodonFrame> mappings = alignment.getCodonFrames();
5653     if (mappings == null)
5654     {
5655       return;
5656     }
5657     List<SequenceI> cdnaSeqs = new ArrayList<>();
5658     for (SequenceI aaSeq : alignment.getSequences())
5659     {
5660       for (AlignedCodonFrame acf : mappings)
5661       {
5662         SequenceI dnaSeq = acf.getDnaForAaSeq(aaSeq.getDatasetSequence());
5663         if (dnaSeq != null)
5664         {
5665           /*
5666            * There is a cDNA mapping for this protein sequence - add to new
5667            * alignment. It will share the same dataset sequence as other mapped
5668            * cDNA (no new mappings need to be created).
5669            */
5670           final Sequence newSeq = new Sequence(dnaSeq);
5671           newSeq.setDatasetSequence(dnaSeq);
5672           cdnaSeqs.add(newSeq);
5673         }
5674       }
5675     }
5676     if (cdnaSeqs.size() == 0)
5677     {
5678       // show a warning dialog no mapped cDNA
5679       return;
5680     }
5681     AlignmentI cdna = new Alignment(
5682             cdnaSeqs.toArray(new SequenceI[cdnaSeqs.size()]));
5683     GAlignFrame alignFrame = new AlignFrame(cdna, AlignFrame.DEFAULT_WIDTH,
5684             AlignFrame.DEFAULT_HEIGHT);
5685     cdna.alignAs(alignment);
5686     String newtitle = "cDNA " + MessageManager.getString("label.for") + " "
5687             + this.title;
5688     Desktop.addInternalFrame(alignFrame, newtitle, AlignFrame.DEFAULT_WIDTH,
5689             AlignFrame.DEFAULT_HEIGHT);
5690   }
5691
5692   /**
5693    * Set visibility of dna/protein complement view (available when shown in a
5694    * split frame).
5695    * 
5696    * @param show
5697    */
5698   @Override
5699   protected void showComplement_actionPerformed(boolean show)
5700   {
5701     SplitContainerI sf = getSplitViewContainer();
5702     if (sf != null)
5703     {
5704       sf.setComplementVisible(this, show);
5705     }
5706   }
5707
5708   /**
5709    * Generate the reverse (optionally complemented) of the selected sequences,
5710    * and add them to the alignment
5711    */
5712   @Override
5713   protected void showReverse_actionPerformed(boolean complement)
5714   {
5715     AlignmentI al = null;
5716     try
5717     {
5718       Dna dna = new Dna(viewport, viewport.getViewAsVisibleContigs(true));
5719       al = dna.reverseCdna(complement);
5720       viewport.addAlignment(al, "");
5721       addHistoryItem(new EditCommand(
5722               MessageManager.getString("label.add_sequences"), Action.PASTE,
5723               al.getSequencesArray(), 0, al.getWidth(),
5724               viewport.getAlignment()));
5725     } catch (Exception ex)
5726     {
5727       System.err.println(ex.getMessage());
5728       return;
5729     }
5730   }
5731
5732   /**
5733    * Try to run a script in the Groovy console, having first ensured that this
5734    * AlignFrame is set as currentAlignFrame in Desktop, to allow the script to
5735    * be targeted at this alignment.
5736    */
5737   @Override
5738   protected void runGroovy_actionPerformed()
5739   {
5740     Jalview.setCurrentAlignFrame(this);
5741     groovy.ui.Console console = Desktop.getGroovyConsole();
5742     if (console != null)
5743     {
5744       try
5745       {
5746         console.runScript();
5747       } catch (Exception ex)
5748       {
5749         System.err.println((ex.toString()));
5750         JvOptionPane.showInternalMessageDialog(Desktop.desktop,
5751                 MessageManager.getString("label.couldnt_run_groovy_script"),
5752                 MessageManager.getString("label.groovy_support_failed"),
5753                 JvOptionPane.ERROR_MESSAGE);
5754       }
5755     }
5756     else
5757     {
5758       System.err.println("Can't run Groovy script as console not found");
5759     }
5760   }
5761
5762   /**
5763    * Hides columns containing (or not containing) a specified feature, provided
5764    * that would not leave all columns hidden
5765    * 
5766    * @param featureType
5767    * @param columnsContaining
5768    * @return
5769    */
5770   public boolean hideFeatureColumns(String featureType,
5771           boolean columnsContaining)
5772   {
5773     boolean notForHiding = avc.markColumnsContainingFeatures(
5774             columnsContaining, false, false, featureType);
5775     if (notForHiding)
5776     {
5777       if (avc.markColumnsContainingFeatures(!columnsContaining, false,
5778               false, featureType))
5779       {
5780         getViewport().hideSelectedColumns();
5781         return true;
5782       }
5783     }
5784     return false;
5785   }
5786
5787   @Override
5788   protected void selectHighlightedColumns_actionPerformed(
5789           ActionEvent actionEvent)
5790   {
5791     // include key modifier check in case user selects from menu
5792     avc.markHighlightedColumns(
5793             (actionEvent.getModifiers() & ActionEvent.ALT_MASK) != 0, true,
5794             (actionEvent.getModifiers() & (ActionEvent.META_MASK
5795                     | ActionEvent.CTRL_MASK)) != 0);
5796   }
5797
5798   /**
5799    * Rebuilds the Colour menu, including any user-defined colours which have
5800    * been loaded either on startup or during the session
5801    */
5802   public void buildColourMenu()
5803   {
5804     colourMenu.removeAll();
5805
5806     colourMenu.add(applyToAllGroups);
5807     colourMenu.add(textColour);
5808     colourMenu.addSeparator();
5809
5810     ButtonGroup bg = ColourMenuHelper.addMenuItems(colourMenu, this,
5811             viewport.getAlignment(), false);
5812
5813     colourMenu.add(annotationColour);
5814     bg.add(annotationColour);
5815     colourMenu.addSeparator();
5816     colourMenu.add(conservationMenuItem);
5817     colourMenu.add(modifyConservation);
5818     colourMenu.add(abovePIDThreshold);
5819     colourMenu.add(modifyPID);
5820
5821     ColourSchemeI colourScheme = viewport.getGlobalColourScheme();
5822     ColourMenuHelper.setColourSelected(colourMenu, colourScheme);
5823   }
5824
5825   /**
5826    * Open a dialog (if not already open) that allows the user to select and
5827    * calculate PCA or Tree analysis
5828    */
5829   protected void openTreePcaDialog()
5830   {
5831     if (alignPanel.getCalculationDialog() == null)
5832     {
5833       new CalculationChooser(AlignFrame.this);
5834     }
5835   }
5836
5837   @Override
5838   protected void loadVcf_actionPerformed()
5839   {
5840     JalviewFileChooser chooser = new JalviewFileChooser(
5841             Cache.getProperty("LAST_DIRECTORY"));
5842     chooser.setFileView(new JalviewFileView());
5843     chooser.setDialogTitle(MessageManager.getString("label.load_vcf_file"));
5844     chooser.setToolTipText(MessageManager.getString("label.load_vcf_file"));
5845     final AlignFrame us = this;
5846     chooser.setResponseHandler(0, new Runnable()
5847     {
5848       @Override
5849       public void run()
5850       {
5851         String choice = chooser.getSelectedFile().getPath();
5852         Cache.setProperty("LAST_DIRECTORY", choice);
5853         SequenceI[] seqs = viewport.getAlignment().getSequencesArray();
5854         new VCFLoader(choice).loadVCF(seqs, us);
5855       }
5856     });
5857     chooser.showOpenDialog(null);
5858
5859   }
5860
5861   private Rectangle lastFeatureSettingsBounds = null;
5862
5863   @Override
5864   public void setFeatureSettingsGeometry(Rectangle bounds)
5865   {
5866     lastFeatureSettingsBounds = bounds;
5867   }
5868
5869   @Override
5870   public Rectangle getFeatureSettingsGeometry()
5871   {
5872     return lastFeatureSettingsBounds;
5873   }
5874 }
5875
5876 class PrintThread extends Thread
5877 {
5878   AlignmentPanel ap;
5879
5880   public PrintThread(AlignmentPanel ap)
5881   {
5882     this.ap = ap;
5883   }
5884
5885   static PageFormat pf;
5886
5887   @Override
5888   public void run()
5889   {
5890     PrinterJob printJob = PrinterJob.getPrinterJob();
5891
5892     if (pf != null)
5893     {
5894       printJob.setPrintable(ap, pf);
5895     }
5896     else
5897     {
5898       printJob.setPrintable(ap);
5899     }
5900
5901     if (printJob.printDialog())
5902     {
5903       try
5904       {
5905         printJob.print();
5906       } catch (Exception PrintException)
5907       {
5908         PrintException.printStackTrace();
5909       }
5910     }
5911   }
5912 }