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