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.AAFrequency;
24 import jalview.analysis.AlignmentSorter;
25 import jalview.analysis.AlignmentUtils;
26 import jalview.analysis.Conservation;
27 import jalview.analysis.CrossRef;
28 import jalview.analysis.Dna;
29 import jalview.analysis.ParseProperties;
30 import jalview.analysis.SequenceIdMatcher;
31 import jalview.api.AlignViewControllerGuiI;
32 import jalview.api.AlignViewControllerI;
33 import jalview.api.AlignViewportI;
34 import jalview.api.AlignmentViewPanel;
35 import jalview.api.FeatureSettingsControllerI;
36 import jalview.api.SplitContainerI;
37 import jalview.api.ViewStyleI;
38 import jalview.api.analysis.ScoreModelI;
39 import jalview.bin.Cache;
40 import jalview.bin.Jalview;
41 import jalview.commands.CommandI;
42 import jalview.commands.EditCommand;
43 import jalview.commands.EditCommand.Action;
44 import jalview.commands.OrderCommand;
45 import jalview.commands.RemoveGapColCommand;
46 import jalview.commands.RemoveGapsCommand;
47 import jalview.commands.SlideSequencesCommand;
48 import jalview.commands.TrimRegionCommand;
49 import jalview.datamodel.AlignedCodonFrame;
50 import jalview.datamodel.Alignment;
51 import jalview.datamodel.AlignmentAnnotation;
52 import jalview.datamodel.AlignmentExportData;
53 import jalview.datamodel.AlignmentI;
54 import jalview.datamodel.AlignmentOrder;
55 import jalview.datamodel.AlignmentView;
56 import jalview.datamodel.ColumnSelection;
57 import jalview.datamodel.HiddenSequences;
58 import jalview.datamodel.PDBEntry;
59 import jalview.datamodel.SeqCigar;
60 import jalview.datamodel.Sequence;
61 import jalview.datamodel.SequenceGroup;
62 import jalview.datamodel.SequenceI;
63 import jalview.gui.ViewSelectionMenu.ViewSetProvider;
64 import jalview.io.AlignmentProperties;
65 import jalview.io.AnnotationFile;
66 import jalview.io.BioJsHTMLOutput;
67 import jalview.io.FileLoader;
68 import jalview.io.FormatAdapter;
69 import jalview.io.HtmlSvgOutput;
70 import jalview.io.IdentifyFile;
71 import jalview.io.JalviewFileChooser;
72 import jalview.io.JalviewFileView;
73 import jalview.io.JnetAnnotationMaker;
74 import jalview.io.NewickFile;
75 import jalview.io.TCoffeeScoreFile;
76 import jalview.jbgui.GAlignFrame;
77 import jalview.schemes.Blosum62ColourScheme;
78 import jalview.schemes.BuriedColourScheme;
79 import jalview.schemes.ClustalxColourScheme;
80 import jalview.schemes.ColourSchemeI;
81 import jalview.schemes.ColourSchemeProperty;
82 import jalview.schemes.HelixColourScheme;
83 import jalview.schemes.HydrophobicColourScheme;
84 import jalview.schemes.NucleotideColourScheme;
85 import jalview.schemes.PIDColourScheme;
86 import jalview.schemes.PurinePyrimidineColourScheme;
87 import jalview.schemes.RNAHelicesColourChooser;
88 import jalview.schemes.ResidueProperties;
89 import jalview.schemes.StrandColourScheme;
90 import jalview.schemes.TCoffeeColourScheme;
91 import jalview.schemes.TaylorColourScheme;
92 import jalview.schemes.TurnColourScheme;
93 import jalview.schemes.UserColourScheme;
94 import jalview.schemes.ZappoColourScheme;
95 import jalview.structure.StructureSelectionManager;
96 import jalview.util.MessageManager;
97 import jalview.viewmodel.AlignmentViewport;
98 import jalview.ws.jws1.Discoverer;
99 import jalview.ws.jws2.Jws2Discoverer;
100 import jalview.ws.jws2.jabaws2.Jws2Instance;
101 import jalview.ws.seqfetcher.DbSourceProxy;
103 import java.awt.BorderLayout;
104 import java.awt.Component;
105 import java.awt.Rectangle;
106 import java.awt.Toolkit;
107 import java.awt.datatransfer.Clipboard;
108 import java.awt.datatransfer.DataFlavor;
109 import java.awt.datatransfer.StringSelection;
110 import java.awt.datatransfer.Transferable;
111 import java.awt.dnd.DnDConstants;
112 import java.awt.dnd.DropTargetDragEvent;
113 import java.awt.dnd.DropTargetDropEvent;
114 import java.awt.dnd.DropTargetEvent;
115 import java.awt.dnd.DropTargetListener;
116 import java.awt.event.ActionEvent;
117 import java.awt.event.ActionListener;
118 import java.awt.event.ItemEvent;
119 import java.awt.event.ItemListener;
120 import java.awt.event.KeyAdapter;
121 import java.awt.event.KeyEvent;
122 import java.awt.event.MouseAdapter;
123 import java.awt.event.MouseEvent;
124 import java.awt.print.PageFormat;
125 import java.awt.print.PrinterJob;
126 import java.beans.PropertyChangeEvent;
129 import java.util.ArrayList;
130 import java.util.Arrays;
131 import java.util.Deque;
132 import java.util.Enumeration;
133 import java.util.Hashtable;
134 import java.util.List;
135 import java.util.Set;
136 import java.util.Vector;
138 import javax.swing.JCheckBoxMenuItem;
139 import javax.swing.JEditorPane;
140 import javax.swing.JInternalFrame;
141 import javax.swing.JLayeredPane;
142 import javax.swing.JMenu;
143 import javax.swing.JMenuItem;
144 import javax.swing.JOptionPane;
145 import javax.swing.JRadioButtonMenuItem;
146 import javax.swing.JScrollPane;
147 import javax.swing.SwingUtilities;
153 * @version $Revision$
155 public class AlignFrame extends GAlignFrame implements DropTargetListener,
156 IProgressIndicator, AlignViewControllerGuiI
159 public static final int DEFAULT_WIDTH = 700;
161 public static final int DEFAULT_HEIGHT = 500;
164 * The currently displayed panel (selected tabbed view if more than one)
166 public AlignmentPanel alignPanel;
168 AlignViewport viewport;
170 public AlignViewControllerI avc;
172 List<AlignmentPanel> alignPanels = new ArrayList<AlignmentPanel>();
175 * Last format used to load or save alignments in this window
177 String currentFileFormat = null;
180 * Current filename for this alignment
182 String fileName = null;
185 * Creates a new AlignFrame object with specific width and height.
191 public AlignFrame(AlignmentI al, int width, int height)
193 this(al, null, width, height);
197 * Creates a new AlignFrame object with specific width, height and
203 * @param sequenceSetId
205 public AlignFrame(AlignmentI al, int width, int height,
206 String sequenceSetId)
208 this(al, null, width, height, sequenceSetId);
212 * Creates a new AlignFrame object with specific width, height and
218 * @param sequenceSetId
221 public AlignFrame(AlignmentI al, int width, int height,
222 String sequenceSetId, String viewId)
224 this(al, null, width, height, sequenceSetId, viewId);
228 * new alignment window with hidden columns
232 * @param hiddenColumns
233 * ColumnSelection or null
235 * Width of alignment frame
239 public AlignFrame(AlignmentI al, ColumnSelection hiddenColumns,
240 int width, int height)
242 this(al, hiddenColumns, width, height, null);
247 * Create alignment frame for al with hiddenColumns, a specific width and
248 * height, and specific sequenceId
251 * @param hiddenColumns
254 * @param sequenceSetId
257 public AlignFrame(AlignmentI al, ColumnSelection hiddenColumns,
258 int width, int height, String sequenceSetId)
260 this(al, hiddenColumns, width, height, sequenceSetId, null);
264 * Create alignment frame for al with hiddenColumns, a specific width and
265 * height, and specific sequenceId
268 * @param hiddenColumns
271 * @param sequenceSetId
276 public AlignFrame(AlignmentI al, ColumnSelection hiddenColumns,
277 int width, int height, String sequenceSetId, String viewId)
279 setSize(width, height);
281 if (al.getDataset() == null)
286 viewport = new AlignViewport(al, hiddenColumns, sequenceSetId, viewId);
288 alignPanel = new AlignmentPanel(this, viewport);
291 addAlignmentPanel(alignPanel, true);
295 public AlignFrame(AlignmentI al, SequenceI[] hiddenSeqs,
296 ColumnSelection hiddenColumns, int width, int height)
298 setSize(width, height);
300 if (al.getDataset() == null)
305 viewport = new AlignViewport(al, hiddenColumns);
307 if (hiddenSeqs != null && hiddenSeqs.length > 0)
309 viewport.hideSequence(hiddenSeqs);
311 alignPanel = new AlignmentPanel(this, viewport);
312 addAlignmentPanel(alignPanel, true);
318 * Make a new AlignFrame from existing alignmentPanels
325 public AlignFrame(AlignmentPanel ap)
329 addAlignmentPanel(ap, false);
334 * initalise the alignframe from the underlying viewport data and the
339 if (!Jalview.isHeadlessMode())
341 progressBar = new ProgressBar(this.statusPanel, this.statusBar);
344 avc = new jalview.controller.AlignViewController(this, viewport,
346 if (viewport.getAlignmentConservationAnnotation() == null)
348 BLOSUM62Colour.setEnabled(false);
349 conservationMenuItem.setEnabled(false);
350 modifyConservation.setEnabled(false);
351 // PIDColour.setEnabled(false);
352 // abovePIDThreshold.setEnabled(false);
353 // modifyPID.setEnabled(false);
356 String sortby = jalview.bin.Cache.getDefault("SORT_ALIGNMENT",
359 if (sortby.equals("Id"))
361 sortIDMenuItem_actionPerformed(null);
363 else if (sortby.equals("Pairwise Identity"))
365 sortPairwiseMenuItem_actionPerformed(null);
368 if (Desktop.desktop != null)
370 this.setDropTarget(new java.awt.dnd.DropTarget(this, this));
371 addServiceListeners();
372 setGUINucleotide(viewport.getAlignment().isNucleotide());
375 setMenusFromViewport(viewport);
376 buildSortByAnnotationScoresMenu();
379 if (viewport.getWrapAlignment())
381 wrapMenuItem_actionPerformed(null);
384 if (jalview.bin.Cache.getDefault("SHOW_OVERVIEW", false))
386 this.overviewMenuItem_actionPerformed(null);
391 final List<AlignmentPanel> selviews = new ArrayList<AlignmentPanel>();
392 final List<AlignmentPanel> origview = new ArrayList<AlignmentPanel>();
393 final String menuLabel = MessageManager
394 .getString("label.copy_format_from");
395 ViewSelectionMenu vsel = new ViewSelectionMenu(menuLabel,
396 new ViewSetProvider()
400 public AlignmentPanel[] getAllAlignmentPanels()
403 origview.add(alignPanel);
404 // make an array of all alignment panels except for this one
405 List<AlignmentPanel> aps = new ArrayList<AlignmentPanel>(
406 Arrays.asList(Desktop.getAlignmentPanels(null)));
407 aps.remove(AlignFrame.this.alignPanel);
408 return aps.toArray(new AlignmentPanel[aps.size()]);
410 }, selviews, new ItemListener()
414 public void itemStateChanged(ItemEvent e)
416 if (origview.size() > 0)
418 final AlignmentPanel ap = origview.get(0);
421 * Copy the ViewStyle of the selected panel to 'this one'.
422 * Don't change value of 'scaleProteinAsCdna' unless copying
425 ViewStyleI vs = selviews.get(0).getAlignViewport()
427 boolean fromSplitFrame = selviews.get(0)
428 .getAlignViewport().getCodingComplement() != null;
431 vs.setScaleProteinAsCdna(ap.getAlignViewport()
432 .getViewStyle().isScaleProteinAsCdna());
434 ap.getAlignViewport().setViewStyle(vs);
437 * Also rescale ViewStyle of SplitFrame complement if there is
438 * one _and_ it is set to 'scaledProteinAsCdna'; we don't copy
439 * the whole ViewStyle (allow cDNA protein to have different
442 AlignViewportI complement = ap.getAlignViewport()
443 .getCodingComplement();
444 if (complement != null && vs.isScaleProteinAsCdna())
446 AlignFrame af = Desktop.getAlignFrameFor(complement);
447 ((SplitFrame) af.getSplitViewContainer())
449 af.setMenusForViewport();
453 ap.setSelected(true);
454 ap.alignFrame.setMenusForViewport();
459 formatMenu.add(vsel);
464 * Change the filename and format for the alignment, and enable the 'reload'
465 * button functionality.
472 public void setFileName(String file, String format)
475 setFileFormat(format);
476 reload.setEnabled(true);
480 * Add a KeyListener with handlers for various KeyPressed and KeyReleased
483 void addKeyListener()
485 addKeyListener(new KeyAdapter()
488 public void keyPressed(KeyEvent evt)
490 if (viewport.cursorMode
491 && ((evt.getKeyCode() >= KeyEvent.VK_0 && evt.getKeyCode() <= KeyEvent.VK_9) || (evt
492 .getKeyCode() >= KeyEvent.VK_NUMPAD0 && evt
493 .getKeyCode() <= KeyEvent.VK_NUMPAD9))
494 && Character.isDigit(evt.getKeyChar()))
496 alignPanel.getSeqPanel().numberPressed(evt.getKeyChar());
499 switch (evt.getKeyCode())
502 case 27: // escape key
503 deselectAllSequenceMenuItem_actionPerformed(null);
507 case KeyEvent.VK_DOWN:
508 if (evt.isAltDown() || !viewport.cursorMode)
510 moveSelectedSequences(false);
512 if (viewport.cursorMode)
514 alignPanel.getSeqPanel().moveCursor(0, 1);
519 if (evt.isAltDown() || !viewport.cursorMode)
521 moveSelectedSequences(true);
523 if (viewport.cursorMode)
525 alignPanel.getSeqPanel().moveCursor(0, -1);
530 case KeyEvent.VK_LEFT:
531 if (evt.isAltDown() || !viewport.cursorMode)
533 slideSequences(false, alignPanel.getSeqPanel().getKeyboardNo1());
537 alignPanel.getSeqPanel().moveCursor(-1, 0);
542 case KeyEvent.VK_RIGHT:
543 if (evt.isAltDown() || !viewport.cursorMode)
545 slideSequences(true, alignPanel.getSeqPanel().getKeyboardNo1());
549 alignPanel.getSeqPanel().moveCursor(1, 0);
553 case KeyEvent.VK_SPACE:
554 if (viewport.cursorMode)
556 alignPanel.getSeqPanel().insertGapAtCursor(evt.isControlDown()
557 || evt.isShiftDown() || evt.isAltDown());
561 // case KeyEvent.VK_A:
562 // if (viewport.cursorMode)
564 // alignPanel.seqPanel.insertNucAtCursor(false,"A");
565 // //System.out.println("A");
569 * case KeyEvent.VK_CLOSE_BRACKET: if (viewport.cursorMode) {
570 * System.out.println("closing bracket"); } break;
572 case KeyEvent.VK_DELETE:
573 case KeyEvent.VK_BACK_SPACE:
574 if (!viewport.cursorMode)
576 cut_actionPerformed(null);
580 alignPanel.getSeqPanel().deleteGapAtCursor(evt.isControlDown()
581 || evt.isShiftDown() || evt.isAltDown());
587 if (viewport.cursorMode)
589 alignPanel.getSeqPanel().setCursorRow();
593 if (viewport.cursorMode && !evt.isControlDown())
595 alignPanel.getSeqPanel().setCursorColumn();
599 if (viewport.cursorMode)
601 alignPanel.getSeqPanel().setCursorPosition();
605 case KeyEvent.VK_ENTER:
606 case KeyEvent.VK_COMMA:
607 if (viewport.cursorMode)
609 alignPanel.getSeqPanel().setCursorRowAndColumn();
614 if (viewport.cursorMode)
616 alignPanel.getSeqPanel().setSelectionAreaAtCursor(true);
620 if (viewport.cursorMode)
622 alignPanel.getSeqPanel().setSelectionAreaAtCursor(false);
627 viewport.cursorMode = !viewport.cursorMode;
628 statusBar.setText(MessageManager.formatMessage(
629 "label.keyboard_editing_mode", new String[]
630 { (viewport.cursorMode ? "on" : "off") }));
631 if (viewport.cursorMode)
633 alignPanel.getSeqPanel().seqCanvas.cursorX = viewport.startRes;
634 alignPanel.getSeqPanel().seqCanvas.cursorY = viewport.startSeq;
636 alignPanel.getSeqPanel().seqCanvas.repaint();
642 Help.showHelpWindow();
643 } catch (Exception ex)
645 ex.printStackTrace();
650 boolean toggleSeqs = !evt.isControlDown();
651 boolean toggleCols = !evt.isShiftDown();
652 toggleHiddenRegions(toggleSeqs, toggleCols);
655 case KeyEvent.VK_PAGE_UP:
656 if (viewport.getWrapAlignment())
658 alignPanel.scrollUp(true);
662 alignPanel.setScrollValues(viewport.startRes, viewport.startSeq
663 - viewport.endSeq + viewport.startSeq);
666 case KeyEvent.VK_PAGE_DOWN:
667 if (viewport.getWrapAlignment())
669 alignPanel.scrollUp(false);
673 alignPanel.setScrollValues(viewport.startRes, viewport.startSeq
674 + viewport.endSeq - viewport.startSeq);
681 public void keyReleased(KeyEvent evt)
683 switch (evt.getKeyCode())
685 case KeyEvent.VK_LEFT:
686 if (evt.isAltDown() || !viewport.cursorMode)
688 viewport.firePropertyChange("alignment", null, viewport
689 .getAlignment().getSequences());
693 case KeyEvent.VK_RIGHT:
694 if (evt.isAltDown() || !viewport.cursorMode)
696 viewport.firePropertyChange("alignment", null, viewport
697 .getAlignment().getSequences());
705 public void addAlignmentPanel(final AlignmentPanel ap, boolean newPanel)
707 ap.alignFrame = this;
708 avc = new jalview.controller.AlignViewController(this, viewport,
713 PaintRefresher.Register(ap, ap.av.getSequenceSetId());
715 int aSize = alignPanels.size();
717 tabbedPane.setVisible(aSize > 1 || ap.av.viewName != null);
719 if (aSize == 1 && ap.av.viewName == null)
721 this.getContentPane().add(ap, BorderLayout.CENTER);
727 setInitialTabVisible();
730 expandViews.setEnabled(true);
731 gatherViews.setEnabled(true);
732 tabbedPane.addTab(ap.av.viewName, ap);
734 ap.setVisible(false);
739 if (ap.av.isPadGaps())
741 ap.av.getAlignment().padGaps();
743 ap.av.updateConservation(ap);
744 ap.av.updateConsensus(ap);
745 ap.av.updateStrucConsensus(ap);
749 public void setInitialTabVisible()
751 expandViews.setEnabled(true);
752 gatherViews.setEnabled(true);
753 tabbedPane.setVisible(true);
754 AlignmentPanel first = alignPanels.get(0);
755 tabbedPane.addTab(first.av.viewName, first);
756 this.getContentPane().add(tabbedPane, BorderLayout.CENTER);
759 public AlignViewport getViewport()
764 /* Set up intrinsic listeners for dynamically generated GUI bits. */
765 private void addServiceListeners()
767 final java.beans.PropertyChangeListener thisListener;
768 Desktop.instance.addJalviewPropertyChangeListener("services",
769 thisListener = new java.beans.PropertyChangeListener()
772 public void propertyChange(PropertyChangeEvent evt)
774 // // System.out.println("Discoverer property change.");
775 // if (evt.getPropertyName().equals("services"))
777 SwingUtilities.invokeLater(new Runnable()
784 .println("Rebuild WS Menu for service change");
785 BuildWebServiceMenu();
792 addInternalFrameListener(new javax.swing.event.InternalFrameAdapter()
795 public void internalFrameClosed(
796 javax.swing.event.InternalFrameEvent evt)
798 System.out.println("deregistering discoverer listener");
799 Desktop.instance.removeJalviewPropertyChangeListener("services",
801 closeMenuItem_actionPerformed(true);
804 // Finally, build the menu once to get current service state
805 new Thread(new Runnable()
810 BuildWebServiceMenu();
816 * Configure menu items that vary according to whether the alignment is
817 * nucleotide or protein
821 public void setGUINucleotide(boolean nucleotide)
823 showTranslation.setVisible(nucleotide);
824 conservationMenuItem.setEnabled(!nucleotide);
825 modifyConservation.setEnabled(!nucleotide);
826 showGroupConservation.setEnabled(!nucleotide);
827 rnahelicesColour.setEnabled(nucleotide);
828 purinePyrimidineColour.setEnabled(nucleotide);
829 showComplementMenuItem.setText(MessageManager
830 .getString(nucleotide ? "label.protein" : "label.nucleotide"));
831 setColourSelected(jalview.bin.Cache.getDefault(
832 nucleotide ? Preferences.DEFAULT_COLOUR_NUC
833 : Preferences.DEFAULT_COLOUR_PROT, "None"));
837 * set up menus for the current viewport. This may be called after any
838 * operation that affects the data in the current view (selection changed,
839 * etc) to update the menus to reflect the new state.
841 public void setMenusForViewport()
843 setMenusFromViewport(viewport);
847 * Need to call this method when tabs are selected for multiple views, or when
848 * loading from Jalview2XML.java
853 void setMenusFromViewport(AlignViewport av)
855 padGapsMenuitem.setSelected(av.isPadGaps());
856 colourTextMenuItem.setSelected(av.isShowColourText());
857 abovePIDThreshold.setSelected(av.getAbovePIDThreshold());
858 conservationMenuItem.setSelected(av.getConservationSelected());
859 seqLimits.setSelected(av.getShowJVSuffix());
860 idRightAlign.setSelected(av.isRightAlignIds());
861 centreColumnLabelsMenuItem.setState(av.isCentreColumnLabels());
862 renderGapsMenuItem.setSelected(av.isRenderGaps());
863 wrapMenuItem.setSelected(av.getWrapAlignment());
864 scaleAbove.setVisible(av.getWrapAlignment());
865 scaleLeft.setVisible(av.getWrapAlignment());
866 scaleRight.setVisible(av.getWrapAlignment());
867 annotationPanelMenuItem.setState(av.isShowAnnotation());
869 * Show/hide annotations only enabled if annotation panel is shown
871 showAllSeqAnnotations.setEnabled(annotationPanelMenuItem.getState());
872 hideAllSeqAnnotations.setEnabled(annotationPanelMenuItem.getState());
873 showAllAlAnnotations.setEnabled(annotationPanelMenuItem.getState());
874 hideAllAlAnnotations.setEnabled(annotationPanelMenuItem.getState());
875 viewBoxesMenuItem.setSelected(av.getShowBoxes());
876 viewTextMenuItem.setSelected(av.getShowText());
877 showNonconservedMenuItem.setSelected(av.getShowUnconserved());
878 showGroupConsensus.setSelected(av.isShowGroupConsensus());
879 showGroupConservation.setSelected(av.isShowGroupConservation());
880 showConsensusHistogram.setSelected(av.isShowConsensusHistogram());
881 showSequenceLogo.setSelected(av.isShowSequenceLogo());
882 normaliseSequenceLogo.setSelected(av.isNormaliseSequenceLogo());
884 setColourSelected(ColourSchemeProperty.getColourName(av
885 .getGlobalColourScheme()));
887 showSeqFeatures.setSelected(av.isShowSequenceFeatures());
888 hiddenMarkers.setState(av.getShowHiddenMarkers());
889 applyToAllGroups.setState(av.getColourAppliesToAllGroups());
890 showNpFeatsMenuitem.setSelected(av.isShowNPFeats());
891 showDbRefsMenuitem.setSelected(av.isShowDBRefs());
892 autoCalculate.setSelected(av.autoCalculateConsensus);
893 sortByTree.setSelected(av.sortByTree);
894 listenToViewSelections.setSelected(av.followSelection);
895 rnahelicesColour.setEnabled(av.getAlignment().hasRNAStructure());
897 .setSelected(av.getGlobalColourScheme() instanceof jalview.schemes.RNAHelicesColour);
898 setShowProductsEnabled();
902 private IProgressIndicator progressBar;
907 * @see jalview.gui.IProgressIndicator#setProgressBar(java.lang.String, long)
910 public void setProgressBar(String message, long id)
912 progressBar.setProgressBar(message, id);
916 public void registerHandler(final long id,
917 final IProgressIndicatorHandler handler)
919 progressBar.registerHandler(id, handler);
924 * @return true if any progress bars are still active
927 public boolean operationInProgress()
929 return progressBar.operationInProgress();
933 public void setStatus(String text)
935 statusBar.setText(text);
939 * Added so Castor Mapping file can obtain Jalview Version
941 public String getVersion()
943 return jalview.bin.Cache.getProperty("VERSION");
946 public FeatureRenderer getFeatureRenderer()
948 return alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer();
952 public void fetchSequence_actionPerformed(ActionEvent e)
954 new SequenceFetcher(this);
958 public void addFromFile_actionPerformed(ActionEvent e)
960 Desktop.instance.inputLocalFileMenuItem_actionPerformed(viewport);
964 public void reload_actionPerformed(ActionEvent e)
966 if (fileName != null)
968 // TODO: JAL-1108 - ensure all associated frames are closed regardless of
969 // originating file's format
970 // TODO: work out how to recover feature settings for correct view(s) when
972 if (currentFileFormat.equals("Jalview"))
974 JInternalFrame[] frames = Desktop.desktop.getAllFrames();
975 for (int i = 0; i < frames.length; i++)
977 if (frames[i] instanceof AlignFrame && frames[i] != this
978 && ((AlignFrame) frames[i]).fileName != null
979 && ((AlignFrame) frames[i]).fileName.equals(fileName))
983 frames[i].setSelected(true);
984 Desktop.instance.closeAssociatedWindows();
985 } catch (java.beans.PropertyVetoException ex)
991 Desktop.instance.closeAssociatedWindows();
993 FileLoader loader = new FileLoader();
994 String protocol = fileName.startsWith("http:") ? "URL" : "File";
995 loader.LoadFile(viewport, fileName, protocol, currentFileFormat);
999 Rectangle bounds = this.getBounds();
1001 FileLoader loader = new FileLoader();
1002 String protocol = fileName.startsWith("http:") ? "URL" : "File";
1003 AlignFrame newframe = loader.LoadFileWaitTillLoaded(fileName,
1004 protocol, currentFileFormat);
1006 newframe.setBounds(bounds);
1007 if (featureSettings != null && featureSettings.isShowing())
1009 final Rectangle fspos = featureSettings.frame.getBounds();
1010 // TODO: need a 'show feature settings' function that takes bounds -
1011 // need to refactor Desktop.addFrame
1012 newframe.featureSettings_actionPerformed(null);
1013 final FeatureSettings nfs = newframe.featureSettings;
1014 SwingUtilities.invokeLater(new Runnable()
1019 nfs.frame.setBounds(fspos);
1022 this.featureSettings.close();
1023 this.featureSettings = null;
1025 this.closeMenuItem_actionPerformed(true);
1031 public void addFromText_actionPerformed(ActionEvent e)
1033 Desktop.instance.inputTextboxMenuItem_actionPerformed(viewport);
1037 public void addFromURL_actionPerformed(ActionEvent e)
1039 Desktop.instance.inputURLMenuItem_actionPerformed(viewport);
1043 public void save_actionPerformed(ActionEvent e)
1045 if (fileName == null
1046 || (currentFileFormat == null || !jalview.io.FormatAdapter
1047 .isValidIOFormat(currentFileFormat, true))
1048 || fileName.startsWith("http"))
1050 saveAs_actionPerformed(null);
1054 saveAlignment(fileName, currentFileFormat);
1065 public void saveAs_actionPerformed(ActionEvent e)
1067 JalviewFileChooser chooser = new JalviewFileChooser(
1068 jalview.bin.Cache.getProperty("LAST_DIRECTORY"),
1069 jalview.io.AppletFormatAdapter.WRITABLE_EXTENSIONS,
1070 jalview.io.AppletFormatAdapter.WRITABLE_FNAMES,
1071 currentFileFormat, false);
1073 chooser.setFileView(new JalviewFileView());
1074 chooser.setDialogTitle(MessageManager.getString("label.save_alignment_to_file"));
1075 chooser.setToolTipText(MessageManager.getString("action.save"));
1077 int value = chooser.showSaveDialog(this);
1079 if (value == JalviewFileChooser.APPROVE_OPTION)
1081 currentFileFormat = chooser.getSelectedFormat();
1082 while (currentFileFormat == null)
1085 .showInternalMessageDialog(
1088 .getString("label.select_file_format_before_saving"),
1090 .getString("label.file_format_not_specified"),
1091 JOptionPane.WARNING_MESSAGE);
1092 currentFileFormat = chooser.getSelectedFormat();
1093 value = chooser.showSaveDialog(this);
1094 if (value != JalviewFileChooser.APPROVE_OPTION)
1100 fileName = chooser.getSelectedFile().getPath();
1102 jalview.bin.Cache.setProperty("DEFAULT_FILE_FORMAT",
1105 jalview.bin.Cache.setProperty("LAST_DIRECTORY", fileName);
1106 if (currentFileFormat.indexOf(" ") > -1)
1108 currentFileFormat = currentFileFormat.substring(0,
1109 currentFileFormat.indexOf(" "));
1111 saveAlignment(fileName, currentFileFormat);
1115 public boolean saveAlignment(String file, String format)
1117 boolean success = true;
1119 if (format.equalsIgnoreCase("Jalview"))
1121 String shortName = title;
1123 if (shortName.indexOf(java.io.File.separatorChar) > -1)
1125 shortName = shortName.substring(shortName
1126 .lastIndexOf(java.io.File.separatorChar) + 1);
1129 success = new Jalview2XML().saveAlignment(this, file, shortName);
1131 statusBar.setText(MessageManager.formatMessage(
1132 "label.successfully_saved_to_file_in_format", new Object[]
1133 { fileName, format }));
1138 if (!jalview.io.AppletFormatAdapter.isValidFormat(format, true))
1140 warningMessage("Cannot save file " + fileName + " using format "
1141 + format, "Alignment output format not supported");
1142 if (!Jalview.isHeadlessMode())
1144 saveAs_actionPerformed(null);
1149 AlignmentExportData exportData = getAlignmentForExport(format, viewport);
1150 if (exportData.getSettings().isCancelled())
1154 FormatAdapter f = new FormatAdapter(alignPanel,
1155 exportData.getSettings());
1156 String output = f.formatSequences(format,
1157 exportData.getAlignment(), // class cast exceptions will
1158 // occur in the distant future
1159 exportData.getOmitHidden(), exportData.getStartEndPostions(),
1160 f.getCacheSuffixDefault(format),
1161 viewport.getColumnSelection());
1171 java.io.PrintWriter out = new java.io.PrintWriter(
1172 new java.io.FileWriter(file));
1176 this.setTitle(file);
1177 statusBar.setText(MessageManager.formatMessage(
1178 "label.successfully_saved_to_file_in_format",
1180 { fileName, format }));
1181 } catch (Exception ex)
1184 ex.printStackTrace();
1191 JOptionPane.showInternalMessageDialog(this, MessageManager
1192 .formatMessage("label.couldnt_save_file", new Object[]
1193 { fileName }), MessageManager
1194 .getString("label.error_saving_file"),
1195 JOptionPane.WARNING_MESSAGE);
1202 private void warningMessage(String warning, String title)
1204 if (new jalview.util.Platform().isHeadless())
1206 System.err.println("Warning: " + title + "\nWarning: " + warning);
1211 JOptionPane.showInternalMessageDialog(this, warning, title,
1212 JOptionPane.WARNING_MESSAGE);
1224 protected void outputText_actionPerformed(ActionEvent e)
1227 AlignmentExportData exportData = getAlignmentForExport(
1228 e.getActionCommand(), viewport);
1229 if (exportData.getSettings().isCancelled())
1233 CutAndPasteTransfer cap = new CutAndPasteTransfer();
1234 cap.setForInput(null);
1237 cap.setText(new FormatAdapter(alignPanel, exportData.getSettings())
1239 e.getActionCommand(),
1240 exportData.getAlignment(),
1241 exportData.getOmitHidden(), exportData.getStartEndPostions(),
1242 viewport.getColumnSelection()));
1243 Desktop.addInternalFrame(cap, MessageManager.formatMessage(
1244 "label.alignment_output_command", new Object[]
1245 { e.getActionCommand() }), 600, 500);
1246 } catch (OutOfMemoryError oom)
1248 new OOMWarning("Outputting alignment as " + e.getActionCommand(), oom);
1254 public static AlignmentExportData getAlignmentForExport(String exportFormat,
1255 AlignViewportI viewport)
1257 AlignmentI alignmentToExport = null;
1258 String[] omitHidden = null;
1259 int[] alignmentStartEnd = new int[2];
1261 HiddenSequences hiddenSeqs = viewport.getAlignment()
1262 .getHiddenSequences();
1265 alignmentToExport = viewport.getAlignment();
1266 alignmentStartEnd = new int[]
1267 { 0, alignmentToExport.getWidth() - 1 };
1269 boolean hasHiddenSeqs = hiddenSeqs.getSize() > 0;
1270 AlignExportSettings settings = new AlignExportSettings(hasHiddenSeqs,
1271 viewport.hasHiddenColumns(), exportFormat);
1272 settings.isExportAnnotations();
1274 if (viewport.hasHiddenColumns() && !settings.isExportHiddenColumns())
1276 omitHidden = viewport.getViewAsString(false);
1279 if (hasHiddenSeqs && settings.isExportHiddenSequences())
1281 alignmentToExport = hiddenSeqs.getFullAlignment();
1285 alignmentToExport = viewport.getAlignment();
1286 alignmentStartEnd = getStartEnd(alignmentStartEnd, viewport
1287 .getColumnSelection().getHiddenColumns());
1289 AlignmentExportData ed = new AlignmentExportData(alignmentToExport, omitHidden, alignmentStartEnd,
1294 public static int[] getStartEnd(int[] aligmentStartEnd,
1295 List<int[]> hiddenCols)
1297 int startPos = aligmentStartEnd[0];
1298 int endPos = aligmentStartEnd[1];
1300 int[] lowestRange = new int[2];
1301 int[] higestRange = new int[2];
1303 for (int[] hiddenCol : hiddenCols)
1305 // System.out.println("comparing : " + hiddenCol[0] + "-" + hiddenCol[1]);
1306 lowestRange = (hiddenCol[0] <= startPos) ? hiddenCol : lowestRange;
1307 higestRange = (hiddenCol[1] >= endPos) ? hiddenCol : higestRange;
1309 // System.out.println("min : " + lowestRange[0] + "-" + lowestRange[1]);
1310 // System.out.println("max : " + higestRange[0] + "-" + higestRange[1]);
1312 if (lowestRange[0] == 0 && lowestRange[1] == 0)
1314 startPos = aligmentStartEnd[0];
1318 startPos = lowestRange[1] + 1;
1321 if (higestRange[0] == 0 && higestRange[1] == 0)
1323 endPos = aligmentStartEnd[1];
1327 endPos = higestRange[0];
1330 // System.out.println("Export range : " + minPos + " - " + maxPos);
1332 { startPos, endPos };
1335 public static void main(String[] args)
1337 ArrayList<int[]> hiddenCols = new ArrayList<int[]>();
1338 hiddenCols.add(new int[]
1340 hiddenCols.add(new int[]
1342 hiddenCols.add(new int[]
1344 hiddenCols.add(new int[]
1346 hiddenCols.add(new int[]
1349 int[] x = getStartEnd(new int[]
1350 { 0, 50 }, hiddenCols);
1351 // System.out.println("Export range : " + x[0] + " - " + x[1]);
1361 protected void htmlMenuItem_actionPerformed(ActionEvent e)
1363 new HtmlSvgOutput(null, alignPanel);
1367 public void bioJSMenuItem_actionPerformed(ActionEvent e)
1369 BioJsHTMLOutput bjs = new BioJsHTMLOutput(alignPanel);
1370 bjs.exportJalviewAlignmentAsBioJsHtmlFile();
1372 public void createImageMap(File file, String image)
1374 alignPanel.makePNGImageMap(file, image);
1384 public void createPNG(File f)
1386 alignPanel.makePNG(f);
1396 public void createEPS(File f)
1398 alignPanel.makeEPS(f);
1401 public void createSVG(File f)
1403 alignPanel.makeSVG(f);
1406 public void pageSetup_actionPerformed(ActionEvent e)
1408 PrinterJob printJob = PrinterJob.getPrinterJob();
1409 PrintThread.pf = printJob.pageDialog(printJob.defaultPage());
1419 public void printMenuItem_actionPerformed(ActionEvent e)
1421 // Putting in a thread avoids Swing painting problems
1422 PrintThread thread = new PrintThread(alignPanel);
1427 public void exportFeatures_actionPerformed(ActionEvent e)
1429 new AnnotationExporter().exportFeatures(alignPanel);
1433 public void exportAnnotations_actionPerformed(ActionEvent e)
1435 new AnnotationExporter().exportAnnotations(alignPanel);
1439 public void associatedData_actionPerformed(ActionEvent e)
1441 // Pick the tree file
1442 JalviewFileChooser chooser = new JalviewFileChooser(
1443 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
1444 chooser.setFileView(new JalviewFileView());
1445 chooser.setDialogTitle(MessageManager
1446 .getString("label.load_jalview_annotations"));
1447 chooser.setToolTipText(MessageManager
1448 .getString("label.load_jalview_annotations"));
1450 int value = chooser.showOpenDialog(null);
1452 if (value == JalviewFileChooser.APPROVE_OPTION)
1454 String choice = chooser.getSelectedFile().getPath();
1455 jalview.bin.Cache.setProperty("LAST_DIRECTORY", choice);
1456 loadJalviewDataFile(choice, null, null, null);
1462 * Close the current view or all views in the alignment frame. If the frame
1463 * only contains one view then the alignment will be removed from memory.
1465 * @param closeAllTabs
1468 public void closeMenuItem_actionPerformed(boolean closeAllTabs)
1470 if (alignPanels != null && alignPanels.size() < 2)
1472 closeAllTabs = true;
1477 if (alignPanels != null)
1481 if (this.isClosed())
1483 // really close all the windows - otherwise wait till
1484 // setClosed(true) is called
1485 for (int i = 0; i < alignPanels.size(); i++)
1487 AlignmentPanel ap = alignPanels.get(i);
1494 closeView(alignPanel);
1501 * this will raise an INTERNAL_FRAME_CLOSED event and this method will
1502 * be called recursively, with the frame now in 'closed' state
1504 this.setClosed(true);
1506 } catch (Exception ex)
1508 ex.printStackTrace();
1513 * Close the specified panel and close up tabs appropriately.
1515 * @param panelToClose
1517 public void closeView(AlignmentPanel panelToClose)
1519 int index = tabbedPane.getSelectedIndex();
1520 int closedindex = tabbedPane.indexOfComponent(panelToClose);
1521 alignPanels.remove(panelToClose);
1522 panelToClose.closePanel();
1523 panelToClose = null;
1525 tabbedPane.removeTabAt(closedindex);
1526 tabbedPane.validate();
1528 if (index > closedindex || index == tabbedPane.getTabCount())
1530 // modify currently selected tab index if necessary.
1534 this.tabSelectionChanged(index);
1540 void updateEditMenuBar()
1543 if (viewport.getHistoryList().size() > 0)
1545 undoMenuItem.setEnabled(true);
1546 CommandI command = viewport.getHistoryList().peek();
1547 undoMenuItem.setText(MessageManager.formatMessage(
1548 "label.undo_command", new Object[]
1549 { command.getDescription() }));
1553 undoMenuItem.setEnabled(false);
1554 undoMenuItem.setText(MessageManager.getString("action.undo"));
1557 if (viewport.getRedoList().size() > 0)
1559 redoMenuItem.setEnabled(true);
1561 CommandI command = viewport.getRedoList().peek();
1562 redoMenuItem.setText(MessageManager.formatMessage(
1563 "label.redo_command", new Object[]
1564 { command.getDescription() }));
1568 redoMenuItem.setEnabled(false);
1569 redoMenuItem.setText(MessageManager.getString("action.redo"));
1573 public void addHistoryItem(CommandI command)
1575 if (command.getSize() > 0)
1577 viewport.addToHistoryList(command);
1578 viewport.clearRedoList();
1579 updateEditMenuBar();
1580 viewport.updateHiddenColumns();
1581 // viewport.hasHiddenColumns = (viewport.getColumnSelection() != null
1582 // && viewport.getColumnSelection().getHiddenColumns() != null &&
1583 // viewport.getColumnSelection()
1584 // .getHiddenColumns().size() > 0);
1590 * @return alignment objects for all views
1592 AlignmentI[] getViewAlignments()
1594 if (alignPanels != null)
1596 AlignmentI[] als = new AlignmentI[alignPanels.size()];
1598 for (AlignmentPanel ap : alignPanels)
1600 als[i++] = ap.av.getAlignment();
1604 if (viewport != null)
1606 return new AlignmentI[]
1607 { viewport.getAlignment() };
1619 protected void undoMenuItem_actionPerformed(ActionEvent e)
1621 if (viewport.getHistoryList().isEmpty())
1625 CommandI command = viewport.getHistoryList().pop();
1626 viewport.addToRedoList(command);
1627 command.undoCommand(getViewAlignments());
1629 AlignmentViewport originalSource = getOriginatingSource(command);
1630 updateEditMenuBar();
1632 if (originalSource != null)
1634 if (originalSource != viewport)
1637 .warn("Implementation worry: mismatch of viewport origin for undo");
1639 originalSource.updateHiddenColumns();
1640 // originalSource.hasHiddenColumns = (viewport.getColumnSelection() !=
1642 // && viewport.getColumnSelection().getHiddenColumns() != null &&
1643 // viewport.getColumnSelection()
1644 // .getHiddenColumns().size() > 0);
1645 originalSource.firePropertyChange("alignment", null, originalSource
1646 .getAlignment().getSequences());
1657 protected void redoMenuItem_actionPerformed(ActionEvent e)
1659 if (viewport.getRedoList().size() < 1)
1664 CommandI command = viewport.getRedoList().pop();
1665 viewport.addToHistoryList(command);
1666 command.doCommand(getViewAlignments());
1668 AlignmentViewport originalSource = getOriginatingSource(command);
1669 updateEditMenuBar();
1671 if (originalSource != null)
1674 if (originalSource != viewport)
1677 .warn("Implementation worry: mismatch of viewport origin for redo");
1679 originalSource.updateHiddenColumns();
1680 // originalSource.hasHiddenColumns = (viewport.getColumnSelection() !=
1682 // && viewport.getColumnSelection().getHiddenColumns() != null &&
1683 // viewport.getColumnSelection()
1684 // .getHiddenColumns().size() > 0);
1685 originalSource.firePropertyChange("alignment", null, originalSource
1686 .getAlignment().getSequences());
1690 AlignmentViewport getOriginatingSource(CommandI command)
1692 AlignmentViewport originalSource = null;
1693 // For sequence removal and addition, we need to fire
1694 // the property change event FROM the viewport where the
1695 // original alignment was altered
1696 AlignmentI al = null;
1697 if (command instanceof EditCommand)
1699 EditCommand editCommand = (EditCommand) command;
1700 al = editCommand.getAlignment();
1701 List<Component> comps = PaintRefresher.components.get(viewport
1702 .getSequenceSetId());
1704 for (Component comp : comps)
1706 if (comp instanceof AlignmentPanel)
1708 if (al == ((AlignmentPanel) comp).av.getAlignment())
1710 originalSource = ((AlignmentPanel) comp).av;
1717 if (originalSource == null)
1719 // The original view is closed, we must validate
1720 // the current view against the closed view first
1723 PaintRefresher.validateSequences(al, viewport.getAlignment());
1726 originalSource = viewport;
1729 return originalSource;
1738 public void moveSelectedSequences(boolean up)
1740 SequenceGroup sg = viewport.getSelectionGroup();
1746 viewport.getAlignment().moveSelectedSequencesByOne(sg,
1747 viewport.getHiddenRepSequences(), up);
1748 alignPanel.paintAlignment(true);
1751 synchronized void slideSequences(boolean right, int size)
1753 List<SequenceI> sg = new ArrayList<SequenceI>();
1754 if (viewport.cursorMode)
1756 sg.add(viewport.getAlignment().getSequenceAt(
1757 alignPanel.getSeqPanel().seqCanvas.cursorY));
1759 else if (viewport.getSelectionGroup() != null
1760 && viewport.getSelectionGroup().getSize() != viewport
1761 .getAlignment().getHeight())
1763 sg = viewport.getSelectionGroup().getSequences(
1764 viewport.getHiddenRepSequences());
1772 List<SequenceI> invertGroup = new ArrayList<SequenceI>();
1774 for (SequenceI seq : viewport.getAlignment().getSequences())
1776 if (!sg.contains(seq))
1778 invertGroup.add(seq);
1782 SequenceI[] seqs1 = sg.toArray(new SequenceI[0]);
1784 SequenceI[] seqs2 = new SequenceI[invertGroup.size()];
1785 for (int i = 0; i < invertGroup.size(); i++)
1787 seqs2[i] = invertGroup.get(i);
1790 SlideSequencesCommand ssc;
1793 ssc = new SlideSequencesCommand("Slide Sequences", seqs2, seqs1,
1794 size, viewport.getGapCharacter());
1798 ssc = new SlideSequencesCommand("Slide Sequences", seqs1, seqs2,
1799 size, viewport.getGapCharacter());
1802 int groupAdjustment = 0;
1803 if (ssc.getGapsInsertedBegin() && right)
1805 if (viewport.cursorMode)
1807 alignPanel.getSeqPanel().moveCursor(size, 0);
1811 groupAdjustment = size;
1814 else if (!ssc.getGapsInsertedBegin() && !right)
1816 if (viewport.cursorMode)
1818 alignPanel.getSeqPanel().moveCursor(-size, 0);
1822 groupAdjustment = -size;
1826 if (groupAdjustment != 0)
1828 viewport.getSelectionGroup().setStartRes(
1829 viewport.getSelectionGroup().getStartRes() + groupAdjustment);
1830 viewport.getSelectionGroup().setEndRes(
1831 viewport.getSelectionGroup().getEndRes() + groupAdjustment);
1835 * just extend the last slide command if compatible; but not if in
1836 * SplitFrame mode (to ensure all edits are broadcast - JAL-1802)
1838 boolean appendHistoryItem = false;
1839 Deque<CommandI> historyList = viewport.getHistoryList();
1840 boolean inSplitFrame = getSplitViewContainer() != null;
1841 if (!inSplitFrame && historyList != null
1842 && historyList.size() > 0
1843 && historyList.peek() instanceof SlideSequencesCommand)
1845 appendHistoryItem = ssc
1846 .appendSlideCommand((SlideSequencesCommand) historyList
1850 if (!appendHistoryItem)
1852 addHistoryItem(ssc);
1865 protected void copy_actionPerformed(ActionEvent e)
1868 if (viewport.getSelectionGroup() == null)
1872 // TODO: preserve the ordering of displayed alignment annotation in any
1873 // internal paste (particularly sequence associated annotation)
1874 SequenceI[] seqs = viewport.getSelectionAsNewSequence();
1875 String[] omitHidden = null;
1877 if (viewport.hasHiddenColumns())
1879 omitHidden = viewport.getViewAsString(true);
1882 String output = new FormatAdapter().formatSequences("Fasta", seqs,
1885 StringSelection ss = new StringSelection(output);
1889 jalview.gui.Desktop.internalCopy = true;
1890 // Its really worth setting the clipboard contents
1891 // to empty before setting the large StringSelection!!
1892 Toolkit.getDefaultToolkit().getSystemClipboard()
1893 .setContents(new StringSelection(""), null);
1895 Toolkit.getDefaultToolkit().getSystemClipboard()
1896 .setContents(ss, Desktop.instance);
1897 } catch (OutOfMemoryError er)
1899 new OOMWarning("copying region", er);
1903 ArrayList<int[]> hiddenColumns = null;
1904 if (viewport.hasHiddenColumns())
1906 hiddenColumns = new ArrayList<int[]>();
1907 int hiddenOffset = viewport.getSelectionGroup().getStartRes(), hiddenCutoff = viewport
1908 .getSelectionGroup().getEndRes();
1909 for (int[] region : viewport.getColumnSelection().getHiddenColumns())
1911 if (region[0] >= hiddenOffset && region[1] <= hiddenCutoff)
1913 hiddenColumns.add(new int[]
1914 { region[0] - hiddenOffset, region[1] - hiddenOffset });
1919 Desktop.jalviewClipboard = new Object[]
1920 { seqs, viewport.getAlignment().getDataset(), hiddenColumns };
1921 statusBar.setText(MessageManager.formatMessage(
1922 "label.copied_sequences_to_clipboard", new Object[]
1923 { Integer.valueOf(seqs.length).toString() }));
1933 protected void pasteNew_actionPerformed(ActionEvent e)
1945 protected void pasteThis_actionPerformed(ActionEvent e)
1951 * Paste contents of Jalview clipboard
1953 * @param newAlignment
1954 * true to paste to a new alignment, otherwise add to this.
1956 void paste(boolean newAlignment)
1958 boolean externalPaste = true;
1961 Clipboard c = Toolkit.getDefaultToolkit().getSystemClipboard();
1962 Transferable contents = c.getContents(this);
1964 if (contents == null)
1972 str = (String) contents.getTransferData(DataFlavor.stringFlavor);
1973 if (str.length() < 1)
1978 format = new IdentifyFile().Identify(str, "Paste");
1980 } catch (OutOfMemoryError er)
1982 new OOMWarning("Out of memory pasting sequences!!", er);
1986 SequenceI[] sequences;
1987 boolean annotationAdded = false;
1988 AlignmentI alignment = null;
1990 if (Desktop.jalviewClipboard != null)
1992 // The clipboard was filled from within Jalview, we must use the
1994 // And dataset from the copied alignment
1995 SequenceI[] newseq = (SequenceI[]) Desktop.jalviewClipboard[0];
1996 // be doubly sure that we create *new* sequence objects.
1997 sequences = new SequenceI[newseq.length];
1998 for (int i = 0; i < newseq.length; i++)
2000 sequences[i] = new Sequence(newseq[i]);
2002 alignment = new Alignment(sequences);
2003 externalPaste = false;
2007 // parse the clipboard as an alignment.
2008 alignment = new FormatAdapter().readFile(str, "Paste", format);
2009 sequences = alignment.getSequencesArray();
2013 ArrayList<Integer> newGraphGroups = new ArrayList<Integer>();
2019 if (Desktop.jalviewClipboard != null)
2021 // dataset is inherited
2022 alignment.setDataset((Alignment) Desktop.jalviewClipboard[1]);
2026 // new dataset is constructed
2027 alignment.setDataset(null);
2029 alwidth = alignment.getWidth() + 1;
2033 AlignmentI pastedal = alignment; // preserve pasted alignment object
2034 // Add pasted sequences and dataset into existing alignment.
2035 alignment = viewport.getAlignment();
2036 alwidth = alignment.getWidth() + 1;
2037 // decide if we need to import sequences from an existing dataset
2038 boolean importDs = Desktop.jalviewClipboard != null
2039 && Desktop.jalviewClipboard[1] != alignment.getDataset();
2040 // importDs==true instructs us to copy over new dataset sequences from
2041 // an existing alignment
2042 Vector newDs = (importDs) ? new Vector() : null; // used to create
2043 // minimum dataset set
2045 for (int i = 0; i < sequences.length; i++)
2049 newDs.addElement(null);
2051 SequenceI ds = sequences[i].getDatasetSequence(); // null for a simple
2053 if (importDs && ds != null)
2055 if (!newDs.contains(ds))
2057 newDs.setElementAt(ds, i);
2058 ds = new Sequence(ds);
2059 // update with new dataset sequence
2060 sequences[i].setDatasetSequence(ds);
2064 ds = sequences[newDs.indexOf(ds)].getDatasetSequence();
2069 // copy and derive new dataset sequence
2070 sequences[i] = sequences[i].deriveSequence();
2071 alignment.getDataset().addSequence(
2072 sequences[i].getDatasetSequence());
2073 // TODO: avoid creation of duplicate dataset sequences with a
2074 // 'contains' method using SequenceI.equals()/SequenceI.contains()
2076 alignment.addSequence(sequences[i]); // merges dataset
2080 newDs.clear(); // tidy up
2082 if (alignment.getAlignmentAnnotation() != null)
2084 for (AlignmentAnnotation alan : alignment
2085 .getAlignmentAnnotation())
2087 if (alan.graphGroup > fgroup)
2089 fgroup = alan.graphGroup;
2093 if (pastedal.getAlignmentAnnotation() != null)
2095 // Add any annotation attached to alignment.
2096 AlignmentAnnotation[] alann = pastedal.getAlignmentAnnotation();
2097 for (int i = 0; i < alann.length; i++)
2099 annotationAdded = true;
2100 if (alann[i].sequenceRef == null && !alann[i].autoCalculated)
2102 AlignmentAnnotation newann = new AlignmentAnnotation(alann[i]);
2103 if (newann.graphGroup > -1)
2105 if (newGraphGroups.size() <= newann.graphGroup
2106 || newGraphGroups.get(newann.graphGroup) == null)
2108 for (int q = newGraphGroups.size(); q <= newann.graphGroup; q++)
2110 newGraphGroups.add(q, null);
2112 newGraphGroups.set(newann.graphGroup, new Integer(
2115 newann.graphGroup = newGraphGroups.get(newann.graphGroup)
2119 newann.padAnnotation(alwidth);
2120 alignment.addAnnotation(newann);
2130 addHistoryItem(new EditCommand(
2131 MessageManager.getString("label.add_sequences"),
2133 sequences, 0, alignment.getWidth(), alignment));
2135 // Add any annotations attached to sequences
2136 for (int i = 0; i < sequences.length; i++)
2138 if (sequences[i].getAnnotation() != null)
2140 AlignmentAnnotation newann;
2141 for (int a = 0; a < sequences[i].getAnnotation().length; a++)
2143 annotationAdded = true;
2144 newann = sequences[i].getAnnotation()[a];
2145 newann.adjustForAlignment();
2146 newann.padAnnotation(alwidth);
2147 if (newann.graphGroup > -1)
2149 if (newann.graphGroup > -1)
2151 if (newGraphGroups.size() <= newann.graphGroup
2152 || newGraphGroups.get(newann.graphGroup) == null)
2154 for (int q = newGraphGroups.size(); q <= newann.graphGroup; q++)
2156 newGraphGroups.add(q, null);
2158 newGraphGroups.set(newann.graphGroup, new Integer(
2161 newann.graphGroup = newGraphGroups.get(newann.graphGroup)
2165 alignment.addAnnotation(sequences[i].getAnnotation()[a]); // annotation
2170 .setAnnotationIndex(sequences[i].getAnnotation()[a], a);
2177 // propagate alignment changed.
2178 viewport.setEndSeq(alignment.getHeight());
2179 if (annotationAdded)
2181 // Duplicate sequence annotation in all views.
2182 AlignmentI[] alview = this.getViewAlignments();
2183 for (int i = 0; i < sequences.length; i++)
2185 AlignmentAnnotation sann[] = sequences[i].getAnnotation();
2190 for (int avnum = 0; avnum < alview.length; avnum++)
2192 if (alview[avnum] != alignment)
2194 // duplicate in a view other than the one with input focus
2195 int avwidth = alview[avnum].getWidth() + 1;
2196 // this relies on sann being preserved after we
2197 // modify the sequence's annotation array for each duplication
2198 for (int a = 0; a < sann.length; a++)
2200 AlignmentAnnotation newann = new AlignmentAnnotation(
2202 sequences[i].addAlignmentAnnotation(newann);
2203 newann.padAnnotation(avwidth);
2204 alview[avnum].addAnnotation(newann); // annotation was
2205 // duplicated earlier
2206 // TODO JAL-1145 graphGroups are not updated for sequence
2207 // annotation added to several views. This may cause
2209 alview[avnum].setAnnotationIndex(newann, a);
2214 buildSortByAnnotationScoresMenu();
2216 viewport.firePropertyChange("alignment", null,
2217 alignment.getSequences());
2218 if (alignPanels != null)
2220 for (AlignmentPanel ap : alignPanels)
2222 ap.validateAnnotationDimensions(false);
2227 alignPanel.validateAnnotationDimensions(false);
2233 AlignFrame af = new AlignFrame(alignment, DEFAULT_WIDTH,
2235 String newtitle = new String("Copied sequences");
2237 if (Desktop.jalviewClipboard != null
2238 && Desktop.jalviewClipboard[2] != null)
2240 List<int[]> hc = (List<int[]>) Desktop.jalviewClipboard[2];
2241 for (int[] region : hc)
2243 af.viewport.hideColumns(region[0], region[1]);
2247 // >>>This is a fix for the moment, until a better solution is
2249 af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
2251 alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer());
2253 // TODO: maintain provenance of an alignment, rather than just make the
2254 // title a concatenation of operations.
2257 if (title.startsWith("Copied sequences"))
2263 newtitle = newtitle.concat("- from " + title);
2268 newtitle = new String("Pasted sequences");
2271 Desktop.addInternalFrame(af, newtitle, DEFAULT_WIDTH,
2276 } catch (Exception ex)
2278 ex.printStackTrace();
2279 System.out.println("Exception whilst pasting: " + ex);
2280 // could be anything being pasted in here
2286 protected void expand_newalign(ActionEvent e)
2290 AlignmentI alignment = AlignmentUtils.expandContext(getViewport()
2291 .getAlignment(), -1);
2292 AlignFrame af = new AlignFrame(alignment, DEFAULT_WIDTH,
2294 String newtitle = new String("Flanking alignment");
2296 if (Desktop.jalviewClipboard != null
2297 && Desktop.jalviewClipboard[2] != null)
2299 List<int[]> hc = (List<int[]>) Desktop.jalviewClipboard[2];
2300 for (int region[] : hc)
2302 af.viewport.hideColumns(region[0], region[1]);
2306 // >>>This is a fix for the moment, until a better solution is
2308 af.alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer()
2310 alignPanel.getSeqPanel().seqCanvas.getFeatureRenderer());
2312 // TODO: maintain provenance of an alignment, rather than just make the
2313 // title a concatenation of operations.
2315 if (title.startsWith("Copied sequences"))
2321 newtitle = newtitle.concat("- from " + title);
2325 Desktop.addInternalFrame(af, newtitle, DEFAULT_WIDTH, DEFAULT_HEIGHT);
2327 } catch (Exception ex)
2329 ex.printStackTrace();
2330 System.out.println("Exception whilst pasting: " + ex);
2331 // could be anything being pasted in here
2332 } catch (OutOfMemoryError oom)
2334 new OOMWarning("Viewing flanking region of alignment", oom);
2345 protected void cut_actionPerformed(ActionEvent e)
2347 copy_actionPerformed(null);
2348 delete_actionPerformed(null);
2358 protected void delete_actionPerformed(ActionEvent evt)
2361 SequenceGroup sg = viewport.getSelectionGroup();
2368 * If the cut affects all sequences, warn, remove highlighted columns
2370 if (sg.getSize() == viewport.getAlignment().getHeight())
2372 int confirm = JOptionPane.showConfirmDialog(this,
2373 MessageManager.getString("warn.delete_all"), // $NON-NLS-1$
2374 MessageManager.getString("label.delete_all"), // $NON-NLS-1$
2375 JOptionPane.OK_CANCEL_OPTION);
2377 if (confirm == JOptionPane.CANCEL_OPTION
2378 || confirm == JOptionPane.CLOSED_OPTION)
2382 viewport.getColumnSelection().removeElements(sg.getStartRes(),
2383 sg.getEndRes() + 1);
2386 SequenceI[] cut = sg.getSequences()
2387 .toArray(new SequenceI[sg.getSize()]);
2389 addHistoryItem(new EditCommand(
2390 MessageManager.getString("label.cut_sequences"), Action.CUT,
2391 cut, sg.getStartRes(), sg.getEndRes() - sg.getStartRes() + 1,
2392 viewport.getAlignment()));
2394 viewport.setSelectionGroup(null);
2395 viewport.sendSelection();
2396 viewport.getAlignment().deleteGroup(sg);
2398 viewport.firePropertyChange("alignment", null, viewport.getAlignment()
2400 if (viewport.getAlignment().getHeight() < 1)
2404 this.setClosed(true);
2405 } catch (Exception ex)
2418 protected void deleteGroups_actionPerformed(ActionEvent e)
2420 if (avc.deleteGroups())
2422 PaintRefresher.Refresh(this, viewport.getSequenceSetId());
2423 alignPanel.updateAnnotation();
2424 alignPanel.paintAlignment(true);
2435 public void selectAllSequenceMenuItem_actionPerformed(ActionEvent e)
2437 SequenceGroup sg = new SequenceGroup();
2439 for (int i = 0; i < viewport.getAlignment().getSequences().size(); i++)
2441 sg.addSequence(viewport.getAlignment().getSequenceAt(i), false);
2444 sg.setEndRes(viewport.getAlignment().getWidth() - 1);
2445 viewport.setSelectionGroup(sg);
2446 viewport.sendSelection();
2447 alignPanel.paintAlignment(true);
2448 PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2458 public void deselectAllSequenceMenuItem_actionPerformed(ActionEvent e)
2460 if (viewport.cursorMode)
2462 alignPanel.getSeqPanel().keyboardNo1 = null;
2463 alignPanel.getSeqPanel().keyboardNo2 = null;
2465 viewport.setSelectionGroup(null);
2466 viewport.getColumnSelection().clear();
2467 viewport.setSelectionGroup(null);
2468 alignPanel.getSeqPanel().seqCanvas.highlightSearchResults(null);
2469 alignPanel.getIdPanel().getIdCanvas().searchResults = null;
2470 alignPanel.paintAlignment(true);
2471 PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2472 viewport.sendSelection();
2482 public void invertSequenceMenuItem_actionPerformed(ActionEvent e)
2484 SequenceGroup sg = viewport.getSelectionGroup();
2488 selectAllSequenceMenuItem_actionPerformed(null);
2493 for (int i = 0; i < viewport.getAlignment().getSequences().size(); i++)
2495 sg.addOrRemove(viewport.getAlignment().getSequenceAt(i), false);
2498 alignPanel.paintAlignment(true);
2499 PaintRefresher.Refresh(alignPanel, viewport.getSequenceSetId());
2500 viewport.sendSelection();
2504 public void invertColSel_actionPerformed(ActionEvent e)
2506 viewport.invertColumnSelection();
2507 alignPanel.paintAlignment(true);
2508 viewport.sendSelection();
2518 public void remove2LeftMenuItem_actionPerformed(ActionEvent e)
2520 trimAlignment(true);
2530 public void remove2RightMenuItem_actionPerformed(ActionEvent e)
2532 trimAlignment(false);
2535 void trimAlignment(boolean trimLeft)
2537 ColumnSelection colSel = viewport.getColumnSelection();
2540 if (colSel.size() > 0)
2544 column = colSel.getMin();
2548 column = colSel.getMax();
2552 if (viewport.getSelectionGroup() != null)
2554 seqs = viewport.getSelectionGroup().getSequencesAsArray(
2555 viewport.getHiddenRepSequences());
2559 seqs = viewport.getAlignment().getSequencesArray();
2562 TrimRegionCommand trimRegion;
2565 trimRegion = new TrimRegionCommand("Remove Left",
2566 TrimRegionCommand.TRIM_LEFT, seqs, column,
2567 viewport.getAlignment(), viewport.getColumnSelection(),
2568 viewport.getSelectionGroup());
2569 viewport.setStartRes(0);
2573 trimRegion = new TrimRegionCommand("Remove Right",
2574 TrimRegionCommand.TRIM_RIGHT, seqs, column,
2575 viewport.getAlignment(), viewport.getColumnSelection(),
2576 viewport.getSelectionGroup());
2579 statusBar.setText(MessageManager.formatMessage(
2580 "label.removed_columns", new String[]
2581 { Integer.valueOf(trimRegion.getSize()).toString() }));
2583 addHistoryItem(trimRegion);
2585 for (SequenceGroup sg : viewport.getAlignment().getGroups())
2587 if ((trimLeft && !sg.adjustForRemoveLeft(column))
2588 || (!trimLeft && !sg.adjustForRemoveRight(column)))
2590 viewport.getAlignment().deleteGroup(sg);
2594 viewport.firePropertyChange("alignment", null, viewport
2595 .getAlignment().getSequences());
2606 public void removeGappedColumnMenuItem_actionPerformed(ActionEvent e)
2608 int start = 0, end = viewport.getAlignment().getWidth() - 1;
2611 if (viewport.getSelectionGroup() != null)
2613 seqs = viewport.getSelectionGroup().getSequencesAsArray(
2614 viewport.getHiddenRepSequences());
2615 start = viewport.getSelectionGroup().getStartRes();
2616 end = viewport.getSelectionGroup().getEndRes();
2620 seqs = viewport.getAlignment().getSequencesArray();
2623 RemoveGapColCommand removeGapCols = new RemoveGapColCommand(
2624 "Remove Gapped Columns", seqs, start, end,
2625 viewport.getAlignment());
2627 addHistoryItem(removeGapCols);
2629 statusBar.setText(MessageManager.formatMessage(
2630 "label.removed_empty_columns", new Object[]
2631 { Integer.valueOf(removeGapCols.getSize()).toString() }));
2633 // This is to maintain viewport position on first residue
2634 // of first sequence
2635 SequenceI seq = viewport.getAlignment().getSequenceAt(0);
2636 int startRes = seq.findPosition(viewport.startRes);
2637 // ShiftList shifts;
2638 // viewport.getAlignment().removeGaps(shifts=new ShiftList());
2639 // edit.alColumnChanges=shifts.getInverse();
2640 // if (viewport.hasHiddenColumns)
2641 // viewport.getColumnSelection().compensateForEdits(shifts);
2642 viewport.setStartRes(seq.findIndex(startRes) - 1);
2643 viewport.firePropertyChange("alignment", null, viewport.getAlignment()
2655 public void removeAllGapsMenuItem_actionPerformed(ActionEvent e)
2657 int start = 0, end = viewport.getAlignment().getWidth() - 1;
2660 if (viewport.getSelectionGroup() != null)
2662 seqs = viewport.getSelectionGroup().getSequencesAsArray(
2663 viewport.getHiddenRepSequences());
2664 start = viewport.getSelectionGroup().getStartRes();
2665 end = viewport.getSelectionGroup().getEndRes();
2669 seqs = viewport.getAlignment().getSequencesArray();
2672 // This is to maintain viewport position on first residue
2673 // of first sequence
2674 SequenceI seq = viewport.getAlignment().getSequenceAt(0);
2675 int startRes = seq.findPosition(viewport.startRes);
2677 addHistoryItem(new RemoveGapsCommand("Remove Gaps", seqs, start, end,
2678 viewport.getAlignment()));
2680 viewport.setStartRes(seq.findIndex(startRes) - 1);
2682 viewport.firePropertyChange("alignment", null, viewport.getAlignment()
2694 public void padGapsMenuitem_actionPerformed(ActionEvent e)
2696 viewport.setPadGaps(padGapsMenuitem.isSelected());
2697 viewport.firePropertyChange("alignment", null, viewport.getAlignment()
2708 public void findMenuItem_actionPerformed(ActionEvent e)
2714 * Create a new view of the current alignment.
2717 public void newView_actionPerformed(ActionEvent e)
2719 newView(null, true);
2723 * Creates and shows a new view of the current alignment.
2726 * title of newly created view; if null, one will be generated
2727 * @param copyAnnotation
2728 * if true then duplicate all annnotation, groups and settings
2729 * @return new alignment panel, already displayed.
2731 public AlignmentPanel newView(String viewTitle, boolean copyAnnotation)
2734 * Create a new AlignmentPanel (with its own, new Viewport)
2736 AlignmentPanel newap = new Jalview2XML().copyAlignPanel(alignPanel,
2738 if (!copyAnnotation)
2741 * remove all groups and annotation except for the automatic stuff
2743 newap.av.getAlignment().deleteAllGroups();
2744 newap.av.getAlignment().deleteAllAnnotations(false);
2747 newap.av.setGatherViewsHere(false);
2749 if (viewport.viewName == null)
2751 viewport.viewName = MessageManager
2752 .getString("label.view_name_original");
2756 * Views share the same edits undo and redo stacks
2758 newap.av.setHistoryList(viewport.getHistoryList());
2759 newap.av.setRedoList(viewport.getRedoList());
2762 * Views share the same mappings; need to deregister any new mappings
2763 * created by copyAlignPanel, and register the new reference to the shared
2766 newap.av.replaceMappings(viewport.getAlignment());
2768 newap.av.viewName = getNewViewName(viewTitle);
2770 addAlignmentPanel(newap, true);
2771 newap.alignmentChanged();
2773 if (alignPanels.size() == 2)
2775 viewport.setGatherViewsHere(true);
2777 tabbedPane.setSelectedIndex(tabbedPane.getTabCount() - 1);
2782 * Make a new name for the view, ensuring it is unique within the current
2783 * sequenceSetId. (This used to be essential for Jalview Project archives, but
2784 * these now use viewId. Unique view names are still desirable for usability.)
2789 protected String getNewViewName(String viewTitle)
2791 int index = Desktop.getViewCount(viewport.getSequenceSetId());
2792 boolean addFirstIndex = false;
2793 if (viewTitle == null || viewTitle.trim().length() == 0)
2795 viewTitle = MessageManager.getString("action.view");
2796 addFirstIndex = true;
2800 index = 1;// we count from 1 if given a specific name
2802 String newViewName = viewTitle + ((addFirstIndex) ? " " + index : "");
2804 List<Component> comps = PaintRefresher.components.get(viewport
2805 .getSequenceSetId());
2807 List<String> existingNames = getExistingViewNames(comps);
2809 while (existingNames.contains(newViewName))
2811 newViewName = viewTitle + " " + (++index);
2817 * Returns a list of distinct view names found in the given list of
2818 * components. View names are held on the viewport of an AlignmentPanel.
2823 protected List<String> getExistingViewNames(List<Component> comps)
2825 List<String> existingNames = new ArrayList<String>();
2826 for (Component comp : comps)
2828 if (comp instanceof AlignmentPanel)
2830 AlignmentPanel ap = (AlignmentPanel) comp;
2831 if (!existingNames.contains(ap.av.viewName))
2833 existingNames.add(ap.av.viewName);
2837 return existingNames;
2841 * Explode tabbed views into separate windows.
2844 public void expandViews_actionPerformed(ActionEvent e)
2846 Desktop.instance.explodeViews(this);
2850 * Gather views in separate windows back into a tabbed presentation.
2853 public void gatherViews_actionPerformed(ActionEvent e)
2855 Desktop.instance.gatherViews(this);
2865 public void font_actionPerformed(ActionEvent e)
2867 new FontChooser(alignPanel);
2877 protected void seqLimit_actionPerformed(ActionEvent e)
2879 viewport.setShowJVSuffix(seqLimits.isSelected());
2881 alignPanel.getIdPanel().getIdCanvas().setPreferredSize(alignPanel
2882 .calculateIdWidth());
2883 alignPanel.paintAlignment(true);
2887 public void idRightAlign_actionPerformed(ActionEvent e)
2889 viewport.setRightAlignIds(idRightAlign.isSelected());
2890 alignPanel.paintAlignment(true);
2894 public void centreColumnLabels_actionPerformed(ActionEvent e)
2896 viewport.setCentreColumnLabels(centreColumnLabelsMenuItem.getState());
2897 alignPanel.paintAlignment(true);
2903 * @see jalview.jbgui.GAlignFrame#followHighlight_actionPerformed()
2906 protected void followHighlight_actionPerformed()
2909 * Set the 'follow' flag on the Viewport (and scroll to position if now
2912 final boolean state = this.followHighlightMenuItem.getState();
2913 viewport.setFollowHighlight(state);
2916 alignPanel.scrollToPosition(
2917 alignPanel.getSeqPanel().seqCanvas.searchResults, false);
2928 protected void colourTextMenuItem_actionPerformed(ActionEvent e)
2930 viewport.setColourText(colourTextMenuItem.isSelected());
2931 alignPanel.paintAlignment(true);
2941 public void wrapMenuItem_actionPerformed(ActionEvent e)
2943 scaleAbove.setVisible(wrapMenuItem.isSelected());
2944 scaleLeft.setVisible(wrapMenuItem.isSelected());
2945 scaleRight.setVisible(wrapMenuItem.isSelected());
2946 viewport.setWrapAlignment(wrapMenuItem.isSelected());
2947 alignPanel.updateLayout();
2951 public void showAllSeqs_actionPerformed(ActionEvent e)
2953 viewport.showAllHiddenSeqs();
2957 public void showAllColumns_actionPerformed(ActionEvent e)
2959 viewport.showAllHiddenColumns();
2964 public void hideSelSequences_actionPerformed(ActionEvent e)
2966 viewport.hideAllSelectedSeqs();
2967 // alignPanel.paintAlignment(true);
2971 * called by key handler and the hide all/show all menu items
2976 private void toggleHiddenRegions(boolean toggleSeqs, boolean toggleCols)
2979 boolean hide = false;
2980 SequenceGroup sg = viewport.getSelectionGroup();
2981 if (!toggleSeqs && !toggleCols)
2983 // Hide everything by the current selection - this is a hack - we do the
2984 // invert and then hide
2985 // first check that there will be visible columns after the invert.
2986 if ((viewport.getColumnSelection() != null
2987 && viewport.getColumnSelection().getSelected() != null && viewport
2988 .getColumnSelection().getSelected().size() > 0)
2989 || (sg != null && sg.getSize() > 0 && sg.getStartRes() <= sg
2992 // now invert the sequence set, if required - empty selection implies
2993 // that no hiding is required.
2996 invertSequenceMenuItem_actionPerformed(null);
2997 sg = viewport.getSelectionGroup();
3001 viewport.expandColSelection(sg, true);
3002 // finally invert the column selection and get the new sequence
3004 invertColSel_actionPerformed(null);
3011 if (sg != null && sg.getSize() != viewport.getAlignment().getHeight())
3013 hideSelSequences_actionPerformed(null);
3016 else if (!(toggleCols && viewport.getColumnSelection().getSelected()
3019 showAllSeqs_actionPerformed(null);
3025 if (viewport.getColumnSelection().getSelected().size() > 0)
3027 hideSelColumns_actionPerformed(null);
3030 viewport.setSelectionGroup(sg);
3035 showAllColumns_actionPerformed(null);
3044 * jalview.jbgui.GAlignFrame#hideAllButSelection_actionPerformed(java.awt.
3045 * event.ActionEvent)
3048 public void hideAllButSelection_actionPerformed(ActionEvent e)
3050 toggleHiddenRegions(false, false);
3057 * jalview.jbgui.GAlignFrame#hideAllSelection_actionPerformed(java.awt.event
3061 public void hideAllSelection_actionPerformed(ActionEvent e)
3063 SequenceGroup sg = viewport.getSelectionGroup();
3064 viewport.expandColSelection(sg, false);
3065 viewport.hideAllSelectedSeqs();
3066 viewport.hideSelectedColumns();
3067 alignPanel.paintAlignment(true);
3074 * jalview.jbgui.GAlignFrame#showAllhidden_actionPerformed(java.awt.event.
3078 public void showAllhidden_actionPerformed(ActionEvent e)
3080 viewport.showAllHiddenColumns();
3081 viewport.showAllHiddenSeqs();
3082 alignPanel.paintAlignment(true);
3086 public void hideSelColumns_actionPerformed(ActionEvent e)
3088 viewport.hideSelectedColumns();
3089 alignPanel.paintAlignment(true);
3093 public void hiddenMarkers_actionPerformed(ActionEvent e)
3095 viewport.setShowHiddenMarkers(hiddenMarkers.isSelected());
3106 protected void scaleAbove_actionPerformed(ActionEvent e)
3108 viewport.setScaleAboveWrapped(scaleAbove.isSelected());
3109 alignPanel.paintAlignment(true);
3119 protected void scaleLeft_actionPerformed(ActionEvent e)
3121 viewport.setScaleLeftWrapped(scaleLeft.isSelected());
3122 alignPanel.paintAlignment(true);
3132 protected void scaleRight_actionPerformed(ActionEvent e)
3134 viewport.setScaleRightWrapped(scaleRight.isSelected());
3135 alignPanel.paintAlignment(true);
3145 public void viewBoxesMenuItem_actionPerformed(ActionEvent e)
3147 viewport.setShowBoxes(viewBoxesMenuItem.isSelected());
3148 alignPanel.paintAlignment(true);
3158 public void viewTextMenuItem_actionPerformed(ActionEvent e)
3160 viewport.setShowText(viewTextMenuItem.isSelected());
3161 alignPanel.paintAlignment(true);
3171 protected void renderGapsMenuItem_actionPerformed(ActionEvent e)
3173 viewport.setRenderGaps(renderGapsMenuItem.isSelected());
3174 alignPanel.paintAlignment(true);
3177 public FeatureSettings featureSettings;
3180 public FeatureSettingsControllerI getFeatureSettingsUI()
3182 return featureSettings;
3186 public void featureSettings_actionPerformed(ActionEvent e)
3188 if (featureSettings != null)
3190 featureSettings.close();
3191 featureSettings = null;
3193 if (!showSeqFeatures.isSelected())
3195 // make sure features are actually displayed
3196 showSeqFeatures.setSelected(true);
3197 showSeqFeatures_actionPerformed(null);
3199 featureSettings = new FeatureSettings(this);
3203 * Set or clear 'Show Sequence Features'
3209 public void showSeqFeatures_actionPerformed(ActionEvent evt)
3211 viewport.setShowSequenceFeatures(showSeqFeatures.isSelected());
3212 alignPanel.paintAlignment(true);
3213 if (alignPanel.getOverviewPanel() != null)
3215 alignPanel.getOverviewPanel().updateOverviewImage();
3220 * Set or clear 'Show Sequence Features'
3226 public void showSeqFeaturesHeight_actionPerformed(ActionEvent evt)
3228 viewport.setShowSequenceFeaturesHeight(showSeqFeaturesHeight
3230 if (viewport.isShowSequenceFeaturesHeight())
3232 // ensure we're actually displaying features
3233 viewport.setShowSequenceFeatures(true);
3234 showSeqFeatures.setSelected(true);
3236 alignPanel.paintAlignment(true);
3237 if (alignPanel.getOverviewPanel() != null)
3239 alignPanel.getOverviewPanel().updateOverviewImage();
3244 * Action on toggle of the 'Show annotations' menu item. This shows or hides
3245 * the annotations panel as a whole.
3247 * The options to show/hide all annotations should be enabled when the panel
3248 * is shown, and disabled when the panel is hidden.
3253 public void annotationPanelMenuItem_actionPerformed(ActionEvent e)
3255 final boolean setVisible = annotationPanelMenuItem.isSelected();
3256 viewport.setShowAnnotation(setVisible);
3257 this.showAllSeqAnnotations.setEnabled(setVisible);
3258 this.hideAllSeqAnnotations.setEnabled(setVisible);
3259 this.showAllAlAnnotations.setEnabled(setVisible);
3260 this.hideAllAlAnnotations.setEnabled(setVisible);
3261 alignPanel.updateLayout();
3265 public void alignmentProperties()
3267 JEditorPane editPane = new JEditorPane("text/html", "");
3268 editPane.setEditable(false);
3269 StringBuffer contents = new AlignmentProperties(viewport.getAlignment())
3271 editPane.setText(MessageManager.formatMessage("label.html_content",
3273 { contents.toString() }));
3274 JInternalFrame frame = new JInternalFrame();
3275 frame.getContentPane().add(new JScrollPane(editPane));
3277 Desktop.addInternalFrame(frame, MessageManager.formatMessage(
3278 "label.alignment_properties", new Object[]
3279 { getTitle() }), 500, 400);
3289 public void overviewMenuItem_actionPerformed(ActionEvent e)
3291 if (alignPanel.overviewPanel != null)
3296 JInternalFrame frame = new JInternalFrame();
3297 OverviewPanel overview = new OverviewPanel(alignPanel);
3298 frame.setContentPane(overview);
3299 Desktop.addInternalFrame(frame, MessageManager.formatMessage(
3300 "label.overview_params", new Object[]
3301 { this.getTitle() }), frame.getWidth(), frame.getHeight());
3303 frame.setLayer(JLayeredPane.PALETTE_LAYER);
3304 frame.addInternalFrameListener(new javax.swing.event.InternalFrameAdapter()
3307 public void internalFrameClosed(
3308 javax.swing.event.InternalFrameEvent evt)
3310 alignPanel.setOverviewPanel(null);
3314 alignPanel.setOverviewPanel(overview);
3318 public void textColour_actionPerformed(ActionEvent e)
3320 new TextColourChooser().chooseColour(alignPanel, null);
3330 protected void noColourmenuItem_actionPerformed(ActionEvent e)
3342 public void clustalColour_actionPerformed(ActionEvent e)
3344 changeColour(new ClustalxColourScheme(viewport.getAlignment(),
3345 viewport.getHiddenRepSequences()));
3355 public void zappoColour_actionPerformed(ActionEvent e)
3357 changeColour(new ZappoColourScheme());
3367 public void taylorColour_actionPerformed(ActionEvent e)
3369 changeColour(new TaylorColourScheme());
3379 public void hydrophobicityColour_actionPerformed(ActionEvent e)
3381 changeColour(new HydrophobicColourScheme());
3391 public void helixColour_actionPerformed(ActionEvent e)
3393 changeColour(new HelixColourScheme());
3403 public void strandColour_actionPerformed(ActionEvent e)
3405 changeColour(new StrandColourScheme());
3415 public void turnColour_actionPerformed(ActionEvent e)
3417 changeColour(new TurnColourScheme());
3427 public void buriedColour_actionPerformed(ActionEvent e)
3429 changeColour(new BuriedColourScheme());
3439 public void nucleotideColour_actionPerformed(ActionEvent e)
3441 changeColour(new NucleotideColourScheme());
3445 public void purinePyrimidineColour_actionPerformed(ActionEvent e)
3447 changeColour(new PurinePyrimidineColourScheme());
3451 * public void covariationColour_actionPerformed(ActionEvent e) {
3453 * CovariationColourScheme(viewport.getAlignment().getAlignmentAnnotation
3457 public void annotationColour_actionPerformed(ActionEvent e)
3459 new AnnotationColourChooser(viewport, alignPanel);
3463 public void annotationColumn_actionPerformed(ActionEvent e)
3465 new AnnotationColumnChooser(viewport, alignPanel);
3469 public void rnahelicesColour_actionPerformed(ActionEvent e)
3471 new RNAHelicesColourChooser(viewport, alignPanel);
3481 protected void applyToAllGroups_actionPerformed(ActionEvent e)
3483 viewport.setColourAppliesToAllGroups(applyToAllGroups.isSelected());
3492 public void changeColour(ColourSchemeI cs)
3494 // TODO: compare with applet and pull up to model method
3499 if (viewport.getAbovePIDThreshold())
3501 threshold = SliderPanel.setPIDSliderSource(alignPanel, cs,
3503 cs.setThreshold(threshold, viewport.isIgnoreGapsConsensus());
3507 cs.setThreshold(0, viewport.isIgnoreGapsConsensus());
3510 if (viewport.getConservationSelected())
3513 Alignment al = (Alignment) viewport.getAlignment();
3514 Conservation c = new Conservation("All",
3515 ResidueProperties.propHash, 3, al.getSequences(), 0,
3519 c.verdict(false, viewport.getConsPercGaps());
3521 cs.setConservation(c);
3523 cs.setConservationInc(SliderPanel.setConservationSlider(alignPanel,
3528 cs.setConservation(null);
3531 cs.setConsensus(viewport.getSequenceConsensusHash());
3534 viewport.setGlobalColourScheme(cs);
3536 if (viewport.getColourAppliesToAllGroups())
3539 for (SequenceGroup sg : viewport.getAlignment().getGroups())
3547 if (cs instanceof ClustalxColourScheme)
3549 sg.cs = new ClustalxColourScheme(sg,
3550 viewport.getHiddenRepSequences());
3552 else if (cs instanceof UserColourScheme)
3554 sg.cs = new UserColourScheme(((UserColourScheme) cs).getColours());
3560 sg.cs = cs.getClass().newInstance();
3561 } catch (Exception ex)
3566 if (viewport.getAbovePIDThreshold()
3567 || cs instanceof PIDColourScheme
3568 || cs instanceof Blosum62ColourScheme)
3570 sg.cs.setThreshold(threshold, viewport.isIgnoreGapsConsensus());
3572 sg.cs.setConsensus(AAFrequency.calculate(
3573 sg.getSequences(viewport.getHiddenRepSequences()),
3574 sg.getStartRes(), sg.getEndRes() + 1));
3578 sg.cs.setThreshold(0, viewport.isIgnoreGapsConsensus());
3581 if (viewport.getConservationSelected())
3583 Conservation c = new Conservation("Group",
3584 ResidueProperties.propHash, 3, sg.getSequences(viewport
3585 .getHiddenRepSequences()), sg.getStartRes(),
3586 sg.getEndRes() + 1);
3588 c.verdict(false, viewport.getConsPercGaps());
3589 sg.cs.setConservation(c);
3593 sg.cs.setConservation(null);
3598 if (alignPanel.getOverviewPanel() != null)
3600 alignPanel.getOverviewPanel().updateOverviewImage();
3603 alignPanel.paintAlignment(true);
3613 protected void modifyPID_actionPerformed(ActionEvent e)
3615 if (viewport.getAbovePIDThreshold()
3616 && viewport.getGlobalColourScheme() != null)
3618 SliderPanel.setPIDSliderSource(alignPanel,
3619 viewport.getGlobalColourScheme(), "Background");
3620 SliderPanel.showPIDSlider();
3631 protected void modifyConservation_actionPerformed(ActionEvent e)
3633 if (viewport.getConservationSelected()
3634 && viewport.getGlobalColourScheme() != null)
3636 SliderPanel.setConservationSlider(alignPanel,
3637 viewport.getGlobalColourScheme(), "Background");
3638 SliderPanel.showConservationSlider();
3649 protected void conservationMenuItem_actionPerformed(ActionEvent e)
3651 viewport.setConservationSelected(conservationMenuItem.isSelected());
3653 viewport.setAbovePIDThreshold(false);
3654 abovePIDThreshold.setSelected(false);
3656 changeColour(viewport.getGlobalColourScheme());
3658 modifyConservation_actionPerformed(null);
3668 public void abovePIDThreshold_actionPerformed(ActionEvent e)
3670 viewport.setAbovePIDThreshold(abovePIDThreshold.isSelected());
3672 conservationMenuItem.setSelected(false);
3673 viewport.setConservationSelected(false);
3675 changeColour(viewport.getGlobalColourScheme());
3677 modifyPID_actionPerformed(null);
3687 public void userDefinedColour_actionPerformed(ActionEvent e)
3689 if (e.getActionCommand().equals(
3690 MessageManager.getString("action.user_defined")))
3692 new UserDefinedColours(alignPanel, null);
3696 UserColourScheme udc = (UserColourScheme) UserDefinedColours
3697 .getUserColourSchemes().get(e.getActionCommand());
3703 public void updateUserColourMenu()
3706 Component[] menuItems = colourMenu.getMenuComponents();
3707 int iSize = menuItems.length;
3708 for (int i = 0; i < iSize; i++)
3710 if (menuItems[i].getName() != null
3711 && menuItems[i].getName().equals("USER_DEFINED"))
3713 colourMenu.remove(menuItems[i]);
3717 if (jalview.gui.UserDefinedColours.getUserColourSchemes() != null)
3719 java.util.Enumeration userColours = jalview.gui.UserDefinedColours
3720 .getUserColourSchemes().keys();
3722 while (userColours.hasMoreElements())
3724 final JRadioButtonMenuItem radioItem = new JRadioButtonMenuItem(
3725 userColours.nextElement().toString());
3726 radioItem.setName("USER_DEFINED");
3727 radioItem.addMouseListener(new MouseAdapter()
3730 public void mousePressed(MouseEvent evt)
3732 if (evt.isControlDown()
3733 || SwingUtilities.isRightMouseButton(evt))
3735 radioItem.removeActionListener(radioItem.getActionListeners()[0]);
3737 int option = JOptionPane.showInternalConfirmDialog(
3738 jalview.gui.Desktop.desktop,
3740 .getString("label.remove_from_default_list"),
3742 .getString("label.remove_user_defined_colour"),
3743 JOptionPane.YES_NO_OPTION);
3744 if (option == JOptionPane.YES_OPTION)
3746 jalview.gui.UserDefinedColours
3747 .removeColourFromDefaults(radioItem.getText());
3748 colourMenu.remove(radioItem);
3752 radioItem.addActionListener(new ActionListener()
3755 public void actionPerformed(ActionEvent evt)
3757 userDefinedColour_actionPerformed(evt);
3764 radioItem.addActionListener(new ActionListener()
3767 public void actionPerformed(ActionEvent evt)
3769 userDefinedColour_actionPerformed(evt);
3773 colourMenu.insert(radioItem, 15);
3774 colours.add(radioItem);
3786 public void PIDColour_actionPerformed(ActionEvent e)
3788 changeColour(new PIDColourScheme());
3798 public void BLOSUM62Colour_actionPerformed(ActionEvent e)
3800 changeColour(new Blosum62ColourScheme());
3810 public void sortPairwiseMenuItem_actionPerformed(ActionEvent e)
3812 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3813 AlignmentSorter.sortByPID(viewport.getAlignment(), viewport
3814 .getAlignment().getSequenceAt(0), null);
3815 addHistoryItem(new OrderCommand("Pairwise Sort", oldOrder,
3816 viewport.getAlignment()));
3817 alignPanel.paintAlignment(true);
3827 public void sortIDMenuItem_actionPerformed(ActionEvent e)
3829 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3830 AlignmentSorter.sortByID(viewport.getAlignment());
3831 addHistoryItem(new OrderCommand("ID Sort", oldOrder,
3832 viewport.getAlignment()));
3833 alignPanel.paintAlignment(true);
3843 public void sortLengthMenuItem_actionPerformed(ActionEvent e)
3845 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3846 AlignmentSorter.sortByLength(viewport.getAlignment());
3847 addHistoryItem(new OrderCommand("Length Sort", oldOrder,
3848 viewport.getAlignment()));
3849 alignPanel.paintAlignment(true);
3859 public void sortGroupMenuItem_actionPerformed(ActionEvent e)
3861 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
3862 AlignmentSorter.sortByGroup(viewport.getAlignment());
3863 addHistoryItem(new OrderCommand("Group Sort", oldOrder,
3864 viewport.getAlignment()));
3866 alignPanel.paintAlignment(true);
3876 public void removeRedundancyMenuItem_actionPerformed(ActionEvent e)
3878 new RedundancyPanel(alignPanel, this);
3888 public void pairwiseAlignmentMenuItem_actionPerformed(ActionEvent e)
3890 if ((viewport.getSelectionGroup() == null)
3891 || (viewport.getSelectionGroup().getSize() < 2))
3893 JOptionPane.showInternalMessageDialog(this, MessageManager
3894 .getString("label.you_must_select_least_two_sequences"),
3895 MessageManager.getString("label.invalid_selection"),
3896 JOptionPane.WARNING_MESSAGE);
3900 JInternalFrame frame = new JInternalFrame();
3901 frame.setContentPane(new PairwiseAlignPanel(viewport));
3902 Desktop.addInternalFrame(frame,
3903 MessageManager.getString("action.pairwise_alignment"), 600,
3915 public void PCAMenuItem_actionPerformed(ActionEvent e)
3917 if (((viewport.getSelectionGroup() != null)
3918 && (viewport.getSelectionGroup().getSize() < 4) && (viewport
3919 .getSelectionGroup().getSize() > 0))
3920 || (viewport.getAlignment().getHeight() < 4))
3923 .showInternalMessageDialog(
3926 .getString("label.principal_component_analysis_must_take_least_four_input_sequences"),
3928 .getString("label.sequence_selection_insufficient"),
3929 JOptionPane.WARNING_MESSAGE);
3934 new PCAPanel(alignPanel);
3938 public void autoCalculate_actionPerformed(ActionEvent e)
3940 viewport.autoCalculateConsensus = autoCalculate.isSelected();
3941 if (viewport.autoCalculateConsensus)
3943 viewport.firePropertyChange("alignment", null, viewport
3944 .getAlignment().getSequences());
3949 public void sortByTreeOption_actionPerformed(ActionEvent e)
3951 viewport.sortByTree = sortByTree.isSelected();
3955 protected void listenToViewSelections_actionPerformed(ActionEvent e)
3957 viewport.followSelection = listenToViewSelections.isSelected();
3967 public void averageDistanceTreeMenuItem_actionPerformed(ActionEvent e)
3969 newTreePanel("AV", "PID", "Average distance tree using PID");
3979 public void neighbourTreeMenuItem_actionPerformed(ActionEvent e)
3981 newTreePanel("NJ", "PID", "Neighbour joining tree using PID");
3991 protected void njTreeBlosumMenuItem_actionPerformed(ActionEvent e)
3993 newTreePanel("NJ", "BL", "Neighbour joining tree using BLOSUM62");
4003 protected void avTreeBlosumMenuItem_actionPerformed(ActionEvent e)
4005 newTreePanel("AV", "BL", "Average distance tree using BLOSUM62");
4018 void newTreePanel(String type, String pwType, String title)
4022 if (viewport.getSelectionGroup() != null
4023 && viewport.getSelectionGroup().getSize() > 0)
4025 if (viewport.getSelectionGroup().getSize() < 3)
4031 .getString("label.you_need_more_two_sequences_selected_build_tree"),
4033 .getString("label.not_enough_sequences"),
4034 JOptionPane.WARNING_MESSAGE);
4038 SequenceGroup sg = viewport.getSelectionGroup();
4040 /* Decide if the selection is a column region */
4041 for (SequenceI _s : sg.getSequences())
4043 if (_s.getLength() < sg.getEndRes())
4049 .getString("label.selected_region_to_tree_may_only_contain_residues_or_gaps"),
4051 .getString("label.sequences_selection_not_aligned"),
4052 JOptionPane.WARNING_MESSAGE);
4058 title = title + " on region";
4059 tp = new TreePanel(alignPanel, type, pwType);
4063 // are the visible sequences aligned?
4064 if (!viewport.getAlignment().isAligned(false))
4070 .getString("label.sequences_must_be_aligned_before_creating_tree"),
4072 .getString("label.sequences_not_aligned"),
4073 JOptionPane.WARNING_MESSAGE);
4078 if (viewport.getAlignment().getHeight() < 2)
4083 tp = new TreePanel(alignPanel, type, pwType);
4088 if (viewport.viewName != null)
4090 title += viewport.viewName + " of ";
4093 title += this.title;
4095 Desktop.addInternalFrame(tp, title, 600, 500);
4106 public void addSortByOrderMenuItem(String title,
4107 final AlignmentOrder order)
4109 final JMenuItem item = new JMenuItem(MessageManager.formatMessage("action.by_title_param", new Object[]{title}));
4111 item.addActionListener(new java.awt.event.ActionListener()
4114 public void actionPerformed(ActionEvent e)
4116 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
4118 // TODO: JBPNote - have to map order entries to curent SequenceI
4120 AlignmentSorter.sortBy(viewport.getAlignment(), order);
4122 addHistoryItem(new OrderCommand(order.getName(), oldOrder, viewport
4125 alignPanel.paintAlignment(true);
4131 * Add a new sort by annotation score menu item
4134 * the menu to add the option to
4136 * the label used to retrieve scores for each sequence on the
4139 public void addSortByAnnotScoreMenuItem(JMenu sort,
4140 final String scoreLabel)
4142 final JMenuItem item = new JMenuItem(scoreLabel);
4144 item.addActionListener(new java.awt.event.ActionListener()
4147 public void actionPerformed(ActionEvent e)
4149 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
4150 AlignmentSorter.sortByAnnotationScore(scoreLabel,
4151 viewport.getAlignment());// ,viewport.getSelectionGroup());
4152 addHistoryItem(new OrderCommand("Sort by " + scoreLabel, oldOrder,
4153 viewport.getAlignment()));
4154 alignPanel.paintAlignment(true);
4160 * last hash for alignment's annotation array - used to minimise cost of
4163 protected int _annotationScoreVectorHash;
4166 * search the alignment and rebuild the sort by annotation score submenu the
4167 * last alignment annotation vector hash is stored to minimize cost of
4168 * rebuilding in subsequence calls.
4172 public void buildSortByAnnotationScoresMenu()
4174 if (viewport.getAlignment().getAlignmentAnnotation() == null)
4179 if (viewport.getAlignment().getAlignmentAnnotation().hashCode() != _annotationScoreVectorHash)
4181 sortByAnnotScore.removeAll();
4182 // almost certainly a quicker way to do this - but we keep it simple
4183 Hashtable scoreSorts = new Hashtable();
4184 AlignmentAnnotation aann[];
4185 for (SequenceI sqa : viewport.getAlignment().getSequences())
4187 aann = sqa.getAnnotation();
4188 for (int i = 0; aann != null && i < aann.length; i++)
4190 if (aann[i].hasScore() && aann[i].sequenceRef != null)
4192 scoreSorts.put(aann[i].label, aann[i].label);
4196 Enumeration labels = scoreSorts.keys();
4197 while (labels.hasMoreElements())
4199 addSortByAnnotScoreMenuItem(sortByAnnotScore,
4200 (String) labels.nextElement());
4202 sortByAnnotScore.setVisible(scoreSorts.size() > 0);
4205 _annotationScoreVectorHash = viewport.getAlignment()
4206 .getAlignmentAnnotation().hashCode();
4211 * Maintain the Order by->Displayed Tree menu. Creates a new menu item for a
4212 * TreePanel with an appropriate <code>jalview.analysis.AlignmentSorter</code>
4213 * call. Listeners are added to remove the menu item when the treePanel is
4214 * closed, and adjust the tree leaf to sequence mapping when the alignment is
4218 * Displayed tree window.
4220 * SortBy menu item title.
4223 public void buildTreeMenu()
4225 calculateTree.removeAll();
4226 // build the calculate menu
4228 for (final String type : new String[]
4231 String treecalcnm = MessageManager.getString("label.tree_calc_"
4232 + type.toLowerCase());
4233 for (final String pwtype : ResidueProperties.scoreMatrices.keySet())
4235 JMenuItem tm = new JMenuItem();
4236 ScoreModelI sm = ResidueProperties.scoreMatrices.get(pwtype);
4237 if (sm.isProtein() == !viewport.getAlignment().isNucleotide())
4239 String smn = MessageManager.getStringOrReturn(
4240 "label.score_model_", sm.getName());
4241 final String title = MessageManager.formatMessage(
4242 "label.treecalc_title", treecalcnm, smn);
4243 tm.setText(title);//
4244 tm.addActionListener(new java.awt.event.ActionListener()
4247 public void actionPerformed(ActionEvent e)
4249 newTreePanel(type, pwtype, title);
4252 calculateTree.add(tm);
4257 sortByTreeMenu.removeAll();
4259 List<Component> comps = PaintRefresher.components.get(viewport
4260 .getSequenceSetId());
4261 List<TreePanel> treePanels = new ArrayList<TreePanel>();
4262 for (Component comp : comps)
4264 if (comp instanceof TreePanel)
4266 treePanels.add((TreePanel) comp);
4270 if (treePanels.size() < 1)
4272 sortByTreeMenu.setVisible(false);
4276 sortByTreeMenu.setVisible(true);
4278 for (final TreePanel tp : treePanels)
4280 final JMenuItem item = new JMenuItem(tp.getTitle());
4281 item.addActionListener(new java.awt.event.ActionListener()
4284 public void actionPerformed(ActionEvent e)
4286 tp.sortByTree_actionPerformed();
4287 addHistoryItem(tp.sortAlignmentIn(alignPanel));
4292 sortByTreeMenu.add(item);
4296 public boolean sortBy(AlignmentOrder alorder, String undoname)
4298 SequenceI[] oldOrder = viewport.getAlignment().getSequencesArray();
4299 AlignmentSorter.sortBy(viewport.getAlignment(), alorder);
4300 if (undoname != null)
4302 addHistoryItem(new OrderCommand(undoname, oldOrder,
4303 viewport.getAlignment()));
4305 alignPanel.paintAlignment(true);
4310 * Work out whether the whole set of sequences or just the selected set will
4311 * be submitted for multiple alignment.
4314 public jalview.datamodel.AlignmentView gatherSequencesForAlignment()
4316 // Now, check we have enough sequences
4317 AlignmentView msa = null;
4319 if ((viewport.getSelectionGroup() != null)
4320 && (viewport.getSelectionGroup().getSize() > 1))
4322 // JBPNote UGLY! To prettify, make SequenceGroup and Alignment conform to
4323 // some common interface!
4325 * SequenceGroup seqs = viewport.getSelectionGroup(); int sz; msa = new
4326 * SequenceI[sz = seqs.getSize(false)];
4328 * for (int i = 0; i < sz; i++) { msa[i] = (SequenceI)
4329 * seqs.getSequenceAt(i); }
4331 msa = viewport.getAlignmentView(true);
4333 else if (viewport.getSelectionGroup() != null
4334 && viewport.getSelectionGroup().getSize() == 1)
4336 int option = JOptionPane.showConfirmDialog(this,
4337 MessageManager.getString("warn.oneseq_msainput_selection"),
4338 MessageManager.getString("label.invalid_selection"),
4339 JOptionPane.OK_CANCEL_OPTION);
4340 if (option == JOptionPane.OK_OPTION)
4342 msa = viewport.getAlignmentView(false);
4347 msa = viewport.getAlignmentView(false);
4353 * Decides what is submitted to a secondary structure prediction service: the
4354 * first sequence in the alignment, or in the current selection, or, if the
4355 * alignment is 'aligned' (ie padded with gaps), then the currently selected
4356 * region or the whole alignment. (where the first sequence in the set is the
4357 * one that the prediction will be for).
4359 public AlignmentView gatherSeqOrMsaForSecStrPrediction()
4361 AlignmentView seqs = null;
4363 if ((viewport.getSelectionGroup() != null)
4364 && (viewport.getSelectionGroup().getSize() > 0))
4366 seqs = viewport.getAlignmentView(true);
4370 seqs = viewport.getAlignmentView(false);
4372 // limit sequences - JBPNote in future - could spawn multiple prediction
4374 // TODO: viewport.getAlignment().isAligned is a global state - the local
4375 // selection may well be aligned - we preserve 2.0.8 behaviour for moment.
4376 if (!viewport.getAlignment().isAligned(false))
4378 seqs.setSequences(new SeqCigar[]
4379 { seqs.getSequences()[0] });
4380 // TODO: if seqs.getSequences().length>1 then should really have warned
4394 protected void loadTreeMenuItem_actionPerformed(ActionEvent e)
4396 // Pick the tree file
4397 JalviewFileChooser chooser = new JalviewFileChooser(
4398 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
4399 chooser.setFileView(new JalviewFileView());
4400 chooser.setDialogTitle(MessageManager
4401 .getString("label.select_newick_like_tree_file"));
4402 chooser.setToolTipText(MessageManager.getString("label.load_tree_file"));
4404 int value = chooser.showOpenDialog(null);
4406 if (value == JalviewFileChooser.APPROVE_OPTION)
4408 String choice = chooser.getSelectedFile().getPath();
4409 jalview.bin.Cache.setProperty("LAST_DIRECTORY", choice);
4410 jalview.io.NewickFile fin = null;
4413 fin = new jalview.io.NewickFile(choice, "File");
4414 viewport.setCurrentTree(ShowNewickTree(fin, choice).getTree());
4415 } catch (Exception ex)
4422 .getString("label.problem_reading_tree_file"),
4423 JOptionPane.WARNING_MESSAGE);
4424 ex.printStackTrace();
4426 if (fin != null && fin.hasWarningMessage())
4428 JOptionPane.showMessageDialog(Desktop.desktop, fin
4429 .getWarningMessage(), MessageManager
4430 .getString("label.possible_problem_with_tree_file"),
4431 JOptionPane.WARNING_MESSAGE);
4437 protected void tcoffeeColorScheme_actionPerformed(ActionEvent e)
4439 changeColour(new TCoffeeColourScheme(alignPanel.getAlignment()));
4442 public TreePanel ShowNewickTree(NewickFile nf, String title)
4444 return ShowNewickTree(nf, title, 600, 500, 4, 5);
4447 public TreePanel ShowNewickTree(NewickFile nf, String title,
4448 AlignmentView input)
4450 return ShowNewickTree(nf, title, input, 600, 500, 4, 5);
4453 public TreePanel ShowNewickTree(NewickFile nf, String title, int w,
4454 int h, int x, int y)
4456 return ShowNewickTree(nf, title, null, w, h, x, y);
4460 * Add a treeviewer for the tree extracted from a newick file object to the
4461 * current alignment view
4468 * Associated alignment input data (or null)
4477 * @return TreePanel handle
4479 public TreePanel ShowNewickTree(NewickFile nf, String title,
4480 AlignmentView input, int w, int h, int x, int y)
4482 TreePanel tp = null;
4488 if (nf.getTree() != null)
4490 tp = new TreePanel(alignPanel, "FromFile", title, nf, input);
4496 tp.setLocation(x, y);
4499 Desktop.addInternalFrame(tp, title, w, h);
4501 } catch (Exception ex)
4503 ex.printStackTrace();
4509 private boolean buildingMenu = false;
4512 * Generates menu items and listener event actions for web service clients
4515 public void BuildWebServiceMenu()
4517 while (buildingMenu)
4521 System.err.println("Waiting for building menu to finish.");
4523 } catch (Exception e)
4527 final AlignFrame me = this;
4528 buildingMenu = true;
4529 new Thread(new Runnable()
4534 final List<JMenuItem> legacyItems = new ArrayList<JMenuItem>();
4537 System.err.println("Building ws menu again "
4538 + Thread.currentThread());
4539 // TODO: add support for context dependent disabling of services based
4541 // alignment and current selection
4542 // TODO: add additional serviceHandle parameter to specify abstract
4544 // class independently of AbstractName
4545 // TODO: add in rediscovery GUI function to restart discoverer
4546 // TODO: group services by location as well as function and/or
4548 // object broker mechanism.
4549 final Vector<JMenu> wsmenu = new Vector<JMenu>();
4550 final IProgressIndicator af = me;
4551 final JMenu msawsmenu = new JMenu("Alignment");
4552 final JMenu secstrmenu = new JMenu(
4553 "Secondary Structure Prediction");
4554 final JMenu seqsrchmenu = new JMenu("Sequence Database Search");
4555 final JMenu analymenu = new JMenu("Analysis");
4556 final JMenu dismenu = new JMenu("Protein Disorder");
4557 // final JMenu msawsmenu = new
4558 // JMenu(MessageManager.getString("label.alignment"));
4559 // final JMenu secstrmenu = new
4560 // JMenu(MessageManager.getString("label.secondary_structure_prediction"));
4561 // final JMenu seqsrchmenu = new
4562 // JMenu(MessageManager.getString("label.sequence_database_search"));
4563 // final JMenu analymenu = new
4564 // JMenu(MessageManager.getString("label.analysis"));
4565 // final JMenu dismenu = new
4566 // JMenu(MessageManager.getString("label.protein_disorder"));
4567 // JAL-940 - only show secondary structure prediction services from
4568 // the legacy server
4569 if (// Cache.getDefault("SHOW_JWS1_SERVICES", true)
4571 Discoverer.services != null && (Discoverer.services.size() > 0))
4573 // TODO: refactor to allow list of AbstractName/Handler bindings to
4575 // stored or retrieved from elsewhere
4576 // No MSAWS used any more:
4577 // Vector msaws = null; // (Vector)
4578 // Discoverer.services.get("MsaWS");
4579 Vector secstrpr = (Vector) Discoverer.services
4581 if (secstrpr != null)
4583 // Add any secondary structure prediction services
4584 for (int i = 0, j = secstrpr.size(); i < j; i++)
4586 final ext.vamsas.ServiceHandle sh = (ext.vamsas.ServiceHandle) secstrpr
4588 jalview.ws.WSMenuEntryProviderI impl = jalview.ws.jws1.Discoverer
4589 .getServiceClient(sh);
4590 int p = secstrmenu.getItemCount();
4591 impl.attachWSMenuEntry(secstrmenu, me);
4592 int q = secstrmenu.getItemCount();
4593 for (int litm = p; litm < q; litm++)
4595 legacyItems.add(secstrmenu.getItem(litm));
4601 // Add all submenus in the order they should appear on the web
4603 wsmenu.add(msawsmenu);
4604 wsmenu.add(secstrmenu);
4605 wsmenu.add(dismenu);
4606 wsmenu.add(analymenu);
4607 // No search services yet
4608 // wsmenu.add(seqsrchmenu);
4610 javax.swing.SwingUtilities.invokeLater(new Runnable()
4617 webService.removeAll();
4618 // first, add discovered services onto the webservices menu
4619 if (wsmenu.size() > 0)
4621 for (int i = 0, j = wsmenu.size(); i < j; i++)
4623 webService.add(wsmenu.get(i));
4628 webService.add(me.webServiceNoServices);
4630 // TODO: move into separate menu builder class.
4631 boolean new_sspred = false;
4632 if (Cache.getDefault("SHOW_JWS2_SERVICES", true))
4634 Jws2Discoverer jws2servs = Jws2Discoverer.getDiscoverer();
4635 if (jws2servs != null)
4637 if (jws2servs.hasServices())
4639 jws2servs.attachWSMenuEntry(webService, me);
4640 for (Jws2Instance sv : jws2servs.getServices())
4642 if (sv.description.toLowerCase().contains("jpred"))
4644 for (JMenuItem jmi : legacyItems)
4646 jmi.setVisible(false);
4652 if (jws2servs.isRunning())
4654 JMenuItem tm = new JMenuItem(
4655 "Still discovering JABA Services");
4656 tm.setEnabled(false);
4661 build_urlServiceMenu(me.webService);
4662 build_fetchdbmenu(webService);
4663 for (JMenu item : wsmenu)
4665 if (item.getItemCount() == 0)
4667 item.setEnabled(false);
4671 item.setEnabled(true);
4674 } catch (Exception e)
4677 .debug("Exception during web service menu building process.",
4682 } catch (Exception e)
4685 buildingMenu = false;
4692 * construct any groupURL type service menu entries.
4696 private void build_urlServiceMenu(JMenu webService)
4698 // TODO: remove this code when 2.7 is released
4699 // DEBUG - alignmentView
4701 * JMenuItem testAlView = new JMenuItem("Test AlignmentView"); final
4702 * AlignFrame af = this; testAlView.addActionListener(new ActionListener() {
4704 * @Override public void actionPerformed(ActionEvent e) {
4705 * jalview.datamodel.AlignmentView
4706 * .testSelectionViews(af.viewport.getAlignment(),
4707 * af.viewport.getColumnSelection(), af.viewport.selectionGroup); }
4709 * }); webService.add(testAlView);
4711 // TODO: refactor to RestClient discoverer and merge menu entries for
4712 // rest-style services with other types of analysis/calculation service
4713 // SHmmr test client - still being implemented.
4714 // DEBUG - alignmentView
4716 for (jalview.ws.rest.RestClient client : jalview.ws.rest.RestClient
4719 client.attachWSMenuEntry(
4720 JvSwingUtils.findOrCreateMenu(webService, client.getAction()),
4726 * public void vamsasStore_actionPerformed(ActionEvent e) { JalviewFileChooser
4727 * chooser = new JalviewFileChooser(jalview.bin.Cache.
4728 * getProperty("LAST_DIRECTORY"));
4730 * chooser.setFileView(new JalviewFileView()); chooser.setDialogTitle("Export
4731 * to Vamsas file"); chooser.setToolTipText("Export");
4733 * int value = chooser.showSaveDialog(this);
4735 * if (value == JalviewFileChooser.APPROVE_OPTION) {
4736 * jalview.io.VamsasDatastore vs = new jalview.io.VamsasDatastore(viewport);
4737 * //vs.store(chooser.getSelectedFile().getAbsolutePath() ); vs.storeJalview(
4738 * chooser.getSelectedFile().getAbsolutePath(), this); } }
4741 * prototype of an automatically enabled/disabled analysis function
4744 protected void setShowProductsEnabled()
4746 SequenceI[] selection = viewport.getSequenceSelection();
4747 if (canShowProducts(selection, viewport.getSelectionGroup() != null,
4748 viewport.getAlignment().getDataset()))
4750 showProducts.setEnabled(true);
4755 showProducts.setEnabled(false);
4760 * search selection for sequence xRef products and build the show products
4765 * @return true if showProducts menu should be enabled.
4767 public boolean canShowProducts(SequenceI[] selection,
4768 boolean isRegionSelection, Alignment dataset)
4770 boolean showp = false;
4773 showProducts.removeAll();
4774 final boolean dna = viewport.getAlignment().isNucleotide();
4775 final Alignment ds = dataset;
4776 String[] ptypes = (selection == null || selection.length == 0) ? null
4777 : CrossRef.findSequenceXrefTypes(dna, selection, dataset);
4779 // CrossRef.buildXProductsList(viewport.getAlignment().isNucleotide(),
4780 // selection, dataset, true);
4781 final SequenceI[] sel = selection;
4782 for (int t = 0; ptypes != null && t < ptypes.length; t++)
4785 final boolean isRegSel = isRegionSelection;
4786 final AlignFrame af = this;
4787 final String source = ptypes[t];
4788 JMenuItem xtype = new JMenuItem(ptypes[t]);
4789 xtype.addActionListener(new ActionListener()
4793 public void actionPerformed(ActionEvent e)
4795 // TODO: new thread for this call with vis-delay
4796 af.showProductsFor(af.viewport.getSequenceSelection(),
4797 isRegSel, dna, source);
4801 showProducts.add(xtype);
4803 showProducts.setVisible(showp);
4804 showProducts.setEnabled(showp);
4805 } catch (Exception e)
4807 jalview.bin.Cache.log
4808 .warn("canTranslate threw an exception - please report to help@jalview.org",
4815 protected void showProductsFor(final SequenceI[] sel,
4816 final boolean isRegSel, final boolean dna, final String source)
4818 Runnable foo = new Runnable()
4824 final long sttime = System.currentTimeMillis();
4825 AlignFrame.this.setProgressBar(MessageManager.formatMessage(
4826 "status.searching_for_sequences_from", new Object[]
4827 { source }), sttime);
4830 // update our local dataset reference
4831 Alignment ds = AlignFrame.this.getViewport().getAlignment()
4833 Alignment prods = CrossRef
4834 .findXrefSequences(sel, dna, source, ds);
4837 SequenceI[] sprods = new SequenceI[prods.getHeight()];
4838 for (int s = 0; s < sprods.length; s++)
4840 sprods[s] = (prods.getSequenceAt(s)).deriveSequence();
4841 if (ds.getSequences() == null
4842 || !ds.getSequences().contains(
4843 sprods[s].getDatasetSequence()))
4845 ds.addSequence(sprods[s].getDatasetSequence());
4847 sprods[s].updatePDBIds();
4849 Alignment al = new Alignment(sprods);
4853 * Copy dna-to-protein mappings to new alignment
4855 // TODO 1: no mappings are set up for EMBL product
4856 // TODO 2: if they were, should add them to protein alignment, not
4858 Set<AlignedCodonFrame> cf = prods.getCodonFrames();
4859 for (AlignedCodonFrame acf : cf)
4861 al.addCodonFrame(acf);
4863 AlignFrame naf = new AlignFrame(al, DEFAULT_WIDTH,
4865 String newtitle = "" + ((dna) ? "Proteins" : "Nucleotides")
4866 + " for " + ((isRegSel) ? "selected region of " : "")
4868 naf.setTitle(newtitle);
4870 // temporary flag until SplitFrame is released
4871 boolean asSplitFrame = Cache.getDefault(
4872 Preferences.ENABLE_SPLIT_FRAME, true);
4876 * Make a copy of this alignment (sharing the same dataset
4877 * sequences). If we are DNA, drop introns and update mappings
4879 AlignmentI copyAlignment = null;
4880 final SequenceI[] sequenceSelection = AlignFrame.this.viewport
4881 .getSequenceSelection();
4884 copyAlignment = AlignmentUtils.makeExonAlignment(
4885 sequenceSelection, cf);
4886 al.getCodonFrames().clear();
4887 al.getCodonFrames().addAll(cf);
4888 final StructureSelectionManager ssm = StructureSelectionManager
4889 .getStructureSelectionManager(Desktop.instance);
4890 ssm.addMappings(cf);
4894 copyAlignment = new Alignment(new Alignment(
4895 sequenceSelection));
4897 AlignFrame copyThis = new AlignFrame(copyAlignment,
4898 AlignFrame.DEFAULT_WIDTH, AlignFrame.DEFAULT_HEIGHT);
4899 copyThis.setTitle(AlignFrame.this.getTitle());
4900 // SplitFrame with dna above, protein below
4901 SplitFrame sf = new SplitFrame(dna ? copyThis : naf,
4902 dna ? naf : copyThis);
4903 naf.setVisible(true);
4904 copyThis.setVisible(true);
4905 String linkedTitle = MessageManager
4906 .getString("label.linked_view_title");
4907 Desktop.addInternalFrame(sf, linkedTitle, -1, -1);
4911 Desktop.addInternalFrame(naf, newtitle, DEFAULT_WIDTH,
4917 System.err.println("No Sequences generated for xRef type "
4920 } catch (Exception e)
4922 jalview.bin.Cache.log.error(
4923 "Exception when finding crossreferences", e);
4924 } catch (OutOfMemoryError e)
4926 new OOMWarning("whilst fetching crossreferences", e);
4929 jalview.bin.Cache.log.error("Error when finding crossreferences",
4932 AlignFrame.this.setProgressBar(MessageManager.formatMessage(
4933 "status.finished_searching_for_sequences_from",
4940 Thread frunner = new Thread(foo);
4944 public boolean canShowTranslationProducts(SequenceI[] selection,
4945 AlignmentI alignment)
4950 return (jalview.analysis.Dna.canTranslate(selection,
4951 viewport.getViewAsVisibleContigs(true)));
4952 } catch (Exception e)
4954 jalview.bin.Cache.log
4955 .warn("canTranslate threw an exception - please report to help@jalview.org",
4962 * Construct and display a new frame containing the translation of this
4963 * frame's DNA sequences to their aligned protein (amino acid) equivalents.
4966 public void showTranslation_actionPerformed(ActionEvent e)
4968 AlignmentI al = null;
4971 Dna dna = new Dna(viewport, viewport.getViewAsVisibleContigs(true));
4973 al = dna.translateCdna();
4974 } catch (Exception ex)
4976 jalview.bin.Cache.log.error(
4977 "Exception during translation. Please report this !", ex);
4978 final String msg = MessageManager
4979 .getString("label.error_when_translating_sequences_submit_bug_report");
4980 final String errorTitle = MessageManager
4981 .getString("label.implementation_error")
4982 + MessageManager.getString("translation_failed");
4983 JOptionPane.showMessageDialog(Desktop.desktop, msg, errorTitle,
4984 JOptionPane.ERROR_MESSAGE);
4987 if (al == null || al.getHeight() == 0)
4989 final String msg = MessageManager
4990 .getString("label.select_at_least_three_bases_in_at_least_one_sequence_to_cDNA_translation");
4991 final String errorTitle = MessageManager
4992 .getString("label.translation_failed");
4993 JOptionPane.showMessageDialog(Desktop.desktop, msg, errorTitle,
4994 JOptionPane.WARNING_MESSAGE);
4998 AlignFrame af = new AlignFrame(al, DEFAULT_WIDTH, DEFAULT_HEIGHT);
4999 af.setFileFormat(this.currentFileFormat);
5000 final String newTitle = MessageManager.formatMessage(
5001 "label.translation_of_params", new Object[]
5002 { this.getTitle() });
5003 af.setTitle(newTitle);
5004 if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
5006 final SequenceI[] seqs = viewport.getSelectionAsNewSequence();
5007 viewport.openSplitFrame(af, new Alignment(seqs));
5011 Desktop.addInternalFrame(af, newTitle, DEFAULT_WIDTH,
5018 * Set the file format
5022 public void setFileFormat(String fileFormat)
5024 this.currentFileFormat = fileFormat;
5028 * Try to load a features file onto the alignment.
5031 * contents or path to retrieve file
5033 * access mode of file (see jalview.io.AlignFile)
5034 * @return true if features file was parsed correctly.
5036 public boolean parseFeaturesFile(String file, String type)
5038 return avc.parseFeaturesFile(file, type,
5039 jalview.bin.Cache.getDefault("RELAXEDSEQIDMATCHING", false));
5044 public void refreshFeatureUI(boolean enableIfNecessary)
5046 // note - currently this is only still here rather than in the controller
5047 // because of the featureSettings hard reference that is yet to be
5049 if (enableIfNecessary)
5051 viewport.setShowSequenceFeatures(true);
5052 showSeqFeatures.setSelected(true);
5058 public void dragEnter(DropTargetDragEvent evt)
5063 public void dragExit(DropTargetEvent evt)
5068 public void dragOver(DropTargetDragEvent evt)
5073 public void dropActionChanged(DropTargetDragEvent evt)
5078 public void drop(DropTargetDropEvent evt)
5080 Transferable t = evt.getTransferable();
5081 java.util.List files = null;
5085 DataFlavor uriListFlavor = new DataFlavor(
5086 "text/uri-list;class=java.lang.String");
5087 if (t.isDataFlavorSupported(DataFlavor.javaFileListFlavor))
5089 // Works on Windows and MacOSX
5090 evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
5091 files = (java.util.List) t
5092 .getTransferData(DataFlavor.javaFileListFlavor);
5094 else if (t.isDataFlavorSupported(uriListFlavor))
5096 // This is used by Unix drag system
5097 evt.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
5098 String data = (String) t.getTransferData(uriListFlavor);
5099 files = new java.util.ArrayList(1);
5100 for (java.util.StringTokenizer st = new java.util.StringTokenizer(
5101 data, "\r\n"); st.hasMoreTokens();)
5103 String s = st.nextToken();
5104 if (s.startsWith("#"))
5106 // the line is a comment (as per the RFC 2483)
5110 java.net.URI uri = new java.net.URI(s);
5111 // check to see if we can handle this kind of URI
5112 if (uri.getScheme().toLowerCase().startsWith("http"))
5114 files.add(uri.toString());
5118 // otherwise preserve old behaviour: catch all for file objects
5119 java.io.File file = new java.io.File(uri);
5120 files.add(file.toString());
5124 } catch (Exception e)
5126 e.printStackTrace();
5132 // check to see if any of these files have names matching sequences in
5134 SequenceIdMatcher idm = new SequenceIdMatcher(viewport
5135 .getAlignment().getSequencesArray());
5137 * Object[] { String,SequenceI}
5139 ArrayList<Object[]> filesmatched = new ArrayList<Object[]>();
5140 ArrayList<String> filesnotmatched = new ArrayList<String>();
5141 for (int i = 0; i < files.size(); i++)
5143 String file = files.get(i).toString();
5145 String protocol = FormatAdapter.checkProtocol(file);
5146 if (protocol == jalview.io.FormatAdapter.FILE)
5148 File fl = new File(file);
5149 pdbfn = fl.getName();
5151 else if (protocol == jalview.io.FormatAdapter.URL)
5153 URL url = new URL(file);
5154 pdbfn = url.getFile();
5156 if (pdbfn.length() > 0)
5158 // attempt to find a match in the alignment
5159 SequenceI[] mtch = idm.findAllIdMatches(pdbfn);
5160 int l = 0, c = pdbfn.indexOf(".");
5161 while (mtch == null && c != -1)
5166 } while ((c = pdbfn.indexOf(".", l)) > l);
5169 pdbfn = pdbfn.substring(0, l);
5171 mtch = idm.findAllIdMatches(pdbfn);
5178 type = new IdentifyFile().Identify(file, protocol);
5179 } catch (Exception ex)
5185 if (type.equalsIgnoreCase("PDB"))
5187 filesmatched.add(new Object[]
5188 { file, protocol, mtch });
5193 // File wasn't named like one of the sequences or wasn't a PDB file.
5194 filesnotmatched.add(file);
5198 if (filesmatched.size() > 0)
5200 if (Cache.getDefault("AUTOASSOCIATE_PDBANDSEQS", false)
5206 "label.automatically_associate_pdb_files_with_sequences_same_name",
5213 .getString("label.automatically_associate_pdb_files_by_name"),
5214 JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION)
5217 for (Object[] fm : filesmatched)
5219 // try and associate
5220 // TODO: may want to set a standard ID naming formalism for
5221 // associating PDB files which have no IDs.
5222 for (SequenceI toassoc : (SequenceI[]) fm[2])
5224 PDBEntry pe = new AssociatePdbFileWithSeq()
5225 .associatePdbWithSeq((String) fm[0],
5226 (String) fm[1], toassoc, false,
5230 System.err.println("Associated file : "
5231 + ((String) fm[0]) + " with "
5232 + toassoc.getDisplayId(true));
5236 alignPanel.paintAlignment(true);
5240 if (filesnotmatched.size() > 0)
5243 && (Cache.getDefault(
5244 "AUTOASSOCIATE_PDBANDSEQS_IGNOREOTHERS", false) || JOptionPane
5247 "<html>"+MessageManager
5249 "label.ignore_unmatched_dropped_files_info",
5254 .toString() })+"</html>",
5256 .getString("label.ignore_unmatched_dropped_files"),
5257 JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION))
5261 for (String fn : filesnotmatched)
5263 loadJalviewDataFile(fn, null, null, null);
5267 } catch (Exception ex)
5269 ex.printStackTrace();
5275 * Attempt to load a "dropped" file or URL string: First by testing whether
5276 * it's and Annotation file, then a JNet file, and finally a features file. If
5277 * all are false then the user may have dropped an alignment file onto this
5281 * either a filename or a URL string.
5283 public void loadJalviewDataFile(String file, String protocol,
5284 String format, SequenceI assocSeq)
5288 if (protocol == null)
5290 protocol = jalview.io.FormatAdapter.checkProtocol(file);
5292 // if the file isn't identified, or not positively identified as some
5293 // other filetype (PFAM is default unidentified alignment file type) then
5294 // try to parse as annotation.
5295 boolean isAnnotation = (format == null || format
5296 .equalsIgnoreCase("PFAM")) ? new AnnotationFile()
5297 .annotateAlignmentView(viewport, file, protocol)
5302 // first see if its a T-COFFEE score file
5303 TCoffeeScoreFile tcf = null;
5306 tcf = new TCoffeeScoreFile(file, protocol);
5309 if (tcf.annotateAlignment(viewport.getAlignment(), true))
5311 tcoffeeColour.setEnabled(true);
5312 tcoffeeColour.setSelected(true);
5313 changeColour(new TCoffeeColourScheme(viewport.getAlignment()));
5314 isAnnotation = true;
5316 .setText(MessageManager
5317 .getString("label.successfully_pasted_tcoffee_scores_to_alignment"));
5321 // some problem - if no warning its probable that the ID matching
5322 // process didn't work
5326 tcf.getWarningMessage() == null ? MessageManager
5327 .getString("label.check_file_matches_sequence_ids_alignment")
5328 : tcf.getWarningMessage(),
5330 .getString("label.problem_reading_tcoffee_score_file"),
5331 JOptionPane.WARNING_MESSAGE);
5338 } catch (Exception x)
5341 .debug("Exception when processing data source as T-COFFEE score file",
5347 // try to see if its a JNet 'concise' style annotation file *before*
5349 // try to parse it as a features file
5352 format = new IdentifyFile().Identify(file, protocol);
5354 if (format.equalsIgnoreCase("JnetFile"))
5356 jalview.io.JPredFile predictions = new jalview.io.JPredFile(
5358 new JnetAnnotationMaker();
5359 JnetAnnotationMaker.add_annotation(predictions,
5360 viewport.getAlignment(), 0, false);
5361 SequenceI repseq = viewport.getAlignment().getSequenceAt(0);
5362 viewport.getAlignment().setSeqrep(repseq);
5363 ColumnSelection cs = new ColumnSelection();
5364 cs.hideInsertionsFor(repseq);
5365 viewport.setColumnSelection(cs);
5366 isAnnotation = true;
5371 * if (format.equalsIgnoreCase("PDB")) {
5373 * String pdbfn = ""; // try to match up filename with sequence id
5374 * try { if (protocol == jalview.io.FormatAdapter.FILE) { File fl =
5375 * new File(file); pdbfn = fl.getName(); } else if (protocol ==
5376 * jalview.io.FormatAdapter.URL) { URL url = new URL(file); pdbfn =
5377 * url.getFile(); } } catch (Exception e) { } ; if (assocSeq ==
5378 * null) { SequenceIdMatcher idm = new SequenceIdMatcher(viewport
5379 * .getAlignment().getSequencesArray()); if (pdbfn.length() > 0) {
5380 * // attempt to find a match in the alignment SequenceI mtch =
5381 * idm.findIdMatch(pdbfn); int l = 0, c = pdbfn.indexOf("."); while
5382 * (mtch == null && c != -1) { while ((c = pdbfn.indexOf(".", l)) >
5383 * l) { l = c; } if (l > -1) { pdbfn = pdbfn.substring(0, l); } mtch
5384 * = idm.findIdMatch(pdbfn); } if (mtch != null) { // try and
5385 * associate // prompt ? PDBEntry pe = new AssociatePdbFileWithSeq()
5386 * .associatePdbWithSeq(file, protocol, mtch, true); if (pe != null)
5387 * { System.err.println("Associated file : " + file + " with " +
5388 * mtch.getDisplayId(true)); alignPanel.paintAlignment(true); } } //
5389 * TODO: maybe need to load as normal otherwise return; } }
5391 // try to parse it as a features file
5392 boolean isGroupsFile = parseFeaturesFile(file, protocol);
5393 // if it wasn't a features file then we just treat it as a general
5394 // alignment file to load into the current view.
5397 new FileLoader().LoadFile(viewport, file, protocol, format);
5401 alignPanel.paintAlignment(true);
5409 alignPanel.adjustAnnotationHeight();
5410 viewport.updateSequenceIdColours();
5411 buildSortByAnnotationScoresMenu();
5412 alignPanel.paintAlignment(true);
5414 } catch (Exception ex)
5416 ex.printStackTrace();
5417 } catch (OutOfMemoryError oom)
5422 } catch (Exception x)
5428 + (protocol != null ? (protocol.equals(FormatAdapter.PASTE) ? "from clipboard."
5429 : "using " + protocol + " from " + file)
5431 + (format != null ? "(parsing as '" + format
5432 + "' file)" : ""), oom, Desktop.desktop);
5437 * Method invoked by the ChangeListener on the tabbed pane, in other words
5438 * when a different tabbed pane is selected by the user or programmatically.
5441 public void tabSelectionChanged(int index)
5445 alignPanel = alignPanels.get(index);
5446 viewport = alignPanel.av;
5447 avc.setViewportAndAlignmentPanel(viewport, alignPanel);
5448 setMenusFromViewport(viewport);
5452 * If there is a frame linked to this one in a SplitPane, switch it to the
5453 * same view tab index. No infinite recursion of calls should happen, since
5454 * tabSelectionChanged() should not get invoked on setting the selected
5455 * index to an unchanged value. Guard against setting an invalid index
5456 * before the new view peer tab has been created.
5458 final AlignViewportI peer = viewport.getCodingComplement();
5461 AlignFrame linkedAlignFrame = ((AlignViewport) peer).getAlignPanel().alignFrame;
5462 if (linkedAlignFrame.tabbedPane.getTabCount() > index)
5464 linkedAlignFrame.tabbedPane.setSelectedIndex(index);
5470 * On right mouse click on view tab, prompt for and set new view name.
5473 public void tabbedPane_mousePressed(MouseEvent e)
5475 if (SwingUtilities.isRightMouseButton(e))
5477 String msg = MessageManager.getString("label.enter_view_name");
5478 String reply = JOptionPane.showInternalInputDialog(this, msg, msg,
5479 JOptionPane.QUESTION_MESSAGE);
5483 viewport.viewName = reply;
5484 // TODO warn if reply is in getExistingViewNames()?
5485 tabbedPane.setTitleAt(tabbedPane.getSelectedIndex(), reply);
5490 public AlignViewport getCurrentView()
5496 * Open the dialog for regex description parsing.
5499 protected void extractScores_actionPerformed(ActionEvent e)
5501 ParseProperties pp = new jalview.analysis.ParseProperties(
5502 viewport.getAlignment());
5503 // TODO: verify regex and introduce GUI dialog for version 2.5
5504 // if (pp.getScoresFromDescription("col", "score column ",
5505 // "\\W*([-+]?\\d*\\.?\\d*e?-?\\d*)\\W+([-+]?\\d*\\.?\\d*e?-?\\d*)",
5507 if (pp.getScoresFromDescription("description column",
5508 "score in description column ", "\\W*([-+eE0-9.]+)", true) > 0)
5510 buildSortByAnnotationScoresMenu();
5518 * jalview.jbgui.GAlignFrame#showDbRefs_actionPerformed(java.awt.event.ActionEvent
5522 protected void showDbRefs_actionPerformed(ActionEvent e)
5524 viewport.setShowDBRefs(showDbRefsMenuitem.isSelected());
5530 * @seejalview.jbgui.GAlignFrame#showNpFeats_actionPerformed(java.awt.event.
5534 protected void showNpFeats_actionPerformed(ActionEvent e)
5536 viewport.setShowNPFeats(showNpFeatsMenuitem.isSelected());
5540 * find the viewport amongst the tabs in this alignment frame and close that
5545 public boolean closeView(AlignViewportI av)
5549 this.closeMenuItem_actionPerformed(false);
5552 Component[] comp = tabbedPane.getComponents();
5553 for (int i = 0; comp != null && i < comp.length; i++)
5555 if (comp[i] instanceof AlignmentPanel)
5557 if (((AlignmentPanel) comp[i]).av == av)
5560 closeView((AlignmentPanel) comp[i]);
5568 protected void build_fetchdbmenu(JMenu webService)
5570 // Temporary hack - DBRef Fetcher always top level ws entry.
5571 // TODO We probably want to store a sequence database checklist in
5572 // preferences and have checkboxes.. rather than individual sources selected
5574 final JMenu rfetch = new JMenu(
5575 MessageManager.getString("action.fetch_db_references"));
5576 rfetch.setToolTipText(MessageManager
5577 .getString("label.retrieve_parse_sequence_database_records_alignment_or_selected_sequences"));
5578 webService.add(rfetch);
5580 final JCheckBoxMenuItem trimrs = new JCheckBoxMenuItem(
5581 MessageManager.getString("option.trim_retrieved_seqs"));
5582 trimrs.setToolTipText(MessageManager
5583 .getString("label.trim_retrieved_sequences"));
5584 trimrs.setSelected(Cache.getDefault("TRIM_FETCHED_DATASET_SEQS", true));
5585 trimrs.addActionListener(new ActionListener()
5588 public void actionPerformed(ActionEvent e)
5590 trimrs.setSelected(trimrs.isSelected());
5591 Cache.setProperty("TRIM_FETCHED_DATASET_SEQS",
5592 Boolean.valueOf(trimrs.isSelected()).toString());
5596 JMenuItem fetchr = new JMenuItem(
5597 MessageManager.getString("label.standard_databases"));
5598 fetchr.setToolTipText(MessageManager
5599 .getString("label.fetch_embl_uniprot"));
5600 fetchr.addActionListener(new ActionListener()
5604 public void actionPerformed(ActionEvent e)
5606 new Thread(new Runnable()
5612 new jalview.ws.DBRefFetcher(alignPanel.av
5613 .getSequenceSelection(), alignPanel.alignFrame)
5614 .fetchDBRefs(false);
5622 final AlignFrame me = this;
5623 new Thread(new Runnable()
5628 final jalview.ws.SequenceFetcher sf = SequenceFetcher
5629 .getSequenceFetcherSingleton(me);
5630 javax.swing.SwingUtilities.invokeLater(new Runnable()
5635 String[] dbclasses = sf.getOrderedSupportedSources();
5636 // sf.getDbInstances(jalview.ws.dbsources.DasSequenceSource.class);
5637 // jalview.util.QuickSort.sort(otherdb, otherdb);
5638 List<DbSourceProxy> otherdb;
5639 JMenu dfetch = new JMenu();
5640 JMenu ifetch = new JMenu();
5641 JMenuItem fetchr = null;
5642 int comp = 0, icomp = 0, mcomp = 15;
5643 String mname = null;
5645 for (String dbclass : dbclasses)
5647 otherdb = sf.getSourceProxy(dbclass);
5648 // add a single entry for this class, or submenu allowing 'fetch
5650 if (otherdb == null || otherdb.size() < 1)
5654 // List<DbSourceProxy> dbs=otherdb;
5655 // otherdb=new ArrayList<DbSourceProxy>();
5656 // for (DbSourceProxy db:dbs)
5658 // if (!db.isA(DBRefSource.ALIGNMENTDB)
5662 mname = "From " + dbclass;
5664 if (otherdb.size() == 1)
5666 final DbSourceProxy[] dassource = otherdb
5667 .toArray(new DbSourceProxy[0]);
5668 DbSourceProxy src = otherdb.get(0);
5669 fetchr = new JMenuItem(src.getDbSource());
5670 fetchr.addActionListener(new ActionListener()
5674 public void actionPerformed(ActionEvent e)
5676 new Thread(new Runnable()
5682 new jalview.ws.DBRefFetcher(alignPanel.av
5683 .getSequenceSelection(),
5684 alignPanel.alignFrame, dassource)
5685 .fetchDBRefs(false);
5691 fetchr.setToolTipText(JvSwingUtils.wrapTooltip(true, MessageManager.formatMessage("label.fetch_retrieve_from", new Object[]{src.getDbName()})));
5697 final DbSourceProxy[] dassource = otherdb
5698 .toArray(new DbSourceProxy[0]);
5700 DbSourceProxy src = otherdb.get(0);
5701 fetchr = new JMenuItem(MessageManager.formatMessage(
5702 "label.fetch_all_param", new Object[]
5703 { src.getDbSource() }));
5704 fetchr.addActionListener(new ActionListener()
5707 public void actionPerformed(ActionEvent e)
5709 new Thread(new Runnable()
5715 new jalview.ws.DBRefFetcher(alignPanel.av
5716 .getSequenceSelection(),
5717 alignPanel.alignFrame, dassource)
5718 .fetchDBRefs(false);
5724 fetchr.setToolTipText(JvSwingUtils.wrapTooltip(true, MessageManager.formatMessage("label.fetch_retrieve_from_all_sources", new Object[]{Integer.valueOf(otherdb.size()).toString(), src.getDbSource(), src.getDbName()})));
5727 // and then build the rest of the individual menus
5728 ifetch = new JMenu(MessageManager.formatMessage("label.source_from_db_source", new Object[]{src.getDbSource()}));
5730 String imname = null;
5732 for (DbSourceProxy sproxy : otherdb)
5734 String dbname = sproxy.getDbName();
5735 String sname = dbname.length() > 5 ? dbname.substring(0,
5736 5) + "..." : dbname;
5737 String msname = dbname.length() > 10 ? dbname.substring(
5738 0, 10) + "..." : dbname;
5741 imname = MessageManager.formatMessage("label.from_msname", new Object[]{sname});
5743 fetchr = new JMenuItem(msname);
5744 final DbSourceProxy[] dassrc =
5746 fetchr.addActionListener(new ActionListener()
5750 public void actionPerformed(ActionEvent e)
5752 new Thread(new Runnable()
5758 new jalview.ws.DBRefFetcher(alignPanel.av
5759 .getSequenceSelection(),
5760 alignPanel.alignFrame, dassrc)
5761 .fetchDBRefs(false);
5767 fetchr.setToolTipText("<html>"
5768 + MessageManager.formatMessage("label.fetch_retrieve_from", new Object[]{dbname}));
5771 if (++icomp >= mcomp || i == (otherdb.size()))
5773 ifetch.setText(MessageManager.formatMessage(
5774 "label.source_to_target", imname, sname));
5776 ifetch = new JMenu();
5784 if (comp >= mcomp || dbi >= (dbclasses.length))
5786 dfetch.setText(MessageManager.formatMessage(
5787 "label.source_to_target", mname, dbclass));
5789 dfetch = new JMenu();
5802 * Left justify the whole alignment.
5805 protected void justifyLeftMenuItem_actionPerformed(ActionEvent e)
5807 AlignmentI al = viewport.getAlignment();
5809 viewport.firePropertyChange("alignment", null, al);
5813 * Right justify the whole alignment.
5816 protected void justifyRightMenuItem_actionPerformed(ActionEvent e)
5818 AlignmentI al = viewport.getAlignment();
5820 viewport.firePropertyChange("alignment", null, al);
5823 public void setShowSeqFeatures(boolean b)
5825 showSeqFeatures.setSelected(b);
5826 viewport.setShowSequenceFeatures(b);
5833 * jalview.jbgui.GAlignFrame#showUnconservedMenuItem_actionPerformed(java.
5834 * awt.event.ActionEvent)
5837 protected void showUnconservedMenuItem_actionPerformed(ActionEvent e)
5839 viewport.setShowUnconserved(showNonconservedMenuItem.getState());
5840 alignPanel.paintAlignment(true);
5847 * jalview.jbgui.GAlignFrame#showGroupConsensus_actionPerformed(java.awt.event
5851 protected void showGroupConsensus_actionPerformed(ActionEvent e)
5853 viewport.setShowGroupConsensus(showGroupConsensus.getState());
5854 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5862 * jalview.jbgui.GAlignFrame#showGroupConservation_actionPerformed(java.awt
5863 * .event.ActionEvent)
5866 protected void showGroupConservation_actionPerformed(ActionEvent e)
5868 viewport.setShowGroupConservation(showGroupConservation.getState());
5869 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5876 * jalview.jbgui.GAlignFrame#showConsensusHistogram_actionPerformed(java.awt
5877 * .event.ActionEvent)
5880 protected void showConsensusHistogram_actionPerformed(ActionEvent e)
5882 viewport.setShowConsensusHistogram(showConsensusHistogram.getState());
5883 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5890 * jalview.jbgui.GAlignFrame#showConsensusProfile_actionPerformed(java.awt
5891 * .event.ActionEvent)
5894 protected void showSequenceLogo_actionPerformed(ActionEvent e)
5896 viewport.setShowSequenceLogo(showSequenceLogo.getState());
5897 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5901 protected void normaliseSequenceLogo_actionPerformed(ActionEvent e)
5903 showSequenceLogo.setState(true);
5904 viewport.setShowSequenceLogo(true);
5905 viewport.setNormaliseSequenceLogo(normaliseSequenceLogo.getState());
5906 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5910 protected void applyAutoAnnotationSettings_actionPerformed(ActionEvent e)
5912 alignPanel.updateAnnotation(applyAutoAnnotationSettings.getState());
5919 * jalview.jbgui.GAlignFrame#makeGrpsFromSelection_actionPerformed(java.awt
5920 * .event.ActionEvent)
5923 protected void makeGrpsFromSelection_actionPerformed(ActionEvent e)
5925 if (avc.makeGroupsFromSelection())
5927 PaintRefresher.Refresh(this, viewport.getSequenceSetId());
5928 alignPanel.updateAnnotation();
5929 alignPanel.paintAlignment(true);
5932 public void clearAlignmentSeqRep()
5934 // TODO refactor alignmentseqrep to controller
5935 if (viewport.getAlignment().hasSeqrep()) {
5936 viewport.getAlignment().setSeqrep(null);
5937 PaintRefresher.Refresh(this, viewport.getSequenceSetId());
5938 alignPanel.updateAnnotation();
5939 alignPanel.paintAlignment(true);
5944 protected void createGroup_actionPerformed(ActionEvent e)
5946 if (avc.createGroup())
5948 alignPanel.alignmentChanged();
5953 protected void unGroup_actionPerformed(ActionEvent e)
5957 alignPanel.alignmentChanged();
5962 * make the given alignmentPanel the currently selected tab
5964 * @param alignmentPanel
5966 public void setDisplayedView(AlignmentPanel alignmentPanel)
5968 if (!viewport.getSequenceSetId().equals(
5969 alignmentPanel.av.getSequenceSetId()))
5971 throw new Error(MessageManager.getString("error.implementation_error_cannot_show_view_alignment_frame"));
5973 if (tabbedPane != null
5974 && tabbedPane.getTabCount() > 0
5975 && alignPanels.indexOf(alignmentPanel) != tabbedPane
5976 .getSelectedIndex())
5978 tabbedPane.setSelectedIndex(alignPanels.indexOf(alignmentPanel));
5983 * Action on selection of menu options to Show or Hide annotations.
5986 * @param forSequences
5987 * update sequence-related annotations
5988 * @param forAlignment
5989 * update non-sequence-related annotations
5992 protected void setAnnotationsVisibility(boolean visible,
5993 boolean forSequences, boolean forAlignment)
5995 for (AlignmentAnnotation aa : alignPanel.getAlignment()
5996 .getAlignmentAnnotation())
5999 * don't display non-positional annotations on an alignment
6001 if (aa.annotations == null)
6005 boolean apply = (aa.sequenceRef == null && forAlignment)
6006 || (aa.sequenceRef != null && forSequences);
6009 aa.visible = visible;
6012 alignPanel.validateAnnotationDimensions(true);
6013 alignPanel.alignmentChanged();
6017 * Store selected annotation sort order for the view and repaint.
6020 protected void sortAnnotations_actionPerformed()
6022 this.alignPanel.av.setSortAnnotationsBy(getAnnotationSortOrder());
6024 .setShowAutocalculatedAbove(isShowAutoCalculatedAbove());
6025 alignPanel.paintAlignment(true);
6030 * @return alignment panels in this alignment frame
6032 public List<? extends AlignmentViewPanel> getAlignPanels()
6034 return alignPanels == null ? Arrays.asList(alignPanel)
6039 * Open a new alignment window, with the cDNA associated with this (protein)
6040 * alignment, aligned as is the protein.
6042 protected void viewAsCdna_actionPerformed()
6044 // TODO no longer a menu action - refactor as required
6045 final AlignmentI alignment = getViewport().getAlignment();
6046 Set<AlignedCodonFrame> mappings = alignment.getCodonFrames();
6047 if (mappings == null)
6051 List<SequenceI> cdnaSeqs = new ArrayList<SequenceI>();
6052 for (SequenceI aaSeq : alignment.getSequences()) {
6053 for (AlignedCodonFrame acf : mappings) {
6054 SequenceI dnaSeq = acf.getDnaForAaSeq(aaSeq.getDatasetSequence());
6058 * There is a cDNA mapping for this protein sequence - add to new
6059 * alignment. It will share the same dataset sequence as other mapped
6060 * cDNA (no new mappings need to be created).
6062 final Sequence newSeq = new Sequence(dnaSeq);
6063 newSeq.setDatasetSequence(dnaSeq);
6064 cdnaSeqs.add(newSeq);
6068 if (cdnaSeqs.size() == 0)
6070 // show a warning dialog no mapped cDNA
6073 AlignmentI cdna = new Alignment(cdnaSeqs.toArray(new SequenceI[cdnaSeqs
6075 AlignFrame alignFrame = new AlignFrame(cdna, AlignFrame.DEFAULT_WIDTH,
6076 AlignFrame.DEFAULT_HEIGHT);
6077 cdna.alignAs(alignment);
6078 String newtitle = "cDNA " + MessageManager.getString("label.for") + " "
6080 Desktop.addInternalFrame(alignFrame, newtitle,
6081 AlignFrame.DEFAULT_WIDTH,
6082 AlignFrame.DEFAULT_HEIGHT);
6086 * Set visibility of dna/protein complement view (available when shown in a
6092 protected void showComplement_actionPerformed(boolean show)
6094 SplitContainerI sf = getSplitViewContainer();
6096 sf.setComplementVisible(this, show);
6101 class PrintThread extends Thread
6105 public PrintThread(AlignmentPanel ap)
6110 static PageFormat pf;
6115 PrinterJob printJob = PrinterJob.getPrinterJob();
6119 printJob.setPrintable(ap, pf);
6123 printJob.setPrintable(ap);
6126 if (printJob.printDialog())
6131 } catch (Exception PrintException)
6133 PrintException.printStackTrace();