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.ext.so.SequenceOntology;
24 import jalview.gui.AlignFrame;
25 import jalview.gui.Desktop;
26 import jalview.gui.PromptUserConfig;
27 import jalview.io.AppletFormatAdapter;
28 import jalview.io.BioJsHTMLOutput;
29 import jalview.io.DataSourceType;
30 import jalview.io.FileFormat;
31 import jalview.io.FileFormatException;
32 import jalview.io.FileFormatI;
33 import jalview.io.FileLoader;
34 import jalview.io.HtmlSvgOutput;
35 import jalview.io.IdentifyFile;
36 import jalview.io.NewickFile;
37 import jalview.io.gff.SequenceOntologyFactory;
38 import jalview.schemes.ColourSchemeI;
39 import jalview.schemes.ColourSchemeProperty;
40 import jalview.util.MessageManager;
41 import jalview.util.Platform;
42 import jalview.ws.jws2.Jws2Discoverer;
44 import java.io.BufferedReader;
46 import java.io.FileOutputStream;
47 import java.io.IOException;
48 import java.io.InputStreamReader;
49 import java.io.OutputStreamWriter;
50 import java.io.PrintWriter;
51 import java.net.MalformedURLException;
53 import java.net.URISyntaxException;
55 import java.security.AllPermission;
56 import java.security.CodeSource;
57 import java.security.PermissionCollection;
58 import java.security.Permissions;
59 import java.security.Policy;
60 import java.util.HashMap;
62 import java.util.Vector;
64 import javax.swing.LookAndFeel;
65 import javax.swing.UIManager;
67 import com.threerings.getdown.util.LaunchUtil;
69 import groovy.lang.Binding;
70 import groovy.util.GroovyScriptEngine;
73 * Main class for Jalview Application <br>
75 * start with: java -classpath "$PATH_TO_LIB$/*:$PATH_TO_CLASSES$" \
78 * or on Windows: java -classpath "$PATH_TO_LIB$/*;$PATH_TO_CLASSES$" \
79 * jalview.bin.Jalview jalview.bin.Jalview
81 * (ensure -classpath arg is quoted to avoid shell expansion of '*' and do not
82 * embellish '*' to e.g. '*.jar')
90 * singleton instance of this class
92 private static Jalview instance;
94 private Desktop desktop;
96 public static AlignFrame currentAlignFrame;
100 // grab all the rights we can the JVM
101 Policy.setPolicy(new Policy()
104 public PermissionCollection getPermissions(CodeSource codesource)
106 Permissions perms = new Permissions();
107 perms.add(new AllPermission());
112 public void refresh()
119 * keep track of feature fetching tasks.
127 * TODO: generalise to track all jalview events to orchestrate batch processing
131 private int queued = 0;
133 private int running = 0;
135 public FeatureFetcher()
140 public void addFetcher(final AlignFrame af,
141 final Vector<String> dasSources)
143 final long id = System.currentTimeMillis();
145 final FeatureFetcher us = this;
146 new Thread(new Runnable()
158 af.setProgressBar(MessageManager
159 .getString("status.das_features_being_retrived"), id);
160 af.featureSettings_actionPerformed(null);
161 af.setProgressBar(null, id);
170 public synchronized boolean allFinished()
172 return queued == 0 && running == 0;
177 public static Jalview getInstance()
183 * main class for Jalview application
186 * open <em>filename</em>
188 public static void main(String[] args)
190 instance = new Jalview();
191 instance.doMain(args);
197 void doMain(String[] args)
199 System.setSecurityManager(null);
201 .println("Java version: " + System.getProperty("java.version"));
202 System.out.println("Java Home: " + System.getProperty("java.home"));
203 System.out.println(System.getProperty("os.arch") + " "
204 + System.getProperty("os.name") + " "
205 + System.getProperty("os.version"));
206 System.out.println("Install4j version: "
207 + System.getProperty("sys.install4jVersion"));
208 System.out.println("Install4j template version: "
209 + System.getProperty("installer_template_version"));
211 "Launcher version: " + System.getProperty("launcher_version"));
213 // report Jalview version
214 Cache.loadBuildProperties(true);
216 ArgsParser aparser = new ArgsParser(args);
217 boolean headless = false;
219 if (aparser.contains("help") || aparser.contains("h"))
224 if (aparser.contains("nodisplay") || aparser.contains("nogui")
225 || aparser.contains("headless"))
227 System.setProperty("java.awt.headless", "true");
230 String usrPropsFile = aparser.getValue("props");
231 Cache.loadProperties(usrPropsFile); // must do this before
232 if (usrPropsFile != null)
235 "CMD [-props " + usrPropsFile + "] executed successfully!");
240 final String jabawsUrl = aparser.getValue("jabaws");
241 if (jabawsUrl != null)
245 Jws2Discoverer.getDiscoverer().setPreferredUrl(jabawsUrl);
247 "CMD [-jabaws " + jabawsUrl + "] executed successfully!");
248 } catch (MalformedURLException e)
251 "Invalid jabaws parameter: " + jabawsUrl + " ignored");
255 String defs = aparser.getValue("setprop");
258 int p = defs.indexOf('=');
261 System.err.println("Ignoring invalid setprop argument : " + defs);
265 System.out.println("Executing setprop argument: " + defs);
266 // DISABLED FOR SECURITY REASONS
267 // TODO: add a property to allow properties to be overriden by cli args
268 // Cache.setProperty(defs.substring(0,p), defs.substring(p+1));
270 defs = aparser.getValue("setprop");
272 if (System.getProperty("java.awt.headless") != null
273 && System.getProperty("java.awt.headless").equals("true"))
277 System.setProperty("http.agent",
278 "Jalview Desktop/" + Cache.getDefault("VERSION", "Unknown"));
282 } catch (NoClassDefFoundError error)
284 error.printStackTrace();
285 System.out.println("\nEssential logging libraries not found."
286 + "\nUse: java -classpath \"$PATH_TO_LIB$/*:$PATH_TO_CLASSES$\" jalview.bin.Jalview");
294 UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
295 } catch (Exception ex)
297 System.err.println("Unexpected Look and Feel Exception");
298 ex.printStackTrace();
300 if (Platform.isAMac())
303 LookAndFeel lookAndFeel = ch.randelshofer.quaqua.QuaquaManager
305 System.setProperty("com.apple.mrj.application.apple.menu.about.name",
307 System.setProperty("apple.laf.useScreenMenuBar", "true");
308 if (lookAndFeel != null)
312 UIManager.setLookAndFeel(lookAndFeel);
313 } catch (Throwable e)
316 "Failed to set QuaQua look and feel: " + e.toString());
319 if (lookAndFeel == null
320 || !(lookAndFeel.getClass().isAssignableFrom(
321 UIManager.getLookAndFeel().getClass()))
322 || !UIManager.getLookAndFeel().getClass().toString()
323 .toLowerCase().contains("quaqua"))
328 "Quaqua LaF not available on this plaform. Using VAqua(4).\nSee https://issues.jalview.org/browse/JAL-2976");
329 UIManager.setLookAndFeel("org.violetlib.aqua.AquaLookAndFeel");
330 } catch (Throwable e)
333 "Failed to reset look and feel: " + e.toString());
339 * configure 'full' SO model if preferences say to, else use the default (SO
342 if (Cache.getDefault("USE_FULL_SO", true))
344 SequenceOntologyFactory.setInstance(new SequenceOntology());
349 desktop = new Desktop();
350 desktop.setInBatchMode(true); // indicate we are starting up
354 JalviewTaskbar.setTaskbar(this);
355 } catch (Exception e)
357 System.out.println("Cannot set Taskbar");
358 // e.printStackTrace();
359 } catch (Throwable t)
361 System.out.println("Cannot set Taskbar");
362 // t.printStackTrace();
365 desktop.setVisible(true);
366 desktop.startServiceDiscovery();
367 if (!aparser.contains("nousagestats"))
369 startUsageStats(desktop);
373 System.err.println("CMD [-nousagestats] executed successfully!");
376 if (!aparser.contains("noquestionnaire"))
378 String url = aparser.getValue("questionnaire");
381 // Start the desktop questionnaire prompter with the specified
383 Cache.log.debug("Starting questionnaire url at " + url);
384 desktop.checkForQuestionnaire(url);
386 "CMD questionnaire[-" + url + "] executed successfully!");
390 if (Cache.getProperty("NOQUESTIONNAIRES") == null)
392 // Start the desktop questionnaire prompter with the specified
395 // "http://anaplog.compbio.dundee.ac.uk/cgi-bin/questionnaire.pl";
397 String defurl = "http://www.jalview.org/cgi-bin/questionnaire.pl";
399 "Starting questionnaire with default url: " + defurl);
400 desktop.checkForQuestionnaire(defurl);
406 System.err.println("CMD [-noquestionnaire] executed successfully!");
409 if (!aparser.contains("nonews"))
411 desktop.checkForNews();
414 BioJsHTMLOutput.updateBioJS();
417 // Move any new getdown-launcher-new.jar into place over old
418 // getdown-launcher.jar
419 String appdirString = System.getProperty("getdownappdir");
420 if (appdirString != null && appdirString.length() > 0)
422 final File appdir = new File(appdirString);
428 LaunchUtil.upgradeGetdown(
429 new File(appdir, "getdown-launcher-old.jar"),
430 new File(appdir, "getdown-launcher.jar"),
431 new File(appdir, "getdown-launcher-new.jar"));
436 String file = null, data = null;
437 FileFormatI format = null;
438 DataSourceType protocol = null;
439 FileLoader fileLoader = new FileLoader(!headless);
441 String groovyscript = null; // script to execute after all loading is
442 // completed one way or another
443 // extract groovy argument and execute if necessary
444 groovyscript = aparser.getValue("groovy", true);
445 file = aparser.getValue("open", true);
447 if (file == null && desktop == null)
449 System.out.println("No files to open!");
453 // Finally, deal with the remaining input data.
458 desktop.setProgressBar(
460 .getString("status.processing_commandline_args"),
461 progress = System.currentTimeMillis());
463 System.out.println("CMD [-open " + file + "] executed successfully!");
465 if (!file.startsWith("http://"))
467 if (!(new File(file)).exists())
469 System.out.println("Can't find " + file);
477 protocol = AppletFormatAdapter.checkProtocol(file);
481 format = new IdentifyFile().identify(file, protocol);
482 } catch (FileFormatException e1)
487 AlignFrame af = fileLoader.LoadFileWaitTillLoaded(file, protocol,
491 System.out.println("error");
495 setCurrentAlignFrame(af);
496 data = aparser.getValue("colour", true);
499 data.replaceAll("%20", " ");
501 ColourSchemeI cs = ColourSchemeProperty.getColourScheme(
502 af.getViewport(), af.getViewport().getAlignment(), data);
507 "CMD [-color " + data + "] executed successfully!");
512 // Must maintain ability to use the groups flag
513 data = aparser.getValue("groups", true);
516 af.parseFeaturesFile(data,
517 AppletFormatAdapter.checkProtocol(data));
518 // System.out.println("Added " + data);
520 "CMD groups[-" + data + "] executed successfully!");
522 data = aparser.getValue("features", true);
525 af.parseFeaturesFile(data,
526 AppletFormatAdapter.checkProtocol(data));
527 // System.out.println("Added " + data);
529 "CMD [-features " + data + "] executed successfully!");
532 data = aparser.getValue("annotations", true);
535 af.loadJalviewDataFile(data, null, null, null);
536 // System.out.println("Added " + data);
538 "CMD [-annotations " + data + "] executed successfully!");
540 // set or clear the sortbytree flag.
541 if (aparser.contains("sortbytree"))
543 af.getViewport().setSortByTree(true);
544 if (af.getViewport().getSortByTree())
546 System.out.println("CMD [-sortbytree] executed successfully!");
549 if (aparser.contains("no-annotation"))
551 af.getViewport().setShowAnnotation(false);
552 if (!af.getViewport().isShowAnnotation())
554 System.out.println("CMD no-annotation executed successfully!");
557 if (aparser.contains("nosortbytree"))
559 af.getViewport().setSortByTree(false);
560 if (!af.getViewport().getSortByTree())
563 .println("CMD [-nosortbytree] executed successfully!");
566 data = aparser.getValue("tree", true);
572 "CMD [-tree " + data + "] executed successfully!");
573 NewickFile nf = new NewickFile(data,
574 AppletFormatAdapter.checkProtocol(data));
576 .setCurrentTree(af.showNewickTree(nf, data).getTree());
577 } catch (IOException ex)
579 System.err.println("Couldn't add tree " + data);
580 ex.printStackTrace(System.err);
583 // TODO - load PDB structure(s) to alignment JAL-629
584 // (associate with identical sequence in alignment, or a specified
586 if (groovyscript != null)
588 // Execute the groovy script after we've done all the rendering stuff
589 // and before any images or figures are generated.
590 System.out.println("Executing script " + groovyscript);
591 executeGroovyScript(groovyscript, af);
592 System.out.println("CMD groovy[" + groovyscript
593 + "] executed successfully!");
596 String imageName = "unnamed.png";
597 while (aparser.getSize() > 1)
599 String outputFormat = aparser.nextValue();
600 file = aparser.nextValue();
602 if (outputFormat.equalsIgnoreCase("png"))
604 af.createPNG(new File(file));
605 imageName = (new File(file)).getName();
606 System.out.println("Creating PNG image: " + file);
609 else if (outputFormat.equalsIgnoreCase("svg"))
611 File imageFile = new File(file);
612 imageName = imageFile.getName();
613 af.createSVG(imageFile);
614 System.out.println("Creating SVG image: " + file);
617 else if (outputFormat.equalsIgnoreCase("html"))
619 File imageFile = new File(file);
620 imageName = imageFile.getName();
621 HtmlSvgOutput htmlSVG = new HtmlSvgOutput(af.alignPanel);
622 htmlSVG.exportHTML(file);
624 System.out.println("Creating HTML image: " + file);
627 else if (outputFormat.equalsIgnoreCase("biojsmsa"))
631 System.err.println("The output html file must not be null");
636 BioJsHTMLOutput.refreshVersionInfo(
637 BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY);
638 } catch (URISyntaxException e)
642 BioJsHTMLOutput bjs = new BioJsHTMLOutput(af.alignPanel);
643 bjs.exportHTML(file);
645 .println("Creating BioJS MSA Viwer HTML file: " + file);
648 else if (outputFormat.equalsIgnoreCase("imgMap"))
650 af.createImageMap(new File(file), imageName);
651 System.out.println("Creating image map: " + file);
654 else if (outputFormat.equalsIgnoreCase("eps"))
656 File outputFile = new File(file);
658 "Creating EPS file: " + outputFile.getAbsolutePath());
659 af.createEPS(outputFile);
663 if (af.saveAlignment(file, format))
665 System.out.println("Written alignment in " + format
666 + " format to " + file);
670 System.out.println("Error writing file " + file + " in "
671 + format + " format!!");
676 while (aparser.getSize() > 0)
678 System.out.println("Unknown arg: " + aparser.nextValue());
682 AlignFrame startUpAlframe = null;
683 // We'll only open the default file if the desktop is visible.
685 // ////////////////////
687 if (!headless && file == null
688 && jalview.bin.Cache.getDefault("SHOW_STARTUP_FILE", true))
690 file = jalview.bin.Cache.getDefault("STARTUP_FILE",
691 jalview.bin.Cache.getDefault("www.jalview.org",
692 "http://www.jalview.org")
693 + "/examples/exampleFile_2_7.jar");
695 "http://www.jalview.org/examples/exampleFile_2_3.jar"))
697 // hardwire upgrade of the startup file
698 file.replace("_2_3.jar", "_2_7.jar");
699 // and remove the stale setting
700 jalview.bin.Cache.removeProperty("STARTUP_FILE");
703 protocol = DataSourceType.FILE;
705 if (file.indexOf("http:") > -1)
707 protocol = DataSourceType.URL;
710 if (file.endsWith(".jar"))
712 format = FileFormat.Jalview;
718 format = new IdentifyFile().identify(file, protocol);
719 } catch (FileFormatException e)
725 startUpAlframe = fileLoader.LoadFileWaitTillLoaded(file, protocol,
727 // extract groovy arguments before anything else.
730 // Once all other stuff is done, execute any groovy scripts (in order)
731 if (groovyscript != null)
733 if (Cache.groovyJarsPresent())
735 System.out.println("Executing script " + groovyscript);
736 executeGroovyScript(groovyscript, startUpAlframe);
741 "Sorry. Groovy Support is not available, so ignoring the provided groovy script "
745 // and finally, turn off batch mode indicator - if the desktop still exists
750 desktop.setProgressBar(null, progress);
752 desktop.setInBatchMode(false);
756 private static void showUsage()
759 "Usage: jalview -open [FILE] [OUTPUT_FORMAT] [OUTPUT_FILE]\n\n"
760 + "-nodisplay\tRun Jalview without User Interface.\n"
761 + "-props FILE\tUse the given Jalview properties file instead of users default.\n"
762 + "-colour COLOURSCHEME\tThe colourscheme to be applied to the alignment\n"
763 + "-annotations FILE\tAdd precalculated annotations to the alignment.\n"
764 + "-tree FILE\tLoad the given newick format tree file onto the alignment\n"
765 + "-features FILE\tUse the given file to mark features on the alignment.\n"
766 + "-fasta FILE\tCreate alignment file FILE in Fasta format.\n"
767 + "-clustal FILE\tCreate alignment file FILE in Clustal format.\n"
768 + "-pfam FILE\tCreate alignment file FILE in PFAM format.\n"
769 + "-msf FILE\tCreate alignment file FILE in MSF format.\n"
770 + "-pileup FILE\tCreate alignment file FILE in Pileup format\n"
771 + "-pir FILE\tCreate alignment file FILE in PIR format.\n"
772 + "-blc FILE\tCreate alignment file FILE in BLC format.\n"
773 + "-json FILE\tCreate alignment file FILE in JSON format.\n"
774 + "-jalview FILE\tCreate alignment file FILE in Jalview format.\n"
775 + "-png FILE\tCreate PNG image FILE from alignment.\n"
776 + "-svg FILE\tCreate SVG image FILE from alignment.\n"
777 + "-html FILE\tCreate HTML file from alignment.\n"
778 + "-biojsMSA FILE\tCreate BioJS MSA Viewer HTML file from alignment.\n"
779 + "-imgMap FILE\tCreate HTML file FILE with image map of PNG image.\n"
780 + "-eps FILE\tCreate EPS file FILE from alignment.\n"
781 + "-questionnaire URL\tQueries the given URL for information about any Jalview user questionnaires.\n"
782 + "-noquestionnaire\tTurn off questionnaire check.\n"
783 + "-nonews\tTurn off check for Jalview news.\n"
784 + "-nousagestats\tTurn off google analytics tracking for this session.\n"
785 + "-sortbytree OR -nosortbytree\tEnable or disable sorting of the given alignment by the given tree\n"
787 // "-setprop PROPERTY=VALUE\tSet the given Jalview property,
788 // after all other properties files have been read\n\t
789 // (quote the 'PROPERTY=VALUE' pair to ensure spaces are
790 // passed in correctly)"
791 + "-jabaws URL\tSpecify URL for Jabaws services (e.g. for a local installation).\n"
792 + "-fetchfrom nickname\tQuery nickname for features for the alignments and display them.\n"
793 + "-groovy FILE\tExecute groovy script in FILE, after all other arguments have been processed (if FILE is the text 'STDIN' then the file will be read from STDIN)\n"
794 + "\n~Read documentation in Application or visit http://www.jalview.org for description of Features and Annotations file~\n\n");
797 private static void startUsageStats(final Desktop desktop)
800 * start a User Config prompt asking if we can log usage statistics.
802 PromptUserConfig prompter = new PromptUserConfig(Desktop.desktop,
803 "USAGESTATS", "Jalview Usage Statistics",
804 "Do you want to help make Jalview better by enabling "
805 + "the collection of usage statistics with Google Analytics ?"
806 + "\n\n(you can enable or disable usage tracking in the preferences)",
813 "Initialising googletracker for usage stats.");
814 Cache.initGoogleTracker();
815 Cache.log.debug("Tracking enabled.");
822 Cache.log.debug("Not enabling Google Tracking.");
825 desktop.addDialogThread(prompter);
829 * Locate the given string as a file and pass it to the groovy interpreter.
831 * @param groovyscript
832 * the script to execute
833 * @param jalviewContext
834 * the Jalview Desktop object passed in to the groovy
835 * binding as the 'Jalview' object.
837 private void executeGroovyScript(String groovyscript, AlignFrame af)
840 * for scripts contained in files
847 if (groovyscript.trim().equals("STDIN"))
849 // read from stdin into a tempfile and execute it
852 tfile = File.createTempFile("jalview", "groovy");
853 PrintWriter outfile = new PrintWriter(
854 new OutputStreamWriter(new FileOutputStream(tfile)));
855 BufferedReader br = new BufferedReader(
856 new InputStreamReader(System.in));
858 while ((line = br.readLine()) != null)
860 outfile.write(line + "\n");
866 } catch (Exception ex)
868 System.err.println("Failed to read from STDIN into tempfile "
869 + ((tfile == null) ? "(tempfile wasn't created)"
870 : tfile.toString()));
871 ex.printStackTrace();
876 sfile = tfile.toURI().toURL();
877 } catch (Exception x)
880 "Unexpected Malformed URL Exception for temporary file created from STDIN: "
890 sfile = new URI(groovyscript).toURL();
891 } catch (Exception x)
893 tfile = new File(groovyscript);
896 System.err.println("File '" + groovyscript + "' does not exist.");
899 if (!tfile.canRead())
901 System.err.println("File '" + groovyscript + "' cannot be read.");
904 if (tfile.length() < 1)
906 System.err.println("File '" + groovyscript + "' is empty.");
911 sfile = tfile.getAbsoluteFile().toURI().toURL();
912 } catch (Exception ex)
914 System.err.println("Failed to create a file URL for "
915 + tfile.getAbsoluteFile());
922 Map<String, java.lang.Object> vbinding = new HashMap<>();
923 vbinding.put("Jalview", this);
926 vbinding.put("currentAlFrame", af);
928 Binding gbinding = new Binding(vbinding);
929 GroovyScriptEngine gse = new GroovyScriptEngine(new URL[] { sfile });
930 gse.run(sfile.toString(), gbinding);
931 if ("STDIN".equals(groovyscript))
933 // delete temp file that we made -
934 // only if it was successfully executed
937 } catch (Exception e)
939 System.err.println("Exception Whilst trying to execute file " + sfile
940 + " as a groovy script.");
941 e.printStackTrace(System.err);
946 public static boolean isHeadlessMode()
948 String isheadless = System.getProperty("java.awt.headless");
949 if (isheadless != null && isheadless.equalsIgnoreCase("true"))
956 public AlignFrame[] getAlignFrames()
958 return desktop == null ? new AlignFrame[] { getCurrentAlignFrame() }
959 : Desktop.getAlignFrames();
964 * Quit method delegates to Desktop.quit - unless running in headless mode when
965 * it just ends the JVM
979 public static AlignFrame getCurrentAlignFrame()
981 return Jalview.currentAlignFrame;
984 public static void setCurrentAlignFrame(AlignFrame currentAlignFrame)
986 Jalview.currentAlignFrame = currentAlignFrame;