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.bin.Cache;
24 import jalview.datamodel.Alignment;
25 import jalview.datamodel.AlignmentI;
26 import jalview.datamodel.ColumnSelection;
27 import jalview.datamodel.PDBEntry;
28 import jalview.datamodel.SequenceI;
29 import jalview.gui.StructureViewer.ViewerType;
30 import jalview.io.JalviewFileChooser;
31 import jalview.io.JalviewFileView;
32 import jalview.schemes.BuriedColourScheme;
33 import jalview.schemes.ColourSchemeI;
34 import jalview.schemes.HelixColourScheme;
35 import jalview.schemes.HydrophobicColourScheme;
36 import jalview.schemes.PurinePyrimidineColourScheme;
37 import jalview.schemes.StrandColourScheme;
38 import jalview.schemes.TaylorColourScheme;
39 import jalview.schemes.TurnColourScheme;
40 import jalview.schemes.ZappoColourScheme;
41 import jalview.structures.models.AAStructureBindingModel;
42 import jalview.util.MessageManager;
43 import jalview.util.Platform;
45 import java.awt.BorderLayout;
46 import java.awt.Color;
47 import java.awt.Dimension;
49 import java.awt.Graphics;
50 import java.awt.Rectangle;
51 import java.awt.event.ActionEvent;
52 import java.awt.event.ActionListener;
53 import java.awt.event.ItemEvent;
54 import java.awt.event.ItemListener;
55 import java.io.BufferedReader;
57 import java.io.FileOutputStream;
58 import java.io.FileReader;
59 import java.io.IOException;
60 import java.io.PrintWriter;
61 import java.util.ArrayList;
62 import java.util.List;
63 import java.util.Vector;
65 import javax.swing.JCheckBoxMenuItem;
66 import javax.swing.JColorChooser;
67 import javax.swing.JInternalFrame;
68 import javax.swing.JMenu;
69 import javax.swing.JMenuItem;
70 import javax.swing.JOptionPane;
71 import javax.swing.JPanel;
72 import javax.swing.JSplitPane;
73 import javax.swing.event.InternalFrameAdapter;
74 import javax.swing.event.InternalFrameEvent;
75 import javax.swing.event.MenuEvent;
76 import javax.swing.event.MenuListener;
78 public class AppJmol extends StructureViewerBase
86 RenderPanel renderPanel;
88 ViewSelectionMenu seqColourBy;
97 * - add the alignment panel to the list used for colouring these
100 * - add the alignment panel to the list used for aligning these
102 * @param leaveColouringToJmol
103 * - do not update the colours from any other source. Jmol is
109 public AppJmol(String[] files, String[] ids, SequenceI[][] seqs,
110 AlignmentPanel ap, boolean usetoColour, boolean useToAlign,
111 boolean leaveColouringToJmol, String loadStatus,
112 Rectangle bounds, String viewid)
114 PDBEntry[] pdbentrys = new PDBEntry[files.length];
115 for (int i = 0; i < pdbentrys.length; i++)
117 // PDBEntry pdbentry = new PDBEntry(files[i], ids[i]);
118 PDBEntry pdbentry = new PDBEntry(ids[i], null, PDBEntry.Type.PDB,
120 pdbentrys[i] = pdbentry;
122 // / TODO: check if protocol is needed to be set, and if chains are
124 jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
125 pdbentrys, seqs, null, null);
127 jmb.setLoadingFromArchive(true);
128 addAlignmentPanel(ap);
131 useAlignmentPanelForSuperposition(ap);
133 if (leaveColouringToJmol || !usetoColour)
135 jmb.setColourBySequence(false);
136 seqColour.setSelected(false);
137 viewerColour.setSelected(true);
139 else if (usetoColour)
141 useAlignmentPanelForColourbyseq(ap);
142 jmb.setColourBySequence(true);
143 seqColour.setSelected(true);
144 viewerColour.setSelected(false);
146 this.setBounds(bounds);
149 // jalview.gui.Desktop.addInternalFrame(this, "Loading File",
150 // bounds.width,bounds.height);
152 this.addInternalFrameListener(new InternalFrameAdapter()
155 public void internalFrameClosing(InternalFrameEvent internalFrameEvent)
160 initJmol(loadStatus); // pdbentry, seq, JBPCHECK!
164 private void initMenus()
166 seqColour.setSelected(jmb.isColourBySequence());
167 viewerColour.setSelected(!jmb.isColourBySequence());
168 if (_colourwith == null)
170 _colourwith = new Vector<AlignmentPanel>();
172 if (_alignwith == null)
174 _alignwith = new Vector<AlignmentPanel>();
177 seqColourBy = new ViewSelectionMenu(MessageManager.getString("label.colour_by"), this, _colourwith,
182 public void itemStateChanged(ItemEvent e)
184 if (!seqColour.isSelected())
190 // update the jmol display now.
191 seqColour_actionPerformed(null);
195 viewMenu.add(seqColourBy);
196 final ItemListener handler;
197 JMenu alpanels = new ViewSelectionMenu(MessageManager.getString("label.superpose_with"), this,
198 _alignwith, handler = new ItemListener()
202 public void itemStateChanged(ItemEvent e)
204 alignStructs.setEnabled(_alignwith.size() > 0);
205 alignStructs.setToolTipText(MessageManager
207 "label.align_structures_using_linked_alignment_views",
209 { new Integer(_alignwith.size()).toString() }));
212 handler.itemStateChanged(null);
213 viewerActionMenu.add(alpanels);
214 viewerActionMenu.addMenuListener(new MenuListener()
218 public void menuSelected(MenuEvent e)
220 handler.itemStateChanged(null);
224 public void menuDeselected(MenuEvent e)
226 // TODO Auto-generated method stub
231 public void menuCanceled(MenuEvent e)
233 // TODO Auto-generated method stub
239 IProgressIndicator progressBar = null;
242 * add a single PDB structure to a new or existing Jmol view
249 public AppJmol(PDBEntry pdbentry, SequenceI[] seq, String[] chains,
250 final AlignmentPanel ap)
252 progressBar = ap.alignFrame;
253 String pdbId = pdbentry.getId();
256 * If the PDB file is already loaded, the user may just choose to add to an
257 * existing viewer (or cancel)
259 if (addAlreadyLoadedFile(seq, chains, ap, pdbId))
265 * Check if there are other Jmol views involving this alignment and prompt
266 * user about adding this molecule to one of them
268 if (addToExistingViewer(pdbentry, seq, chains, ap, pdbId))
274 * If the options above are declined or do not apply, open a new viewer
276 openNewJmol(ap, new PDBEntry[] { pdbentry }, new SequenceI[][] { seq });
280 * Answers true if this viewer already involves the given PDB ID
283 protected boolean hasPdbId(String pdbId)
285 return jmb.hasPdbId(pdbId);
288 private void openNewJmol(AlignmentPanel ap, PDBEntry[] pdbentrys,
291 progressBar = ap.alignFrame;
292 jmb = new AppJmolBinding(this, ap.getStructureSelectionManager(),
293 pdbentrys, seqs, null, null);
294 addAlignmentPanel(ap);
295 useAlignmentPanelForColourbyseq(ap);
296 if (pdbentrys.length > 1)
298 alignAddedStructures = true;
299 useAlignmentPanelForSuperposition(ap);
301 jmb.setColourBySequence(true);
302 setSize(400, 400); // probably should be a configurable/dynamic default here
306 addingStructures = false;
307 worker = new Thread(this);
310 this.addInternalFrameListener(new InternalFrameAdapter()
313 public void internalFrameClosing(InternalFrameEvent internalFrameEvent)
322 * create a new Jmol containing several structures superimposed using the
329 public AppJmol(AlignmentPanel ap, PDBEntry[] pe, SequenceI[][] seqs)
331 openNewJmol(ap, pe, seqs);
335 * Returns a list of any Jmol viewers. The list is restricted to those linked
336 * to the given alignment panel if it is not null.
339 protected List<StructureViewerBase> getViewersFor(AlignmentPanel apanel)
341 List<StructureViewerBase> result = new ArrayList<StructureViewerBase>();
342 JInternalFrame[] frames = Desktop.instance.getAllFrames();
344 for (JInternalFrame frame : frames)
346 if (frame instanceof AppJmol)
349 || ((StructureViewerBase) frame).isLinkedWith(apanel))
351 result.add((StructureViewerBase) frame);
358 void initJmol(String command)
360 jmb.setFinishedInit(false);
361 renderPanel = new RenderPanel();
362 // TODO: consider waiting until the structure/view is fully loaded before
364 this.getContentPane().add(renderPanel, java.awt.BorderLayout.CENTER);
365 jalview.gui.Desktop.addInternalFrame(this, jmb.getViewerTitle(),
366 getBounds().width, getBounds().height);
367 if (scriptWindow == null)
369 BorderLayout bl = new BorderLayout();
372 scriptWindow = new JPanel(bl);
373 scriptWindow.setVisible(false);
376 jmb.allocateViewer(renderPanel, true, "", null, null, "", scriptWindow,
378 // jmb.newJmolPopup("Jmol");
383 jmb.evalStateCommand(command);
384 jmb.setFinishedInit(true);
387 void setChainMenuItems(Vector<String> chains)
389 chainMenu.removeAll();
394 JMenuItem menuItem = new JMenuItem(
395 MessageManager.getString("label.all"));
396 menuItem.addActionListener(new ActionListener()
398 public void actionPerformed(ActionEvent evt)
400 allChainsSelected = true;
401 for (int i = 0; i < chainMenu.getItemCount(); i++)
403 if (chainMenu.getItem(i) instanceof JCheckBoxMenuItem)
405 ((JCheckBoxMenuItem) chainMenu.getItem(i)).setSelected(true);
409 allChainsSelected = false;
413 chainMenu.add(menuItem);
415 for (String chain : chains)
417 menuItem = new JCheckBoxMenuItem(chain, true);
418 menuItem.addItemListener(new ItemListener()
420 public void itemStateChanged(ItemEvent evt)
422 if (!allChainsSelected)
429 chainMenu.add(menuItem);
433 boolean allChainsSelected = false;
437 Vector<String> toshow = new Vector<String>();
438 for (int i = 0; i < chainMenu.getItemCount(); i++)
440 if (chainMenu.getItem(i) instanceof JCheckBoxMenuItem)
442 JCheckBoxMenuItem item = (JCheckBoxMenuItem) chainMenu.getItem(i);
443 if (item.isSelected())
445 toshow.addElement(item.getText());
449 jmb.centerViewer(toshow);
452 public void closeViewer(boolean closeExternalViewer)
454 // Jmol does not use an external viewer
459 setAlignmentPanel(null);
463 // TODO: check for memory leaks where instance isn't finalised because jmb
464 // holds a reference to the window
472 // todo - record which pdbids were successfuly imported.
473 StringBuffer errormsgs = new StringBuffer(), files = new StringBuffer();
476 String[] curfiles = jmb.getPdbFile(); // files currently in viewer
477 // TODO: replace with reference fetching/transfer code (validate PDBentry
479 jalview.ws.dbsources.Pdb pdbclient = new jalview.ws.dbsources.Pdb();
480 for (int pi = 0; pi < jmb.getPdbCount(); pi++)
482 String file = jmb.getPdbEntry(pi).getFile();
485 // retrieve the pdb and store it locally
486 AlignmentI pdbseq = null;
487 pdbid = jmb.getPdbEntry(pi).getId();
488 long hdl = pdbid.hashCode() - System.currentTimeMillis();
489 if (progressBar != null)
491 progressBar.setProgressBar(MessageManager.formatMessage("status.fetching_pdb", new String[]{pdbid}), hdl);
495 pdbseq = pdbclient.getSequenceRecords(pdbid);
496 } catch (OutOfMemoryError oomerror)
498 new OOMWarning("Retrieving PDB id " + pdbid, oomerror);
499 } catch (Exception ex)
501 ex.printStackTrace();
502 errormsgs.append("'" + pdbid + "'");
504 if (progressBar != null)
506 progressBar.setProgressBar(MessageManager.getString("label.state_completed"), hdl);
510 // just transfer the file name from the first sequence's first
512 file = new File(pdbseq.getSequenceAt(0).getAllPDBEntries()
513 .elementAt(0).getFile()).getAbsolutePath();
514 jmb.getPdbEntry(pi).setFile(file);
516 files.append(" \"" + Platform.escapeString(file) + "\"");
520 errormsgs.append("'" + pdbid + "' ");
525 if (curfiles != null && curfiles.length > 0)
527 addingStructures = true; // already files loaded.
528 for (int c = 0; c < curfiles.length; c++)
530 if (curfiles[c].equals(file))
539 files.append(" \"" + Platform.escapeString(file) + "\"");
543 } catch (OutOfMemoryError oomerror)
545 new OOMWarning("Retrieving PDB files: " + pdbid, oomerror);
546 } catch (Exception ex)
548 ex.printStackTrace();
549 errormsgs.append("When retrieving pdbfiles : current was: '" + pdbid
552 if (errormsgs.length() > 0)
555 JOptionPane.showInternalMessageDialog(Desktop.desktop, MessageManager
556 .formatMessage("label.pdb_entries_couldnt_be_retrieved",
558 { errormsgs.toString() }), MessageManager
559 .getString("label.couldnt_load_file"),
560 JOptionPane.ERROR_MESSAGE);
563 long lastnotify = jmb.getLoadNotifiesHandled();
564 if (files.length() > 0)
566 if (!addingStructures)
571 initJmol("load FILES " + files.toString());
572 } catch (OutOfMemoryError oomerror)
574 new OOMWarning("When trying to open the Jmol viewer!", oomerror);
575 Cache.log.debug("File locations are " + files);
576 } catch (Exception ex)
578 Cache.log.error("Couldn't open Jmol viewer!", ex);
583 StringBuffer cmd = new StringBuffer();
584 cmd.append("loadingJalviewdata=true\nload APPEND ");
585 cmd.append(files.toString());
586 cmd.append("\nloadingJalviewdata=null");
587 final String command = cmd.toString();
589 lastnotify = jmb.getLoadNotifiesHandled();
593 jmb.evalStateCommand(command);
594 } catch (OutOfMemoryError oomerror)
597 "When trying to add structures to the Jmol viewer!",
599 Cache.log.debug("File locations are " + files);
600 } catch (Exception ex)
602 Cache.log.error("Couldn't add files to Jmol viewer!", ex);
606 // need to wait around until script has finished
607 while (addingStructures ? lastnotify >= jmb.getLoadNotifiesHandled()
608 : (!jmb.isFinishedInit() && jmb.getPdbFile() != null && jmb
609 .getPdbFile().length != jmb.getPdbCount()))
613 Cache.log.debug("Waiting around for jmb notify.");
615 } catch (Exception e)
620 // refresh the sequence colours for the new structure(s)
621 for (AlignmentPanel ap : _colourwith)
623 jmb.updateColours(ap);
625 // do superposition if asked to
626 if (alignAddedStructures)
628 javax.swing.SwingUtilities.invokeLater(new Runnable()
632 if (jmb.viewer.isScriptExecuting())
634 javax.swing.SwingUtilities.invokeLater(this);
638 } catch (InterruptedException q)
646 alignStructs_withAllAlignPanels();
650 alignAddedStructures = false;
652 addingStructures = false;
660 public void pdbFile_actionPerformed(ActionEvent actionEvent)
662 JalviewFileChooser chooser = new JalviewFileChooser(
663 jalview.bin.Cache.getProperty("LAST_DIRECTORY"));
665 chooser.setFileView(new JalviewFileView());
666 chooser.setDialogTitle(MessageManager.getString("label.save_pdb_file"));
667 chooser.setToolTipText(MessageManager.getString("action.save"));
669 int value = chooser.showSaveDialog(this);
671 if (value == JalviewFileChooser.APPROVE_OPTION)
673 BufferedReader in = null;
676 // TODO: cope with multiple PDB files in view
677 in = new BufferedReader(new FileReader(
678 jmb.getPdbFile()[0]));
679 File outFile = chooser.getSelectedFile();
681 PrintWriter out = new PrintWriter(new FileOutputStream(outFile));
683 while ((data = in.readLine()) != null)
685 if (!(data.indexOf("<PRE>") > -1 || data.indexOf("</PRE>") > -1))
691 } catch (Exception ex)
693 ex.printStackTrace();
701 } catch (IOException e)
711 public void viewMapping_actionPerformed(ActionEvent actionEvent)
713 jalview.gui.CutAndPasteTransfer cap = new jalview.gui.CutAndPasteTransfer();
716 cap.appendText(jmb.printMappings());
717 } catch (OutOfMemoryError e)
720 "composing sequence-structure alignments for display in text box.",
725 jalview.gui.Desktop.addInternalFrame(cap,
726 MessageManager.getString("label.pdb_sequence_mapping"), 550,
731 public void eps_actionPerformed(ActionEvent e)
733 makePDBImage(jalview.util.ImageMaker.TYPE.EPS);
737 public void png_actionPerformed(ActionEvent e)
739 makePDBImage(jalview.util.ImageMaker.TYPE.PNG);
742 void makePDBImage(jalview.util.ImageMaker.TYPE type)
744 int width = getWidth();
745 int height = getHeight();
747 jalview.util.ImageMaker im;
749 if (type == jalview.util.ImageMaker.TYPE.PNG)
751 im = new jalview.util.ImageMaker(this,
752 jalview.util.ImageMaker.TYPE.PNG,
753 "Make PNG image from view", width, height, null, null);
755 else if (type == jalview.util.ImageMaker.TYPE.EPS)
757 im = new jalview.util.ImageMaker(this,
758 jalview.util.ImageMaker.TYPE.EPS,
759 "Make EPS file from view", width, height, null,
765 im = new jalview.util.ImageMaker(this,
766 jalview.util.ImageMaker.TYPE.SVG, "Make SVG file from PCA",
767 width, height, null, this.getTitle());
770 if (im.getGraphics() != null)
772 jmb.viewer.renderScreenImage(im.getGraphics(), width, height);
778 public void viewerColour_actionPerformed(ActionEvent actionEvent)
780 if (viewerColour.isSelected())
782 // disable automatic sequence colouring.
783 jmb.setColourBySequence(false);
788 public void seqColour_actionPerformed(ActionEvent actionEvent)
790 jmb.setColourBySequence(seqColour.isSelected());
791 if (_colourwith == null)
793 _colourwith = new Vector<AlignmentPanel>();
795 if (jmb.isColourBySequence())
797 if (!jmb.isLoadingFromArchive())
799 if (_colourwith.size() == 0 && getAlignmentPanel() != null)
801 // Make the currently displayed alignment panel the associated view
802 _colourwith.add(getAlignmentPanel().alignFrame.alignPanel);
805 // Set the colour using the current view for the associated alignframe
806 for (AlignmentPanel ap : _colourwith)
808 jmb.colourBySequence(ap);
814 public void chainColour_actionPerformed(ActionEvent actionEvent)
816 chainColour.setSelected(true);
821 public void chargeColour_actionPerformed(ActionEvent actionEvent)
823 chargeColour.setSelected(true);
824 jmb.colourByCharge();
828 public void zappoColour_actionPerformed(ActionEvent actionEvent)
830 zappoColour.setSelected(true);
831 jmb.setJalviewColourScheme(new ZappoColourScheme());
835 public void taylorColour_actionPerformed(ActionEvent actionEvent)
837 taylorColour.setSelected(true);
838 jmb.setJalviewColourScheme(new TaylorColourScheme());
842 public void hydroColour_actionPerformed(ActionEvent actionEvent)
844 hydroColour.setSelected(true);
845 jmb.setJalviewColourScheme(new HydrophobicColourScheme());
849 public void helixColour_actionPerformed(ActionEvent actionEvent)
851 helixColour.setSelected(true);
852 jmb.setJalviewColourScheme(new HelixColourScheme());
856 public void strandColour_actionPerformed(ActionEvent actionEvent)
858 strandColour.setSelected(true);
859 jmb.setJalviewColourScheme(new StrandColourScheme());
863 public void turnColour_actionPerformed(ActionEvent actionEvent)
865 turnColour.setSelected(true);
866 jmb.setJalviewColourScheme(new TurnColourScheme());
870 public void buriedColour_actionPerformed(ActionEvent actionEvent)
872 buriedColour.setSelected(true);
873 jmb.setJalviewColourScheme(new BuriedColourScheme());
877 public void purinePyrimidineColour_actionPerformed(ActionEvent actionEvent)
879 setJalviewColourScheme(new PurinePyrimidineColourScheme());
883 public void userColour_actionPerformed(ActionEvent actionEvent)
885 userColour.setSelected(true);
886 new UserDefinedColours(this, null);
890 public void backGround_actionPerformed(ActionEvent actionEvent)
892 java.awt.Color col = JColorChooser.showDialog(this,
893 MessageManager.getString("label.select_backgroud_colour"), null);
896 jmb.setBackgroundColour(col);
901 public void showHelp_actionPerformed(ActionEvent actionEvent)
905 jalview.util.BrowserLauncher
906 .openURL("http://jmol.sourceforge.net/docs/JmolUserGuide/");
907 } catch (Exception ex)
912 public void showConsole(boolean showConsole)
917 if (splitPane == null)
919 splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
920 splitPane.setTopComponent(renderPanel);
921 splitPane.setBottomComponent(scriptWindow);
922 this.getContentPane().add(splitPane, BorderLayout.CENTER);
923 splitPane.setDividerLocation(getHeight() - 200);
924 scriptWindow.setVisible(true);
925 scriptWindow.validate();
926 splitPane.validate();
932 if (splitPane != null)
934 splitPane.setVisible(false);
939 this.getContentPane().add(renderPanel, BorderLayout.CENTER);
945 class RenderPanel extends JPanel
947 final Dimension currentSize = new Dimension();
950 public void paintComponent(Graphics g)
952 getSize(currentSize);
954 if (jmb != null && jmb.fileLoadingError != null)
956 g.setColor(Color.black);
957 g.fillRect(0, 0, currentSize.width, currentSize.height);
958 g.setColor(Color.white);
959 g.setFont(new Font("Verdana", Font.BOLD, 14));
960 g.drawString(MessageManager.getString("label.error_loading_file")
961 + "...", 20, currentSize.height / 2);
962 StringBuffer sb = new StringBuffer();
964 for (int e = 0; e < jmb.getPdbCount(); e++)
966 sb.append(jmb.getPdbEntry(e).getId());
967 if (e < jmb.getPdbCount() - 1)
972 if (e == jmb.getPdbCount() - 1 || sb.length() > 20)
975 g.drawString(sb.toString(), 20, currentSize.height / 2 - lines
976 * g.getFontMetrics().getHeight());
980 else if (jmb == null || jmb.viewer == null || !jmb.isFinishedInit())
982 g.setColor(Color.black);
983 g.fillRect(0, 0, currentSize.width, currentSize.height);
984 g.setColor(Color.white);
985 g.setFont(new Font("Verdana", Font.BOLD, 14));
986 g.drawString(MessageManager.getString("label.retrieving_pdb_data"),
987 20, currentSize.height / 2);
991 jmb.viewer.renderScreenImage(g, currentSize.width,
997 public void updateTitleAndMenus()
999 if (jmb.fileLoadingError != null && jmb.fileLoadingError.length() > 0)
1004 setChainMenuItems(jmb.chainNames);
1006 this.setTitle(jmb.getViewerTitle());
1007 if (jmb.getPdbFile().length > 1 && jmb.getSequence().length > 1)
1009 viewerActionMenu.setVisible(true);
1011 if (!jmb.isLoadingFromArchive())
1013 seqColour_actionPerformed(null);
1021 * jalview.jbgui.GStructureViewer#alignStructs_actionPerformed(java.awt.event
1025 protected void alignStructs_actionPerformed(ActionEvent actionEvent)
1027 alignStructs_withAllAlignPanels();
1030 private void alignStructs_withAllAlignPanels()
1032 if (getAlignmentPanel() == null)
1037 if (_alignwith.size() == 0)
1039 _alignwith.add(getAlignmentPanel());
1044 AlignmentI[] als = new Alignment[_alignwith.size()];
1045 ColumnSelection[] alc = new ColumnSelection[_alignwith.size()];
1046 int[] alm = new int[_alignwith.size()];
1049 for (AlignmentPanel ap : _alignwith)
1051 als[a] = ap.av.getAlignment();
1053 alc[a++] = ap.av.getColumnSelection();
1055 jmb.superposeStructures(als, alm, alc);
1056 } catch (Exception e)
1058 StringBuffer sp = new StringBuffer();
1059 for (AlignmentPanel ap : _alignwith)
1061 sp.append("'" + ap.alignFrame.getTitle() + "' ");
1063 Cache.log.info("Couldn't align structures with the " + sp.toString()
1064 + "associated alignment panels.", e);
1070 public void setJalviewColourScheme(ColourSchemeI ucs)
1072 jmb.setJalviewColourScheme(ucs);
1079 * @return first alignment panel displaying given alignment, or the default
1082 public AlignmentPanel getAlignmentPanelFor(AlignmentI alignment)
1084 for (AlignmentPanel ap : getAllAlignmentPanels())
1086 if (ap.av.getAlignment() == alignment)
1091 return getAlignmentPanel();
1095 public AAStructureBindingModel getBinding()
1101 public String getStateInfo()
1103 return jmb == null ? null : jmb.viewer.getStateInfo();
1107 public ViewerType getViewerType()
1109 return ViewerType.JMOL;
1113 protected AAStructureBindingModel getBindingModel()