Difference between revisions of "Jmol JavaScript Object/JME"
AngelHerraez (talk | contribs) (improve documentation for JSME object) |
AngelHerraez (talk | contribs) (improve documentation for JSME object) |
||
Line 1: | Line 1: | ||
− | = Integration of JSME into JSmol = | + | == Integration of JSME into JSmol == |
'''JSME, the JavaScript Molecule Editor''' by Peter Ertl, evolved from the former [http://www.molinspiration.com/jme/ JME applet]. | '''JSME, the JavaScript Molecule Editor''' by Peter Ertl, evolved from the former [http://www.molinspiration.com/jme/ JME applet]. | ||
− | It | + | It provides tools for the user to draw a molecular structure in 2D. The '''JSmol object library''' includes the capability to pass information back and forth between JSME and JSmol in a seamless manner. The "information panel" that JSmol library implements can be set up to also hold the JSME object, allowing tight integration. Alternatively, JSME and JSmol objects can be set side-by-side on a web page, and communication between both objects can be handled by the page developer. |
== Creating and inserting JSME == | == Creating and inserting JSME == | ||
''(Note that although the syntax is reminiscent of the former Java applets, no Java is currently involved here)'' | ''(Note that although the syntax is reminiscent of the former Java applets, no Java is currently involved here)'' | ||
+ | |||
+ | In preparation, your web page must call 3 files (usually in the <code>head</code> section): | ||
+ | * {{file|JSmol.min.js}} | ||
+ | * {{file|JSmolJME.js}} in the {{folder|js}} folder of the JSmol package | ||
+ | * {{file|jsme.nocache.js}} in the {{folder|jsme}} folder of the JSmol package (this is a copy of the original JSME package) | ||
The name of the unique '''<code>Jmol</code>''' object is literal, cannot be changed. | The name of the unique '''<code>Jmol</code>''' object is literal, cannot be changed. | ||
On the contrary, the <code>myJME</code>, <code>myJmol</code>, <code>JmeInfo</code>, <code>JmolInfo</code> names used in these examples are user-declared variables and may be different. | On the contrary, the <code>myJME</code>, <code>myJmol</code>, <code>JmeInfo</code>, <code>JmolInfo</code> names used in these examples are user-declared variables and may be different. | ||
− | There are two ways of inserting JSME using the JSmol library: | + | There are two ways of inserting JSME using the JSmol library: independent and embedded; you can see a demonstration of both at [http://jmol.org/demo/ the main Jmol website]. |
=== Independent JSME === | === Independent JSME === | ||
Line 20: | Line 25: | ||
* '''width''': <code>300</code> | * '''width''': <code>300</code> | ||
And the JSME panel will be inserted at the point of execution of this JavaScript code. | And the JSME panel will be inserted at the point of execution of this JavaScript code. | ||
− | If this code | + | If you need to include this code elsewhere, you can specify a target div where the JSME panel will be inserted, by adding this parameter: |
− | * ''' | + | * '''divid''': "''my_target_div''" |
− | === JSME | + | === JSME embedded in JSmol === |
In this mode, the JSME panel shares the space in the page with a JSmol panel; only one is displayed at a time and their contents (2D vs. 3D) are automatically interconverted to match. | In this mode, the JSME panel shares the space in the page with a JSmol panel; only one is displayed at a time and their contents (2D vs. 3D) are automatically interconverted to match. | ||
Line 29: | Line 34: | ||
Jmol.getApplet("myJmol", JmolInfo); | Jmol.getApplet("myJmol", JmolInfo); | ||
Jmol.getJMEApplet("myJME", JmeInfo, myJmol); | Jmol.getJMEApplet("myJME", JmeInfo, myJmol); | ||
− | + | The 3rd argument is a pointer to the associated JSmol object, that will contain this JSME panel as a 2D input option inside its Info panel. | |
+ | User interface controls (like buttons or links) may be implemented in the page for switching between | ||
+ | 2D (JSME) and 3D (JSmol) displays. | ||
+ | |||
+ | In this case, the <code>JmeInfo</code> variable must include at least: | ||
* '''height''': <code>350</code> | * '''height''': <code>350</code> | ||
* '''width''': <code>300</code> | * '''width''': <code>300</code> | ||
− | * '''visible''': <code>true</code> for the JSME panel to be displayed initially | + | * '''visible''': <code>true</code> for the JSME panel to be displayed initially (JSmol panel hidden) |
− | |||
− | |||
− | |||
− | |||
+ | === JSME options === | ||
Other parameters that may be included in the <code>JmeInfo</code> variable are: | Other parameters that may be included in the <code>JmeInfo</code> variable are: | ||
* '''options''': "''comma-delimited list''" | * '''options''': "''comma-delimited list''" | ||
− | ** <code> | + | ** <code>depict</code> - the canvas will appear without editing buttons, i.e. used for structure display only |
− | ** <code> | + | ** <code>zoom</code> - allow zooming of the molecular drawing |
− | ** <code>query | + | ** <code>rbutton</code> - display the R button |
− | ** <code>autoez | + | ** <code>hydrogens</code> - display hydrogens |
− | ** <code> | + | ** <code>query</code> - allow query features |
− | ** <code> | + | ** <code>autoez</code> - automatic generation of SMILES with E,Z stereochemistry |
− | ** <code> | + | ** <code>canonize</code> - SMILES canonicalization and detection of aromaticity |
− | + | ** <code>stereo</code> - stereochemistry not considered when creating SMILES | |
− | + | ** <code>useopenchemlib</code> - use the [https://github.com/Actelion/openchemlib OpenChemLib library] for SMILES conversion, 2D coordinates computation and SVG export | |
− | ** <code> | + | ** <code>exportSVG</code> - enable the menu item for SVG export |
** ...and more, all documented at [https://peter-ertl.com/jsme/ Peter Ertl's site] | ** ...and more, all documented at [https://peter-ertl.com/jsme/ Peter Ertl's site] | ||
+ | Most options are negated by prepending with "no", e.g. <code>nozoom</code>; a few have specific keywords for the opposite choice. | ||
== JSME-specific methods == | == JSME-specific methods == | ||
Line 59: | Line 66: | ||
Jmol.jmeGetFile(myJME, true) // molecular data in the JME format | Jmol.jmeGetFile(myJME, true) // molecular data in the JME format | ||
Jmol.jmeGetFile(myJME, false) // molecular data in the MOL format | Jmol.jmeGetFile(myJME, false) // molecular data in the MOL format | ||
− | Jmol.jmeSmiles(myJME, ''withStereoChemistry'') // molecular data in the SMILES format | + | Jmol.jmeSmiles(myJME, ''withStereoChemistry'') // molecular data in the SMILES format (with or without stereo information) |
For loading structures into JSME: | For loading structures into JSME: | ||
Jmol.jmeReadMolecule(myJME, ''jmeOrMolData'') | Jmol.jmeReadMolecule(myJME, ''jmeOrMolData'') | ||
− | sends data as a string either in JME or MOL formats, depending on the presence of newline characters in that string | + | sends data as a string that will be interpreted either in JME or MOL formats, depending on the presence of newline characters in that string. |
− | ''Note:'' Feeding SMILES data into JSME is possible, but not currently implemented in the JSmol library. | + | ''Note:'' Feeding SMILES data into JSME is possible, but a dedicated method is not currently implemented in the JSmol library. |
You can achieve it using a call to an internal function: | You can achieve it using a call to an internal function: | ||
myJME._applet.readGenericMolecularInput( ''smilesData'' ); | myJME._applet.readGenericMolecularInput( ''smilesData'' ); | ||
For other tasks: | For other tasks: | ||
− | Jmol.jmeOptions(myJME, ''options'') | + | Jmol.jmeOptions(myJME, ''options'') // to set options after the object has been created |
Jmol.jmeReset(myJME) | Jmol.jmeReset(myJME) |
Revision as of 00:34, 29 October 2019
Contents
Integration of JSME into JSmol
JSME, the JavaScript Molecule Editor by Peter Ertl, evolved from the former JME applet. It provides tools for the user to draw a molecular structure in 2D. The JSmol object library includes the capability to pass information back and forth between JSME and JSmol in a seamless manner. The "information panel" that JSmol library implements can be set up to also hold the JSME object, allowing tight integration. Alternatively, JSME and JSmol objects can be set side-by-side on a web page, and communication between both objects can be handled by the page developer.
Creating and inserting JSME
(Note that although the syntax is reminiscent of the former Java applets, no Java is currently involved here)
In preparation, your web page must call 3 files (usually in the head
section):
- JSmol.min.js
- JSmolJME.js in the js folder of the JSmol package
- jsme.nocache.js in the jsme folder of the JSmol package (this is a copy of the original JSME package)
The name of the unique Jmol
object is literal, cannot be changed.
On the contrary, the myJME
, myJmol
, JmeInfo
, JmolInfo
names used in these examples are user-declared variables and may be different.
There are two ways of inserting JSME using the JSmol library: independent and embedded; you can see a demonstration of both at the main Jmol website.
Independent JSME
The JSME panel takes a space of its own in the page.
To create and insert the JSME object, use:
Jmol.getJMEApplet("myJME", JmeInfo);
Where the JmeInfo
variable must include at least:
- height:
350
- width:
300
And the JSME panel will be inserted at the point of execution of this JavaScript code. If you need to include this code elsewhere, you can specify a target div where the JSME panel will be inserted, by adding this parameter:
- divid: "my_target_div"
JSME embedded in JSmol
In this mode, the JSME panel shares the space in the page with a JSmol panel; only one is displayed at a time and their contents (2D vs. 3D) are automatically interconverted to match.
To create and insert the JSmol and JSME objects, use:
Jmol.getApplet("myJmol", JmolInfo); Jmol.getJMEApplet("myJME", JmeInfo, myJmol);
The 3rd argument is a pointer to the associated JSmol object, that will contain this JSME panel as a 2D input option inside its Info panel. User interface controls (like buttons or links) may be implemented in the page for switching between 2D (JSME) and 3D (JSmol) displays.
In this case, the JmeInfo
variable must include at least:
- height:
350
- width:
300
- visible:
true
for the JSME panel to be displayed initially (JSmol panel hidden)
JSME options
Other parameters that may be included in the JmeInfo
variable are:
- options: "comma-delimited list"
depict
- the canvas will appear without editing buttons, i.e. used for structure display onlyzoom
- allow zooming of the molecular drawingrbutton
- display the R buttonhydrogens
- display hydrogensquery
- allow query featuresautoez
- automatic generation of SMILES with E,Z stereochemistrycanonize
- SMILES canonicalization and detection of aromaticitystereo
- stereochemistry not considered when creating SMILESuseopenchemlib
- use the OpenChemLib library for SMILES conversion, 2D coordinates computation and SVG exportexportSVG
- enable the menu item for SVG export- ...and more, all documented at Peter Ertl's site
Most options are negated by prepending with "no", e.g. nozoom
; a few have specific keywords for the opposite choice.
JSME-specific methods
All the following functions must be applied to the unique Jmol
object (this name is literal, cannot be changed).
The myJME
name used in these examples is, in contrast, a user-declared variable and may be different.
For retrieving data from JSME:
Jmol.jmeGetFile(myJME, true) // molecular data in the JME format Jmol.jmeGetFile(myJME, false) // molecular data in the MOL format Jmol.jmeSmiles(myJME, withStereoChemistry) // molecular data in the SMILES format (with or without stereo information)
For loading structures into JSME:
Jmol.jmeReadMolecule(myJME, jmeOrMolData)
sends data as a string that will be interpreted either in JME or MOL formats, depending on the presence of newline characters in that string.
Note: Feeding SMILES data into JSME is possible, but a dedicated method is not currently implemented in the JSmol library. You can achieve it using a call to an internal function:
myJME._applet.readGenericMolecularInput( smilesData );
For other tasks:
Jmol.jmeOptions(myJME, options) // to set options after the object has been created Jmol.jmeReset(myJME)