2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.analysis.AlignmentSorter;
24 import jalview.analysis.AlignmentUtils;
25 import jalview.analysis.CrossRef;
26 import jalview.analysis.Dna;
27 import jalview.analysis.ParseProperties;
28 import jalview.analysis.SequenceIdMatcher;
29 import jalview.api.AlignExportSettingI;
30 import jalview.api.AlignViewControllerGuiI;
31 import jalview.api.AlignViewControllerI;
32 import jalview.api.AlignViewportI;
33 import jalview.api.AlignmentViewPanel;
34 import jalview.api.FeatureSettingsControllerI;
35 import jalview.api.SplitContainerI;
36 import jalview.api.ViewStyleI;
37 import jalview.api.analysis.SimilarityParamsI;
38 import jalview.bin.Cache;
39 import jalview.bin.Jalview;
40 import jalview.commands.CommandI;
41 import jalview.commands.EditCommand;
42 import jalview.commands.EditCommand.Action;
43 import jalview.commands.OrderCommand;
44 import jalview.commands.RemoveGapColCommand;
45 import jalview.commands.RemoveGapsCommand;
46 import jalview.commands.SlideSequencesCommand;
47 import jalview.commands.TrimRegionCommand;
48 import jalview.datamodel.AlignedCodonFrame;
49 import jalview.datamodel.Alignment;
50 import jalview.datamodel.AlignmentAnnotation;
51 import jalview.datamodel.AlignmentExportData;
52 import jalview.datamodel.AlignmentI;
53 import jalview.datamodel.AlignmentOrder;
54 import jalview.datamodel.AlignmentView;
55 import jalview.datamodel.ColumnSelection;
56 import jalview.datamodel.HiddenColumns;
57 import jalview.datamodel.HiddenMarkovModel;
58 import jalview.datamodel.HiddenSequences;
59 import jalview.datamodel.PDBEntry;
60 import jalview.datamodel.SeqCigar;
61 import jalview.datamodel.Sequence;
62 import jalview.datamodel.SequenceGroup;
63 import jalview.datamodel.SequenceI;
64 import jalview.gui.ColourMenuHelper.ColourChangeListener;
65 import jalview.gui.ViewSelectionMenu.ViewSetProvider;
66 import jalview.hmmer.HMMAlignThread;
67 import jalview.hmmer.HMMBuildThread;
68 import jalview.hmmer.HMMERParamStore;
69 import jalview.hmmer.HMMERPreset;
70 import jalview.hmmer.HMMSearchThread;
71 import jalview.hmmer.HmmerCommand;
72 import jalview.io.AlignmentProperties;
73 import jalview.io.AnnotationFile;
74 import jalview.io.BioJsHTMLOutput;
75 import jalview.io.DataSourceType;
76 import jalview.io.FileFormat;
77 import jalview.io.FileFormatI;
78 import jalview.io.FileFormats;
79 import jalview.io.FileLoader;
80 import jalview.io.FileParse;
81 import jalview.io.FormatAdapter;
82 import jalview.io.HtmlSvgOutput;
83 import jalview.io.IdentifyFile;
84 import jalview.io.JPredFile;
85 import jalview.io.JalviewFileChooser;
86 import jalview.io.JalviewFileView;
87 import jalview.io.JnetAnnotationMaker;
88 import jalview.io.NewickFile;
89 import jalview.io.ScoreMatrixFile;
90 import jalview.io.TCoffeeScoreFile;
91 import jalview.io.vcf.VCFLoader;
92 import jalview.jbgui.GAlignFrame;
93 import jalview.schemes.ColourSchemeI;
94 import jalview.schemes.ColourSchemes;
95 import jalview.schemes.ResidueColourScheme;
96 import jalview.schemes.TCoffeeColourScheme;
97 import jalview.util.MessageManager;
98 import jalview.util.StringUtils;
99 import jalview.viewmodel.AlignmentViewport;
100 import jalview.viewmodel.ViewportRanges;
101 import jalview.ws.DBRefFetcher;
102 import jalview.ws.DBRefFetcher.FetchFinishedListenerI;
103 import jalview.ws.jws1.Discoverer;
104 import jalview.ws.jws2.Jws2Discoverer;
105 import jalview.ws.jws2.jabaws2.Jws2Instance;
106 import jalview.ws.params.ArgumentI;
107 import jalview.ws.params.ParamDatastoreI;
108 import jalview.ws.params.WsParamSetI;
109 import jalview.ws.seqfetcher.DbSourceProxy;
111 import java.awt.BorderLayout;
112 import java.awt.Component;
113 import java.awt.Rectangle;
114 import java.awt.Toolkit;
115 import java.awt.datatransfer.Clipboard;
116 import java.awt.datatransfer.DataFlavor;
117 import java.awt.datatransfer.StringSelection;
118 import java.awt.datatransfer.Transferable;
119 import java.awt.dnd.DnDConstants;
120 import java.awt.dnd.DropTargetDragEvent;
121 import java.awt.dnd.DropTargetDropEvent;
122 import java.awt.dnd.DropTargetEvent;
123 import java.awt.dnd.DropTargetListener;
124 import java.awt.event.ActionEvent;
125 import java.awt.event.ActionListener;
126 import java.awt.event.FocusAdapter;
127 import java.awt.event.FocusEvent;
128 import java.awt.event.ItemEvent;
129 import java.awt.event.ItemListener;
130 import java.awt.event.KeyAdapter;
131 import java.awt.event.KeyEvent;
132 import java.awt.event.MouseEvent;
133 import java.awt.print.PageFormat;
134 import java.awt.print.PrinterJob;
135 import java.beans.PropertyChangeEvent;
137 import java.io.FileWriter;
138 import java.io.IOException;
139 import java.io.PrintWriter;
141 import java.util.ArrayList;
142 import java.util.Arrays;
143 import java.util.Deque;
144 import java.util.Enumeration;
145 import java.util.HashMap;
146 import java.util.Hashtable;
147 import java.util.List;
148 import java.util.Map;
149 import java.util.Scanner;
150 import java.util.Vector;
152 import javax.swing.JCheckBoxMenuItem;
153 import javax.swing.JEditorPane;
154 import javax.swing.JFileChooser;
155 import javax.swing.JFrame;
156 import javax.swing.JInternalFrame;
157 import javax.swing.JLayeredPane;
158 import javax.swing.JMenu;
159 import javax.swing.JMenuItem;
160 import javax.swing.JOptionPane;
161 import javax.swing.JScrollPane;
162 import javax.swing.SwingUtilities;
168 * @version $Revision$
170 public class AlignFrame extends GAlignFrame implements DropTargetListener,
171 IProgressIndicator, AlignViewControllerGuiI, ColourChangeListener
174 Map<String, Float> distribution = new HashMap<>(); // temporary
176 public static final int DEFAULT_WIDTH = 700;
178 public static final int DEFAULT_HEIGHT = 500;
181 * The currently displayed panel (selected tabbed view if more than one)
183 public AlignmentPanel alignPanel;
185 AlignViewport viewport;
187 public AlignViewControllerI avc;
189 * The selected HMM for this align frame
191 SequenceI selectedHMMSequence;
193 List<AlignmentPanel> alignPanels = new ArrayList<>();
196 * Last format used to load or save alignments in this window
198 FileFormatI currentFileFormat = null;
201 * Current filename for this alignment
203 String fileName = null;
207 * Creates a new AlignFrame object with specific width and height.
213 public AlignFrame(AlignmentI al, int width, int height)
215 this(al, null, width, height);
219 * Creates a new AlignFrame object with specific width, height and
225 * @param sequenceSetId
227 public AlignFrame(AlignmentI al, int width, int height,
228 String sequenceSetId)
230 this(al, null, width, height, sequenceSetId);
234 * Creates a new AlignFrame object with specific width, height and
240 * @param sequenceSetId
243 public AlignFrame(AlignmentI al, int width, int height,
244 String sequenceSetId, String viewId)
246 this(al, null, width, height, sequenceSetId, viewId);
250 * new alignment window with hidden columns
254 * @param hiddenColumns
255 * ColumnSelection or null
257 * Width of alignment frame
261 public AlignFrame(AlignmentI al, HiddenColumns hiddenColumns, int width,
264 this(al, hiddenColumns, width, height, null);
268 * Create alignment frame for al with hiddenColumns, a specific width and
269 * height, and specific sequenceId
272 * @param hiddenColumns
275 * @param sequenceSetId
278 public AlignFrame(AlignmentI al, HiddenColumns hiddenColumns, int width,
279 int height, String sequenceSetId)
281 this(al, hiddenColumns, width, height, sequenceSetId, null);
285 * Create alignment frame for al with hiddenColumns, a specific width and
286 * height, and specific sequenceId
289 * @param hiddenColumns
292 * @param sequenceSetId
297 public AlignFrame(AlignmentI al, HiddenColumns hiddenColumns, int width,
298 int height, String sequenceSetId, String viewId)
300 setSize(width, height);
302 if (al.getDataset() == null)
307 viewport = new AlignViewport(al, hiddenColumns, sequenceSetId, viewId);
309 alignPanel = new AlignmentPanel(this, viewport);
311 addAlignmentPanel(alignPanel, true);
315 public AlignFrame(AlignmentI al, SequenceI[] hiddenSeqs,
316 HiddenColumns hiddenColumns, int width, int height)
318 setSize(width, height);
320 if (al.getDataset() == null)
325 viewport = new AlignViewport(al, hiddenColumns);
327 if (hiddenSeqs != null && hiddenSeqs.length > 0)
329 viewport.hideSequence(hiddenSeqs);
331 alignPanel = new AlignmentPanel(this, viewport);
332 addAlignmentPanel(alignPanel, true);
337 * Make a new AlignFrame from existing alignmentPanels
344 public AlignFrame(AlignmentPanel ap)
348 addAlignmentPanel(ap, false);
353 * initalise the alignframe from the underlying viewport data and the
358 if (!Jalview.isHeadlessMode())
360 progressBar = new ProgressBar(this.statusPanel, this.statusBar);
363 avc = new jalview.controller.AlignViewController(this, viewport,
365 if (viewport.getAlignmentConservationAnnotation() == null)
367 // BLOSUM62Colour.setEnabled(false);
368 conservationMenuItem.setEnabled(false);
369 modifyConservation.setEnabled(false);
370 // PIDColour.setEnabled(false);
371 // abovePIDThreshold.setEnabled(false);
372 // modifyPID.setEnabled(false);
375 String sortby = jalview.bin.Cache.getDefault("SORT_ALIGNMENT",
378 if (sortby.equals("Id"))
380 sortIDMenuItem_actionPerformed(null);
382 else if (sortby.equals("Pairwise Identity"))
384 sortPairwiseMenuItem_actionPerformed(null);
388 .setShowAutocalculatedAbove(isShowAutoCalculatedAbove());
390 setMenusFromViewport(viewport);
391 buildSortByAnnotationScoresMenu();
392 calculateTree.addActionListener(new ActionListener()
396 public void actionPerformed(ActionEvent e)
403 if (Desktop.desktop != null)
405 this.setDropTarget(new java.awt.dnd.DropTarget(this, this));
406 addServiceListeners();
410 if (viewport.getWrapAlignment())
412 wrapMenuItem_actionPerformed(null);
415 if (jalview.bin.Cache.getDefault("SHOW_OVERVIEW", false))
417 this.overviewMenuItem_actionPerformed(null);
422 final List<AlignmentPanel> selviews = new ArrayList<>();
423 final List<AlignmentPanel> origview = new ArrayList<>();
424 final String menuLabel = MessageManager
425 .getString("label.copy_format_from");
426 ViewSelectionMenu vsel = new ViewSelectionMenu(menuLabel,
427 new ViewSetProvider()
431 public AlignmentPanel[] getAllAlignmentPanels()
434 origview.add(alignPanel);
435 // make an array of all alignment panels except for this one
436 List<AlignmentPanel> aps = new ArrayList<>(
437 Arrays.asList(Desktop.getAlignmentPanels(null)));
438 aps.remove(AlignFrame.this.alignPanel);
439 return aps.toArray(new AlignmentPanel[aps.size()]);
441 }, selviews, new ItemListener()
445 public void itemStateChanged(ItemEvent e)
447 if (origview.size() > 0)
449 final AlignmentPanel ap = origview.get(0);
452 * Copy the ViewStyle of the selected panel to 'this one'.
453 * Don't change value of 'scaleProteinAsCdna' unless copying
456 ViewStyleI vs = selviews.get(0).getAlignViewport()
458 boolean fromSplitFrame = selviews.get(0)
459 .getAlignViewport().getCodingComplement() != null;
462 vs.setScaleProteinAsCdna(ap.getAlignViewport()
463 .getViewStyle().isScaleProteinAsCdna());
465 ap.getAlignViewport().setViewStyle(vs);
468 * Also rescale ViewStyle of SplitFrame complement if there is
469 * one _and_ it is set to 'scaledProteinAsCdna'; we don't copy
470 * the whole ViewStyle (allow cDNA protein to have different
473 AlignViewportI complement = ap.getAlignViewport()
474 .getCodingComplement();
475 if (complement != null && vs.isScaleProteinAsCdna())
477 AlignFrame af = Desktop.getAlignFrameFor(complement);
478 ((SplitFrame) af.getSplitViewContainer())
480 af.setMenusForViewport();
484 ap.setSelected(true);
485 ap.alignFrame.setMenusForViewport();
490 if (Cache.getDefault("VERSION", "DEVELOPMENT").toLowerCase()
491 .indexOf("devel") > -1
492 || Cache.getDefault("VERSION", "DEVELOPMENT").toLowerCase()
493 .indexOf("test") > -1)
495 formatMenu.add(vsel);
497 addFocusListener(new FocusAdapter()
500 public void focusGained(FocusEvent e)
502 Jalview.setCurrentAlignFrame(AlignFrame.this);
509 * Change the filename and format for the alignment, and enable the 'reload'
510 * button functionality.
517 public void setFileName(String file, FileFormatI format)
520 setFileFormat(format);
521 reload.setEnabled(true);
525 * Add a KeyListener with handlers for various KeyPressed and KeyReleased
528 void addKeyListener()
530 addKeyListener(new KeyAdapter()
533 public void keyPressed(KeyEvent evt)
535 if (viewport.cursorMode
536 && ((evt.getKeyCode() >= KeyEvent.VK_0
537 && evt.getKeyCode() <= KeyEvent.VK_9)
538 || (evt.getKeyCode() >= KeyEvent.VK_NUMPAD0
539 && evt.getKeyCode() <= KeyEvent.VK_NUMPAD9))
540 && Character.isDigit(evt.getKeyChar()))
542 alignPanel.getSeqPanel().numberPressed(evt.getKeyChar());
545 switch (evt.getKeyCode())
548 case 27: // escape key
549 deselectAllSequenceMenuItem_actionPerformed(null);
553 case KeyEvent.VK_DOWN:
554 if (evt.isAltDown() || !viewport.cursorMode)
556 moveSelectedSequences(false);
558 if (viewport.cursorMode)
560 alignPanel.getSeqPanel().moveCursor(0, 1);
565 if (evt.isAltDown() || !viewport.cursorMode)
567 moveSelectedSequences(true);
569 if (viewport.cursorMode)
571 alignPanel.getSeqPanel().moveCursor(0, -1);
576 case KeyEvent.VK_LEFT:
577 if (evt.isAltDown() || !viewport.cursorMode)
579 slideSequences(false,
580 alignPanel.getSeqPanel().getKeyboardNo1());
584 alignPanel.getSeqPanel().moveCursor(-1, 0);
589 case KeyEvent.VK_RIGHT:
590 if (evt.isAltDown() || !viewport.cursorMode)
592 slideSequences(true, alignPanel.getSeqPanel().getKeyboardNo1());
596 alignPanel.getSeqPanel().moveCursor(1, 0);
600 case KeyEvent.VK_SPACE:
601 if (viewport.cursorMode)
603 alignPanel.getSeqPanel().insertGapAtCursor(evt.isControlDown()
604 || evt.isShiftDown() || evt.isAltDown());
608 // case KeyEvent.VK_A:
609 // if (viewport.cursorMode)
611 // alignPanel.seqPanel.insertNucAtCursor(false,"A");
612 // //System.out.println("A");
616 * case KeyEvent.VK_CLOSE_BRACKET: if (viewport.cursorMode) {
617 * System.out.println("closing bracket"); } break;
619 case KeyEvent.VK_DELETE:
620 case KeyEvent.VK_BACK_SPACE:
621 if (!viewport.cursorMode)
623 cut_actionPerformed(null);
627 alignPanel.getSeqPanel().deleteGapAtCursor(evt.isControlDown()
628 || evt.isShiftDown() || evt.isAltDown());
634 if (viewport.cursorMode)
636 alignPanel.getSeqPanel().setCursorRow();
640 if (viewport.cursorMode && !evt.isControlDown())
642 alignPanel.getSeqPanel().setCursorColumn();
646 if (viewport.cursorMode)
648 alignPanel.getSeqPanel().setCursorPosition();
652 case KeyEvent.VK_ENTER:
653 case KeyEvent.VK_COMMA:
654 if (viewport.cursorMode)
656 alignPanel.getSeqPanel().setCursorRowAndColumn();
661 if (viewport.cursorMode)
663 alignPanel.getSeqPanel().setSelectionAreaAtCursor(true);
667 if (viewport.cursorMode)
669 alignPanel.getSeqPanel().setSelectionAreaAtCursor(false);
674 viewport.cursorMode = !viewport.cursorMode;
675 statusBar.setText(MessageManager
676 .formatMessage("label.keyboard_editing_mode", new String[]
677 { (viewport.cursorMode ? "on" : "off") }));
678 if (viewport.cursorMode)
680 ViewportRanges ranges = viewport.getRanges();
681 alignPanel.getSeqPanel().seqCanvas.cursorX = ranges
683 alignPanel.getSeqPanel().seqCanvas.cursorY = ranges
686 alignPanel.getSeqPanel().seqCanvas.repaint();
692 Help.showHelpWindow();
693 } catch (Exception ex)
695 ex.printStackTrace();
700 boolean toggleSeqs = !evt.isControlDown();
701 boolean toggleCols = !evt.isShiftDown();
702 toggleHiddenRegions(toggleSeqs, toggleCols);
707 boolean toggleSel = evt.isControlDown() || evt.isMetaDown();
708 boolean modifyExisting = true; // always modify, don't clear
709 // evt.isShiftDown();
710 boolean invertHighlighted = evt.isAltDown();
711 avc.markHighlightedColumns(invertHighlighted, modifyExisting,
715 case KeyEvent.VK_PAGE_UP:
716 viewport.getRanges().pageUp();
718 case KeyEvent.VK_PAGE_DOWN:
719 viewport.getRanges().pageDown();
725 public void keyReleased(KeyEvent evt)
727 switch (evt.getKeyCode())
729 case KeyEvent.VK_LEFT:
730 if (evt.isAltDown() || !viewport.cursorMode)
732 viewport.firePropertyChange("alignment", null,
733 viewport.getAlignment().getSequences());
737 case KeyEvent.VK_RIGHT:
738 if (evt.isAltDown() || !viewport.cursorMode)
740 viewport.firePropertyChange("alignment", null,
741 viewport.getAlignment().getSequences());
749 public void addAlignmentPanel(final AlignmentPanel ap, boolean newPanel)
751 ap.alignFrame = this;
752 avc = new jalview.controller.AlignViewController(this, viewport,
757 PaintRefresher.Register(ap, ap.av.getSequenceSetId());
759 int aSize = alignPanels.size();
761 tabbedPane.setVisible(aSize > 1 || ap.av.viewName != null);
763 if (aSize == 1 && ap.av.viewName == null)
765 this.getContentPane().add(ap, BorderLayout.CENTER);
771 setInitialTabVisible();
774 expandViews.setEnabled(true);
775 gatherViews.setEnabled(true);
776 tabbedPane.addTab(ap.av.viewName, ap);
778 ap.setVisible(false);
783 if (ap.av.isPadGaps())
785 ap.av.getAlignment().padGaps();
787 ap.av.updateConservation(ap);
788 ap.av.updateConsensus(ap);
789 ap.av.updateStrucConsensus(ap);
790 ap.av.updateInformation(ap);
794 public void setInitialTabVisible()
796 expandViews.setEnabled(true);
797 gatherViews.setEnabled(true);
798 tabbedPane.setVisible(true);
799 AlignmentPanel first = alignPanels.get(0);
800 tabbedPane.addTab(first.av.viewName, first);
801 this.getContentPane().add(tabbedPane, BorderLayout.CENTER);
804 public AlignViewport getViewport()
809 /* Set up intrinsic listeners for dynamically generated GUI bits. */
810 private void addServiceListeners()
812 final java.beans.PropertyChangeListener thisListener;
813 Desktop.instance.addJalviewPropertyChangeListener("services",
814 thisListener = new java.beans.PropertyChangeListener()
817 public void propertyChange(PropertyChangeEvent evt)
819 // // System.out.println("Discoverer property change.");
820 // if (evt.getPropertyName().equals("services"))
822 SwingUtilities.invokeLater(new Runnable()
829 "Rebuild WS Menu for service change");
830 BuildWebServiceMenu();
837 addInternalFrameListener(new javax.swing.event.InternalFrameAdapter()
840 public void internalFrameClosed(
841 javax.swing.event.InternalFrameEvent evt)
843 // System.out.println("deregistering discoverer listener");
844 Desktop.instance.removeJalviewPropertyChangeListener("services",
846 closeMenuItem_actionPerformed(true);
849 // Finally, build the menu once to get current service state
850 new Thread(new Runnable()
855 BuildWebServiceMenu();
861 * Configure menu items that vary according to whether the alignment is
862 * nucleotide or protein
864 public void setGUINucleotide()
866 AlignmentI al = getViewport().getAlignment();
867 boolean nucleotide = al.isNucleotide();
869 loadVcf.setVisible(nucleotide);
870 showTranslation.setVisible(nucleotide);
871 showReverse.setVisible(nucleotide);
872 showReverseComplement.setVisible(nucleotide);
873 conservationMenuItem.setEnabled(!nucleotide);
875 .setEnabled(!nucleotide && conservationMenuItem.isSelected());
876 showGroupConservation.setEnabled(!nucleotide);
878 showComplementMenuItem
879 .setText(nucleotide ? MessageManager.getString("label.protein")
880 : MessageManager.getString("label.nucleotide"));
884 * set up menus for the current viewport. This may be called after any
885 * operation that affects the data in the current view (selection changed,
886 * etc) to update the menus to reflect the new state.
889 public void setMenusForViewport()
891 setMenusFromViewport(viewport);
895 * Need to call this method when tabs are selected for multiple views, or when
896 * loading from Jalview2XML.java
901 void setMenusFromViewport(AlignViewport av)
903 padGapsMenuitem.setSelected(av.isPadGaps());
904 colourTextMenuItem.setSelected(av.isShowColourText());
905 abovePIDThreshold.setSelected(av.getAbovePIDThreshold());
906 modifyPID.setEnabled(abovePIDThreshold.isSelected());
907 conservationMenuItem.setSelected(av.getConservationSelected());
908 modifyConservation.setEnabled(conservationMenuItem.isSelected());
909 seqLimits.setSelected(av.getShowJVSuffix());
910 idRightAlign.setSelected(av.isRightAlignIds());
911 centreColumnLabelsMenuItem.setState(av.isCentreColumnLabels());
912 renderGapsMenuItem.setSelected(av.isRenderGaps());
913 wrapMenuItem.setSelected(av.getWrapAlignment());
914 scaleAbove.setVisible(av.getWrapAlignment());
915 scaleLeft.setVisible(av.getWrapAlignment());
916 scaleRight.setVisible(av.getWrapAlignment());
917 annotationPanelMenuItem.setState(av.isShowAnnotation());
919 * Show/hide annotations only enabled if annotation panel is shown
921 showAllSeqAnnotations.setEnabled(annotationPanelMenuItem.getState());
922 hideAllSeqAnnotations.setEnabled(annotationPanelMenuItem.getState());
923 showAllAlAnnotations.setEnabled(annotationPanelMenuItem.getState());
924 hideAllAlAnnotations.setEnabled(annotationPanelMenuItem.getState());
925 viewBoxesMenuItem.setSelected(av.getShowBoxes());
926 viewTextMenuItem.setSelected(av.getShowText());
927 showNonconservedMenuItem.setSelected(av.getShowUnconserved());
928 showGroupConsensus.setSelected(av.isShowGroupConsensus());
929 showGroupConservation.setSelected(av.isShowGroupConservation());
930 showConsensusHistogram.setSelected(av.isShowConsensusHistogram());
931 showSequenceLogo.setSelected(av.isShowSequenceLogo());
932 normaliseSequenceLogo.setSelected(av.isNormaliseSequenceLogo());
933 showInformationHistogram.setSelected(av.isShowInformationHistogram());
934 showHMMSequenceLogo.setSelected(av.isShowHMMSequenceLogo());
935 normaliseHMMSequenceLogo.setSelected(av.isNormaliseHMMSequenceLogo());
937 ColourMenuHelper.setColourSelected(colourMenu,
938 av.getGlobalColourScheme());
940 showSeqFeatures.setSelected(av.isShowSequenceFeatures());
941 hiddenMarkers.setState(av.getShowHiddenMarkers());
942 applyToAllGroups.setState(av.getColourAppliesToAllGroups());
943 showNpFeatsMenuitem.setSelected(av.isShowNPFeats());
944 showDbRefsMenuitem.setSelected(av.isShowDBRefs());
945 autoCalculate.setSelected(av.autoCalculateConsensus);
946 sortByTree.setSelected(av.sortByTree);
947 listenToViewSelections.setSelected(av.followSelection);
949 showProducts.setEnabled(canShowProducts());
950 setGroovyEnabled(Desktop.getGroovyConsole() != null);
956 * Set the enabled state of the 'Run Groovy' option in the Calculate menu
960 public void setGroovyEnabled(boolean b)
962 runGroovy.setEnabled(b);
965 private IProgressIndicator progressBar;
970 * @see jalview.gui.IProgressIndicator#setProgressBar(java.lang.String, long)
973 public void setProgressBar(String message, long id)
975 progressBar.setProgressBar(message, id);
979 public void registerHandler(final long id,
980 final IProgressIndicatorHandler handler)
982 progressBar.registerHandler(id, handler);
987 * @return true if any progress bars are still active
990 public boolean operationInProgress()
992 return progressBar.operationInProgress();
996 public void setStatus(String text)
998 statusBar.setText(text);
1002 * Added so Castor Mapping file can obtain Jalview Version
1004 public String getVersion()
1006 return jalview.bin.Cache.getProperty("VERSION");
1009 public FeatureRenderer getFeatureRenderer()
1011 return alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer();
1015 public void fetchSequence_actionPerformed(ActionEvent e)
1017 new jalview.gui.SequenceFetcher(this);
1021 public void addFromFile_actionPerformed(ActionEvent e)
1023 Desktop.instance.inputLocalFileMenuItem_actionPerformed(viewport);
1027 public void hmmBuildSettings_actionPerformed()
1029 if (!(alignmentIsSufficient(1)))
1033 WsParamSetI set = new HMMERPreset();
1034 List<ArgumentI> args = new ArrayList<>();
1035 ParamDatastoreI store = new HMMERParamStore("hmmbuild");
1036 WsJobParameters params = new WsJobParameters(new JFrame(), store, set,
1038 if (params.showRunDialog())
1040 new Thread(new HMMBuildThread(this, params.getJobParams())).start();
1042 alignPanel.repaint();
1047 public void hmmAlignSettings_actionPerformed()
1049 if (!(checkForHMM() && alignmentIsSufficient(2)))
1053 WsParamSetI set = new HMMERPreset();
1054 List<ArgumentI> args = new ArrayList<>();
1055 ParamDatastoreI store = new HMMERParamStore("hmmalign");
1056 WsJobParameters params = new WsJobParameters(new JFrame(), store, set,
1058 if (params.showRunDialog())
1060 new Thread(new HMMAlignThread(this, params.getJobParams()))
1063 alignPanel.repaint();
1067 public void hmmSearchSettings_actionPerformed()
1073 WsParamSetI set = new HMMERPreset();
1074 List<ArgumentI> args = new ArrayList<>();
1075 ParamDatastoreI store = new HMMERParamStore("hmmsearch");
1076 WsJobParameters params = new WsJobParameters(new JFrame(), store, set,
1078 if (params.showRunDialog())
1080 new Thread(new HMMSearchThread(this, params.getJobParams()))
1083 alignPanel.repaint();
1087 public void hmmBuildRun_actionPerformed()
1089 if (!alignmentIsSufficient(1))
1093 new Thread(new HMMBuildThread(this, null))
1098 public void hmmAlignRun_actionPerformed()
1100 if (!(checkForHMM() && alignmentIsSufficient(2)))
1104 new Thread(new HMMAlignThread(this, null)).start();
1108 public void hmmSearchRun_actionPerformed()
1114 new Thread(new HMMSearchThread(this, null)).start();
1118 * Checks if the frame has a selected hidden Markov model
1122 private boolean checkForHMM()
1124 if (getSelectedHMM() == null)
1126 JOptionPane.showMessageDialog(this,
1127 MessageManager.getString("warn.no_selected_hmm"));
1134 * Checks if the alignment contains the required number of sequences.
1139 public boolean alignmentIsSufficient(int required)
1141 if (getViewport().getAlignment().getSequences().size() < required)
1143 JOptionPane.showMessageDialog(this,
1144 MessageManager.getString("warn.not_enough_sequences"));
1151 public void addDatabase_actionPerformed() throws IOException
1153 if (Cache.getProperty(Preferences.HMMSEARCH_DB_PATHS) == null)
1155 Cache.setProperty(Preferences.HMMSEARCH_DBS, "");
1156 Cache.setProperty(Preferences.HMMSEARCH_DB_PATHS, "");
1159 String path = openFileChooser(false);
1160 if (new File(path).exists())
1162 IdentifyFile identifier = new IdentifyFile();
1163 FileFormatI format = identifier.identify(path, DataSourceType.FILE);
1164 if (format == FileFormat.Fasta || format == FileFormat.Stockholm
1165 || format == FileFormat.Pfam)
1167 String currentDbs = Cache.getProperty(Preferences.HMMSEARCH_DBS);
1168 String currentDbPaths = Cache
1169 .getProperty(Preferences.HMMSEARCH_DB_PATHS);
1170 currentDbPaths += " " + path;
1172 String fileName = StringUtils.getLastToken(path, File.separator);
1173 Scanner scanner = new Scanner(fileName).useDelimiter(".");
1174 String name = scanner.next();
1176 currentDbs += " " + path; // TODO remove path from file name
1179 Cache.setProperty(Preferences.HMMSEARCH_DB_PATHS, currentDbPaths);
1180 Cache.setProperty(Preferences.HMMSEARCH_DBS, currentDbPaths);
1184 JOptionPane.showMessageDialog(this,
1185 MessageManager.getString("warn.invalid_format"));
1190 JOptionPane.showMessageDialog(this,
1191 MessageManager.getString("warn.not_enough_sequences"));
1196 * Opens a file chooser
1201 protected String openFileChooser(boolean forFolder)
1203 String choice = null;
1204 JFileChooser chooser = new JFileChooser();
1207 chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
1209 chooser.setDialogTitle(
1210 MessageManager.getString("label.open_local_file"));
1211 chooser.setToolTipText(MessageManager.getString("action.open"));
1213 int value = chooser.showOpenDialog(this);
1215 if (value == JFileChooser.APPROVE_OPTION)
1217 choice = chooser.getSelectedFile().getPath();
1223 public void reload_actionPerformed(ActionEvent e)
1225 if (fileName != null)
1227 // TODO: JAL-1108 - ensure all associated frames are closed regardless of
1228 // originating file's format
1229 // TODO: work out how to recover feature settings for correct view(s) when
1230 // file is reloaded.
1231 if (FileFormat.Jalview.equals(currentFileFormat))
1233 JInternalFrame[] frames = Desktop.desktop.getAllFrames();
1234 for (int i = 0; i < frames.length; i++)
1236 if (frames[i] instanceof AlignFrame && frames[i] != this
1237 && ((AlignFrame) frames[i]).fileName != null
1238 && ((AlignFrame) frames[i]).fileName.equals(fileName))
1242 frames[i].setSelected(true);
1243 Desktop.instance.closeAssociatedWindows();
1244 } catch (java.beans.PropertyVetoException ex)
1250 Desktop.instance.closeAssociatedWindows();
1252 FileLoader loader = new FileLoader();
1253 DataSourceType protocol = fileName.startsWith("http:")
1254 ? DataSourceType.URL
1255 : DataSourceType.FILE;
1256 loader.LoadFile(viewport, fileName, protocol, currentFileFormat);
1260 Rectangle bounds = this.getBounds();
1262 FileLoader loader = new FileLoader();
1263 DataSourceType protocol = fileName.startsWith("http:")
1264 ? DataSourceType.URL
1265 : DataSourceType.FILE;
1266 AlignFrame newframe = loader.LoadFileWaitTillLoaded(fileName,
1267 protocol, currentFileFormat);
1269 newframe.setBounds(bounds);
1270 if (featureSettings != null && featureSettings.isShowing())
1272 final Rectangle fspos = featureSettings.frame.getBounds();
1273 // TODO: need a 'show feature settings' function that takes bounds -
1274 // need to refactor Desktop.addFrame
1275 newframe.featureSettings_actionPerformed(null);
1276 final FeatureSettings nfs = newframe.featureSettings;
1277 SwingUtilities.invokeLater(new Runnable()
1282 nfs.frame.setBounds(fspos);
1285 this.featureSettings.close();
1286 this.featureSettings = null;
1288 this.closeMenuItem_actionPerformed(true);
1294 public void addFromText_actionPerformed(ActionEvent e)
1297 .inputTextboxMenuItem_actionPerformed(viewport.getAlignPanel());
1301 public void addFromURL_actionPerformed(ActionEvent e)
1303 Desktop.instance.inputURLMenuItem_actionPerformed(viewport);
1307 public void save_actionPerformed(ActionEvent e)
1309 if (fileName == null || (currentFileFormat == null)
1310 || fileName.startsWith("http"))
1312 saveAs_actionPerformed(null);
1316 saveAlignment(fileName, currentFileFormat);
1327 public void saveAs_actionPerformed(ActionEvent e)
1329 String format = currentFileFormat == null ? null
1330 : currentFileFormat.getName();
1331 JalviewFileChooser chooser = JalviewFileChooser
1332 .forWrite(Cache.getProperty("LAST_DIRECTORY"), format);
1334 chooser.setFileView(new JalviewFileView());
1335 chooser.setDialogTitle(
1336 MessageManager.getString("label.save_alignment_to_file"));
1337 chooser.setToolTipText(MessageManager.getString("action.save"));
1339 int value = chooser.showSaveDialog(this);
1341 if (value == JalviewFileChooser.APPROVE_OPTION)
1343 currentFileFormat = chooser.getSelectedFormat();
1344 while (currentFileFormat == null)
1346 JvOptionPane.showInternalMessageDialog(Desktop.desktop,
1347 MessageManager.getString(
1348 "label.select_file_format_before_saving"),
1349 MessageManager.getString("label.file_format_not_specified"),
1350 JvOptionPane.WARNING_MESSAGE);
1351 currentFileFormat = chooser.getSelectedFormat();
1352 value = chooser.showSaveDialog(this);
1353 if (value != JalviewFileChooser.APPROVE_OPTION)
1359 fileName = chooser.getSelectedFile().getPath();
1361 Cache.setProperty("DEFAULT_FILE_FORMAT", currentFileFormat.getName());
1363 Cache.setProperty("LAST_DIRECTORY", fileName);
1364 saveAlignment(fileName, currentFileFormat);
1368 public boolean saveAlignment(String file, FileFormatI format)
1370 boolean success = true;
1372 if (FileFormat.Jalview.equals(format))
1374 String shortName = title;
1376 if (shortName.indexOf(java.io.File.separatorChar) > -1)
1378 shortName = shortName.substring(
1379 shortName.lastIndexOf(java.io.File.separatorChar) + 1);
1382 success = new Jalview2XML().saveAlignment(this, file, shortName);
1384 statusBar.setText(MessageManager.formatMessage(
1385 "label.successfully_saved_to_file_in_format", new Object[]
1386 { fileName, format }));
1391 AlignmentExportData exportData = getAlignmentForExport(format,
1393 if (exportData.getSettings().isCancelled())
1397 FormatAdapter f = new FormatAdapter(alignPanel,
1398 exportData.getSettings());
1399 String output = f.formatSequences(format, exportData.getAlignment(), // class
1403 // occur in the distant future
1404 exportData.getOmitHidden(), exportData.getStartEndPostions(),
1405 f.getCacheSuffixDefault(format),
1406 viewport.getAlignment().getHiddenColumns());
1416 PrintWriter out = new PrintWriter(new FileWriter(file));
1420 this.setTitle(file);
1421 statusBar.setText(MessageManager.formatMessage(
1422 "label.successfully_saved_to_file_in_format", new Object[]
1423 { fileName, format.getName() }));
1424 } catch (Exception ex)
1427 ex.printStackTrace();
1434 JvOptionPane.showInternalMessageDialog(this, MessageManager
1435 .formatMessage("label.couldnt_save_file", new Object[]
1437 MessageManager.getString("label.error_saving_file"),
1438 JvOptionPane.WARNING_MESSAGE);
1444 private void warningMessage(String warning, String title)
1446 if (new jalview.util.Platform().isHeadless())
1448 System.err.println("Warning: " + title + "\nWarning: " + warning);
1453 JvOptionPane.showInternalMessageDialog(this, warning, title,
1454 JvOptionPane.WARNING_MESSAGE);
1466 protected void outputText_actionPerformed(ActionEvent e)
1468 FileFormatI fileFormat = FileFormats.getInstance()
1469 .forName(e.getActionCommand());
1470 AlignmentExportData exportData = getAlignmentForExport(fileFormat,
1472 if (exportData.getSettings().isCancelled())
1476 CutAndPasteTransfer cap = new CutAndPasteTransfer();
1477 cap.setForInput(null);
1480 FileFormatI format = fileFormat;
1481 cap.setText(new FormatAdapter(alignPanel, exportData.getSettings())
1482 .formatSequences(format, exportData.getAlignment(),
1483 exportData.getOmitHidden(),
1484 exportData.getStartEndPostions(),
1485 viewport.getAlignment().getHiddenColumns()));
1486 Desktop.addInternalFrame(cap, MessageManager
1487 .formatMessage("label.alignment_output_command", new Object[]
1488 { e.getActionCommand() }), 600, 500);
1489 } catch (OutOfMemoryError oom)
1491 new OOMWarning("Outputting alignment as " + e.getActionCommand(),
1498 public static AlignmentExportData getAlignmentForExport(
1499 FileFormatI format, AlignViewportI viewport,
1500 AlignExportSettingI exportSettings)
1502 AlignmentI alignmentToExport = null;
1503 AlignExportSettingI settings = exportSettings;
1504 String[] omitHidden = null;
1506 HiddenSequences hiddenSeqs = viewport.getAlignment()
1507 .getHiddenSequences();
1509 alignmentToExport = viewport.getAlignment();
1511 boolean hasHiddenSeqs = hiddenSeqs.getSize() > 0;
1512 if (settings == null)
1514 settings = new AlignExportSettings(hasHiddenSeqs,
1515 viewport.hasHiddenColumns(), format);
1517 // settings.isExportAnnotations();
1519 if (viewport.hasHiddenColumns() && !settings.isExportHiddenColumns())
1521 omitHidden = viewport.getViewAsString(false,
1522 settings.isExportHiddenSequences());
1525 int[] alignmentStartEnd = new int[2];
1526 if (hasHiddenSeqs && settings.isExportHiddenSequences())
1528 alignmentToExport = hiddenSeqs.getFullAlignment();
1532 alignmentToExport = viewport.getAlignment();
1534 alignmentStartEnd = viewport.getAlignment().getHiddenColumns()
1535 .getVisibleStartAndEndIndex(alignmentToExport.getWidth());
1536 AlignmentExportData ed = new AlignmentExportData(alignmentToExport,
1537 omitHidden, alignmentStartEnd, settings);
1548 protected void htmlMenuItem_actionPerformed(ActionEvent e)
1550 HtmlSvgOutput htmlSVG = new HtmlSvgOutput(alignPanel);
1551 htmlSVG.exportHTML(null);
1555 public void bioJSMenuItem_actionPerformed(ActionEvent e)
1557 BioJsHTMLOutput bjs = new BioJsHTMLOutput(alignPanel);
1558 bjs.exportHTML(null);
1561 public void createImageMap(File file, String image)
1563 alignPanel.makePNGImageMap(file, image);
1573 public void createPNG(File f)
1575 alignPanel.makePNG(f);
1585 public void createEPS(File f)
1587 alignPanel.makeEPS(f);
1591 public void createSVG(File f)
1593 alignPanel.makeSVG(f);
1597 public void pageSetup_actionPerformed(ActionEvent e)
1599 PrinterJob printJob = PrinterJob.getPrinterJob();
1600 PrintThread.pf = printJob.pageDialog(printJob.defaultPage());
1610 public void printMenuItem_actionPerformed(ActionEvent e)
1612 // Putting in a thread avoids Swing painting problems
1613 PrintThread thread = new PrintThread(alignPanel);
1618 public void exportFeatures_actionPerformed(ActionEvent e)
1620 new AnnotationExporter(alignPanel).exportFeatures();
1624 public void exportAnnotations_actionPerformed(ActionEvent e)
1626 new AnnotationExporter(alignPanel).exportAnnotations();
1630 public void associatedData_actionPerformed(ActionEvent e)
1631 throws IOException, InterruptedException
1633 // Pick the tree file
1634 JalviewFileChooser chooser = new JalviewFileChooser(
1635 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
1636 chooser.setFileView(new JalviewFileView());
1637 chooser.setDialogTitle(
1638 MessageManager.getString("label.load_jalview_annotations"));
1639 chooser.setToolTipText(
1640 MessageManager.getString("label.load_jalview_annotations"));
1642 int value = chooser.showOpenDialog(null);
1644 if (value == JalviewFileChooser.APPROVE_OPTION)
1646 String choice = chooser.getSelectedFile().getPath();
1647 jalview.bin.Cache.setProperty("LAST_DIRECTORY", choice);
1648 loadJalviewDataFile(choice, null, null, null);
1654 * Close the current view or all views in the alignment frame. If the frame
1655 * only contains one view then the alignment will be removed from memory.
1657 * @param closeAllTabs
1660 public void closeMenuItem_actionPerformed(boolean closeAllTabs)
1662 if (alignPanels != null && alignPanels.size() < 2)
1664 closeAllTabs = true;
1669 if (alignPanels != null)
1673 if (this.isClosed())
1675 // really close all the windows - otherwise wait till
1676 // setClosed(true) is called
1677 for (int i = 0; i < alignPanels.size(); i++)
1679 AlignmentPanel ap = alignPanels.get(i);
1686 closeView(alignPanel);
1693 * this will raise an INTERNAL_FRAME_CLOSED event and this method will
1694 * be called recursively, with the frame now in 'closed' state
1696 this.setClosed(true);
1698 } catch (Exception ex)
1700 ex.printStackTrace();
1705 * Close the specified panel and close up tabs appropriately.
1707 * @param panelToClose
1709 public void closeView(AlignmentPanel panelToClose)
1711 int index = tabbedPane.getSelectedIndex();
1712 int closedindex = tabbedPane.indexOfComponent(panelToClose);
1713 alignPanels.remove(panelToClose);
1714 panelToClose.closePanel();
1715 panelToClose = null;
1717 tabbedPane.removeTabAt(closedindex);
1718 tabbedPane.validate();
1720 if (index > closedindex || index == tabbedPane.getTabCount())
1722 // modify currently selected tab index if necessary.
1726 this.tabSelectionChanged(index);
1732 void updateEditMenuBar()
1735 if (viewport.getHistoryList().size() > 0)
1737 undoMenuItem.setEnabled(true);
1738 CommandI command = viewport.getHistoryList().peek();
1739 undoMenuItem.setText(MessageManager
1740 .formatMessage("label.undo_command", new Object[]
1741 { command.getDescription() }));
1745 undoMenuItem.setEnabled(false);
1746 undoMenuItem.setText(MessageManager.getString("action.undo"));
1749 if (viewport.getRedoList().size() > 0)
1751 redoMenuItem.setEnabled(true);
1753 CommandI command = viewport.getRedoList().peek();
1754 redoMenuItem.setText(MessageManager
1755 .formatMessage("label.redo_command", new Object[]
1756 { command.getDescription() }));
1760 redoMenuItem.setEnabled(false);
1761 redoMenuItem.setText(MessageManager.getString("action.redo"));
1766 public void addHistoryItem(CommandI command)
1768 if (command.getSize() > 0)
1770 viewport.addToHistoryList(command);
1771 viewport.clearRedoList();
1772 updateEditMenuBar();
1773 viewport.updateHiddenColumns();
1774 // viewport.hasHiddenColumns = (viewport.getColumnSelection() != null
1775 // && viewport.getColumnSelection().getHiddenColumns() != null &&
1776 // viewport.getColumnSelection()
1777 // .getHiddenColumns().size() > 0);
1783 * @return alignment objects for all views
1785 AlignmentI[] getViewAlignments()
1787 if (alignPanels != null)
1789 AlignmentI[] als = new AlignmentI[alignPanels.size()];
1791 for (AlignmentPanel ap : alignPanels)
1793 als[i++] = ap.av.getAlignment();
1797 if (viewport != null)
1799 return new AlignmentI[] { viewport.getAlignment() };
1811 protected void undoMenuItem_actionPerformed(ActionEvent e)
1813 if (viewport.getHistoryList().isEmpty())
1817 CommandI command = viewport.getHistoryList().pop();
1818 viewport.addToRedoList(command);
1819 command.undoCommand(getViewAlignments());
1821 AlignmentViewport originalSource = getOriginatingSource(command);
1822 updateEditMenuBar();
1824 if (originalSource != null)
1826 if (originalSource != viewport)
1829 "Implementation worry: mismatch of viewport origin for undo");
1831 originalSource.updateHiddenColumns();
1832 // originalSource.hasHiddenColumns = (viewport.getColumnSelection() !=
1834 // && viewport.getColumnSelection().getHiddenColumns() != null &&
1835 // viewport.getColumnSelection()
1836 // .getHiddenColumns().size() > 0);
1837 originalSource.firePropertyChange("alignment", null,
1838 originalSource.getAlignment().getSequences());
1849 protected void redoMenuItem_actionPerformed(ActionEvent e)
1851 if (viewport.getRedoList().size() < 1)
1856 CommandI command = viewport.getRedoList().pop();
1857 viewport.addToHistoryList(command);
1858 command.doCommand(getViewAlignments());
1860 AlignmentViewport originalSource = getOriginatingSource(command);
1861 updateEditMenuBar();
1863 if (originalSource != null)
1866 if (originalSource != viewport)
1869 "Implementation worry: mismatch of viewport origin for redo");
1871 originalSource.updateHiddenColumns();
1872 // originalSource.hasHiddenColumns = (viewport.getColumnSelection() !=
1874 // && viewport.getColumnSelection().getHiddenColumns() != null &&
1875 // viewport.getColumnSelection()
1876 // .getHiddenColumns().size() > 0);
1877 originalSource.firePropertyChange("alignment", null,
1878 originalSource.getAlignment().getSequences());
1882 AlignmentViewport getOriginatingSource(CommandI command)
1884 AlignmentViewport originalSource = null;
1885 // For sequence removal and addition, we need to fire
1886 // the property change event FROM the viewport where the
1887 // original alignment was altered
1888 AlignmentI al = null;
1889 if (command instanceof EditCommand)
1891 EditCommand editCommand = (EditCommand) command;
1892 al = editCommand.getAlignment();
1893 List<Component> comps = PaintRefresher.components
1894 .get(viewport.getSequenceSetId());
1896 for (Component comp : comps)
1898 if (comp instanceof AlignmentPanel)
1900 if (al == ((AlignmentPanel) comp).av.getAlignment())
1902 originalSource = ((AlignmentPanel) comp).av;
1909 if (originalSource == null)
1911 // The original view is closed, we must validate
1912 // the current view against the closed view first
1915 PaintRefresher.validateSequences(al, viewport.getAlignment());
1918 originalSource = viewport;
1921 return originalSource;
1930 public void moveSelectedSequences(boolean up)
1932 SequenceGroup sg = viewport.getSelectionGroup();
1938 viewport.getAlignment().moveSelectedSequencesByOne(sg,
1939 viewport.getHiddenRepSequences(), up);
1940 alignPanel.paintAlignment(true, false);
1943 synchronized void slideSequences(boolean right, int size)
1945 List<SequenceI> sg = new ArrayList<>();
1946 if (viewport.cursorMode)
1948 sg.add(viewport.getAlignment()
1949 .getSequenceAt(alignPanel.getSeqPanel().seqCanvas.cursorY));
1951 else if (viewport.getSelectionGroup() != null
1952 && viewport.getSelectionGroup().getSize() != viewport
1953 .getAlignment().getHeight())
1955 sg = viewport.getSelectionGroup()
1956 .getSequences(viewport.getHiddenRepSequences());
1964 List<SequenceI> invertGroup = new ArrayList<>();
1966 for (SequenceI seq : viewport.getAlignment().getSequences())
1968 if (!sg.contains(seq))
1970 invertGroup.add(seq);
1974 SequenceI[] seqs1 = sg.toArray(new SequenceI[0]);
1976 SequenceI[] seqs2 = new SequenceI[invertGroup.size()];
1977 for (int i = 0; i < invertGroup.size(); i++)
1979 seqs2[i] = invertGroup.get(i);
1982 SlideSequencesCommand ssc;
1985 ssc = new SlideSequencesCommand("Slide Sequences", seqs2, seqs1, size,
1986 viewport.getGapCharacter());
1990 ssc = new SlideSequencesCommand("Slide Sequences", seqs1, seqs2, size,
1991 viewport.getGapCharacter());
1994 int groupAdjustment = 0;
1995 if (ssc.getGapsInsertedBegin() && right)
1997 if (viewport.cursorMode)
1999 alignPanel.getSeqPanel().moveCursor(size, 0);
2003 groupAdjustment = size;
2006 else if (!ssc.getGapsInsertedBegin() && !right)
2008 if (viewport.cursorMode)
2010 alignPanel.getSeqPanel().moveCursor(-size, 0);
2014 groupAdjustment = -size;
2018 if (groupAdjustment != 0)
2020 viewport.getSelectionGroup().setStartRes(
2021 viewport.getSelectionGroup().getStartRes() + groupAdjustment);
2022 viewport.getSelectionGroup().setEndRes(
2023 viewport.getSelectionGroup().getEndRes() + groupAdjustment);
2027 * just extend the last slide command if compatible; but not if in
2028 * SplitFrame mode (to ensure all edits are broadcast - JAL-1802)
2030 boolean appendHistoryItem = false;
2031 Deque<CommandI> historyList = viewport.getHistoryList();
2032 boolean inSplitFrame = getSplitViewContainer() != null;
2033 if (!inSplitFrame && historyList != null && historyList.size() > 0
2034 && historyList.peek() instanceof SlideSequencesCommand)
2036 appendHistoryItem = ssc.appendSlideCommand(
2037 (SlideSequencesCommand) historyList.peek());
2040 if (!appendHistoryItem)
2042 addHistoryItem(ssc);
2055 protected void copy_actionPerformed(ActionEvent e)
2058 if (viewport.getSelectionGroup() == null)
2062 // TODO: preserve the ordering of displayed alignment annotation in any
2063 // internal paste (particularly sequence associated annotation)
2064 SequenceI[] seqs = viewport.getSelectionAsNewSequence();
2065 String[] omitHidden = null;
2067 if (viewport.hasHiddenColumns())
2069 omitHidden = viewport.getViewAsString(true);
2072 String output = new FormatAdapter().formatSequences(FileFormat.Fasta,
2073 seqs, omitHidden, null);
2075 StringSelection ss = new StringSelection(output);
2079 jalview.gui.Desktop.internalCopy = true;
2080 // Its really worth setting the clipboard contents
2081 // to empty before setting the large StringSelection!!
2082 Toolkit.getDefaultToolkit().getSystemClipboard()
2083 .setContents(new StringSelection(""), null);
2085 Toolkit.getDefaultToolkit().getSystemClipboard().setContents(ss,
2087 } catch (OutOfMemoryError er)
2089 new OOMWarning("copying region", er);
2093 ArrayList<int[]> hiddenColumns = null;
2094 if (viewport.hasHiddenColumns())
2096 hiddenColumns = new ArrayList<>();
2098 int hiddenOffset = viewport.getSelectionGroup().getStartRes();
2099 int hiddenCutoff = viewport.getSelectionGroup().getEndRes();
2100 ArrayList<int[]> hiddenRegions = viewport.getAlignment()
2101 .getHiddenColumns().getHiddenColumnsCopy();
2102 for (int[] region : hiddenRegions)
2105 if (region[0] >= hiddenOffset && region[1] <= hiddenCutoff)
2109 { region[0] - hiddenOffset, region[1] - hiddenOffset });
2114 Desktop.jalviewClipboard = new Object[] { seqs,
2115 viewport.getAlignment().getDataset(), hiddenColumns };
2116 statusBar.setText(MessageManager.formatMessage(
2117 "label.copied_sequences_to_clipboard", new Object[]
2118 { Integer.valueOf(seqs.length).toString() }));
2126 * @throws InterruptedException
2127 * @throws IOException
2130 protected void pasteNew_actionPerformed(ActionEvent e)
2131 throws IOException, InterruptedException
2141 * @throws InterruptedException
2142 * @throws IOException
2145 protected void pasteThis_actionPerformed(ActionEvent e)
2146 throws IOException, InterruptedException
2152 * Paste contents of Jalview clipboard
2154 * @param newAlignment
2155 * true to paste to a new alignment, otherwise add to this.
2156 * @throws InterruptedException
2157 * @throws IOException
2159 void paste(boolean newAlignment) throws IOException, InterruptedException
2161 boolean externalPaste = true;
2164 Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
2165 Transferable contents = c.getContents(this);
2167 if (contents == null)
2176 str = (String) contents.getTransferData(DataFlavor.stringFlavor);
2177 if (str.length() < 1)
2182 format = new IdentifyFile().identify(str, DataSourceType.PASTE);
2184 } catch (OutOfMemoryError er)
2186 new OOMWarning("Out of memory pasting sequences!!", er);
2190 SequenceI[] sequences;
2191 boolean annotationAdded = false;
2192 AlignmentI alignment = null;
2194 if (Desktop.jalviewClipboard != null)
2196 // The clipboard was filled from within Jalview, we must use the
2198 // And dataset from the copied alignment
2199 SequenceI[] newseq = (SequenceI[]) Desktop.jalviewClipboard[0];
2200 // be doubly sure that we create *new* sequence objects.
2201 sequences = new SequenceI[newseq.length];
2202 for (int i = 0; i < newseq.length; i++)
2204 sequences[i] = new Sequence(newseq[i]);
2206 alignment = new Alignment(sequences);
2207 externalPaste = false;
2211 // parse the clipboard as an alignment.
2212 alignment = new FormatAdapter().readFile(str, DataSourceType.PASTE,
2214 sequences = alignment.getSequencesArray();
2218 ArrayList<Integer> newGraphGroups = new ArrayList<>();
2224 if (Desktop.jalviewClipboard != null)
2226 // dataset is inherited
2227 alignment.setDataset((Alignment) Desktop.jalviewClipboard[1]);
2231 // new dataset is constructed
2232 alignment.setDataset(null);
2234 alwidth = alignment.getWidth() + 1;
2238 AlignmentI pastedal = alignment; // preserve pasted alignment object
2239 // Add pasted sequences and dataset into existing alignment.
2240 alignment = viewport.getAlignment();
2241 alwidth = alignment.getWidth() + 1;
2242 // decide if we need to import sequences from an existing dataset
2243 boolean importDs = Desktop.jalviewClipboard != null
2244 && Desktop.jalviewClipboard[1] != alignment.getDataset();
2245 // importDs==true instructs us to copy over new dataset sequences from
2246 // an existing alignment
2247 Vector newDs = (importDs) ? new Vector() : null; // used to create
2248 // minimum dataset set
2250 for (int i = 0; i < sequences.length; i++)
2254 newDs.addElement(null);
2256 SequenceI ds = sequences[i].getDatasetSequence(); // null for a simple
2258 if (importDs && ds != null)
2260 if (!newDs.contains(ds))
2262 newDs.setElementAt(ds, i);
2263 ds = new Sequence(ds);
2264 // update with new dataset sequence
2265 sequences[i].setDatasetSequence(ds);
2269 ds = sequences[newDs.indexOf(ds)].getDatasetSequence();
2274 // copy and derive new dataset sequence
2275 sequences[i] = sequences[i].deriveSequence();
2276 alignment.getDataset()
2277 .addSequence(sequences[i].getDatasetSequence());
2278 // TODO: avoid creation of duplicate dataset sequences with a
2279 // 'contains' method using SequenceI.equals()/SequenceI.contains()
2281 alignment.addSequence(sequences[i]); // merges dataset
2285 newDs.clear(); // tidy up
2287 if (alignment.getAlignmentAnnotation() != null)
2289 for (AlignmentAnnotation alan : alignment
2290 .getAlignmentAnnotation())
2292 if (alan.graphGroup > fgroup)
2294 fgroup = alan.graphGroup;
2298 if (pastedal.getAlignmentAnnotation() != null)
2300 // Add any annotation attached to alignment.
2301 AlignmentAnnotation[] alann = pastedal.getAlignmentAnnotation();
2302 for (int i = 0; i < alann.length; i++)
2304 annotationAdded = true;
2305 if (alann[i].sequenceRef == null && !alann[i].autoCalculated)
2307 AlignmentAnnotation newann = new AlignmentAnnotation(
2309 if (newann.graphGroup > -1)
2311 if (newGraphGroups.size() <= newann.graphGroup
2312 || newGraphGroups.get(newann.graphGroup) == null)
2314 for (int q = newGraphGroups
2315 .size(); q <= newann.graphGroup; q++)
2317 newGraphGroups.add(q, null);
2319 newGraphGroups.set(newann.graphGroup,
2320 new Integer(++fgroup));
2322 newann.graphGroup = newGraphGroups.get(newann.graphGroup)
2326 newann.padAnnotation(alwidth);
2327 alignment.addAnnotation(newann);
2337 addHistoryItem(new EditCommand(
2338 MessageManager.getString("label.add_sequences"),
2339 Action.PASTE, sequences, 0, alignment.getWidth(),
2342 // Add any annotations attached to sequences
2343 for (int i = 0; i < sequences.length; i++)
2345 if (sequences[i].getAnnotation() != null)
2347 AlignmentAnnotation newann;
2348 for (int a = 0; a < sequences[i].getAnnotation().length; a++)
2350 annotationAdded = true;
2351 newann = sequences[i].getAnnotation()[a];
2352 newann.adjustForAlignment();
2353 newann.padAnnotation(alwidth);
2354 if (newann.graphGroup > -1)
2356 if (newann.graphGroup > -1)
2358 if (newGraphGroups.size() <= newann.graphGroup
2359 || newGraphGroups.get(newann.graphGroup) == null)
2361 for (int q = newGraphGroups
2362 .size(); q <= newann.graphGroup; q++)
2364 newGraphGroups.add(q, null);
2366 newGraphGroups.set(newann.graphGroup,
2367 new Integer(++fgroup));
2369 newann.graphGroup = newGraphGroups.get(newann.graphGroup)
2373 alignment.addAnnotation(sequences[i].getAnnotation()[a]); // annotation
2377 alignment.setAnnotationIndex(sequences[i].getAnnotation()[a],
2385 // propagate alignment changed.
2386 viewport.getRanges().setEndSeq(alignment.getHeight());
2387 if (annotationAdded)
2389 // Duplicate sequence annotation in all views.
2390 AlignmentI[] alview = this.getViewAlignments();
2391 for (int i = 0; i < sequences.length; i++)
2393 AlignmentAnnotation sann[] = sequences[i].getAnnotation();
2398 for (int avnum = 0; avnum < alview.length; avnum++)
2400 if (alview[avnum] != alignment)
2402 // duplicate in a view other than the one with input focus
2403 int avwidth = alview[avnum].getWidth() + 1;
2404 // this relies on sann being preserved after we
2405 // modify the sequence's annotation array for each duplication
2406 for (int a = 0; a < sann.length; a++)
2408 AlignmentAnnotation newann = new AlignmentAnnotation(
2410 sequences[i].addAlignmentAnnotation(newann);
2411 newann.padAnnotation(avwidth);
2412 alview[avnum].addAnnotation(newann); // annotation was
2413 // duplicated earlier
2414 // TODO JAL-1145 graphGroups are not updated for sequence
2415 // annotation added to several views. This may cause
2417 alview[avnum].setAnnotationIndex(newann, a);
2422 buildSortByAnnotationScoresMenu();
2424 viewport.firePropertyChange("alignment", null,
2425 alignment.getSequences());
2426 if (alignPanels != null)
2428 for (AlignmentPanel ap : alignPanels)
2430 ap.validateAnnotationDimensions(false);
2435 alignPanel.validateAnnotationDimensions(false);
2441 AlignFrame af = new AlignFrame(alignment, DEFAULT_WIDTH,
2443 String newtitle = new String("Copied sequences");
2445 if (Desktop.jalviewClipboard != null
2446 && Desktop.jalviewClipboard[2] != null)
2448 List<int[]> hc = (List<int[]>) Desktop.jalviewClipboard[2];
2449 for (int[] region : hc)
2451 af.viewport.hideColumns(region[0], region[1]);
2455 // >>>This is a fix for the moment, until a better solution is
2457 af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
2458 .transferSettings(alignPanel.getSeqPanel().seqCanvas
2459 .getFeatureRenderer());
2461 // TODO: maintain provenance of an alignment, rather than just make the
2462 // title a concatenation of operations.
2465 if (title.startsWith("Copied sequences"))
2471 newtitle = newtitle.concat("- from " + title);
2476 newtitle = new String("Pasted sequences");
2479 Desktop.addInternalFrame(af, newtitle, DEFAULT_WIDTH,
2484 } catch (Exception ex)
2486 ex.printStackTrace();
2487 System.out.println("Exception whilst pasting: " + ex);
2488 // could be anything being pasted in here
2493 protected void expand_newalign(ActionEvent e)
2497 AlignmentI alignment = AlignmentUtils
2498 .expandContext(getViewport().getAlignment(), -1);
2499 AlignFrame af = new AlignFrame(alignment, DEFAULT_WIDTH,
2501 String newtitle = new String("Flanking alignment");
2503 if (Desktop.jalviewClipboard != null
2504 && Desktop.jalviewClipboard[2] != null)
2506 List<int[]> hc = (List<int[]>) Desktop.jalviewClipboard[2];
2507 for (int region[] : hc)
2509 af.viewport.hideColumns(region[0], region[1]);
2513 // >>>This is a fix for the moment, until a better solution is
2515 af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
2516 .transferSettings(alignPanel.getSeqPanel().seqCanvas
2517 .getFeatureRenderer());
2519 // TODO: maintain provenance of an alignment, rather than just make the
2520 // title a concatenation of operations.
2522 if (title.startsWith("Copied sequences"))
2528 newtitle = newtitle.concat("- from " + title);
2532 Desktop.addInternalFrame(af, newtitle, DEFAULT_WIDTH, DEFAULT_HEIGHT);
2534 } catch (Exception ex)
2536 ex.printStackTrace();
2537 System.out.println("Exception whilst pasting: " + ex);
2538 // could be anything being pasted in here
2539 } catch (OutOfMemoryError oom)
2541 new OOMWarning("Viewing flanking region of alignment", oom);
2552 protected void cut_actionPerformed(ActionEvent e)
2554 copy_actionPerformed(null);
2555 delete_actionPerformed(null);
2565 protected void delete_actionPerformed(ActionEvent evt)
2568 SequenceGroup sg = viewport.getSelectionGroup();
2575 * If the cut affects all sequences, warn, remove highlighted columns
2577 if (sg.getSize() == viewport.getAlignment().getHeight())
2579 boolean isEntireAlignWidth = (((sg.getEndRes() - sg.getStartRes())
2580 + 1) == viewport.getAlignment().getWidth()) ? true : false;
2581 if (isEntireAlignWidth)
2583 int confirm = JvOptionPane.showConfirmDialog(this,
2584 MessageManager.getString("warn.delete_all"), // $NON-NLS-1$
2585 MessageManager.getString("label.delete_all"), // $NON-NLS-1$
2586 JvOptionPane.OK_CANCEL_OPTION);
2588 if (confirm == JvOptionPane.CANCEL_OPTION
2589 || confirm == JvOptionPane.CLOSED_OPTION)
2594 viewport.getColumnSelection().removeElements(sg.getStartRes(),
2595 sg.getEndRes() + 1);
2597 SequenceI[] cut = sg.getSequences()
2598 .toArray(new SequenceI[sg.getSize()]);
2600 addHistoryItem(new EditCommand(
2601 MessageManager.getString("label.cut_sequences"), Action.CUT,
2602 cut, sg.getStartRes(), sg.getEndRes() - sg.getStartRes() + 1,
2603 viewport.getAlignment()));
2605 viewport.setSelectionGroup(null);
2606 viewport.sendSelection();
2607 viewport.getAlignment().deleteGroup(sg);
2609 viewport.firePropertyChange("alignment", null,
2610 viewport.getAlignment().getSequences());
2611 if (viewport.getAlignment().getHeight() < 1)
2615 this.setClosed(true);
2616 } catch (Exception ex)
2629 protected void deleteGroups_actionPerformed(ActionEvent e)
2631 if (avc.deleteGroups())
2633 PaintRefresher.Refresh(this, viewport.getSequenceSetId());
2634 alignPanel.updateAnnotation();
2635 alignPanel.paintAlignment(true, true);
2646 public void selectAllSequenceMenuItem_actionPerformed(ActionEvent e)
2648 SequenceGroup sg = new SequenceGroup();
2650 for (int i = 0; i < viewport.getAlignment().getSequences().size(); i++)
2652 sg.addSequence(viewport.getAlignment().getSequenceAt(i), false);
2655 sg.setEndRes(viewport.getAlignment().getWidth() - 1);
2656 viewport.setSelectionGroup(sg);
2657 viewport.sendSelection();
2658 // JAL-2034 - should delegate to
2659 // alignPanel to decide if overview needs
2661 alignPanel.paintAlignment(false, false);
2662 PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2672 public void deselectAllSequenceMenuItem_actionPerformed(ActionEvent e)
2674 if (viewport.cursorMode)
2676 alignPanel.getSeqPanel().keyboardNo1 = null;
2677 alignPanel.getSeqPanel().keyboardNo2 = null;
2679 viewport.setSelectionGroup(null);
2680 viewport.getColumnSelection().clear();
2681 viewport.setSelectionGroup(null);
2682 alignPanel.getIdPanel().getIdCanvas().searchResults = null;
2683 // JAL-2034 - should delegate to
2684 // alignPanel to decide if overview needs
2686 alignPanel.paintAlignment(false, false);
2687 PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2688 viewport.sendSelection();
2698 public void invertSequenceMenuItem_actionPerformed(ActionEvent e)
2700 SequenceGroup sg = viewport.getSelectionGroup();
2704 selectAllSequenceMenuItem_actionPerformed(null);
2709 for (int i = 0; i < viewport.getAlignment().getSequences().size(); i++)
2711 sg.addOrRemove(viewport.getAlignment().getSequenceAt(i), false);
2713 // JAL-2034 - should delegate to
2714 // alignPanel to decide if overview needs
2717 alignPanel.paintAlignment(true, false);
2718 PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2719 viewport.sendSelection();
2723 public void invertColSel_actionPerformed(ActionEvent e)
2725 viewport.invertColumnSelection();
2726 alignPanel.paintAlignment(true, false);
2727 viewport.sendSelection();
2737 public void remove2LeftMenuItem_actionPerformed(ActionEvent e)
2739 trimAlignment(true);
2749 public void remove2RightMenuItem_actionPerformed(ActionEvent e)
2751 trimAlignment(false);
2754 void trimAlignment(boolean trimLeft)
2756 ColumnSelection colSel = viewport.getColumnSelection();
2759 if (!colSel.isEmpty())
2763 column = colSel.getMin();
2767 column = colSel.getMax();
2771 if (viewport.getSelectionGroup() != null)
2773 seqs = viewport.getSelectionGroup()
2774 .getSequencesAsArray(viewport.getHiddenRepSequences());
2778 seqs = viewport.getAlignment().getSequencesArray();
2781 TrimRegionCommand trimRegion;
2784 trimRegion = new TrimRegionCommand("Remove Left", true, seqs,
2785 column, viewport.getAlignment());
2786 viewport.getRanges().setStartRes(0);
2790 trimRegion = new TrimRegionCommand("Remove Right", false, seqs,
2791 column, viewport.getAlignment());
2794 statusBar.setText(MessageManager
2795 .formatMessage("label.removed_columns", new String[]
2796 { Integer.valueOf(trimRegion.getSize()).toString() }));
2798 addHistoryItem(trimRegion);
2800 for (SequenceGroup sg : viewport.getAlignment().getGroups())
2802 if ((trimLeft && !sg.adjustForRemoveLeft(column))
2803 || (!trimLeft && !sg.adjustForRemoveRight(column)))
2805 viewport.getAlignment().deleteGroup(sg);
2809 viewport.firePropertyChange("alignment", null,
2810 viewport.getAlignment().getSequences());
2821 public void removeGappedColumnMenuItem_actionPerformed(ActionEvent e)
2823 int start = 0, end = viewport.getAlignment().getWidth() - 1;
2826 if (viewport.getSelectionGroup() != null)
2828 seqs = viewport.getSelectionGroup()
2829 .getSequencesAsArray(viewport.getHiddenRepSequences());
2830 start = viewport.getSelectionGroup().getStartRes();
2831 end = viewport.getSelectionGroup().getEndRes();
2835 seqs = viewport.getAlignment().getSequencesArray();
2838 RemoveGapColCommand removeGapCols = new RemoveGapColCommand(
2839 "Remove Gapped Columns", seqs, start, end,
2840 viewport.getAlignment());
2842 addHistoryItem(removeGapCols);
2844 statusBar.setText(MessageManager
2845 .formatMessage("label.removed_empty_columns", new Object[]
2846 { Integer.valueOf(removeGapCols.getSize()).toString() }));
2848 // This is to maintain viewport position on first residue
2849 // of first sequence
2850 SequenceI seq = viewport.getAlignment().getSequenceAt(0);
2851 ViewportRanges ranges = viewport.getRanges();
2852 int startRes = seq.findPosition(ranges.getStartRes());
2853 // ShiftList shifts;
2854 // viewport.getAlignment().removeGaps(shifts=new ShiftList());
2855 // edit.alColumnChanges=shifts.getInverse();
2856 // if (viewport.hasHiddenColumns)
2857 // viewport.getColumnSelection().compensateForEdits(shifts);
2858 ranges.setStartRes(seq.findIndex(startRes) - 1);
2859 viewport.firePropertyChange("alignment", null,
2860 viewport.getAlignment().getSequences());
2871 public void removeAllGapsMenuItem_actionPerformed(ActionEvent e)
2873 int start = 0, end = viewport.getAlignment().getWidth() - 1;
2876 if (viewport.getSelectionGroup() != null)
2878 seqs = viewport.getSelectionGroup()
2879 .getSequencesAsArray(viewport.getHiddenRepSequences());
2880 start = viewport.getSelectionGroup().getStartRes();
2881 end = viewport.getSelectionGroup().getEndRes();
2885 seqs = viewport.getAlignment().getSequencesArray();
2888 // This is to maintain viewport position on first residue
2889 // of first sequence
2890 SequenceI seq = viewport.getAlignment().getSequenceAt(0);
2891 int startRes = seq.findPosition(viewport.getRanges().getStartRes());
2893 addHistoryItem(new RemoveGapsCommand("Remove Gaps", seqs, start, end,
2894 viewport.getAlignment()));
2896 viewport.getRanges().setStartRes(seq.findIndex(startRes) - 1);
2898 viewport.firePropertyChange("alignment", null,
2899 viewport.getAlignment().getSequences());
2910 public void padGapsMenuitem_actionPerformed(ActionEvent e)
2912 viewport.setPadGaps(padGapsMenuitem.isSelected());
2913 viewport.firePropertyChange("alignment", null,
2914 viewport.getAlignment().getSequences());
2924 public void findMenuItem_actionPerformed(ActionEvent e)
2930 * Create a new view of the current alignment.
2933 public void newView_actionPerformed(ActionEvent e)
2935 newView(null, true);
2939 * Creates and shows a new view of the current alignment.
2942 * title of newly created view; if null, one will be generated
2943 * @param copyAnnotation
2944 * if true then duplicate all annnotation, groups and settings
2945 * @return new alignment panel, already displayed.
2947 public AlignmentPanel newView(String viewTitle, boolean copyAnnotation)
2950 * Create a new AlignmentPanel (with its own, new Viewport)
2952 AlignmentPanel newap = new Jalview2XML().copyAlignPanel(alignPanel);
2953 if (!copyAnnotation)
2956 * remove all groups and annotation except for the automatic stuff
2958 newap.av.getAlignment().deleteAllGroups();
2959 newap.av.getAlignment().deleteAllAnnotations(false);
2962 newap.av.setGatherViewsHere(false);
2964 if (viewport.viewName == null)
2966 viewport.viewName = MessageManager
2967 .getString("label.view_name_original");
2971 * Views share the same edits undo and redo stacks
2973 newap.av.setHistoryList(viewport.getHistoryList());
2974 newap.av.setRedoList(viewport.getRedoList());
2977 * Views share the same mappings; need to deregister any new mappings
2978 * created by copyAlignPanel, and register the new reference to the shared
2981 newap.av.replaceMappings(viewport.getAlignment());
2984 * start up cDNA consensus (if applicable) now mappings are in place
2986 if (newap.av.initComplementConsensus())
2988 newap.refresh(true); // adjust layout of annotations
2991 newap.av.viewName = getNewViewName(viewTitle);
2993 addAlignmentPanel(newap, true);
2994 newap.alignmentChanged();
2996 if (alignPanels.size() == 2)
2998 viewport.setGatherViewsHere(true);
3000 tabbedPane.setSelectedIndex(tabbedPane.getTabCount() - 1);
3005 * Make a new name for the view, ensuring it is unique within the current
3006 * sequenceSetId. (This used to be essential for Jalview Project archives, but
3007 * these now use viewId. Unique view names are still desirable for usability.)
3012 protected String getNewViewName(String viewTitle)
3014 int index = Desktop.getViewCount(viewport.getSequenceSetId());
3015 boolean addFirstIndex = false;
3016 if (viewTitle == null || viewTitle.trim().length() == 0)
3018 viewTitle = MessageManager.getString("action.view");
3019 addFirstIndex = true;
3023 index = 1;// we count from 1 if given a specific name
3025 String newViewName = viewTitle + ((addFirstIndex) ? " " + index : "");
3027 List<Component> comps = PaintRefresher.components
3028 .get(viewport.getSequenceSetId());
3030 List<String> existingNames = getExistingViewNames(comps);
3032 while (existingNames.contains(newViewName))
3034 newViewName = viewTitle + " " + (++index);
3040 * Returns a list of distinct view names found in the given list of
3041 * components. View names are held on the viewport of an AlignmentPanel.
3046 protected List<String> getExistingViewNames(List<Component> comps)
3048 List<String> existingNames = new ArrayList<>();
3049 for (Component comp : comps)
3051 if (comp instanceof AlignmentPanel)
3053 AlignmentPanel ap = (AlignmentPanel) comp;
3054 if (!existingNames.contains(ap.av.viewName))
3056 existingNames.add(ap.av.viewName);
3060 return existingNames;
3064 * Explode tabbed views into separate windows.
3067 public void expandViews_actionPerformed(ActionEvent e)
3069 Desktop.explodeViews(this);
3073 * Gather views in separate windows back into a tabbed presentation.
3076 public void gatherViews_actionPerformed(ActionEvent e)
3078 Desktop.instance.gatherViews(this);
3088 public void font_actionPerformed(ActionEvent e)
3090 new FontChooser(alignPanel);
3100 protected void seqLimit_actionPerformed(ActionEvent e)
3102 viewport.setShowJVSuffix(seqLimits.isSelected());
3104 alignPanel.getIdPanel().getIdCanvas()
3105 .setPreferredSize(alignPanel.calculateIdWidth());
3106 alignPanel.paintAlignment(true, false);
3110 public void idRightAlign_actionPerformed(ActionEvent e)
3112 viewport.setRightAlignIds(idRightAlign.isSelected());
3113 alignPanel.paintAlignment(false, false);
3117 public void centreColumnLabels_actionPerformed(ActionEvent e)
3119 viewport.setCentreColumnLabels(centreColumnLabelsMenuItem.getState());
3120 alignPanel.paintAlignment(false, false);
3126 * @see jalview.jbgui.GAlignFrame#followHighlight_actionPerformed()
3129 protected void followHighlight_actionPerformed()
3132 * Set the 'follow' flag on the Viewport (and scroll to position if now
3135 final boolean state = this.followHighlightMenuItem.getState();
3136 viewport.setFollowHighlight(state);
3139 alignPanel.scrollToPosition(viewport.getSearchResults(), false);
3150 protected void colourTextMenuItem_actionPerformed(ActionEvent e)
3152 viewport.setColourText(colourTextMenuItem.isSelected());
3153 alignPanel.paintAlignment(false, false);
3163 public void wrapMenuItem_actionPerformed(ActionEvent e)
3165 scaleAbove.setVisible(wrapMenuItem.isSelected());
3166 scaleLeft.setVisible(wrapMenuItem.isSelected());
3167 scaleRight.setVisible(wrapMenuItem.isSelected());
3168 viewport.setWrapAlignment(wrapMenuItem.isSelected());
3169 alignPanel.updateLayout();
3173 public void showAllSeqs_actionPerformed(ActionEvent e)
3175 viewport.showAllHiddenSeqs();
3179 public void showAllColumns_actionPerformed(ActionEvent e)
3181 viewport.showAllHiddenColumns();
3182 alignPanel.paintAlignment(true, true);
3183 viewport.sendSelection();
3187 public void hideSelSequences_actionPerformed(ActionEvent e)
3189 viewport.hideAllSelectedSeqs();
3193 * called by key handler and the hide all/show all menu items
3198 private void toggleHiddenRegions(boolean toggleSeqs, boolean toggleCols)
3201 boolean hide = false;
3202 SequenceGroup sg = viewport.getSelectionGroup();
3203 if (!toggleSeqs && !toggleCols)
3205 // Hide everything by the current selection - this is a hack - we do the
3206 // invert and then hide
3207 // first check that there will be visible columns after the invert.
3208 if (viewport.hasSelectedColumns() || (sg != null && sg.getSize() > 0
3209 && sg.getStartRes() <= sg.getEndRes()))
3211 // now invert the sequence set, if required - empty selection implies
3212 // that no hiding is required.
3215 invertSequenceMenuItem_actionPerformed(null);
3216 sg = viewport.getSelectionGroup();
3220 viewport.expandColSelection(sg, true);
3221 // finally invert the column selection and get the new sequence
3223 invertColSel_actionPerformed(null);
3230 if (sg != null && sg.getSize() != viewport.getAlignment().getHeight())
3232 hideSelSequences_actionPerformed(null);
3235 else if (!(toggleCols && viewport.hasSelectedColumns()))
3237 showAllSeqs_actionPerformed(null);
3243 if (viewport.hasSelectedColumns())
3245 hideSelColumns_actionPerformed(null);
3248 viewport.setSelectionGroup(sg);
3253 showAllColumns_actionPerformed(null);
3262 * jalview.jbgui.GAlignFrame#hideAllButSelection_actionPerformed(java.awt.
3263 * event.ActionEvent)
3266 public void hideAllButSelection_actionPerformed(ActionEvent e)
3268 toggleHiddenRegions(false, false);
3269 viewport.sendSelection();
3276 * jalview.jbgui.GAlignFrame#hideAllSelection_actionPerformed(java.awt.event
3280 public void hideAllSelection_actionPerformed(ActionEvent e)
3282 SequenceGroup sg = viewport.getSelectionGroup();
3283 viewport.expandColSelection(sg, false);
3284 viewport.hideAllSelectedSeqs();
3285 viewport.hideSelectedColumns();
3286 alignPanel.paintAlignment(true, true);
3287 viewport.sendSelection();
3294 * jalview.jbgui.GAlignFrame#showAllhidden_actionPerformed(java.awt.event.
3298 public void showAllhidden_actionPerformed(ActionEvent e)
3300 viewport.showAllHiddenColumns();
3301 viewport.showAllHiddenSeqs();
3302 alignPanel.paintAlignment(true, true);
3303 viewport.sendSelection();
3307 public void hideSelColumns_actionPerformed(ActionEvent e)
3309 viewport.hideSelectedColumns();
3310 alignPanel.paintAlignment(true, true);
3311 viewport.sendSelection();
3315 public void hiddenMarkers_actionPerformed(ActionEvent e)
3317 viewport.setShowHiddenMarkers(hiddenMarkers.isSelected());
3328 protected void scaleAbove_actionPerformed(ActionEvent e)
3330 viewport.setScaleAboveWrapped(scaleAbove.isSelected());
3331 // TODO: do we actually need to update overview for scale above change ?
3332 alignPanel.paintAlignment(true, false);
3342 protected void scaleLeft_actionPerformed(ActionEvent e)
3344 viewport.setScaleLeftWrapped(scaleLeft.isSelected());
3345 alignPanel.paintAlignment(true, false);
3355 protected void scaleRight_actionPerformed(ActionEvent e)
3357 viewport.setScaleRightWrapped(scaleRight.isSelected());
3358 alignPanel.paintAlignment(true, false);
3368 public void viewBoxesMenuItem_actionPerformed(ActionEvent e)
3370 viewport.setShowBoxes(viewBoxesMenuItem.isSelected());
3371 alignPanel.paintAlignment(false, false);
3381 public void viewTextMenuItem_actionPerformed(ActionEvent e)
3383 viewport.setShowText(viewTextMenuItem.isSelected());
3384 alignPanel.paintAlignment(false, false);
3394 protected void renderGapsMenuItem_actionPerformed(ActionEvent e)
3396 viewport.setRenderGaps(renderGapsMenuItem.isSelected());
3397 alignPanel.paintAlignment(false, false);
3400 public FeatureSettings featureSettings;
3403 public FeatureSettingsControllerI getFeatureSettingsUI()
3405 return featureSettings;
3409 public void featureSettings_actionPerformed(ActionEvent e)
3411 if (featureSettings != null)
3413 featureSettings.close();
3414 featureSettings = null;
3416 if (!showSeqFeatures.isSelected())
3418 // make sure features are actually displayed
3419 showSeqFeatures.setSelected(true);
3420 showSeqFeatures_actionPerformed(null);
3422 featureSettings = new FeatureSettings(this);
3426 * Set or clear 'Show Sequence Features'
3432 public void showSeqFeatures_actionPerformed(ActionEvent evt)
3434 viewport.setShowSequenceFeatures(showSeqFeatures.isSelected());
3435 alignPanel.paintAlignment(true, true);
3439 * Action on toggle of the 'Show annotations' menu item. This shows or hides
3440 * the annotations panel as a whole.
3442 * The options to show/hide all annotations should be enabled when the panel
3443 * is shown, and disabled when the panel is hidden.
3448 public void annotationPanelMenuItem_actionPerformed(ActionEvent e)
3450 final boolean setVisible = annotationPanelMenuItem.isSelected();
3451 viewport.setShowAnnotation(setVisible);
3452 this.showAllSeqAnnotations.setEnabled(setVisible);
3453 this.hideAllSeqAnnotations.setEnabled(setVisible);
3454 this.showAllAlAnnotations.setEnabled(setVisible);
3455 this.hideAllAlAnnotations.setEnabled(setVisible);
3456 alignPanel.updateLayout();
3460 public void alignmentProperties()
3462 JEditorPane editPane = new JEditorPane("text/html", "");
3463 editPane.setEditable(false);
3464 StringBuffer contents = new AlignmentProperties(viewport.getAlignment())
3467 MessageManager.formatMessage("label.html_content", new Object[]
3468 { contents.toString() }));
3469 JInternalFrame frame = new JInternalFrame();
3470 frame.getContentPane().add(new JScrollPane(editPane));
3472 Desktop.addInternalFrame(frame, MessageManager
3473 .formatMessage("label.alignment_properties", new Object[]
3474 { getTitle() }), 500, 400);
3484 public void overviewMenuItem_actionPerformed(ActionEvent e)
3486 if (alignPanel.overviewPanel != null)
3491 JInternalFrame frame = new JInternalFrame();
3492 final OverviewPanel overview = new OverviewPanel(alignPanel);
3493 frame.setContentPane(overview);
3494 Desktop.addInternalFrame(frame, MessageManager
3495 .formatMessage("label.overview_params", new Object[]
3496 { this.getTitle() }), true, frame.getWidth(), frame.getHeight(),
3499 frame.setLayer(JLayeredPane.PALETTE_LAYER);
3500 frame.addInternalFrameListener(
3501 new javax.swing.event.InternalFrameAdapter()
3504 public void internalFrameClosed(
3505 javax.swing.event.InternalFrameEvent evt)
3508 alignPanel.setOverviewPanel(null);
3512 alignPanel.setOverviewPanel(overview);
3516 public void textColour_actionPerformed()
3518 new TextColourChooser().chooseColour(alignPanel, null);
3522 * public void covariationColour_actionPerformed() {
3524 * CovariationColourScheme(viewport.getAlignment().getAlignmentAnnotation
3528 public void annotationColour_actionPerformed()
3530 new AnnotationColourChooser(viewport, alignPanel);
3534 public void annotationColumn_actionPerformed(ActionEvent e)
3536 new AnnotationColumnChooser(viewport, alignPanel);
3540 * Action on the user checking or unchecking the option to apply the selected
3541 * colour scheme to all groups. If unchecked, groups may have their own
3542 * independent colour schemes.
3547 public void applyToAllGroups_actionPerformed(boolean selected)
3549 viewport.setColourAppliesToAllGroups(selected);
3553 * Action on user selecting a colour from the colour menu
3556 * the name (not the menu item label!) of the colour scheme
3559 public void changeColour_actionPerformed(String name)
3562 * 'User Defined' opens a panel to configure or load a
3563 * user-defined colour scheme
3565 if (ResidueColourScheme.USER_DEFINED_MENU.equals(name))
3567 new UserDefinedColours(alignPanel);
3572 * otherwise set the chosen colour scheme (or null for 'None')
3574 ColourSchemeI cs = ColourSchemes.getInstance().getColourScheme(name,
3575 viewport.getAlignment(), viewport.getHiddenRepSequences());
3580 * Actions on setting or changing the alignment colour scheme
3585 public void changeColour(ColourSchemeI cs)
3587 // TODO: pull up to controller method
3588 ColourMenuHelper.setColourSelected(colourMenu, cs);
3590 viewport.setGlobalColourScheme(cs);
3592 alignPanel.paintAlignment(true, true);
3596 * Show the PID threshold slider panel
3599 protected void modifyPID_actionPerformed()
3601 SliderPanel.setPIDSliderSource(alignPanel, viewport.getResidueShading(),
3602 alignPanel.getViewName());
3603 SliderPanel.showPIDSlider();
3607 * Show the Conservation slider panel
3610 protected void modifyConservation_actionPerformed()
3612 SliderPanel.setConservationSlider(alignPanel,
3613 viewport.getResidueShading(), alignPanel.getViewName());
3614 SliderPanel.showConservationSlider();
3618 * Action on selecting or deselecting (Colour) By Conservation
3621 public void conservationMenuItem_actionPerformed(boolean selected)
3623 modifyConservation.setEnabled(selected);
3624 viewport.setConservationSelected(selected);
3625 viewport.getResidueShading().setConservationApplied(selected);
3627 changeColour(viewport.getGlobalColourScheme());
3630 modifyConservation_actionPerformed();
3634 SliderPanel.hideConservationSlider();
3639 * Action on selecting or deselecting (Colour) Above PID Threshold
3642 public void abovePIDThreshold_actionPerformed(boolean selected)
3644 modifyPID.setEnabled(selected);
3645 viewport.setAbovePIDThreshold(selected);
3648 viewport.getResidueShading().setThreshold(0,
3649 viewport.isIgnoreGapsConsensus());
3652 changeColour(viewport.getGlobalColourScheme());
3655 modifyPID_actionPerformed();
3659 SliderPanel.hidePIDSlider();
3670 public void sortPairwiseMenuItem_actionPerformed(ActionEvent e)
3672 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3673 AlignmentSorter.sortByPID(viewport.getAlignment(),
3674 viewport.getAlignment().getSequenceAt(0));
3675 addHistoryItem(new OrderCommand("Pairwise Sort", oldOrder,
3676 viewport.getAlignment()));
3677 alignPanel.paintAlignment(true, false);
3687 public void sortIDMenuItem_actionPerformed(ActionEvent e)
3689 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3690 AlignmentSorter.sortByID(viewport.getAlignment());
3692 new OrderCommand("ID Sort", oldOrder, viewport.getAlignment()));
3693 alignPanel.paintAlignment(true, false);
3703 public void sortLengthMenuItem_actionPerformed(ActionEvent e)
3705 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3706 AlignmentSorter.sortByLength(viewport.getAlignment());
3707 addHistoryItem(new OrderCommand("Length Sort", oldOrder,
3708 viewport.getAlignment()));
3709 alignPanel.paintAlignment(true, false);
3719 public void sortGroupMenuItem_actionPerformed(ActionEvent e)
3721 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3722 AlignmentSorter.sortByGroup(viewport.getAlignment());
3723 addHistoryItem(new OrderCommand("Group Sort", oldOrder,
3724 viewport.getAlignment()));
3726 alignPanel.paintAlignment(true, false);
3736 public void removeRedundancyMenuItem_actionPerformed(ActionEvent e)
3738 new RedundancyPanel(alignPanel, this);
3748 public void pairwiseAlignmentMenuItem_actionPerformed(ActionEvent e)
3750 if ((viewport.getSelectionGroup() == null)
3751 || (viewport.getSelectionGroup().getSize() < 2))
3753 JvOptionPane.showInternalMessageDialog(this,
3754 MessageManager.getString(
3755 "label.you_must_select_least_two_sequences"),
3756 MessageManager.getString("label.invalid_selection"),
3757 JvOptionPane.WARNING_MESSAGE);
3761 JInternalFrame frame = new JInternalFrame();
3762 frame.setContentPane(new PairwiseAlignPanel(viewport));
3763 Desktop.addInternalFrame(frame,
3764 MessageManager.getString("action.pairwise_alignment"), 600,
3770 public void autoCalculate_actionPerformed(ActionEvent e)
3772 viewport.autoCalculateConsensus = autoCalculate.isSelected();
3773 if (viewport.autoCalculateConsensus)
3775 viewport.firePropertyChange("alignment", null,
3776 viewport.getAlignment().getSequences());
3781 public void sortByTreeOption_actionPerformed(ActionEvent e)
3783 viewport.sortByTree = sortByTree.isSelected();
3787 protected void listenToViewSelections_actionPerformed(ActionEvent e)
3789 viewport.followSelection = listenToViewSelections.isSelected();
3793 * Constructs a tree panel and adds it to the desktop
3796 * tree type (NJ or AV)
3798 * name of score model used to compute the tree
3800 * parameters for the distance or similarity calculation
3802 void newTreePanel(String type, String modelName,
3803 SimilarityParamsI options)
3805 String frameTitle = "";
3808 boolean onSelection = false;
3809 if (viewport.getSelectionGroup() != null
3810 && viewport.getSelectionGroup().getSize() > 0)
3812 SequenceGroup sg = viewport.getSelectionGroup();
3814 /* Decide if the selection is a column region */
3815 for (SequenceI _s : sg.getSequences())
3817 if (_s.getLength() < sg.getEndRes())
3819 JvOptionPane.showMessageDialog(Desktop.desktop,
3820 MessageManager.getString(
3821 "label.selected_region_to_tree_may_only_contain_residues_or_gaps"),
3822 MessageManager.getString(
3823 "label.sequences_selection_not_aligned"),
3824 JvOptionPane.WARNING_MESSAGE);
3833 if (viewport.getAlignment().getHeight() < 2)
3839 tp = new TreePanel(alignPanel, type, modelName, options);
3840 frameTitle = tp.getPanelTitle() + (onSelection ? " on region" : "");
3842 frameTitle += " from ";
3844 if (viewport.viewName != null)
3846 frameTitle += viewport.viewName + " of ";
3849 frameTitle += this.title;
3851 Desktop.addInternalFrame(tp, frameTitle, 600, 500);
3862 public void addSortByOrderMenuItem(String title,
3863 final AlignmentOrder order)
3865 final JMenuItem item = new JMenuItem(MessageManager
3866 .formatMessage("action.by_title_param", new Object[]
3869 item.addActionListener(new java.awt.event.ActionListener()
3872 public void actionPerformed(ActionEvent e)
3874 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3876 // TODO: JBPNote - have to map order entries to curent SequenceI
3878 AlignmentSorter.sortBy(viewport.getAlignment(), order);
3880 addHistoryItem(new OrderCommand(order.getName(), oldOrder,
3881 viewport.getAlignment()));
3883 alignPanel.paintAlignment(true, false);
3889 * Add a new sort by annotation score menu item
3892 * the menu to add the option to
3894 * the label used to retrieve scores for each sequence on the
3897 public void addSortByAnnotScoreMenuItem(JMenu sort,
3898 final String scoreLabel)
3900 final JMenuItem item = new JMenuItem(scoreLabel);
3902 item.addActionListener(new java.awt.event.ActionListener()
3905 public void actionPerformed(ActionEvent e)
3907 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3908 AlignmentSorter.sortByAnnotationScore(scoreLabel,
3909 viewport.getAlignment());// ,viewport.getSelectionGroup());
3910 addHistoryItem(new OrderCommand("Sort by " + scoreLabel, oldOrder,
3911 viewport.getAlignment()));
3912 alignPanel.paintAlignment(true, false);
3918 * last hash for alignment's annotation array - used to minimise cost of
3921 protected int _annotationScoreVectorHash;
3924 * search the alignment and rebuild the sort by annotation score submenu the
3925 * last alignment annotation vector hash is stored to minimize cost of
3926 * rebuilding in subsequence calls.
3930 public void buildSortByAnnotationScoresMenu()
3932 if (viewport.getAlignment().getAlignmentAnnotation() == null)
3937 if (viewport.getAlignment().getAlignmentAnnotation()
3938 .hashCode() != _annotationScoreVectorHash)
3940 sortByAnnotScore.removeAll();
3941 // almost certainly a quicker way to do this - but we keep it simple
3942 Hashtable scoreSorts = new Hashtable();
3943 AlignmentAnnotation aann[];
3944 for (SequenceI sqa : viewport.getAlignment().getSequences())
3946 aann = sqa.getAnnotation();
3947 for (int i = 0; aann != null && i < aann.length; i++)
3949 if (aann[i].hasScore() && aann[i].sequenceRef != null)
3951 scoreSorts.put(aann[i].label, aann[i].label);
3955 Enumeration labels = scoreSorts.keys();
3956 while (labels.hasMoreElements())
3958 addSortByAnnotScoreMenuItem(sortByAnnotScore,
3959 (String) labels.nextElement());
3961 sortByAnnotScore.setVisible(scoreSorts.size() > 0);
3964 _annotationScoreVectorHash = viewport.getAlignment()
3965 .getAlignmentAnnotation().hashCode();
3970 * Maintain the Order by->Displayed Tree menu. Creates a new menu item for a
3971 * TreePanel with an appropriate <code>jalview.analysis.AlignmentSorter</code>
3972 * call. Listeners are added to remove the menu item when the treePanel is
3973 * closed, and adjust the tree leaf to sequence mapping when the alignment is
3977 public void buildTreeSortMenu()
3979 sortByTreeMenu.removeAll();
3981 List<Component> comps = PaintRefresher.components
3982 .get(viewport.getSequenceSetId());
3983 List<TreePanel> treePanels = new ArrayList<>();
3984 for (Component comp : comps)
3986 if (comp instanceof TreePanel)
3988 treePanels.add((TreePanel) comp);
3992 if (treePanels.size() < 1)
3994 sortByTreeMenu.setVisible(false);
3998 sortByTreeMenu.setVisible(true);
4000 for (final TreePanel tp : treePanels)
4002 final JMenuItem item = new JMenuItem(tp.getTitle());
4003 item.addActionListener(new java.awt.event.ActionListener()
4006 public void actionPerformed(ActionEvent e)
4008 tp.sortByTree_actionPerformed();
4009 addHistoryItem(tp.sortAlignmentIn(alignPanel));
4014 sortByTreeMenu.add(item);
4018 public boolean sortBy(AlignmentOrder alorder, String undoname)
4020 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
4021 AlignmentSorter.sortBy(viewport.getAlignment(), alorder);
4022 if (undoname != null)
4024 addHistoryItem(new OrderCommand(undoname, oldOrder,
4025 viewport.getAlignment()));
4027 alignPanel.paintAlignment(true, false);
4032 * Work out whether the whole set of sequences or just the selected set will
4033 * be submitted for multiple alignment.
4036 public jalview.datamodel.AlignmentView gatherSequencesForAlignment()
4038 // Now, check we have enough sequences
4039 AlignmentView msa = null;
4041 if ((viewport.getSelectionGroup() != null)
4042 && (viewport.getSelectionGroup().getSize() > 1))
4044 // JBPNote UGLY! To prettify, make SequenceGroup and Alignment conform to
4045 // some common interface!
4047 * SequenceGroup seqs = viewport.getSelectionGroup(); int sz; msa = new
4048 * SequenceI[sz = seqs.getSize(false)];
4050 * for (int i = 0; i < sz; i++) { msa[i] = (SequenceI)
4051 * seqs.getSequenceAt(i); }
4053 msa = viewport.getAlignmentView(true);
4055 else if (viewport.getSelectionGroup() != null
4056 && viewport.getSelectionGroup().getSize() == 1)
4058 int option = JvOptionPane.showConfirmDialog(this,
4059 MessageManager.getString("warn.oneseq_msainput_selection"),
4060 MessageManager.getString("label.invalid_selection"),
4061 JvOptionPane.OK_CANCEL_OPTION);
4062 if (option == JvOptionPane.OK_OPTION)
4064 msa = viewport.getAlignmentView(false);
4069 msa = viewport.getAlignmentView(false);
4075 * Decides what is submitted to a secondary structure prediction service: the
4076 * first sequence in the alignment, or in the current selection, or, if the
4077 * alignment is 'aligned' (ie padded with gaps), then the currently selected
4078 * region or the whole alignment. (where the first sequence in the set is the
4079 * one that the prediction will be for).
4081 public AlignmentView gatherSeqOrMsaForSecStrPrediction()
4083 AlignmentView seqs = null;
4085 if ((viewport.getSelectionGroup() != null)
4086 && (viewport.getSelectionGroup().getSize() > 0))
4088 seqs = viewport.getAlignmentView(true);
4092 seqs = viewport.getAlignmentView(false);
4094 // limit sequences - JBPNote in future - could spawn multiple prediction
4096 // TODO: viewport.getAlignment().isAligned is a global state - the local
4097 // selection may well be aligned - we preserve 2.0.8 behaviour for moment.
4098 if (!viewport.getAlignment().isAligned(false))
4100 seqs.setSequences(new SeqCigar[] { seqs.getSequences()[0] });
4101 // TODO: if seqs.getSequences().length>1 then should really have warned
4115 protected void loadTreeMenuItem_actionPerformed(ActionEvent e)
4117 // Pick the tree file
4118 JalviewFileChooser chooser = new JalviewFileChooser(
4119 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
4120 chooser.setFileView(new JalviewFileView());
4121 chooser.setDialogTitle(
4122 MessageManager.getString("label.select_newick_like_tree_file"));
4123 chooser.setToolTipText(
4124 MessageManager.getString("label.load_tree_file"));
4126 int value = chooser.showOpenDialog(null);
4128 if (value == JalviewFileChooser.APPROVE_OPTION)
4130 String filePath = chooser.getSelectedFile().getPath();
4131 Cache.setProperty("LAST_DIRECTORY", filePath);
4132 NewickFile fin = null;
4135 fin = new NewickFile(filePath, DataSourceType.FILE);
4136 viewport.setCurrentTree(showNewickTree(fin, filePath).getTree());
4137 } catch (Exception ex)
4139 JvOptionPane.showMessageDialog(Desktop.desktop, ex.getMessage(),
4140 MessageManager.getString("label.problem_reading_tree_file"),
4141 JvOptionPane.WARNING_MESSAGE);
4142 ex.printStackTrace();
4144 if (fin != null && fin.hasWarningMessage())
4146 JvOptionPane.showMessageDialog(Desktop.desktop,
4147 fin.getWarningMessage(),
4149 .getString("label.possible_problem_with_tree_file"),
4150 JvOptionPane.WARNING_MESSAGE);
4155 public TreePanel showNewickTree(NewickFile nf, String treeTitle)
4157 return showNewickTree(nf, treeTitle, 600, 500, 4, 5);
4160 public TreePanel showNewickTree(NewickFile nf, String treeTitle, int w,
4161 int h, int x, int y)
4163 return showNewickTree(nf, treeTitle, null, w, h, x, y);
4167 * Add a treeviewer for the tree extracted from a Newick file object to the
4168 * current alignment view
4175 * Associated alignment input data (or null)
4184 * @return TreePanel handle
4186 public TreePanel showNewickTree(NewickFile nf, String treeTitle,
4187 AlignmentView input, int w, int h, int x, int y)
4189 TreePanel tp = null;
4195 if (nf.getTree() != null)
4197 tp = new TreePanel(alignPanel, nf, treeTitle, input);
4203 tp.setLocation(x, y);
4206 Desktop.addInternalFrame(tp, treeTitle, w, h);
4208 } catch (Exception ex)
4210 ex.printStackTrace();
4216 private boolean buildingMenu = false;
4219 * Generates menu items and listener event actions for web service clients
4222 public void BuildWebServiceMenu()
4224 while (buildingMenu)
4228 System.err.println("Waiting for building menu to finish.");
4230 } catch (Exception e)
4234 final AlignFrame me = this;
4235 buildingMenu = true;
4236 new Thread(new Runnable()
4241 final List<JMenuItem> legacyItems = new ArrayList<>();
4244 // System.err.println("Building ws menu again "
4245 // + Thread.currentThread());
4246 // TODO: add support for context dependent disabling of services based
4248 // alignment and current selection
4249 // TODO: add additional serviceHandle parameter to specify abstract
4251 // class independently of AbstractName
4252 // TODO: add in rediscovery GUI function to restart discoverer
4253 // TODO: group services by location as well as function and/or
4255 // object broker mechanism.
4256 final Vector<JMenu> wsmenu = new Vector<>();
4257 final IProgressIndicator af = me;
4260 * do not i18n these strings - they are hard-coded in class
4261 * compbio.data.msa.Category, Jws2Discoverer.isRecalculable() and
4262 * SequenceAnnotationWSClient.initSequenceAnnotationWSClient()
4264 final JMenu msawsmenu = new JMenu("Alignment");
4265 final JMenu secstrmenu = new JMenu(
4266 "Secondary Structure Prediction");
4267 final JMenu seqsrchmenu = new JMenu("Sequence Database Search");
4268 final JMenu analymenu = new JMenu("Analysis");
4269 final JMenu dismenu = new JMenu("Protein Disorder");
4270 // JAL-940 - only show secondary structure prediction services from
4271 // the legacy server
4272 if (// Cache.getDefault("SHOW_JWS1_SERVICES", true)
4274 Discoverer.services != null && (Discoverer.services.size() > 0))
4276 // TODO: refactor to allow list of AbstractName/Handler bindings to
4278 // stored or retrieved from elsewhere
4279 // No MSAWS used any more:
4280 // Vector msaws = null; // (Vector)
4281 // Discoverer.services.get("MsaWS");
4282 Vector secstrpr = (Vector) Discoverer.services
4284 if (secstrpr != null)
4286 // Add any secondary structure prediction services
4287 for (int i = 0, j = secstrpr.size(); i < j; i++)
4289 final ext.vamsas.ServiceHandle sh = (ext.vamsas.ServiceHandle) secstrpr
4291 jalview.ws.WSMenuEntryProviderI impl = jalview.ws.jws1.Discoverer
4292 .getServiceClient(sh);
4293 int p = secstrmenu.getItemCount();
4294 impl.attachWSMenuEntry(secstrmenu, me);
4295 int q = secstrmenu.getItemCount();
4296 for (int litm = p; litm < q; litm++)
4298 legacyItems.add(secstrmenu.getItem(litm));
4304 // Add all submenus in the order they should appear on the web
4306 wsmenu.add(msawsmenu);
4307 wsmenu.add(secstrmenu);
4308 wsmenu.add(dismenu);
4309 wsmenu.add(analymenu);
4310 // No search services yet
4311 // wsmenu.add(seqsrchmenu);
4313 javax.swing.SwingUtilities.invokeLater(new Runnable()
4320 webService.removeAll();
4321 // first, add discovered services onto the webservices menu
4322 if (wsmenu.size() > 0)
4324 for (int i = 0, j = wsmenu.size(); i < j; i++)
4326 webService.add(wsmenu.get(i));
4331 webService.add(me.webServiceNoServices);
4333 // TODO: move into separate menu builder class.
4334 boolean new_sspred = false;
4335 if (Cache.getDefault("SHOW_JWS2_SERVICES", true))
4337 Jws2Discoverer jws2servs = Jws2Discoverer.getDiscoverer();
4338 if (jws2servs != null)
4340 if (jws2servs.hasServices())
4342 jws2servs.attachWSMenuEntry(webService, me);
4343 for (Jws2Instance sv : jws2servs.getServices())
4345 if (sv.description.toLowerCase().contains("jpred"))
4347 for (JMenuItem jmi : legacyItems)
4349 jmi.setVisible(false);
4355 if (jws2servs.isRunning())
4357 JMenuItem tm = new JMenuItem(
4358 "Still discovering JABA Services");
4359 tm.setEnabled(false);
4364 build_urlServiceMenu(me.webService);
4365 build_fetchdbmenu(webService);
4366 for (JMenu item : wsmenu)
4368 if (item.getItemCount() == 0)
4370 item.setEnabled(false);
4374 item.setEnabled(true);
4377 } catch (Exception e)
4380 "Exception during web service menu building process.",
4385 } catch (Exception e)
4388 buildingMenu = false;
4395 * construct any groupURL type service menu entries.
4399 private void build_urlServiceMenu(JMenu webService)
4401 // TODO: remove this code when 2.7 is released
4402 // DEBUG - alignmentView
4404 * JMenuItem testAlView = new JMenuItem("Test AlignmentView"); final
4405 * AlignFrame af = this; testAlView.addActionListener(new ActionListener() {
4407 * @Override public void actionPerformed(ActionEvent e) {
4408 * jalview.datamodel.AlignmentView
4409 * .testSelectionViews(af.viewport.getAlignment(),
4410 * af.viewport.getColumnSelection(), af.viewport.selectionGroup); }
4412 * }); webService.add(testAlView);
4414 // TODO: refactor to RestClient discoverer and merge menu entries for
4415 // rest-style services with other types of analysis/calculation service
4416 // SHmmr test client - still being implemented.
4417 // DEBUG - alignmentView
4419 for (jalview.ws.rest.RestClient client : jalview.ws.rest.RestClient
4422 client.attachWSMenuEntry(
4423 JvSwingUtils.findOrCreateMenu(webService, client.getAction()),
4429 * Searches the alignment sequences for xRefs and builds the Show
4430 * Cross-References menu (formerly called Show Products), with database
4431 * sources for which cross-references are found (protein sources for a
4432 * nucleotide alignment and vice versa)
4434 * @return true if Show Cross-references menu should be enabled
4436 public boolean canShowProducts()
4438 SequenceI[] seqs = viewport.getAlignment().getSequencesArray();
4439 AlignmentI dataset = viewport.getAlignment().getDataset();
4441 showProducts.removeAll();
4442 final boolean dna = viewport.getAlignment().isNucleotide();
4444 if (seqs == null || seqs.length == 0)
4446 // nothing to see here.
4450 boolean showp = false;
4453 List<String> ptypes = new CrossRef(seqs, dataset)
4454 .findXrefSourcesForSequences(dna);
4456 for (final String source : ptypes)
4459 final AlignFrame af = this;
4460 JMenuItem xtype = new JMenuItem(source);
4461 xtype.addActionListener(new ActionListener()
4464 public void actionPerformed(ActionEvent e)
4466 showProductsFor(af.viewport.getSequenceSelection(), dna,
4470 showProducts.add(xtype);
4472 showProducts.setVisible(showp);
4473 showProducts.setEnabled(showp);
4474 } catch (Exception e)
4477 "canShowProducts threw an exception - please report to help@jalview.org",
4485 * Finds and displays cross-references for the selected sequences (protein
4486 * products for nucleotide sequences, dna coding sequences for peptides).
4489 * the sequences to show cross-references for
4491 * true if from a nucleotide alignment (so showing proteins)
4493 * the database to show cross-references for
4495 protected void showProductsFor(final SequenceI[] sel, final boolean _odna,
4496 final String source)
4498 new Thread(CrossRefAction.getHandlerFor(sel, _odna, source, this))
4503 * Construct and display a new frame containing the translation of this
4504 * frame's DNA sequences to their aligned protein (amino acid) equivalents.
4507 public void showTranslation_actionPerformed(ActionEvent e)
4509 AlignmentI al = null;
4512 Dna dna = new Dna(viewport, viewport.getViewAsVisibleContigs(true));
4514 al = dna.translateCdna();
4515 } catch (Exception ex)
4517 jalview.bin.Cache.log.error(
4518 "Exception during translation. Please report this !", ex);
4519 final String msg = MessageManager.getString(
4520 "label.error_when_translating_sequences_submit_bug_report");
4521 final String errorTitle = MessageManager
4522 .getString("label.implementation_error")
4523 + MessageManager.getString("label.translation_failed");
4524 JvOptionPane.showMessageDialog(Desktop.desktop, msg, errorTitle,
4525 JvOptionPane.ERROR_MESSAGE);
4528 if (al == null || al.getHeight() == 0)
4530 final String msg = MessageManager.getString(
4531 "label.select_at_least_three_bases_in_at_least_one_sequence_to_cDNA_translation");
4532 final String errorTitle = MessageManager
4533 .getString("label.translation_failed");
4534 JvOptionPane.showMessageDialog(Desktop.desktop, msg, errorTitle,
4535 JvOptionPane.WARNING_MESSAGE);
4539 AlignFrame af = new AlignFrame(al, DEFAULT_WIDTH, DEFAULT_HEIGHT);
4540 af.setFileFormat(this.currentFileFormat);
4541 final String newTitle = MessageManager
4542 .formatMessage("label.translation_of_params", new Object[]
4543 { this.getTitle() });
4544 af.setTitle(newTitle);
4545 if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
4547 final SequenceI[] seqs = viewport.getSelectionAsNewSequence();
4548 viewport.openSplitFrame(af, new Alignment(seqs));
4552 Desktop.addInternalFrame(af, newTitle, DEFAULT_WIDTH,
4559 * Set the file format
4563 public void setFileFormat(FileFormatI format)
4565 this.currentFileFormat = format;
4569 * Try to load a features file onto the alignment.
4572 * contents or path to retrieve file
4574 * access mode of file (see jalview.io.AlignFile)
4575 * @return true if features file was parsed correctly.
4577 public boolean parseFeaturesFile(String file, DataSourceType sourceType)
4579 return avc.parseFeaturesFile(file, sourceType,
4580 Cache.getDefault("RELAXEDSEQIDMATCHING", false));
4585 public void refreshFeatureUI(boolean enableIfNecessary)
4587 // note - currently this is only still here rather than in the controller
4588 // because of the featureSettings hard reference that is yet to be
4590 if (enableIfNecessary)
4592 viewport.setShowSequenceFeatures(true);
4593 showSeqFeatures.setSelected(true);
4599 public void dragEnter(DropTargetDragEvent evt)
4604 public void dragExit(DropTargetEvent evt)
4609 public void dragOver(DropTargetDragEvent evt)
4614 public void dropActionChanged(DropTargetDragEvent evt)
4619 public void drop(DropTargetDropEvent evt)
4621 // JAL-1552 - acceptDrop required before getTransferable call for
4622 // Java's Transferable for native dnd
4623 evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
4624 Transferable t = evt.getTransferable();
4625 final AlignFrame thisaf = this;
4626 final List<String> files = new ArrayList<>();
4627 List<DataSourceType> protocols = new ArrayList<>();
4631 Desktop.transferFromDropTarget(files, protocols, evt, t);
4632 } catch (Exception e)
4634 e.printStackTrace();
4638 new Thread(new Runnable()
4645 // check to see if any of these files have names matching sequences
4648 SequenceIdMatcher idm = new SequenceIdMatcher(
4649 viewport.getAlignment().getSequencesArray());
4651 * Object[] { String,SequenceI}
4653 ArrayList<Object[]> filesmatched = new ArrayList<>();
4654 ArrayList<String> filesnotmatched = new ArrayList<>();
4655 for (int i = 0; i < files.size(); i++)
4657 String file = files.get(i).toString();
4659 DataSourceType protocol = FormatAdapter.checkProtocol(file);
4660 if (protocol == DataSourceType.FILE)
4662 File fl = new File(file);
4663 pdbfn = fl.getName();
4665 else if (protocol == DataSourceType.URL)
4667 URL url = new URL(file);
4668 pdbfn = url.getFile();
4670 if (pdbfn.length() > 0)
4672 // attempt to find a match in the alignment
4673 SequenceI[] mtch = idm.findAllIdMatches(pdbfn);
4674 int l = 0, c = pdbfn.indexOf(".");
4675 while (mtch == null && c != -1)
4680 } while ((c = pdbfn.indexOf(".", l)) > l);
4683 pdbfn = pdbfn.substring(0, l);
4685 mtch = idm.findAllIdMatches(pdbfn);
4689 FileFormatI type = null;
4692 type = new IdentifyFile().identify(file, protocol);
4693 } catch (Exception ex)
4697 if (type != null && type.isStructureFile())
4699 filesmatched.add(new Object[] { file, protocol, mtch });
4703 // File wasn't named like one of the sequences or wasn't a PDB
4705 filesnotmatched.add(file);
4709 if (filesmatched.size() > 0)
4711 if (Cache.getDefault("AUTOASSOCIATE_PDBANDSEQS", false)
4712 || JvOptionPane.showConfirmDialog(thisaf,
4713 MessageManager.formatMessage(
4714 "label.automatically_associate_structure_files_with_sequences_same_name",
4716 { Integer.valueOf(filesmatched.size())
4718 MessageManager.getString(
4719 "label.automatically_associate_structure_files_by_name"),
4720 JvOptionPane.YES_NO_OPTION) == JvOptionPane.YES_OPTION)
4723 for (Object[] fm : filesmatched)
4725 // try and associate
4726 // TODO: may want to set a standard ID naming formalism for
4727 // associating PDB files which have no IDs.
4728 for (SequenceI toassoc : (SequenceI[]) fm[2])
4730 PDBEntry pe = new AssociatePdbFileWithSeq()
4731 .associatePdbWithSeq((String) fm[0],
4732 (DataSourceType) fm[1], toassoc, false,
4736 System.err.println("Associated file : "
4737 + ((String) fm[0]) + " with "
4738 + toassoc.getDisplayId(true));
4742 // TODO: do we need to update overview ? only if features are
4744 alignPanel.paintAlignment(true, false);
4748 if (filesnotmatched.size() > 0)
4750 if (assocfiles > 0 && (Cache.getDefault(
4751 "AUTOASSOCIATE_PDBANDSEQS_IGNOREOTHERS", false)
4752 || JvOptionPane.showConfirmDialog(thisaf,
4753 "<html>" + MessageManager.formatMessage(
4754 "label.ignore_unmatched_dropped_files_info",
4757 filesnotmatched.size())
4760 MessageManager.getString(
4761 "label.ignore_unmatched_dropped_files"),
4762 JvOptionPane.YES_NO_OPTION) == JvOptionPane.YES_OPTION))
4766 for (String fn : filesnotmatched)
4768 loadJalviewDataFile(fn, null, null, null);
4772 } catch (Exception ex)
4774 ex.printStackTrace();
4782 * Attempt to load a "dropped" file or URL string, by testing in turn for
4784 * <li>an Annotation file</li>
4785 * <li>a JNet file</li>
4786 * <li>a features file</li>
4787 * <li>else try to interpret as an alignment file</li>
4791 * either a filename or a URL string.
4792 * @throws InterruptedException
4793 * @throws IOException
4795 public void loadJalviewDataFile(String file, DataSourceType sourceType,
4796 FileFormatI format, SequenceI assocSeq)
4800 if (sourceType == null)
4802 sourceType = FormatAdapter.checkProtocol(file);
4804 // if the file isn't identified, or not positively identified as some
4805 // other filetype (PFAM is default unidentified alignment file type) then
4806 // try to parse as annotation.
4807 boolean isAnnotation = (format == null
4808 || FileFormat.Pfam.equals(format))
4809 ? new AnnotationFile().annotateAlignmentView(viewport,
4815 // first see if its a T-COFFEE score file
4816 TCoffeeScoreFile tcf = null;
4819 tcf = new TCoffeeScoreFile(file, sourceType);
4822 if (tcf.annotateAlignment(viewport.getAlignment(), true))
4826 new TCoffeeColourScheme(viewport.getAlignment()));
4827 isAnnotation = true;
4828 statusBar.setText(MessageManager.getString(
4829 "label.successfully_pasted_tcoffee_scores_to_alignment"));
4833 // some problem - if no warning its probable that the ID matching
4834 // process didn't work
4835 JvOptionPane.showMessageDialog(Desktop.desktop,
4836 tcf.getWarningMessage() == null
4837 ? MessageManager.getString(
4838 "label.check_file_matches_sequence_ids_alignment")
4839 : tcf.getWarningMessage(),
4840 MessageManager.getString(
4841 "label.problem_reading_tcoffee_score_file"),
4842 JvOptionPane.WARNING_MESSAGE);
4849 } catch (Exception x)
4852 "Exception when processing data source as T-COFFEE score file",
4858 // try to see if its a JNet 'concise' style annotation file *before*
4860 // try to parse it as a features file
4863 format = new IdentifyFile().identify(file, sourceType);
4865 if (FileFormat.ScoreMatrix == format)
4867 ScoreMatrixFile sm = new ScoreMatrixFile(
4868 new FileParse(file, sourceType));
4870 // todo: i18n this message
4871 statusBar.setText(MessageManager.formatMessage(
4872 "label.successfully_loaded_matrix",
4873 sm.getMatrixName()));
4875 else if (FileFormat.Jnet.equals(format))
4877 JPredFile predictions = new JPredFile(file, sourceType);
4878 new JnetAnnotationMaker();
4879 JnetAnnotationMaker.add_annotation(predictions,
4880 viewport.getAlignment(), 0, false);
4881 SequenceI repseq = viewport.getAlignment().getSequenceAt(0);
4882 viewport.getAlignment().setSeqrep(repseq);
4883 HiddenColumns cs = new HiddenColumns();
4884 cs.hideInsertionsFor(repseq);
4885 viewport.getAlignment().setHiddenColumns(cs);
4886 isAnnotation = true;
4888 // else if (IdentifyFile.FeaturesFile.equals(format))
4889 else if (FileFormat.Features.equals(format))
4891 if (parseFeaturesFile(file, sourceType))
4893 alignPanel.paintAlignment(true, true);
4898 new FileLoader().LoadFile(viewport, file, sourceType, format);
4904 alignPanel.adjustAnnotationHeight();
4905 viewport.updateSequenceIdColours();
4906 buildSortByAnnotationScoresMenu();
4907 alignPanel.paintAlignment(true, true);
4909 } catch (Exception ex)
4911 ex.printStackTrace();
4912 } catch (OutOfMemoryError oom)
4917 } catch (Exception x)
4922 + (sourceType != null
4923 ? (sourceType == DataSourceType.PASTE
4925 : "using " + sourceType + " from "
4929 ? "(parsing as '" + format + "' file)"
4931 oom, Desktop.desktop);
4936 * Method invoked by the ChangeListener on the tabbed pane, in other words
4937 * when a different tabbed pane is selected by the user or programmatically.
4940 public void tabSelectionChanged(int index)
4944 alignPanel = alignPanels.get(index);
4945 viewport = alignPanel.av;
4946 avc.setViewportAndAlignmentPanel(viewport, alignPanel);
4947 setMenusFromViewport(viewport);
4951 * 'focus' any colour slider that is open to the selected viewport
4953 if (viewport.getConservationSelected())
4955 SliderPanel.setConservationSlider(alignPanel,
4956 viewport.getResidueShading(), alignPanel.getViewName());
4960 SliderPanel.hideConservationSlider();
4962 if (viewport.getAbovePIDThreshold())
4964 SliderPanel.setPIDSliderSource(alignPanel,
4965 viewport.getResidueShading(), alignPanel.getViewName());
4969 SliderPanel.hidePIDSlider();
4973 * If there is a frame linked to this one in a SplitPane, switch it to the
4974 * same view tab index. No infinite recursion of calls should happen, since
4975 * tabSelectionChanged() should not get invoked on setting the selected
4976 * index to an unchanged value. Guard against setting an invalid index
4977 * before the new view peer tab has been created.
4979 final AlignViewportI peer = viewport.getCodingComplement();
4982 AlignFrame linkedAlignFrame = ((AlignViewport) peer)
4983 .getAlignPanel().alignFrame;
4984 if (linkedAlignFrame.tabbedPane.getTabCount() > index)
4986 linkedAlignFrame.tabbedPane.setSelectedIndex(index);
4992 * On right mouse click on view tab, prompt for and set new view name.
4995 public void tabbedPane_mousePressed(MouseEvent e)
4997 if (e.isPopupTrigger())
4999 String msg = MessageManager.getString("label.enter_view_name");
5000 String reply = JvOptionPane.showInternalInputDialog(this, msg, msg,
5001 JvOptionPane.QUESTION_MESSAGE);
5005 viewport.viewName = reply;
5006 // TODO warn if reply is in getExistingViewNames()?
5007 tabbedPane.setTitleAt(tabbedPane.getSelectedIndex(), reply);
5012 public AlignViewport getCurrentView()
5018 * Open the dialog for regex description parsing.
5021 protected void extractScores_actionPerformed(ActionEvent e)
5023 ParseProperties pp = new jalview.analysis.ParseProperties(
5024 viewport.getAlignment());
5025 // TODO: verify regex and introduce GUI dialog for version 2.5
5026 // if (pp.getScoresFromDescription("col", "score column ",
5027 // "\\W*([-+]?\\d*\\.?\\d*e?-?\\d*)\\W+([-+]?\\d*\\.?\\d*e?-?\\d*)",
5029 if (pp.getScoresFromDescription("description column",
5030 "score in description column ", "\\W*([-+eE0-9.]+)", true) > 0)
5032 buildSortByAnnotationScoresMenu();
5040 * jalview.jbgui.GAlignFrame#showDbRefs_actionPerformed(java.awt.event.ActionEvent
5044 protected void showDbRefs_actionPerformed(ActionEvent e)
5046 viewport.setShowDBRefs(showDbRefsMenuitem.isSelected());
5052 * @seejalview.jbgui.GAlignFrame#showNpFeats_actionPerformed(java.awt.event.
5056 protected void showNpFeats_actionPerformed(ActionEvent e)
5058 viewport.setShowNPFeats(showNpFeatsMenuitem.isSelected());
5062 * find the viewport amongst the tabs in this alignment frame and close that
5067 public boolean closeView(AlignViewportI av)
5071 this.closeMenuItem_actionPerformed(false);
5074 Component[] comp = tabbedPane.getComponents();
5075 for (int i = 0; comp != null && i < comp.length; i++)
5077 if (comp[i] instanceof AlignmentPanel)
5079 if (((AlignmentPanel) comp[i]).av == av)
5082 closeView((AlignmentPanel) comp[i]);
5090 protected void build_fetchdbmenu(JMenu webService)
5092 // Temporary hack - DBRef Fetcher always top level ws entry.
5093 // TODO We probably want to store a sequence database checklist in
5094 // preferences and have checkboxes.. rather than individual sources selected
5096 final JMenu rfetch = new JMenu(
5097 MessageManager.getString("action.fetch_db_references"));
5098 rfetch.setToolTipText(MessageManager.getString(
5099 "label.retrieve_parse_sequence_database_records_alignment_or_selected_sequences"));
5100 webService.add(rfetch);
5102 final JCheckBoxMenuItem trimrs = new JCheckBoxMenuItem(
5103 MessageManager.getString("option.trim_retrieved_seqs"));
5104 trimrs.setToolTipText(
5105 MessageManager.getString("label.trim_retrieved_sequences"));
5106 trimrs.setSelected(Cache.getDefault("TRIM_FETCHED_DATASET_SEQS", true));
5107 trimrs.addActionListener(new ActionListener()
5110 public void actionPerformed(ActionEvent e)
5112 trimrs.setSelected(trimrs.isSelected());
5113 Cache.setProperty("TRIM_FETCHED_DATASET_SEQS",
5114 Boolean.valueOf(trimrs.isSelected()).toString());
5118 JMenuItem fetchr = new JMenuItem(
5119 MessageManager.getString("label.standard_databases"));
5120 fetchr.setToolTipText(
5121 MessageManager.getString("label.fetch_embl_uniprot"));
5122 fetchr.addActionListener(new ActionListener()
5126 public void actionPerformed(ActionEvent e)
5128 new Thread(new Runnable()
5133 boolean isNucleotide = alignPanel.alignFrame.getViewport()
5134 .getAlignment().isNucleotide();
5135 DBRefFetcher dbRefFetcher = new DBRefFetcher(
5136 alignPanel.av.getSequenceSelection(),
5137 alignPanel.alignFrame, null,
5138 alignPanel.alignFrame.featureSettings, isNucleotide);
5139 dbRefFetcher.addListener(new FetchFinishedListenerI()
5142 public void finished()
5144 AlignFrame.this.setMenusForViewport();
5147 dbRefFetcher.fetchDBRefs(false);
5155 final AlignFrame me = this;
5156 new Thread(new Runnable()
5161 final jalview.ws.SequenceFetcher sf = jalview.gui.SequenceFetcher
5162 .getSequenceFetcherSingleton(me);
5163 javax.swing.SwingUtilities.invokeLater(new Runnable()
5168 String[] dbclasses = sf.getOrderedSupportedSources();
5169 // sf.getDbInstances(jalview.ws.dbsources.DasSequenceSource.class);
5170 // jalview.util.QuickSort.sort(otherdb, otherdb);
5171 List<DbSourceProxy> otherdb;
5172 JMenu dfetch = new JMenu();
5173 JMenu ifetch = new JMenu();
5174 JMenuItem fetchr = null;
5175 int comp = 0, icomp = 0, mcomp = 15;
5176 String mname = null;
5178 for (String dbclass : dbclasses)
5180 otherdb = sf.getSourceProxy(dbclass);
5181 // add a single entry for this class, or submenu allowing 'fetch
5183 if (otherdb == null || otherdb.size() < 1)
5187 // List<DbSourceProxy> dbs=otherdb;
5188 // otherdb=new ArrayList<DbSourceProxy>();
5189 // for (DbSourceProxy db:dbs)
5191 // if (!db.isA(DBRefSource.ALIGNMENTDB)
5195 mname = "From " + dbclass;
5197 if (otherdb.size() == 1)
5199 final DbSourceProxy[] dassource = otherdb
5200 .toArray(new DbSourceProxy[0]);
5201 DbSourceProxy src = otherdb.get(0);
5202 fetchr = new JMenuItem(src.getDbSource());
5203 fetchr.addActionListener(new ActionListener()
5207 public void actionPerformed(ActionEvent e)
5209 new Thread(new Runnable()
5215 boolean isNucleotide = alignPanel.alignFrame
5216 .getViewport().getAlignment()
5218 DBRefFetcher dbRefFetcher = new DBRefFetcher(
5219 alignPanel.av.getSequenceSelection(),
5220 alignPanel.alignFrame, dassource,
5221 alignPanel.alignFrame.featureSettings,
5224 .addListener(new FetchFinishedListenerI()
5227 public void finished()
5229 AlignFrame.this.setMenusForViewport();
5232 dbRefFetcher.fetchDBRefs(false);
5238 fetchr.setToolTipText(JvSwingUtils.wrapTooltip(true,
5239 MessageManager.formatMessage(
5240 "label.fetch_retrieve_from", new Object[]
5241 { src.getDbName() })));
5247 final DbSourceProxy[] dassource = otherdb
5248 .toArray(new DbSourceProxy[0]);
5250 DbSourceProxy src = otherdb.get(0);
5251 fetchr = new JMenuItem(MessageManager
5252 .formatMessage("label.fetch_all_param", new Object[]
5253 { src.getDbSource() }));
5254 fetchr.addActionListener(new ActionListener()
5257 public void actionPerformed(ActionEvent e)
5259 new Thread(new Runnable()
5265 boolean isNucleotide = alignPanel.alignFrame
5266 .getViewport().getAlignment()
5268 DBRefFetcher dbRefFetcher = new DBRefFetcher(
5269 alignPanel.av.getSequenceSelection(),
5270 alignPanel.alignFrame, dassource,
5271 alignPanel.alignFrame.featureSettings,
5274 .addListener(new FetchFinishedListenerI()
5277 public void finished()
5279 AlignFrame.this.setMenusForViewport();
5282 dbRefFetcher.fetchDBRefs(false);
5288 fetchr.setToolTipText(JvSwingUtils.wrapTooltip(true,
5289 MessageManager.formatMessage(
5290 "label.fetch_retrieve_from_all_sources",
5292 { Integer.valueOf(otherdb.size())
5294 src.getDbSource(), src.getDbName() })));
5297 // and then build the rest of the individual menus
5298 ifetch = new JMenu(MessageManager.formatMessage(
5299 "label.source_from_db_source", new Object[]
5300 { src.getDbSource() }));
5302 String imname = null;
5304 for (DbSourceProxy sproxy : otherdb)
5306 String dbname = sproxy.getDbName();
5307 String sname = dbname.length() > 5
5308 ? dbname.substring(0, 5) + "..."
5310 String msname = dbname.length() > 10
5311 ? dbname.substring(0, 10) + "..."
5315 imname = MessageManager
5316 .formatMessage("label.from_msname", new Object[]
5319 fetchr = new JMenuItem(msname);
5320 final DbSourceProxy[] dassrc = { sproxy };
5321 fetchr.addActionListener(new ActionListener()
5325 public void actionPerformed(ActionEvent e)
5327 new Thread(new Runnable()
5333 boolean isNucleotide = alignPanel.alignFrame
5334 .getViewport().getAlignment()
5336 DBRefFetcher dbRefFetcher = new DBRefFetcher(
5337 alignPanel.av.getSequenceSelection(),
5338 alignPanel.alignFrame, dassrc,
5339 alignPanel.alignFrame.featureSettings,
5342 .addListener(new FetchFinishedListenerI()
5345 public void finished()
5347 AlignFrame.this.setMenusForViewport();
5350 dbRefFetcher.fetchDBRefs(false);
5356 fetchr.setToolTipText(
5357 "<html>" + MessageManager.formatMessage(
5358 "label.fetch_retrieve_from", new Object[]
5362 if (++icomp >= mcomp || i == (otherdb.size()))
5364 ifetch.setText(MessageManager.formatMessage(
5365 "label.source_to_target", imname, sname));
5367 ifetch = new JMenu();
5375 if (comp >= mcomp || dbi >= (dbclasses.length))
5377 dfetch.setText(MessageManager.formatMessage(
5378 "label.source_to_target", mname, dbclass));
5380 dfetch = new JMenu();
5393 * Left justify the whole alignment.
5396 protected void justifyLeftMenuItem_actionPerformed(ActionEvent e)
5398 AlignmentI al = viewport.getAlignment();
5400 viewport.firePropertyChange("alignment", null, al);
5404 * Right justify the whole alignment.
5407 protected void justifyRightMenuItem_actionPerformed(ActionEvent e)
5409 AlignmentI al = viewport.getAlignment();
5411 viewport.firePropertyChange("alignment", null, al);
5415 public void setShowSeqFeatures(boolean b)
5417 showSeqFeatures.setSelected(b);
5418 viewport.setShowSequenceFeatures(b);
5425 * jalview.jbgui.GAlignFrame#showUnconservedMenuItem_actionPerformed(java.
5426 * awt.event.ActionEvent)
5429 protected void showUnconservedMenuItem_actionPerformed(ActionEvent e)
5431 viewport.setShowUnconserved(showNonconservedMenuItem.getState());
5432 alignPanel.paintAlignment(false, false);
5439 * jalview.jbgui.GAlignFrame#showGroupConsensus_actionPerformed(java.awt.event
5443 protected void showGroupConsensus_actionPerformed(ActionEvent e)
5445 viewport.setShowGroupConsensus(showGroupConsensus.getState());
5446 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5454 * jalview.jbgui.GAlignFrame#showGroupConservation_actionPerformed(java.awt
5455 * .event.ActionEvent)
5458 protected void showGroupConservation_actionPerformed(ActionEvent e)
5460 viewport.setShowGroupConservation(showGroupConservation.getState());
5461 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5468 * jalview.jbgui.GAlignFrame#showConsensusHistogram_actionPerformed(java.awt
5469 * .event.ActionEvent)
5472 protected void showConsensusHistogram_actionPerformed(ActionEvent e)
5474 viewport.setShowConsensusHistogram(showConsensusHistogram.getState());
5475 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5482 * jalview.jbgui.GAlignFrame#showConsensusProfile_actionPerformed(java.awt
5483 * .event.ActionEvent)
5486 protected void showSequenceLogo_actionPerformed(ActionEvent e)
5488 viewport.setShowSequenceLogo(showSequenceLogo.getState());
5489 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5493 protected void normaliseSequenceLogo_actionPerformed(ActionEvent e)
5495 showSequenceLogo.setState(true);
5496 viewport.setShowSequenceLogo(true);
5497 viewport.setNormaliseSequenceLogo(normaliseSequenceLogo.getState());
5498 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5502 protected void showInformationHistogram_actionPerformed(ActionEvent e)
5504 viewport.setShowInformationHistogram(
5505 showInformationHistogram.getState());
5506 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5510 protected void showHMMSequenceLogo_actionPerformed(ActionEvent e)
5512 viewport.setShowHMMSequenceLogo(showHMMSequenceLogo.getState());
5513 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5517 protected void normaliseHMMSequenceLogo_actionPerformed(ActionEvent e)
5519 showHMMSequenceLogo.setState(true);
5520 viewport.setShowHMMSequenceLogo(true);
5521 viewport.setNormaliseHMMSequenceLogo(normaliseSequenceLogo.getState());
5522 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5526 protected void applyAutoAnnotationSettings_actionPerformed(ActionEvent e)
5528 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5535 * jalview.jbgui.GAlignFrame#makeGrpsFromSelection_actionPerformed(java.awt
5536 * .event.ActionEvent)
5539 protected void makeGrpsFromSelection_actionPerformed(ActionEvent e)
5541 if (avc.makeGroupsFromSelection())
5543 PaintRefresher.Refresh(this, viewport.getSequenceSetId());
5544 alignPanel.updateAnnotation();
5545 alignPanel.paintAlignment(true, true);
5549 public void clearAlignmentSeqRep()
5551 // TODO refactor alignmentseqrep to controller
5552 if (viewport.getAlignment().hasSeqrep())
5554 viewport.getAlignment().setSeqrep(null);
5555 PaintRefresher.Refresh(this, viewport.getSequenceSetId());
5556 alignPanel.updateAnnotation();
5557 alignPanel.paintAlignment(true, true);
5562 protected void createGroup_actionPerformed(ActionEvent e)
5564 if (avc.createGroup())
5566 alignPanel.alignmentChanged();
5571 protected void unGroup_actionPerformed(ActionEvent e)
5575 alignPanel.alignmentChanged();
5580 * make the given alignmentPanel the currently selected tab
5582 * @param alignmentPanel
5584 public void setDisplayedView(AlignmentPanel alignmentPanel)
5586 if (!viewport.getSequenceSetId()
5587 .equals(alignmentPanel.av.getSequenceSetId()))
5589 throw new Error(MessageManager.getString(
5590 "error.implementation_error_cannot_show_view_alignment_frame"));
5592 if (tabbedPane != null && tabbedPane.getTabCount() > 0 && alignPanels
5593 .indexOf(alignmentPanel) != tabbedPane.getSelectedIndex())
5595 tabbedPane.setSelectedIndex(alignPanels.indexOf(alignmentPanel));
5600 * Action on selection of menu options to Show or Hide annotations.
5603 * @param forSequences
5604 * update sequence-related annotations
5605 * @param forAlignment
5606 * update non-sequence-related annotations
5609 protected void setAnnotationsVisibility(boolean visible,
5610 boolean forSequences, boolean forAlignment)
5612 AlignmentAnnotation[] anns = alignPanel.getAlignment()
5613 .getAlignmentAnnotation();
5618 for (AlignmentAnnotation aa : anns)
5621 * don't display non-positional annotations on an alignment
5623 if (aa.annotations == null)
5627 boolean apply = (aa.sequenceRef == null && forAlignment)
5628 || (aa.sequenceRef != null && forSequences);
5631 aa.visible = visible;
5634 alignPanel.validateAnnotationDimensions(true);
5635 alignPanel.alignmentChanged();
5639 * Store selected annotation sort order for the view and repaint.
5642 protected void sortAnnotations_actionPerformed()
5644 this.alignPanel.av.setSortAnnotationsBy(getAnnotationSortOrder());
5646 .setShowAutocalculatedAbove(isShowAutoCalculatedAbove());
5647 alignPanel.paintAlignment(false, false);
5652 * @return alignment panels in this alignment frame
5654 public List<? extends AlignmentViewPanel> getAlignPanels()
5656 return alignPanels == null ? Arrays.asList(alignPanel) : alignPanels;
5660 * Open a new alignment window, with the cDNA associated with this (protein)
5661 * alignment, aligned as is the protein.
5663 protected void viewAsCdna_actionPerformed()
5665 // TODO no longer a menu action - refactor as required
5666 final AlignmentI alignment = getViewport().getAlignment();
5667 List<AlignedCodonFrame> mappings = alignment.getCodonFrames();
5668 if (mappings == null)
5672 List<SequenceI> cdnaSeqs = new ArrayList<>();
5673 for (SequenceI aaSeq : alignment.getSequences())
5675 for (AlignedCodonFrame acf : mappings)
5677 SequenceI dnaSeq = acf.getDnaForAaSeq(aaSeq.getDatasetSequence());
5681 * There is a cDNA mapping for this protein sequence - add to new
5682 * alignment. It will share the same dataset sequence as other mapped
5683 * cDNA (no new mappings need to be created).
5685 final Sequence newSeq = new Sequence(dnaSeq);
5686 newSeq.setDatasetSequence(dnaSeq);
5687 cdnaSeqs.add(newSeq);
5691 if (cdnaSeqs.size() == 0)
5693 // show a warning dialog no mapped cDNA
5696 AlignmentI cdna = new Alignment(
5697 cdnaSeqs.toArray(new SequenceI[cdnaSeqs.size()]));
5698 GAlignFrame alignFrame = new AlignFrame(cdna, AlignFrame.DEFAULT_WIDTH,
5699 AlignFrame.DEFAULT_HEIGHT);
5700 cdna.alignAs(alignment);
5701 String newtitle = "cDNA " + MessageManager.getString("label.for") + " "
5703 Desktop.addInternalFrame(alignFrame, newtitle, AlignFrame.DEFAULT_WIDTH,
5704 AlignFrame.DEFAULT_HEIGHT);
5708 * Set visibility of dna/protein complement view (available when shown in a
5714 protected void showComplement_actionPerformed(boolean show)
5716 SplitContainerI sf = getSplitViewContainer();
5719 sf.setComplementVisible(this, show);
5724 * Generate the reverse (optionally complemented) of the selected sequences,
5725 * and add them to the alignment
5728 protected void showReverse_actionPerformed(boolean complement)
5730 AlignmentI al = null;
5733 Dna dna = new Dna(viewport, viewport.getViewAsVisibleContigs(true));
5734 al = dna.reverseCdna(complement);
5735 viewport.addAlignment(al, "");
5736 addHistoryItem(new EditCommand(
5737 MessageManager.getString("label.add_sequences"), Action.PASTE,
5738 al.getSequencesArray(), 0, al.getWidth(),
5739 viewport.getAlignment()));
5740 } catch (Exception ex)
5742 System.err.println(ex.getMessage());
5748 * Try to run a script in the Groovy console, having first ensured that this
5749 * AlignFrame is set as currentAlignFrame in Desktop, to allow the script to
5750 * be targeted at this alignment.
5753 protected void runGroovy_actionPerformed()
5755 Jalview.setCurrentAlignFrame(this);
5756 groovy.ui.Console console = Desktop.getGroovyConsole();
5757 if (console != null)
5761 console.runScript();
5762 } catch (Exception ex)
5764 System.err.println((ex.toString()));
5765 JvOptionPane.showInternalMessageDialog(Desktop.desktop,
5766 MessageManager.getString("label.couldnt_run_groovy_script"),
5767 MessageManager.getString("label.groovy_support_failed"),
5768 JvOptionPane.ERROR_MESSAGE);
5773 System.err.println("Can't run Groovy script as console not found");
5778 * Hides columns containing (or not containing) a specified feature, provided
5779 * that would not leave all columns hidden
5781 * @param featureType
5782 * @param columnsContaining
5785 public boolean hideFeatureColumns(String featureType,
5786 boolean columnsContaining)
5788 boolean notForHiding = avc.markColumnsContainingFeatures(
5789 columnsContaining, false, false, featureType);
5792 if (avc.markColumnsContainingFeatures(!columnsContaining, false,
5793 false, featureType))
5795 getViewport().hideSelectedColumns();
5803 protected void selectHighlightedColumns_actionPerformed(
5804 ActionEvent actionEvent)
5806 // include key modifier check in case user selects from menu
5807 avc.markHighlightedColumns(
5808 (actionEvent.getModifiers() & ActionEvent.ALT_MASK) != 0, true,
5809 (actionEvent.getModifiers() & (ActionEvent.META_MASK
5810 | ActionEvent.CTRL_MASK)) != 0);
5814 * Rebuilds the Colour menu, including any user-defined colours which have
5815 * been loaded either on startup or during the session
5817 public void buildColourMenu()
5819 colourMenu.removeAll();
5821 colourMenu.add(applyToAllGroups);
5822 colourMenu.add(textColour);
5823 colourMenu.addSeparator();
5825 ColourMenuHelper.addMenuItems(colourMenu, this, viewport.getAlignment(),
5828 colourMenu.addSeparator();
5829 colourMenu.add(conservationMenuItem);
5830 colourMenu.add(modifyConservation);
5831 colourMenu.add(abovePIDThreshold);
5832 colourMenu.add(modifyPID);
5833 colourMenu.add(annotationColour);
5835 ColourSchemeI colourScheme = viewport.getGlobalColourScheme();
5836 ColourMenuHelper.setColourSelected(colourMenu, colourScheme);
5840 * Open a dialog (if not already open) that allows the user to select and
5841 * calculate PCA or Tree analysis
5843 protected void openTreePcaDialog()
5845 if (alignPanel.getCalculationDialog() == null)
5847 new CalculationChooser(AlignFrame.this);
5852 * Sets the status of the HMMER menu
5854 public void updateHMMERStatus()
5856 hmmerMenu.setEnabled(HmmerCommand.isHmmerAvailable());
5860 * Returns the selected hidden Markov model.
5864 public HiddenMarkovModel getSelectedHMM()
5866 if (selectedHMMSequence == null)
5870 return selectedHMMSequence.getHMM();
5874 * Returns the selected hidden Markov model.
5878 public SequenceI getSelectedHMMSequence()
5880 return selectedHMMSequence;
5884 * Sets the selected hidden Markov model
5886 * @param selectedHMM
5888 public void setSelectedHMMSequence(SequenceI selectedHMM)
5890 this.selectedHMMSequence = selectedHMM;
5891 hmmAlign.setText(MessageManager.getString("label.hmmalign") + " to "
5892 + selectedHMM.getHMM().getName());
5893 hmmSearch.setText(MessageManager.getString("label.hmmsearch") + " with "
5894 + selectedHMM.getHMM().getName());
5898 public void hmmerMenu_actionPerformed(ActionEvent e)
5900 SequenceGroup grp = getViewport().getSelectionGroup();
5903 hmmBuild.setText(MessageManager.getString("label.hmmbuild") + " from "
5908 hmmBuild.setText(MessageManager.getString("label.hmmbuild")
5909 + " from Alignment");
5914 protected void loadVcf_actionPerformed()
5916 JalviewFileChooser chooser = new JalviewFileChooser(
5917 Cache.getProperty("LAST_DIRECTORY"));
5918 chooser.setFileView(new JalviewFileView());
5919 chooser.setDialogTitle(MessageManager.getString("label.load_vcf_file"));
5920 chooser.setToolTipText(MessageManager.getString("label.load_vcf_file"));
5922 int value = chooser.showOpenDialog(null);
5924 if (value == JalviewFileChooser.APPROVE_OPTION)
5926 String choice = chooser.getSelectedFile().getPath();
5927 Cache.setProperty("LAST_DIRECTORY", choice);
5928 SequenceI[] seqs = viewport.getAlignment().getSequencesArray();
5929 new VCFLoader(choice).loadVCF(seqs, this);
5935 class PrintThread extends Thread
5939 public PrintThread(AlignmentPanel ap)
5944 static PageFormat pf;
5949 PrinterJob printJob = PrinterJob.getPrinterJob();
5953 printJob.setPrintable(ap, pf);
5957 printJob.setPrintable(ap);
5960 if (printJob.printDialog())
5965 } catch (Exception PrintException)
5967 PrintException.printStackTrace();