2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
\r
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
\r
5 * This file is part of Jalview.
\r
7 * Jalview is free software: you can redistribute it and/or
\r
8 * modify it under the terms of the GNU General Public License
\r
9 * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
\r
11 * Jalview is distributed in the hope that it will be useful, but
\r
12 * WITHOUT ANY WARRANTY; without even the implied warranty
\r
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
\r
14 * PURPOSE. See the GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
\r
18 package jalview.bin;
\r
20 import jalview.api.StructureSelectionManagerProvider;
\r
21 import jalview.appletgui.AlignFrame;
\r
22 import jalview.appletgui.AlignViewport;
\r
23 import jalview.appletgui.EmbmenuFrame;
\r
24 import jalview.appletgui.FeatureSettings;
\r
25 import jalview.datamodel.Alignment;
\r
26 import jalview.datamodel.AlignmentI;
\r
27 import jalview.datamodel.AlignmentOrder;
\r
28 import jalview.datamodel.ColumnSelection;
\r
29 import jalview.datamodel.PDBEntry;
\r
30 import jalview.datamodel.Sequence;
\r
31 import jalview.datamodel.SequenceGroup;
\r
32 import jalview.datamodel.SequenceI;
\r
33 import jalview.io.AnnotationFile;
\r
34 import jalview.io.AppletFormatAdapter;
\r
35 import jalview.io.FileParse;
\r
36 import jalview.io.IdentifyFile;
\r
37 import jalview.io.JnetAnnotationMaker;
\r
38 import jalview.javascript.JSFunctionExec;
\r
39 import jalview.javascript.JalviewLiteJsApi;
\r
40 import jalview.javascript.JsCallBack;
\r
41 import jalview.structure.SelectionListener;
\r
42 import jalview.structure.StructureSelectionManager;
\r
44 import java.applet.Applet;
\r
45 import java.awt.Button;
\r
46 import java.awt.Color;
\r
47 import java.awt.Component;
\r
48 import java.awt.EventQueue;
\r
49 import java.awt.Font;
\r
50 import java.awt.Frame;
\r
51 import java.awt.Graphics;
\r
52 import java.awt.event.ActionEvent;
\r
53 import java.awt.event.WindowAdapter;
\r
54 import java.awt.event.WindowEvent;
\r
55 import java.io.BufferedReader;
\r
56 import java.io.InputStreamReader;
\r
57 import java.net.URL;
\r
58 import java.util.Hashtable;
\r
59 import java.util.StringTokenizer;
\r
60 import java.util.Vector;
\r
62 import netscape.javascript.JSObject;
\r
65 * Jalview Applet. Runs in Java 1.18 runtime
\r
68 * @version $Revision: 1.92 $
\r
70 public class JalviewLite extends Applet implements
\r
71 StructureSelectionManagerProvider, JalviewLiteJsApi
\r
74 public StructureSelectionManager getStructureSelectionManager()
\r
76 return StructureSelectionManager.getStructureSelectionManager(this);
\r
79 // /////////////////////////////////////////
\r
80 // The following public methods maybe called
\r
81 // externally, eg via javascript in HTML page
\r
85 * @see jalview.bin.JalviewLiteJsApi#getSelectedSequences()
\r
87 public String getSelectedSequences()
\r
89 return getSelectedSequencesFrom(getDefaultTargetFrame());
\r
95 * @see jalview.bin.JalviewLiteJsApi#getSelectedSequences(java.lang.String)
\r
97 public String getSelectedSequences(String sep)
\r
99 return getSelectedSequencesFrom(getDefaultTargetFrame(), sep);
\r
106 * jalview.bin.JalviewLiteJsApi#getSelectedSequencesFrom(jalview.appletgui
\r
109 public String getSelectedSequencesFrom(AlignFrame alf)
\r
111 return getSelectedSequencesFrom(alf, separator); // ""+0x00AC);
\r
118 * jalview.bin.JalviewLiteJsApi#getSelectedSequencesFrom(jalview.appletgui
\r
119 * .AlignFrame, java.lang.String)
\r
121 public String getSelectedSequencesFrom(AlignFrame alf, String sep)
\r
123 StringBuffer result = new StringBuffer("");
\r
124 if (sep == null || sep.length() == 0)
\r
126 sep = separator; // "+0x00AC;
\r
128 if (alf.viewport.getSelectionGroup() != null)
\r
130 SequenceI[] seqs = alf.viewport.getSelectionGroup()
\r
131 .getSequencesInOrder(alf.viewport.getAlignment());
\r
133 for (int i = 0; i < seqs.length; i++)
\r
135 result.append(seqs[i].getName());
\r
136 result.append(sep);
\r
140 return result.toString();
\r
146 * @see jalview.bin.JalviewLiteJsApi#highlight(java.lang.String,
\r
147 * java.lang.String, java.lang.String)
\r
149 public void highlight(String sequenceId, String position,
\r
150 String alignedPosition)
\r
152 highlightIn(getDefaultTargetFrame(), sequenceId, position,
\r
159 * @see jalview.bin.JalviewLiteJsApi#highlightIn(jalview.appletgui.AlignFrame,
\r
160 * java.lang.String, java.lang.String, java.lang.String)
\r
162 public void highlightIn(final AlignFrame alf, final String sequenceId,
\r
163 final String position, final String alignedPosition)
\r
165 // TODO: could try to highlight in all alignments if alf==null
\r
166 jalview.analysis.SequenceIdMatcher matcher = new jalview.analysis.SequenceIdMatcher(
\r
167 alf.viewport.getAlignment().getSequencesArray());
\r
168 final SequenceI sq = matcher.findIdMatch(sequenceId);
\r
174 apos = new Integer(position).intValue();
\r
176 } catch (NumberFormatException ex)
\r
180 final StructureSelectionManagerProvider me = this;
\r
181 final int pos = apos;
\r
182 // use vamsas listener to broadcast to all listeners in scope
\r
183 if (alignedPosition != null
\r
184 && (alignedPosition.trim().length() == 0 || alignedPosition
\r
185 .toLowerCase().indexOf("false") > -1))
\r
187 java.awt.EventQueue.invokeLater(new Runnable()
\r
192 StructureSelectionManager.getStructureSelectionManager(me)
\r
193 .mouseOverVamsasSequence(sq, sq.findIndex(pos), null);
\r
199 java.awt.EventQueue.invokeLater(new Runnable()
\r
204 StructureSelectionManager.getStructureSelectionManager(me)
\r
205 .mouseOverVamsasSequence(sq, pos, null);
\r
215 * @see jalview.bin.JalviewLiteJsApi#select(java.lang.String,
\r
216 * java.lang.String)
\r
218 public void select(String sequenceIds, String columns)
\r
220 selectIn(getDefaultTargetFrame(), sequenceIds, columns, separator);
\r
226 * @see jalview.bin.JalviewLiteJsApi#select(java.lang.String,
\r
227 * java.lang.String, java.lang.String)
\r
229 public void select(String sequenceIds, String columns, String sep)
\r
231 selectIn(getDefaultTargetFrame(), sequenceIds, columns, sep);
\r
237 * @see jalview.bin.JalviewLiteJsApi#selectIn(jalview.appletgui.AlignFrame,
\r
238 * java.lang.String, java.lang.String)
\r
240 public void selectIn(AlignFrame alf, String sequenceIds, String columns)
\r
242 selectIn(alf, sequenceIds, columns, separator);
\r
248 * @see jalview.bin.JalviewLiteJsApi#selectIn(jalview.appletgui.AlignFrame,
\r
249 * java.lang.String, java.lang.String, java.lang.String)
\r
251 public void selectIn(final AlignFrame alf, String sequenceIds,
\r
252 String columns, String sep)
\r
254 if (sep == null || sep.length() == 0)
\r
262 System.err.println("Selecting region using separator string '"
\r
263 + separator + "'");
\r
267 String[] ids = separatorListToArray(sequenceIds, sep);
\r
268 String[] cols = separatorListToArray(columns, sep);
\r
269 final SequenceGroup sel = new SequenceGroup();
\r
270 final ColumnSelection csel = new ColumnSelection();
\r
271 AlignmentI al = alf.viewport.getAlignment();
\r
272 jalview.analysis.SequenceIdMatcher matcher = new jalview.analysis.SequenceIdMatcher(
\r
273 alf.viewport.getAlignment().getSequencesArray());
\r
274 int start = 0, end = al.getWidth(), alw = al.getWidth();
\r
275 boolean seqsfound = true;
\r
276 if (ids != null && ids.length > 0)
\r
279 for (int i = 0; i < ids.length; i++)
\r
281 if (ids[i].trim().length() == 0)
\r
285 SequenceI sq = matcher.findIdMatch(ids[i]);
\r
289 sel.addSequence(sq, false);
\r
293 boolean inseqpos = false;
\r
294 if (cols != null && cols.length > 0)
\r
296 boolean seset = false;
\r
297 for (int i = 0; i < cols.length; i++)
\r
299 String cl = cols[i].trim();
\r
300 if (cl.length() == 0)
\r
305 if ((p = cl.indexOf("-")) > -1)
\r
307 int from = -1, to = -1;
\r
310 from = new Integer(cl.substring(0, p)).intValue();
\r
312 } catch (NumberFormatException ex)
\r
315 .println("ERROR: Couldn't parse first integer in range element column selection string '"
\r
316 + cl + "' - format is 'from-to'");
\r
321 to = new Integer(cl.substring(p + 1)).intValue();
\r
323 } catch (NumberFormatException ex)
\r
326 .println("ERROR: Couldn't parse second integer in range element column selection string '"
\r
327 + cl + "' - format is 'from-to'");
\r
330 if (from >= 0 && to >= 0)
\r
347 // comment to prevent range extension
\r
357 for (int r = from; r <= to; r++)
\r
359 if (r >= 0 && r < alw)
\r
361 csel.addElement(r);
\r
366 System.err.println("Range '" + cl + "' deparsed as [" + from
\r
372 System.err.println("ERROR: Invalid Range '" + cl
\r
373 + "' deparsed as [" + from + "," + to + "]");
\r
381 r = new Integer(cl).intValue();
\r
383 } catch (NumberFormatException ex)
\r
385 if (cl.toLowerCase().equals("sequence"))
\r
387 // we are in the dataset sequence's coordinate frame.
\r
393 .println("ERROR: Couldn't parse integer from point selection element of column selection string '"
\r
398 if (r >= 0 && r <= alw)
\r
408 // comment to prevent range extension
\r
418 csel.addElement(r);
\r
421 System.err.println("Point selection '" + cl
\r
422 + "' deparsed as [" + r + "]");
\r
427 System.err.println("ERROR: Invalid Point selection '" + cl
\r
428 + "' deparsed as [" + r + "]");
\r
435 // we only propagate the selection when it was the null selection, or the
\r
436 // given sequences were found in the alignment.
\r
437 if (inseqpos && sel.getSize() > 0)
\r
439 // assume first sequence provides reference frame ?
\r
440 SequenceI rs = sel.getSequenceAt(0);
\r
441 start = rs.findIndex(start);
\r
442 end = rs.findIndex(end);
\r
445 Vector cs = csel.getSelected();
\r
447 for (int csi = 0, csiS = cs.size(); csi < csiS; csi++)
\r
449 csel.addElement(rs.findIndex(((Integer) cs.elementAt(csi))
\r
454 sel.setStartRes(start);
\r
455 sel.setEndRes(end);
\r
456 EventQueue.invokeLater(new Runnable()
\r
461 alf.select(sel, csel);
\r
471 * jalview.bin.JalviewLiteJsApi#getSelectedSequencesAsAlignment(java.lang.
\r
472 * String, java.lang.String)
\r
474 public String getSelectedSequencesAsAlignment(String format, String suffix)
\r
476 return getSelectedSequencesAsAlignmentFrom(getDefaultTargetFrame(),
\r
484 * jalview.bin.JalviewLiteJsApi#getSelectedSequencesAsAlignmentFrom(jalview
\r
485 * .appletgui.AlignFrame, java.lang.String, java.lang.String)
\r
487 public String getSelectedSequencesAsAlignmentFrom(AlignFrame alf,
\r
488 String format, String suffix)
\r
492 boolean seqlimits = suffix.equalsIgnoreCase("true");
\r
493 if (alf.viewport.getSelectionGroup() != null)
\r
495 // JBPNote: getSelectionAsNewSequence behaviour has changed - this method now returns a full copy of sequence data
\r
496 // TODO consider using getSequenceSelection instead here
\r
497 String reply = new AppletFormatAdapter().formatSequences(format,
\r
498 new Alignment(alf.viewport.getSelectionAsNewSequence()),
\r
502 } catch (Exception ex)
\r
504 ex.printStackTrace();
\r
505 return "Error retrieving alignment in " + format + " format. ";
\r
513 * @see jalview.bin.JalviewLiteJsApi#getAlignmentOrder()
\r
515 public String getAlignmentOrder()
\r
517 return getAlignmentOrderFrom(getDefaultTargetFrame());
\r
524 * jalview.bin.JalviewLiteJsApi#getAlignmentOrderFrom(jalview.appletgui.AlignFrame
\r
527 public String getAlignmentOrderFrom(AlignFrame alf)
\r
529 return getAlignmentOrderFrom(alf, separator);
\r
536 * jalview.bin.JalviewLiteJsApi#getAlignmentOrderFrom(jalview.appletgui.AlignFrame
\r
537 * , java.lang.String)
\r
539 public String getAlignmentOrderFrom(AlignFrame alf, String sep)
\r
541 AlignmentI alorder = alf.getAlignViewport().getAlignment();
\r
542 String[] order = new String[alorder.getHeight()];
\r
543 for (int i = 0; i < order.length; i++)
\r
545 order[i] = alorder.getSequenceAt(i).getName();
\r
547 return arrayToSeparatorList(order);
\r
553 * @see jalview.bin.JalviewLiteJsApi#orderBy(java.lang.String,
\r
554 * java.lang.String)
\r
556 public String orderBy(String order, String undoName)
\r
558 return orderBy(order, undoName, separator);
\r
564 * @see jalview.bin.JalviewLiteJsApi#orderBy(java.lang.String,
\r
565 * java.lang.String, java.lang.String)
\r
567 public String orderBy(String order, String undoName, String sep)
\r
569 return orderAlignmentBy(getDefaultTargetFrame(), order, undoName, sep);
\r
576 * jalview.bin.JalviewLiteJsApi#orderAlignmentBy(jalview.appletgui.AlignFrame,
\r
577 * java.lang.String, java.lang.String, java.lang.String)
\r
579 public String orderAlignmentBy(AlignFrame alf, String order,
\r
580 String undoName, String sep)
\r
582 String[] ids = separatorListToArray(order, sep);
\r
583 SequenceI[] sqs = null;
\r
584 if (ids != null && ids.length > 0)
\r
586 jalview.analysis.SequenceIdMatcher matcher = new jalview.analysis.SequenceIdMatcher(
\r
587 alf.viewport.getAlignment().getSequencesArray());
\r
589 sqs = new SequenceI[ids.length];
\r
590 for (int i = 0; i < ids.length; i++)
\r
592 if (ids[i].trim().length() == 0)
\r
596 SequenceI sq = matcher.findIdMatch(ids[i]);
\r
604 SequenceI[] sqq = new SequenceI[s];
\r
605 System.arraycopy(sqs, 0, sqq, 0, s);
\r
618 final AlignmentOrder aorder = new AlignmentOrder(sqs);
\r
620 if (undoName != null && undoName.trim().length() == 0)
\r
624 final String _undoName = undoName;
\r
625 // TODO: deal with synchronization here: cannot raise any events until after
\r
626 // this has returned.
\r
627 return alf.sortBy(aorder, _undoName) ? "true" : "";
\r
633 * @see jalview.bin.JalviewLiteJsApi#getAlignment(java.lang.String)
\r
635 public String getAlignment(String format)
\r
637 return getAlignmentFrom(getDefaultTargetFrame(), format, "true");
\r
644 * jalview.bin.JalviewLiteJsApi#getAlignmentFrom(jalview.appletgui.AlignFrame,
\r
645 * java.lang.String)
\r
647 public String getAlignmentFrom(AlignFrame alf, String format)
\r
649 return getAlignmentFrom(alf, format, "true");
\r
655 * @see jalview.bin.JalviewLiteJsApi#getAlignment(java.lang.String,
\r
656 * java.lang.String)
\r
658 public String getAlignment(String format, String suffix)
\r
660 return getAlignmentFrom(getDefaultTargetFrame(), format, suffix);
\r
667 * jalview.bin.JalviewLiteJsApi#getAlignmentFrom(jalview.appletgui.AlignFrame,
\r
668 * java.lang.String, java.lang.String)
\r
670 public String getAlignmentFrom(AlignFrame alf, String format,
\r
675 boolean seqlimits = suffix.equalsIgnoreCase("true");
\r
677 String reply = new AppletFormatAdapter().formatSequences(format,
\r
678 alf.viewport.getAlignment(), seqlimits);
\r
680 } catch (Exception ex)
\r
682 ex.printStackTrace();
\r
683 return "Error retrieving alignment in " + format + " format. ";
\r
690 * @see jalview.bin.JalviewLiteJsApi#loadAnnotation(java.lang.String)
\r
692 public void loadAnnotation(String annotation)
\r
694 loadAnnotationFrom(getDefaultTargetFrame(), annotation);
\r
701 * jalview.bin.JalviewLiteJsApi#loadAnnotationFrom(jalview.appletgui.AlignFrame
\r
702 * , java.lang.String)
\r
704 public void loadAnnotationFrom(AlignFrame alf, String annotation)
\r
706 if (new AnnotationFile().readAnnotationFile(alf.getAlignViewport()
\r
707 .getAlignment(), annotation, AppletFormatAdapter.PASTE))
\r
709 alf.alignPanel.fontChanged();
\r
710 alf.alignPanel.setScrollValues(0, 0);
\r
714 alf.parseFeaturesFile(annotation, AppletFormatAdapter.PASTE);
\r
721 * @see jalview.bin.JalviewLiteJsApi#loadAnnotation(java.lang.String)
\r
723 public void loadFeatures(String features, boolean autoenabledisplay)
\r
725 loadFeaturesFrom(getDefaultTargetFrame(), features, autoenabledisplay);
\r
732 * jalview.bin.JalviewLiteJsApi#loadAnnotationFrom(jalview.appletgui.AlignFrame
\r
733 * , java.lang.String)
\r
735 public void loadFeaturesFrom(AlignFrame alf, String features, boolean autoenabledisplay)
\r
737 alf.parseFeaturesFile(features, AppletFormatAdapter.PASTE, autoenabledisplay);
\r
744 * @see jalview.bin.JalviewLiteJsApi#getFeatures(java.lang.String)
\r
746 public String getFeatures(String format)
\r
748 return getFeaturesFrom(getDefaultTargetFrame(), format);
\r
755 * jalview.bin.JalviewLiteJsApi#getFeaturesFrom(jalview.appletgui.AlignFrame,
\r
756 * java.lang.String)
\r
758 public String getFeaturesFrom(AlignFrame alf, String format)
\r
760 return alf.outputFeatures(false, format);
\r
766 * @see jalview.bin.JalviewLiteJsApi#getAnnotation()
\r
768 public String getAnnotation()
\r
770 return getAnnotationFrom(getDefaultTargetFrame());
\r
777 * jalview.bin.JalviewLiteJsApi#getAnnotationFrom(jalview.appletgui.AlignFrame
\r
780 public String getAnnotationFrom(AlignFrame alf)
\r
782 return alf.outputAnnotations(false);
\r
788 * @see jalview.bin.JalviewLiteJsApi#newView()
\r
790 public AlignFrame newView()
\r
792 return newViewFrom(getDefaultTargetFrame());
\r
798 * @see jalview.bin.JalviewLiteJsApi#newView(java.lang.String)
\r
800 public AlignFrame newView(String name)
\r
802 return newViewFrom(getDefaultTargetFrame(), name);
\r
808 * @see jalview.bin.JalviewLiteJsApi#newViewFrom(jalview.appletgui.AlignFrame)
\r
810 public AlignFrame newViewFrom(AlignFrame alf)
\r
812 return alf.newView(null);
\r
818 * @see jalview.bin.JalviewLiteJsApi#newViewFrom(jalview.appletgui.AlignFrame,
\r
819 * java.lang.String)
\r
821 public AlignFrame newViewFrom(AlignFrame alf, String name)
\r
823 return alf.newView(name);
\r
829 * @see jalview.bin.JalviewLiteJsApi#loadAlignment(java.lang.String,
\r
830 * java.lang.String)
\r
832 public AlignFrame loadAlignment(String text, String title)
\r
834 Alignment al = null;
\r
836 String format = new IdentifyFile().Identify(text,
\r
837 AppletFormatAdapter.PASTE);
\r
840 al = new AppletFormatAdapter().readFile(text,
\r
841 AppletFormatAdapter.PASTE, format);
\r
842 if (al.getHeight() > 0)
\r
844 return new AlignFrame(al, this, title, false);
\r
846 } catch (java.io.IOException ex)
\r
848 ex.printStackTrace();
\r
856 * @see jalview.bin.JalviewLiteJsApi#setMouseoverListener(java.lang.String)
\r
858 public void setMouseoverListener(String listener)
\r
860 setMouseoverListener(currentAlignFrame, listener);
\r
863 private Vector<jalview.javascript.JSFunctionExec> javascriptListeners = new Vector<jalview.javascript.JSFunctionExec>();
\r
869 * jalview.bin.JalviewLiteJsApi#setMouseoverListener(jalview.appletgui.AlignFrame
\r
870 * , java.lang.String)
\r
872 public void setMouseoverListener(AlignFrame af, String listener)
\r
874 if (listener != null)
\r
876 listener = listener.trim();
\r
877 if (listener.length() == 0)
\r
880 .println("jalview Javascript error: Ignoring empty function for mouseover listener.");
\r
884 jalview.javascript.MouseOverListener mol = new jalview.javascript.MouseOverListener(
\r
885 this, af, listener);
\r
886 javascriptListeners.addElement(mol);
\r
887 StructureSelectionManager.getStructureSelectionManager(this)
\r
888 .addStructureViewerListener(mol);
\r
891 System.err.println("Added a mouseover listener for "
\r
892 + ((af == null) ? "All frames" : "Just views for "
\r
893 + af.getAlignViewport().getSequenceSetId()));
\r
894 System.err.println("There are now " + javascriptListeners.size()
\r
895 + " listeners in total.");
\r
902 * @see jalview.bin.JalviewLiteJsApi#setSelectionListener(java.lang.String)
\r
904 public void setSelectionListener(String listener)
\r
906 setSelectionListener(null, listener);
\r
913 * jalview.bin.JalviewLiteJsApi#setSelectionListener(jalview.appletgui.AlignFrame
\r
914 * , java.lang.String)
\r
916 public void setSelectionListener(AlignFrame af, String listener)
\r
918 if (listener != null)
\r
920 listener = listener.trim();
\r
921 if (listener.length() == 0)
\r
924 .println("jalview Javascript error: Ignoring empty function for selection listener.");
\r
928 jalview.javascript.JsSelectionSender mol = new jalview.javascript.JsSelectionSender(
\r
929 this, af, listener);
\r
930 javascriptListeners.addElement(mol);
\r
931 StructureSelectionManager.getStructureSelectionManager(this)
\r
932 .addSelectionListener(mol);
\r
935 System.err.println("Added a selection listener for "
\r
936 + ((af == null) ? "All frames" : "Just views for "
\r
937 + af.getAlignViewport().getSequenceSetId()));
\r
938 System.err.println("There are now " + javascriptListeners.size()
\r
939 + " listeners in total.");
\r
946 * @see jalview.bin.JalviewLiteJsApi#setStructureListener(java.lang.String,
\r
947 * java.lang.String)
\r
949 public void setStructureListener(String listener, String modelSet)
\r
951 if (listener != null)
\r
953 listener = listener.trim();
\r
954 if (listener.length() == 0)
\r
957 .println("jalview Javascript error: Ignoring empty function for selection listener.");
\r
961 jalview.javascript.MouseOverStructureListener mol = new jalview.javascript.MouseOverStructureListener(
\r
962 this, listener, separatorListToArray(modelSet));
\r
963 javascriptListeners.addElement(mol);
\r
964 StructureSelectionManager.getStructureSelectionManager(this)
\r
965 .addStructureViewerListener(mol);
\r
968 System.err.println("Added a javascript structure viewer listener '"
\r
970 System.err.println("There are now " + javascriptListeners.size()
\r
971 + " listeners in total.");
\r
979 * jalview.bin.JalviewLiteJsApi#removeJavascriptListener(jalview.appletgui
\r
980 * .AlignFrame, java.lang.String)
\r
982 public void removeJavascriptListener(AlignFrame af, String listener)
\r
984 if (listener != null)
\r
986 listener = listener.trim();
\r
987 if (listener.length() == 0)
\r
992 boolean rprt = false;
\r
993 for (int ms = 0, msSize = javascriptListeners.size(); ms < msSize;)
\r
995 Object lstn = javascriptListeners.elementAt(ms);
\r
996 JsCallBack lstner = (JsCallBack) lstn;
\r
997 if ((af == null || lstner.getAlignFrame() == af)
\r
998 && (listener == null || lstner.getListenerFunction().equals(
\r
1001 javascriptListeners.removeElement(lstner);
\r
1003 if (lstner instanceof SelectionListener)
\r
1005 StructureSelectionManager.getStructureSelectionManager(this)
\r
1006 .removeSelectionListener((SelectionListener) lstner);
\r
1010 StructureSelectionManager.getStructureSelectionManager(this)
\r
1011 .removeStructureViewerListener(lstner, null);
\r
1016 System.err.println("Removed listener '" + listener + "'");
\r
1026 System.err.println("There are now " + javascriptListeners.size()
\r
1027 + " listeners in total.");
\r
1031 public void stop()
\r
1033 System.err.println("Applet " + getName() + " stop().");
\r
1037 public void destroy()
\r
1039 System.err.println("Applet " + getName() + " destroy().");
\r
1043 private void tidyUp()
\r
1046 if (currentAlignFrame != null && currentAlignFrame.viewport != null
\r
1047 && currentAlignFrame.viewport.applet != null)
\r
1049 AlignViewport av = currentAlignFrame.viewport;
\r
1050 currentAlignFrame.closeMenuItem_actionPerformed();
\r
1052 currentAlignFrame = null;
\r
1054 if (javascriptListeners != null)
\r
1056 while (javascriptListeners.size() > 0)
\r
1058 jalview.javascript.JSFunctionExec mol = javascriptListeners
\r
1060 javascriptListeners.removeElement(mol);
\r
1061 if (mol instanceof SelectionListener)
\r
1063 StructureSelectionManager.getStructureSelectionManager(this)
\r
1064 .removeSelectionListener((SelectionListener) mol);
\r
1068 StructureSelectionManager.getStructureSelectionManager(this)
\r
1069 .removeStructureViewerListener(mol, null);
\r
1071 mol.jvlite = null;
\r
1074 if (jsFunctionExec != null)
\r
1076 jsFunctionExec.stopQueue();
\r
1077 jsFunctionExec.jvlite = null;
\r
1079 initialAlignFrame = null;
\r
1080 jsFunctionExec = null;
\r
1081 javascriptListeners = null;
\r
1082 StructureSelectionManager.release(this);
\r
1085 private jalview.javascript.JSFunctionExec jsFunctionExec;
\r
1090 * @see jalview.bin.JalviewLiteJsApi#mouseOverStructure(java.lang.String,
\r
1091 * java.lang.String, java.lang.String)
\r
1093 public void mouseOverStructure(final String pdbResNum,
\r
1094 final String chain, final String pdbfile)
\r
1096 final StructureSelectionManagerProvider me = this;
\r
1097 java.awt.EventQueue.invokeLater(new Runnable()
\r
1104 StructureSelectionManager.getStructureSelectionManager(me)
\r
1105 .mouseOverStructure(new Integer(pdbResNum).intValue(),
\r
1109 System.err.println("mouseOver for '" + pdbResNum
\r
1110 + "' in chain '" + chain + "' in structure '" + pdbfile
\r
1113 } catch (NumberFormatException e)
\r
1115 System.err.println("Ignoring invalid residue number string '"
\r
1116 + pdbResNum + "'");
\r
1127 * jalview.bin.JalviewLiteJsApi#scrollViewToIn(jalview.appletgui.AlignFrame,
\r
1128 * java.lang.String, java.lang.String)
\r
1130 public void scrollViewToIn(final AlignFrame alf, final String topRow,
\r
1131 final String leftHandColumn)
\r
1133 java.awt.EventQueue.invokeLater(new Runnable()
\r
1140 alf.scrollTo(new Integer(topRow).intValue(), new Integer(
\r
1141 leftHandColumn).intValue());
\r
1143 } catch (Exception ex)
\r
1145 System.err.println("Couldn't parse integer arguments (topRow='"
\r
1146 + topRow + "' and leftHandColumn='" + leftHandColumn
\r
1148 ex.printStackTrace();
\r
1158 * jalview.javascript.JalviewLiteJsApi#scrollViewToRowIn(jalview.appletgui
\r
1159 * .AlignFrame, java.lang.String)
\r
1162 public void scrollViewToRowIn(final AlignFrame alf, final String topRow)
\r
1165 java.awt.EventQueue.invokeLater(new Runnable()
\r
1172 alf.scrollToRow(new Integer(topRow).intValue());
\r
1174 } catch (Exception ex)
\r
1176 System.err.println("Couldn't parse integer arguments (topRow='"
\r
1178 ex.printStackTrace();
\r
1189 * jalview.javascript.JalviewLiteJsApi#scrollViewToColumnIn(jalview.appletgui
\r
1190 * .AlignFrame, java.lang.String)
\r
1193 public void scrollViewToColumnIn(final AlignFrame alf,
\r
1194 final String leftHandColumn)
\r
1196 java.awt.EventQueue.invokeLater(new Runnable()
\r
1204 alf.scrollToColumn(new Integer(leftHandColumn).intValue());
\r
1206 } catch (Exception ex)
\r
1209 .println("Couldn't parse integer arguments (leftHandColumn='"
\r
1210 + leftHandColumn + "')");
\r
1211 ex.printStackTrace();
\r
1218 // //////////////////////////////////////////////
\r
1219 // //////////////////////////////////////////////
\r
1221 public static int lastFrameX = 200;
\r
1223 public static int lastFrameY = 200;
\r
1225 boolean fileFound = true;
\r
1227 String file = "No file";
\r
1229 Button launcher = new Button("Start Jalview");
\r
1232 * The currentAlignFrame is static, it will change if and when the user
\r
1233 * selects a new window. Note that it will *never* point back to the embedded
\r
1234 * AlignFrame if the applet is started as embedded on the page and then
\r
1235 * afterwards a new view is created.
\r
1237 public AlignFrame currentAlignFrame = null;
\r
1240 * This is the first frame to be displayed, and does not change. API calls
\r
1241 * will default to this instance if currentAlignFrame is null.
\r
1243 AlignFrame initialAlignFrame = null;
\r
1245 boolean embedded = false;
\r
1247 private boolean checkForJmol = true;
\r
1249 private boolean checkedForJmol = false; // ensure we don't check for jmol
\r
1251 // every time the app is re-inited
\r
1253 public boolean jmolAvailable = false;
\r
1255 private boolean alignPdbStructures = false;
\r
1258 * use an external structure viewer exclusively (no jmols or MCViews will be
\r
1259 * opened by JalviewLite itself)
\r
1261 public boolean useXtrnalSviewer = false;
\r
1263 public static boolean debug = false;
\r
1265 static String builddate = null, version = null;
\r
1267 private static void initBuildDetails()
\r
1269 if (builddate == null)
\r
1271 builddate = "unknown";
\r
1273 java.net.URL url = JalviewLite.class
\r
1274 .getResource("/.build_properties");
\r
1279 BufferedReader reader = new BufferedReader(new InputStreamReader(
\r
1280 url.openStream()));
\r
1282 while ((line = reader.readLine()) != null)
\r
1284 if (line.indexOf("VERSION") > -1)
\r
1286 version = line.substring(line.indexOf("=") + 1);
\r
1288 if (line.indexOf("BUILD_DATE") > -1)
\r
1290 builddate = line.substring(line.indexOf("=") + 1);
\r
1293 } catch (Exception ex)
\r
1295 ex.printStackTrace();
\r
1301 public static String getBuildDate()
\r
1303 initBuildDetails();
\r
1307 public static String getVersion()
\r
1309 initBuildDetails();
\r
1313 // public JSObject scriptObject = null;
\r
1316 * init method for Jalview Applet
\r
1318 public void init()
\r
1320 // remove any handlers that might be hanging around from an earlier instance
\r
1325 System.err.println("Applet context is '"
\r
1326 + getAppletContext().getClass().toString() + "'");
\r
1328 JSObject scriptObject = JSObject.getWindow(this);
\r
1329 if (debug && scriptObject != null)
\r
1331 System.err.println("Applet has Javascript callback support.");
\r
1334 } catch (Exception ex)
\r
1337 .println("Warning: No JalviewLite javascript callbacks available.");
\r
1340 ex.printStackTrace();
\r
1344 * turn on extra applet debugging
\r
1346 String dbg = getParameter("debug");
\r
1349 debug = dbg.toLowerCase().equals("true");
\r
1354 System.err.println("JalviewLite Version " + getVersion());
\r
1355 System.err.println("Build Date : " + getBuildDate());
\r
1358 String externalsviewer = getParameter("externalstructureviewer");
\r
1359 if (externalsviewer != null)
\r
1361 useXtrnalSviewer = externalsviewer.trim().toLowerCase()
\r
1365 * if true disable the check for jmol
\r
1367 String chkforJmol = getParameter("nojmol");
\r
1368 if (chkforJmol != null)
\r
1370 checkForJmol = !chkforJmol.equals("true");
\r
1373 * get the separator parameter if present
\r
1375 String sep = getParameter("separator");
\r
1378 if (sep.length() > 0)
\r
1383 System.err.println("Separator set to '" + separator + "'");
\r
1389 "Invalid separator parameter - must be non-zero length");
\r
1395 String param = getParameter("RGB");
\r
1397 if (param != null)
\r
1401 r = Integer.parseInt(param.substring(0, 2), 16);
\r
1402 g = Integer.parseInt(param.substring(2, 4), 16);
\r
1403 b = Integer.parseInt(param.substring(4, 6), 16);
\r
1404 } catch (Exception ex)
\r
1411 param = getParameter("label");
\r
1412 if (param != null)
\r
1414 launcher.setLabel(param);
\r
1417 setBackground(new Color(r, g, b));
\r
1419 file = getParameter("file");
\r
1423 // Maybe the sequences are added as parameters
\r
1424 StringBuffer data = new StringBuffer("PASTE");
\r
1426 while ((file = getParameter("sequence" + i)) != null)
\r
1428 data.append(file.toString() + "\n");
\r
1431 if (data.length() > 5)
\r
1433 file = data.toString();
\r
1437 final JalviewLite jvapplet = this;
\r
1438 if (getParameter("embedded") != null
\r
1439 && getParameter("embedded").equalsIgnoreCase("true"))
\r
1441 // Launch as embedded applet in page
\r
1443 LoadingThread loader = new LoadingThread(file, jvapplet);
\r
1446 else if (file != null)
\r
1448 if (getParameter("showbutton") == null
\r
1449 || !getParameter("showbutton").equalsIgnoreCase("false"))
\r
1451 // Add the JalviewLite 'Button' to the page
\r
1453 launcher.addActionListener(new java.awt.event.ActionListener()
\r
1455 public void actionPerformed(ActionEvent e)
\r
1457 LoadingThread loader = new LoadingThread(file, jvapplet);
\r
1464 // Open jalviewLite immediately.
\r
1465 LoadingThread loader = new LoadingThread(file, jvapplet);
\r
1471 // jalview initialisation with no alignment. loadAlignment() method can
\r
1472 // still be called to open new alignments.
\r
1474 fileFound = false;
\r
1475 // callInitCallback();
\r
1479 private void callInitCallback()
\r
1481 String initjscallback = getParameter("oninit");
\r
1482 if (initjscallback == null)
\r
1486 initjscallback = initjscallback.trim();
\r
1487 if (initjscallback.length() > 0)
\r
1489 JSObject scriptObject = null;
\r
1492 scriptObject = JSObject.getWindow(this);
\r
1493 } catch (Exception ex)
\r
1497 if (scriptObject != null)
\r
1501 // do onInit with the JS executor thread
\r
1502 new JSFunctionExec(this).executeJavascriptFunction(true,
\r
1503 initjscallback, null, "Calling oninit callback '"
\r
1504 + initjscallback + "'.");
\r
1505 } catch (Exception e)
\r
1507 System.err.println("Exception when executing _oninit callback '"
\r
1508 + initjscallback + "'.");
\r
1509 e.printStackTrace();
\r
1514 System.err.println("Not executing _oninit callback '"
\r
1515 + initjscallback + "' - no scripting allowed.");
\r
1521 * Initialises and displays a new java.awt.Frame
\r
1524 * java.awt.Frame to be displayed
\r
1526 * title of new frame
\r
1528 * width if new frame
\r
1530 * height of new frame
\r
1532 public static void addFrame(final Frame frame, String title, int width,
\r
1535 frame.setLocation(lastFrameX, lastFrameY);
\r
1538 frame.setSize(width, height);
\r
1539 frame.setTitle(title);
\r
1540 frame.addWindowListener(new WindowAdapter()
\r
1542 public void windowClosing(WindowEvent e)
\r
1544 if (frame instanceof AlignFrame)
\r
1546 AlignViewport vp = ((AlignFrame) frame).viewport;
\r
1547 ((AlignFrame) frame).closeMenuItem_actionPerformed();
\r
1548 if (vp.applet.currentAlignFrame == frame)
\r
1550 vp.applet.currentAlignFrame = null;
\r
1558 if (frame instanceof EmbmenuFrame)
\r
1560 ((EmbmenuFrame) frame).destroyMenus();
\r
1562 frame.setMenuBar(null);
\r
1566 public void windowActivated(WindowEvent e)
\r
1568 if (frame instanceof AlignFrame)
\r
1570 ((AlignFrame) frame).viewport.applet.currentAlignFrame = (AlignFrame) frame;
\r
1573 System.err.println("Activated window " + frame);
\r
1577 super.windowActivated(e);
\r
1580 * Probably not necessary to do this - see TODO above. (non-Javadoc)
\r
1583 * java.awt.event.WindowAdapter#windowDeactivated(java.awt.event.WindowEvent
\r
1586 * public void windowDeactivated(WindowEvent e) { if (currentAlignFrame ==
\r
1587 * frame) { currentAlignFrame = null; if (debug) {
\r
1588 * System.err.println("Deactivated window "+frame); } }
\r
1589 * super.windowDeactivated(e); }
\r
1592 frame.setVisible(true);
\r
1596 * This paints the background surrounding the "Launch Jalview button" <br>
\r
1598 * If file given in parameter not found, displays error message
\r
1601 * graphics context
\r
1603 public void paint(Graphics g)
\r
1607 g.setColor(new Color(200, 200, 200));
\r
1608 g.setColor(Color.cyan);
\r
1609 g.fillRect(0, 0, getSize().width, getSize().height);
\r
1610 g.setColor(Color.red);
\r
1611 g.drawString("Jalview can't open file", 5, 15);
\r
1612 g.drawString("\"" + file + "\"", 5, 30);
\r
1614 else if (embedded)
\r
1616 g.setColor(Color.black);
\r
1617 g.setFont(new Font("Arial", Font.BOLD, 24));
\r
1618 g.drawString("Jalview Applet", 50, getSize().height / 2 - 30);
\r
1619 g.drawString("Loading Data...", 50, getSize().height / 2);
\r
1624 * get all components associated with the applet of the given type
\r
1629 public Vector getAppletWindow(Class class1)
\r
1631 Vector wnds = new Vector();
\r
1632 Component[] cmp = getComponents();
\r
1635 for (int i = 0; i < cmp.length; i++)
\r
1637 if (class1.isAssignableFrom(cmp[i].getClass()))
\r
1639 wnds.addElement(cmp);
\r
1646 class LoadJmolThread extends Thread
\r
1648 private boolean running = false;
\r
1652 if (running || checkedForJmol)
\r
1661 if (!System.getProperty("java.version").startsWith("1.1"))
\r
1663 Class.forName("org.jmol.adapter.smarter.SmarterJmolAdapter");
\r
1664 jmolAvailable = true;
\r
1666 if (!jmolAvailable)
\r
1669 .println("Jmol not available - Using MCview for structures");
\r
1671 } catch (java.lang.ClassNotFoundException ex)
\r
1677 jmolAvailable = false;
\r
1681 .println("Skipping Jmol check. Will use MCView (probably)");
\r
1684 checkedForJmol = true;
\r
1688 public boolean notFinished()
\r
1690 return running || !checkedForJmol;
\r
1694 class LoadingThread extends Thread
\r
1697 * State variable: File source
\r
1702 * State variable: protocol for access to file source
\r
1707 * State variable: format of file source
\r
1713 JalviewLite applet;
\r
1715 private void dbgMsg(String msg)
\r
1719 System.err.println(msg);
\r
1724 * update the protocol state variable for accessing the datasource located
\r
1728 * @return possibly updated datasource string
\r
1730 public String setProtocolState(String file)
\r
1732 if (file.startsWith("PASTE"))
\r
1734 file = file.substring(5);
\r
1735 protocol = AppletFormatAdapter.PASTE;
\r
1737 else if (inArchive(file))
\r
1739 protocol = AppletFormatAdapter.CLASSLOADER;
\r
1743 file = addProtocol(file);
\r
1744 protocol = AppletFormatAdapter.URL;
\r
1746 dbgMsg("Protocol identified as '" + protocol + "'");
\r
1750 public LoadingThread(String _file, JalviewLite _applet)
\r
1752 this._file = _file;
\r
1758 LoadJmolThread jmolchecker = new LoadJmolThread();
\r
1759 jmolchecker.start();
\r
1760 while (jmolchecker.notFinished())
\r
1762 // wait around until the Jmol check is complete.
\r
1766 } catch (Exception e)
\r
1772 // applet.callInitCallback();
\r
1775 private void startLoading()
\r
1777 AlignFrame newAlignFrame;
\r
1778 dbgMsg("Loading thread started with:\n>>file\n" + _file + ">>endfile");
\r
1779 file = setProtocolState(_file);
\r
1781 format = new jalview.io.IdentifyFile().Identify(file, protocol);
\r
1782 dbgMsg("File identified as '" + format + "'");
\r
1783 dbgMsg("Loading started.");
\r
1784 Alignment al = null;
\r
1787 al = new AppletFormatAdapter().readFile(file, protocol, format);
\r
1788 } catch (java.io.IOException ex)
\r
1790 dbgMsg("File load exception.");
\r
1791 ex.printStackTrace();
\r
1796 FileParse fp = new FileParse(file, protocol);
\r
1798 dbgMsg(">>>Dumping contents of '" + file + "' " + "("
\r
1799 + protocol + ")");
\r
1800 while ((ln = fp.nextLine()) != null)
\r
1804 dbgMsg(">>>Dump finished.");
\r
1805 } catch (Exception e)
\r
1808 .println("Exception when trying to dump the content of the file parameter.");
\r
1809 e.printStackTrace();
\r
1813 if ((al != null) && (al.getHeight() > 0))
\r
1815 dbgMsg("Successfully loaded file.");
\r
1816 newAlignFrame = new AlignFrame(al, applet, file, embedded);
\r
1817 if (initialAlignFrame == null)
\r
1819 initialAlignFrame = newAlignFrame;
\r
1821 // update the focus.
\r
1822 currentAlignFrame = newAlignFrame;
\r
1824 if (protocol == jalview.io.AppletFormatAdapter.PASTE)
\r
1826 newAlignFrame.setTitle("Sequences from "
\r
1827 + applet.getDocumentBase());
\r
1830 newAlignFrame.statusBar.setText("Successfully loaded file " + file);
\r
1832 String treeFile = applet.getParameter("tree");
\r
1833 if (treeFile == null)
\r
1835 treeFile = applet.getParameter("treeFile");
\r
1838 if (treeFile != null)
\r
1842 treeFile = setProtocolState(treeFile);
\r
1844 * if (inArchive(treeFile)) { protocol =
\r
1845 * AppletFormatAdapter.CLASSLOADER; } else { protocol =
\r
1846 * AppletFormatAdapter.URL; treeFile = addProtocol(treeFile); }
\r
1848 jalview.io.NewickFile fin = new jalview.io.NewickFile(treeFile,
\r
1853 if (fin.getTree() != null)
\r
1855 newAlignFrame.loadTree(fin, treeFile);
\r
1856 dbgMsg("Successfuly imported tree.");
\r
1860 dbgMsg("Tree parameter did not resolve to a valid tree.");
\r
1862 } catch (Exception ex)
\r
1864 ex.printStackTrace();
\r
1868 // ///////////////////////////
\r
1869 // modify display of features
\r
1870 // we do this before any features have been loaded, ensuring any hidden groups are hidden when features first displayed
\r
1872 // hide specific groups
\r
1874 String param = applet.getParameter("hidefeaturegroups");
\r
1875 if (param != null)
\r
1877 newAlignFrame.setFeatureGroupState(separatorListToArray(param), false);
\r
1878 // applet.setFeatureGroupStateOn(newAlignFrame, param, false);
\r
1880 // show specific groups
\r
1881 param = applet.getParameter("showfeaturegroups");
\r
1882 if (param != null)
\r
1884 newAlignFrame.setFeatureGroupState(separatorListToArray(param), true);
\r
1885 // applet.setFeatureGroupStateOn(newAlignFrame, param, true);
\r
1887 // and now load features
\r
1888 param = applet.getParameter("features");
\r
1889 if (param != null)
\r
1891 param = setProtocolState(param);
\r
1893 newAlignFrame.parseFeaturesFile(param, protocol);
\r
1896 param = applet.getParameter("showFeatureSettings");
\r
1897 if (param != null && param.equalsIgnoreCase("true"))
\r
1899 newAlignFrame.viewport.showSequenceFeatures(true);
\r
1900 new FeatureSettings(newAlignFrame.alignPanel);
\r
1903 param = applet.getParameter("annotations");
\r
1904 if (param != null)
\r
1906 param = setProtocolState(param);
\r
1908 if (new AnnotationFile().readAnnotationFile(
\r
1909 newAlignFrame.viewport.getAlignment(), param, protocol))
\r
1911 newAlignFrame.alignPanel.fontChanged();
\r
1912 newAlignFrame.alignPanel.setScrollValues(0, 0);
\r
1917 .println("Annotations were not added from annotation file '"
\r
1923 param = applet.getParameter("jnetfile");
\r
1924 if (param != null)
\r
1928 param = setProtocolState(param);
\r
1929 jalview.io.JPredFile predictions = new jalview.io.JPredFile(
\r
1931 JnetAnnotationMaker.add_annotation(predictions,
\r
1932 newAlignFrame.viewport.getAlignment(), 0, false); // false==do
\r
1940 newAlignFrame.alignPanel.fontChanged();
\r
1941 newAlignFrame.alignPanel.setScrollValues(0, 0);
\r
1942 } catch (Exception ex)
\r
1944 ex.printStackTrace();
\r
1948 * <param name="alignpdbfiles" value="false/true"/> Undocumented for 2.6
\r
1949 * - related to JAL-434
\r
1951 applet.setAlignPdbStructures(getDefaultParameter("alignpdbfiles",
\r
1954 * <param name="PDBfile" value="1gaq.txt PDB|1GAQ|1GAQ|A PDB|1GAQ|1GAQ|B
\r
1955 * PDB|1GAQ|1GAQ|C">
\r
1957 * <param name="PDBfile2" value="1gaq.txt A=SEQA B=SEQB C=SEQB">
\r
1959 * <param name="PDBfile3" value="1q0o Q45135_9MICO">
\r
1962 int pdbFileCount = 0;
\r
1963 // Accumulate pdbs here if they are heading for the same view (if
\r
1964 // alignPdbStructures is true)
\r
1965 Vector pdbs = new Vector();
\r
1966 // create a lazy matcher if we're asked to
\r
1967 jalview.analysis.SequenceIdMatcher matcher = (applet
\r
1968 .getDefaultParameter("relaxedidmatch", false)) ? new jalview.analysis.SequenceIdMatcher(
\r
1969 newAlignFrame.getAlignViewport().getAlignment()
\r
1970 .getSequencesArray()) : null;
\r
1974 if (pdbFileCount > 0)
\r
1976 param = applet.getParameter("PDBFILE" + pdbFileCount);
\r
1980 param = applet.getParameter("PDBFILE");
\r
1983 if (param != null)
\r
1985 PDBEntry pdb = new PDBEntry();
\r
1988 SequenceI[] seqs = null;
\r
1989 String[] chains = null;
\r
1991 StringTokenizer st = new StringTokenizer(param, " ");
\r
1993 if (st.countTokens() < 2)
\r
1995 String sequence = applet.getParameter("PDBSEQ");
\r
1996 if (sequence != null)
\r
1997 seqs = new SequenceI[]
\r
1998 { matcher == null ? (Sequence) newAlignFrame
\r
1999 .getAlignViewport().getAlignment()
\r
2000 .findName(sequence) : matcher.findIdMatch(sequence) };
\r
2005 param = st.nextToken();
\r
2006 Vector tmp = new Vector();
\r
2007 Vector tmp2 = new Vector();
\r
2009 while (st.hasMoreTokens())
\r
2011 seqstring = st.nextToken();
\r
2012 StringTokenizer st2 = new StringTokenizer(seqstring, "=");
\r
2013 if (st2.countTokens() > 1)
\r
2015 // This is the chain
\r
2016 tmp2.addElement(st2.nextToken());
\r
2017 seqstring = st2.nextToken();
\r
2019 tmp.addElement(matcher == null ? (Sequence) newAlignFrame
\r
2020 .getAlignViewport().getAlignment()
\r
2021 .findName(seqstring) : matcher
\r
2022 .findIdMatch(seqstring));
\r
2025 seqs = new SequenceI[tmp.size()];
\r
2026 tmp.copyInto(seqs);
\r
2027 if (tmp2.size() == tmp.size())
\r
2029 chains = new String[tmp2.size()];
\r
2030 tmp2.copyInto(chains);
\r
2033 param = setProtocolState(param);
\r
2035 if (// !jmolAvailable
\r
2037 protocol == AppletFormatAdapter.CLASSLOADER
\r
2038 && !useXtrnalSviewer)
\r
2040 // Re: JAL-357 : the bug isn't a problem if we are using an
\r
2041 // external viewer!
\r
2042 // TODO: verify this Re:
\r
2043 // https://mantis.lifesci.dundee.ac.uk/view.php?id=36605
\r
2044 // This exception preserves the current behaviour where, even if
\r
2045 // the local pdb file was identified in the class loader
\r
2046 protocol = AppletFormatAdapter.URL; // this is probably NOT
\r
2048 param = addProtocol(param); //
\r
2051 pdb.setFile(param);
\r
2055 for (int i = 0; i < seqs.length; i++)
\r
2057 if (seqs[i] != null)
\r
2059 ((Sequence) seqs[i]).addPDBId(pdb);
\r
2063 if (JalviewLite.debug)
\r
2065 // this may not really be a problem but we give a warning
\r
2068 .println("Warning: Possible input parsing error: Null sequence for attachment of PDB (sequence "
\r
2074 if (!alignPdbStructures)
\r
2076 newAlignFrame.newStructureView(applet, pdb, seqs, chains,
\r
2081 pdbs.addElement(new Object[]
\r
2082 { pdb, seqs, chains, new String(protocol) });
\r
2088 } while (param != null || pdbFileCount < 10);
\r
2089 if (pdbs.size() > 0)
\r
2091 SequenceI[][] seqs = new SequenceI[pdbs.size()][];
\r
2092 PDBEntry[] pdb = new PDBEntry[pdbs.size()];
\r
2093 String[][] chains = new String[pdbs.size()][];
\r
2094 String[] protocols = new String[pdbs.size()];
\r
2095 for (int pdbsi = 0, pdbsiSize = pdbs.size(); pdbsi < pdbsiSize; pdbsi++)
\r
2097 Object[] o = (Object[]) pdbs.elementAt(pdbsi);
\r
2098 pdb[pdbsi] = (PDBEntry) o[0];
\r
2099 seqs[pdbsi] = (SequenceI[]) o[1];
\r
2100 chains[pdbsi] = (String[]) o[2];
\r
2101 protocols[pdbsi] = (String) o[3];
\r
2103 newAlignFrame.alignedStructureView(applet, pdb, seqs, chains,
\r
2110 fileFound = false;
\r
2111 applet.remove(launcher);
\r
2114 callInitCallback();
\r
2118 * Discovers whether the given file is in the Applet Archive
\r
2124 boolean inArchive(String file)
\r
2126 // This might throw a security exception in certain browsers
\r
2127 // Netscape Communicator for instance.
\r
2130 boolean rtn = (getClass().getResourceAsStream("/" + file) != null);
\r
2133 System.err.println("Resource '" + file + "' was "
\r
2134 + (rtn ? "" : "not") + " located by classloader.");
\r
2137 } catch (Exception ex)
\r
2139 System.out.println("Exception checking resources: " + file + " "
\r
2145 String addProtocol(String file)
\r
2147 if (file.indexOf("://") == -1)
\r
2149 String fl = applet.resolveUrlForLocalOrAbsolute(file,
\r
2150 getDocumentBase());
\r
2153 if (new java.net.URL(fl).openStream() != null)
\r
2157 System.err.println("Prepended document base for resource: '"
\r
2162 } catch (Exception x)
\r
2166 fl = applet.resolveUrlForLocalOrAbsolute(file, getCodeBase());
\r
2169 if (new java.net.URL(fl).openStream() != null)
\r
2173 System.err.println("Prepended codebase for resource: '"
\r
2178 } catch (Exception x)
\r
2190 * @return the default alignFrame acted on by the public applet methods. May
\r
2191 * return null with an error message on System.err indicating the
\r
2194 public AlignFrame getDefaultTargetFrame()
\r
2196 if (currentAlignFrame != null)
\r
2198 return currentAlignFrame;
\r
2200 if (initialAlignFrame != null)
\r
2202 return initialAlignFrame;
\r
2205 .println("Implementation error: Jalview Applet API cannot work out which AlignFrame to use.");
\r
2210 * separator used for separatorList
\r
2212 protected String separator = "" + ((char) 0x00AC); // the default used to be
\r
2213 // '|' but many sequence
\r
2214 // IDS include pipes.
\r
2217 * set to enable the URL based javascript execution mechanism
\r
2219 public boolean jsfallbackEnabled = false;
\r
2222 * parse the string into a list
\r
2225 * @return elements separated by separator
\r
2227 public String[] separatorListToArray(String list)
\r
2229 return separatorListToArray(list, separator);
\r
2233 * parse the string into a list
\r
2236 * @param separator
\r
2237 * @return elements separated by separator
\r
2239 public String[] separatorListToArray(String list, String separator)
\r
2241 // note separator local variable intentionally masks object field
\r
2242 int seplen = separator.length();
\r
2243 if (list == null || list.equals("") || list.equals(separator))
\r
2245 java.util.Vector jv = new Vector();
\r
2247 while ((pos = list.indexOf(separator, cp)) > cp)
\r
2249 jv.addElement(list.substring(cp, pos));
\r
2250 cp = pos + seplen;
\r
2252 if (cp < list.length())
\r
2254 String c = list.substring(cp);
\r
2255 if (!c.equals(separator))
\r
2260 if (jv.size() > 0)
\r
2262 String[] v = new String[jv.size()];
\r
2263 for (int i = 0; i < v.length; i++)
\r
2265 v[i] = (String) jv.elementAt(i);
\r
2267 jv.removeAllElements();
\r
2270 System.err.println("Array from '" + separator
\r
2271 + "' separated List:\n" + v.length);
\r
2272 for (int i = 0; i < v.length; i++)
\r
2274 System.err.println("item " + i + " '" + v[i] + "'");
\r
2281 System.err.println("Empty Array from '" + separator
\r
2282 + "' separated List");
\r
2288 * concatenate the list with separator
\r
2291 * @return concatenated string
\r
2293 public String arrayToSeparatorList(String[] list)
\r
2295 return arrayToSeparatorList(list, separator);
\r
2299 * concatenate the list with separator
\r
2302 * @param separator
\r
2303 * @return concatenated string
\r
2305 public String arrayToSeparatorList(String[] list, String separator)
\r
2307 StringBuffer v = new StringBuffer();
\r
2308 if (list != null && list.length > 0)
\r
2310 for (int i = 0, iSize = list.length; i < iSize; i++)
\r
2312 if (list[i] != null)
\r
2316 v.append(separator);
\r
2318 v.append(list[i]);
\r
2323 System.err.println("Returning '" + separator
\r
2324 + "' separated List:\n");
\r
2325 System.err.println(v);
\r
2327 return v.toString();
\r
2331 System.err.println("Returning empty '" + separator
\r
2332 + "' separated List\n");
\r
2334 return "" + separator;
\r
2340 * @see jalview.bin.JalviewLiteJsApi#getFeatureGroups()
\r
2342 public String getFeatureGroups()
\r
2344 String lst = arrayToSeparatorList(getDefaultTargetFrame()
\r
2345 .getFeatureGroups());
\r
2353 * jalview.bin.JalviewLiteJsApi#getFeatureGroupsOn(jalview.appletgui.AlignFrame
\r
2356 public String getFeatureGroupsOn(AlignFrame alf)
\r
2358 String lst = arrayToSeparatorList(alf.getFeatureGroups());
\r
2365 * @see jalview.bin.JalviewLiteJsApi#getFeatureGroupsOfState(boolean)
\r
2367 public String getFeatureGroupsOfState(boolean visible)
\r
2369 return arrayToSeparatorList(getDefaultTargetFrame()
\r
2370 .getFeatureGroupsOfState(visible));
\r
2377 * jalview.bin.JalviewLiteJsApi#getFeatureGroupsOfStateOn(jalview.appletgui
\r
2378 * .AlignFrame, boolean)
\r
2380 public String getFeatureGroupsOfStateOn(AlignFrame alf, boolean visible)
\r
2382 return arrayToSeparatorList(alf.getFeatureGroupsOfState(visible));
\r
2388 * @see jalview.bin.JalviewLiteJsApi#setFeatureGroupStateOn(jalview.appletgui.
\r
2389 * AlignFrame, java.lang.String, boolean)
\r
2391 public void setFeatureGroupStateOn(final AlignFrame alf,
\r
2392 final String groups, boolean state)
\r
2394 final boolean st = state;// !(state==null || state.equals("") ||
\r
2395 // state.toLowerCase().equals("false"));
\r
2396 java.awt.EventQueue.invokeLater(new Runnable()
\r
2401 alf.setFeatureGroupState(separatorListToArray(groups), st);
\r
2409 * @see jalview.bin.JalviewLiteJsApi#setFeatureGroupState(java.lang.String,
\r
2412 public void setFeatureGroupState(String groups, boolean state)
\r
2414 setFeatureGroupStateOn(getDefaultTargetFrame(), groups, state);
\r
2420 * @see jalview.bin.JalviewLiteJsApi#getSeparator()
\r
2422 public String getSeparator()
\r
2430 * @see jalview.bin.JalviewLiteJsApi#setSeparator(java.lang.String)
\r
2432 public void setSeparator(String separator)
\r
2434 if (separator == null || separator.length() < 1)
\r
2436 // reset to default
\r
2437 separator = "" + ((char) 0x00AC);
\r
2439 this.separator = separator;
\r
2442 System.err.println("Default Separator now: '" + separator + "'");
\r
2447 * get boolean value of applet parameter 'name' and return default if
\r
2448 * parameter is not set
\r
2451 * name of paremeter
\r
2453 * the value to return otherwise
\r
2454 * @return true or false
\r
2456 public boolean getDefaultParameter(String name, boolean def)
\r
2459 if ((stn = getParameter(name)) == null)
\r
2463 if (stn.toLowerCase().equals("true"))
\r
2473 * @see jalview.bin.JalviewLiteJsApi#addPdbFile(jalview.appletgui.AlignFrame,
\r
2474 * java.lang.String, java.lang.String, java.lang.String)
\r
2476 public boolean addPdbFile(AlignFrame alFrame, String sequenceId,
\r
2477 String pdbEntryString, String pdbFile)
\r
2479 return alFrame.addPdbFile(sequenceId, pdbEntryString, pdbFile);
\r
2482 protected void setAlignPdbStructures(boolean alignPdbStructures)
\r
2484 this.alignPdbStructures = alignPdbStructures;
\r
2487 public boolean isAlignPdbStructures()
\r
2489 return alignPdbStructures;
\r
2492 public void start()
\r
2494 // callInitCallback();
\r
2497 private Hashtable<String, long[]> jshashes = new Hashtable<String, long[]>();
\r
2499 private Hashtable<String, Hashtable<String, String[]>> jsmessages = new Hashtable<String, Hashtable<String, String[]>>();
\r
2501 public void setJsMessageSet(String messageclass, String viewId,
\r
2502 String[] colcommands)
\r
2504 Hashtable<String, String[]> msgset = jsmessages.get(messageclass);
\r
2505 if (msgset == null)
\r
2507 msgset = new Hashtable<String, String[]>();
\r
2508 jsmessages.put(messageclass, msgset);
\r
2510 msgset.put(viewId, colcommands);
\r
2511 long[] l = new long[colcommands.length];
\r
2512 for (int i = 0; i < colcommands.length; i++)
\r
2514 l[i] = colcommands[i].hashCode();
\r
2516 jshashes.put(messageclass + "|" + viewId, l);
\r
2522 * @see jalview.bin.JalviewLiteJsApi#getJsMessage(java.lang.String,
\r
2523 * java.lang.String)
\r
2525 public String getJsMessage(String messageclass, String viewId)
\r
2527 Hashtable<String, String[]> msgset = jsmessages.get(messageclass);
\r
2528 if (msgset != null)
\r
2530 String[] msgs = msgset.get(viewId);
\r
2533 for (int i = 0; i < msgs.length; i++)
\r
2535 if (msgs[i] != null)
\r
2537 String m = msgs[i];
\r
2547 public boolean isJsMessageSetChanged(String string, String string2,
\r
2548 String[] colcommands)
\r
2550 long[] l = jshashes.get(string + "|" + string2);
\r
2551 if (l == null && colcommands != null)
\r
2555 for (int i = 0; i < colcommands.length; i++)
\r
2557 if (l[i] != colcommands[i].hashCode())
\r
2565 private Vector jsExecQueue = new Vector();
\r
2567 public Vector getJsExecQueue()
\r
2569 return jsExecQueue;
\r
2572 public void setExecutor(JSFunctionExec jsFunctionExec2)
\r
2574 jsFunctionExec = jsFunctionExec2;
\r
2578 * return the given colour value parameter or the given default if parameter
\r
2582 * @param defcolour
\r
2585 public Color getDefaultColourParameter(String colparam, Color defcolour)
\r
2587 String colprop = getParameter(colparam);
\r
2588 if (colprop == null || colprop.trim().length() == 0)
\r
2592 Color col = jalview.schemes.ColourSchemeProperty
\r
2593 .getAWTColorFromName(colprop);
\r
2598 col = new jalview.schemes.UserColourScheme(colprop).findColour('A');
\r
2599 } catch (Exception ex)
\r
2601 System.err.println("Couldn't parse '" + colprop
\r
2602 + "' as a colour for " + colparam);
\r
2606 return (col == null) ? defcolour : col;
\r
2610 public void openJalviewHelpUrl()
\r
2612 String helpUrl = getParameter("jalviewhelpurl");
\r
2613 if (helpUrl == null || helpUrl.trim().length() < 5)
\r
2615 helpUrl = "http://www.jalview.org/help.html";
\r
2617 showURL(helpUrl, "HELP");
\r
2621 * form a complete URL given a path to a resource and a reference location on
\r
2625 * - an absolute path on the same server as localref or a document
\r
2626 * located relative to localref
\r
2628 * - a URL on the same server as url
\r
2629 * @return a complete URL for the resource located by url
\r
2631 private String resolveUrlForLocalOrAbsolute(String url, URL localref)
\r
2633 String codebase = localref.toString();
\r
2634 if (url.indexOf("/") == 0)
\r
2636 url = codebase.substring(0, codebase.length()
\r
2637 - localref.getFile().length())
\r
2642 url = localref + url;
\r
2648 * open a URL in the browser - resolving it according to relative refs and
\r
2649 * coping with javascript: protocol if necessary.
\r
2654 public void showURL(String url, String target)
\r
2658 if (url.indexOf(":") == -1)
\r
2660 // TODO: verify (Bas Vroling bug) prepend codebase or server URL to
\r
2662 // Should really use docbase, not codebase.
\r
2664 url = resolveUrlForLocalOrAbsolute(
\r
2666 prepend = getDefaultParameter("resolvetocodebase", false) ? getDocumentBase()
\r
2671 .println("Show url (prepended "
\r
2673 + " - toggle resolvetocodebase if code/docbase resolution is wrong): "
\r
2681 System.err.println("Show url: " + url);
\r
2684 if (url.indexOf("javascript:") == 0)
\r
2686 // no target for the javascript context
\r
2687 getAppletContext().showDocument(new java.net.URL(url));
\r
2691 getAppletContext().showDocument(new java.net.URL(url), target);
\r
2693 } catch (Exception ex)
\r
2695 ex.printStackTrace();
\r
2700 * bind structures in a viewer to any matching sequences in an alignFrame (use
\r
2701 * sequenceIds to limit scope of search to specific sequences)
\r
2705 * @param sequenceIds
\r
2706 * @return TODO: consider making an exception structure for indicating when
\r
2707 * binding fails public SequenceStructureBinding
\r
2708 * addStructureViewInstance( AlignFrame alFrame, Object viewer, String
\r
2711 * if (sequenceIds != null && sequenceIds.length() > 0) { return
\r
2712 * alFrame.addStructureViewInstance(viewer,
\r
2713 * separatorListToArray(sequenceIds)); } else { return
\r
2714 * alFrame.addStructureViewInstance(viewer, null); } // return null; }
\r