X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fext%2Fjmol%2FJmolParser.java;h=65b4b9627c1b09a30ed2af0149b15460db0f6fc3;hb=ab889432b2f2ebea75aca36e814efc42ab50b9ac;hp=cef552fba4707474d5ad532b9b8cb86ab7637baa;hpb=ce6f02a53c98e51cb96533d40db5f94d1bfea00a;p=jalview.git diff --git a/src/jalview/ext/jmol/JmolParser.java b/src/jalview/ext/jmol/JmolParser.java index cef552f..65b4b96 100644 --- a/src/jalview/ext/jmol/JmolParser.java +++ b/src/jalview/ext/jmol/JmolParser.java @@ -124,8 +124,13 @@ public class JmolParser extends StructureFile implements JmolStatusListener { try { + /* + * params -o (output to sysout) -i (no info logging, less verbose) + * -n (nodisplay) -x (exit when finished) + * see http://wiki.jmol.org/index.php/Jmol_Application + */ viewer = (Viewer) JmolViewer.allocateViewer(null, null, null, null, - null, "-x -o -n", this); + null, "-x -o -n -i", this); // ensure the 'new' (DSSP) not 'old' (Ramachandran) SS method is used viewer.setBooleanProperty("defaultStructureDSSP", true); } catch (ClassCastException x)