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