2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.bin;
\r
21 import jalview.appletgui.AlignFrame;
\r
23 import jalview.datamodel.*;
\r
25 import jalview.io.*;
\r
27 import java.applet.*;
\r
30 import java.awt.event.*;
\r
34 * Jalview Applet. Runs in Java 1.18 runtime
\r
37 * @version $Revision$
\r
39 public class JalviewLite extends Applet
\r
41 static int lastFrameX = 200;
\r
42 static int lastFrameY = 200;
\r
43 boolean fileFound = true;
\r
44 String file = "No file";
\r
45 Button launcher = new Button("Start Jalview");
\r
47 //The currentAlignFrame is static, it will change
\r
48 //if and when the user selects a new window
\r
49 static AlignFrame currentAlignFrame;
\r
51 //This is the first frame to be displayed, and does not change
\r
52 AlignFrame initialAlignFrame;
\r
54 boolean embedded = false;
\r
58 * init method for Jalview Applet
\r
65 String param = getParameter("RGB");
\r
71 r = Integer.parseInt(param.substring(0, 2), 16);
\r
72 g = Integer.parseInt(param.substring(2, 4), 16);
\r
73 b = Integer.parseInt(param.substring(4, 6), 16);
\r
75 catch (Exception ex)
\r
83 param = getParameter("label");
\r
85 launcher.setLabel(param);
\r
87 this.setBackground(new Color(r, g, b));
\r
89 file = getParameter("file");
\r
91 final JalviewLite applet = this;
\r
92 if(getParameter("embedded")!=null
\r
93 && getParameter("embedded").equalsIgnoreCase("true"))
\r
96 LoadingThread loader = new LoadingThread(file, applet);
\r
99 else if (file != null)
\r
103 launcher.addActionListener(new java.awt.event.ActionListener()
\r
105 public void actionPerformed(ActionEvent e)
\r
107 LoadingThread loader = new LoadingThread(file,
\r
121 public static void main(String [] args)
\r
125 System.out.println("\nUsage: java -jar jalviewApplet.jar fileName\n");
\r
129 String format = new jalview.io.IdentifyFile().Identify(args[0],AppletFormatAdapter.FILE);
\r
131 SequenceI[] sequences = null;
\r
133 sequences = new AppletFormatAdapter().readFile(args[0], AppletFormatAdapter.FILE, format);
\r
134 }catch(java.io.IOException ex)
\r
136 ex.printStackTrace();
\r
138 if ( (sequences != null) && (sequences.length > 0))
\r
140 AlignFrame af = new AlignFrame(new Alignment(sequences), null, args[0], false);
\r
141 af.statusBar.setText("Successfully loaded file " + args[0]);
\r
147 * Initialises and displays a new java.awt.Frame
\r
149 * @param frame java.awt.Frame to be displayed
\r
150 * @param title title of new frame
\r
151 * @param width width if new frame
\r
152 * @param height height of new frame
\r
154 public static void addFrame(final Frame frame, String title, int width,
\r
157 frame.setLocation(lastFrameX, lastFrameY);
\r
160 frame.setSize(width, height);
\r
161 frame.setTitle(title);
\r
162 frame.addWindowListener(new WindowAdapter()
\r
164 public void windowClosing(WindowEvent e)
\r
166 if(currentAlignFrame == frame)
\r
168 currentAlignFrame = null;
\r
172 frame.setMenuBar(null);
\r
175 public void windowActivated(WindowEvent e)
\r
177 if(frame instanceof AlignFrame)
\r
178 currentAlignFrame = (AlignFrame)frame;
\r
182 frame.setVisible(true);
\r
185 public String getSelectedSequences()
\r
187 StringBuffer result = new StringBuffer("");
\r
189 if(initialAlignFrame.viewport.getSelectionGroup()!=null)
\r
191 SequenceI[] seqs = initialAlignFrame.viewport.getSelectionGroup().
\r
192 getSequencesInOrder(
\r
193 initialAlignFrame.viewport.getAlignment());
\r
195 for (int i = 0; i < seqs.length; i++)
\r
196 result.append(seqs[i].getName() + "¬");
\r
199 return result.toString();
\r
202 public String getAlignment(String format)
\r
204 return getAlignment(format, "true");
\r
207 public String getAlignment(String format, String suffix)
\r
211 boolean seqlimits = suffix.equalsIgnoreCase("true");
\r
213 String reply = new AppletFormatAdapter().formatSequences(format,
\r
214 currentAlignFrame.viewport.getAlignment().getSequences(), seqlimits);
\r
217 catch (Exception ex)
\r
219 ex.printStackTrace();
\r
220 return "Error retrieving alignment in " + format + " format. ";
\r
225 * This paints the background surrounding the "Launch Jalview button"
\r
227 * <br>If file given in parameter not found, displays error message
\r
229 * @param g graphics context
\r
231 public void paint(Graphics g)
\r
235 g.setColor(new Color(200, 200, 200));
\r
236 g.setColor(Color.cyan);
\r
237 g.fillRect(0, 0, getSize().width, getSize().height);
\r
238 g.setColor(Color.red);
\r
239 g.drawString("Jalview can't open file", 5, 15);
\r
240 g.drawString("\"" + file + "\"", 5, 30);
\r
244 g.setColor(Color.black);
\r
245 g.setFont(new Font("Arial", Font.BOLD, 24));
\r
246 g.drawString("Jalview Applet", 50, this.size().height/2 -30);
\r
247 g.drawString("Loading Data...", 50, this.size().height/2);
\r
253 class LoadingThread extends Thread
\r
258 JalviewLite applet;
\r
260 public LoadingThread(String _file,
\r
261 JalviewLite _applet)
\r
264 if(inArchive(file))
\r
265 protocol = AppletFormatAdapter.CLASSLOADER;
\r
268 file = addProtocol(file);
\r
269 protocol = AppletFormatAdapter.URL;
\r
271 format = new jalview.io.IdentifyFile().Identify(file, protocol);
\r
277 SequenceI[] sequences = null;
\r
279 sequences = new AppletFormatAdapter().readFile(file, protocol,
\r
281 }catch(java.io.IOException ex)
\r
283 ex.printStackTrace();
\r
285 if ((sequences != null) && (sequences.length > 0))
\r
287 currentAlignFrame = new AlignFrame(new Alignment(sequences),
\r
293 initialAlignFrame = currentAlignFrame;
\r
295 currentAlignFrame.statusBar.setText("Successfully loaded file " + file);
\r
298 String treeFile = applet.getParameter("treeFile");
\r
299 if (treeFile != null)
\r
303 if(inArchive(treeFile))
\r
304 protocol = AppletFormatAdapter.CLASSLOADER;
\r
307 protocol = AppletFormatAdapter.URL;
\r
308 treeFile = addProtocol(treeFile);
\r
311 jalview.io.NewickFile fin = new jalview.io.NewickFile(treeFile, protocol);
\r
315 if (fin.getTree() != null)
\r
317 currentAlignFrame.loadTree(fin, treeFile);
\r
320 catch (Exception ex)
\r
322 ex.printStackTrace();
\r
326 String param = getParameter("features");
\r
329 if( !inArchive(param) )
\r
330 param = addProtocol( param );
\r
332 currentAlignFrame.parseFeaturesFile(param, protocol);
\r
335 param = getParameter("showFeatureSettings");
\r
336 if(param !=null && param.equalsIgnoreCase("true"))
\r
338 currentAlignFrame.featureSettings_actionPerformed();
\r
341 param = getParameter("annotations");
\r
344 if( !inArchive(param) )
\r
345 param = addProtocol( param );
\r
347 new AnnotationFile().readAnnotationFile(
\r
348 currentAlignFrame.viewport.getAlignment(),
\r
351 currentAlignFrame.alignPanel.fontChanged();
\r
352 currentAlignFrame.alignPanel.setScrollValues(0,0);
\r
356 param = getParameter("jnetfile");
\r
361 if (inArchive(param))
\r
362 protocol = AppletFormatAdapter.CLASSLOADER;
\r
365 protocol = AppletFormatAdapter.URL;
\r
366 param = addProtocol(param);
\r
369 jalview.io.JPredFile predictions = new jalview.io.JPredFile(
\r
371 new JnetAnnotationMaker().add_annotation(predictions,
\r
372 currentAlignFrame.viewport.getAlignment(),
\r
373 0,false); // do not add sequence profile from concise output
\r
374 currentAlignFrame.alignPanel.fontChanged();
\r
375 currentAlignFrame.alignPanel.setScrollValues(0, 0);
\r
376 } catch (Exception ex) {
\r
377 ex.printStackTrace();
\r
382 String pdbfile = applet.getParameter("PDBFILE");
\r
385 if( inArchive(pdbfile) )
\r
386 protocol = AppletFormatAdapter.CLASSLOADER;
\r
389 protocol = AppletFormatAdapter.URL;
\r
390 pdbfile = addProtocol(pdbfile);
\r
393 String sequence = applet.getParameter("PDBSEQ");
\r
397 new MCview.AppletPDBViewer(pdbfile, protocol,
\r
398 (Sequence)currentAlignFrame.getAlignViewport().getAlignment().findName(sequence),
\r
399 currentAlignFrame.getSeqcanvas());
\r
413 * Discovers whether the given file is in the Applet Archive
\r
414 * @param file String
\r
417 boolean inArchive(String file)
\r
419 //This might throw a security exception in certain browsers
\r
420 //Netscape Communicator for instance.
\r
422 return (getClass().getResourceAsStream("/" + file) != null);
\r
423 }catch(Exception ex)
\r
425 System.out.println("Exception checking resources: "+file+" "+ex);
\r
430 String addProtocol(String file)
\r
432 if (file.indexOf("://") == -1)
\r
433 file = getCodeBase() + file;
\r