<< < 8 9 10 11 12 13   ∑:309  Sort:Date

UI Components of Embedded 3Dmol Viewer
What functions are supported by UI components on the Embedded 3Dmol Viewer? UI components on the Embedded 3Dmol Viewer support the following functions: 1. Model Data Input: Accessible through the first icon on the left. You can load PDB protein data from the online PDB database, or molecule compound...
2023-09-10, 210🔥, 0💬

Ketcher File Structure for Reaction
What is the Ketcher file structure for a chemical reaction? The Ketcher file structure for a chemical reaction is an extension of the Ketcher file structure for a molecule. Additional molecule objects are added as reactants, reagents, solvents, and products of the reaction. A long arrow is also adde...
2024-02-18, 208🔥, 0💬

Import Ketcher File to Editor
How to import Ketcher file to the Ketcher editor? If you created a Ketcher file, you can verify it by importing it to the Ketcher editor as described below: 1. Create a Ketcher file, cyclobutane.ket, with a text editor: { "root": { "nodes": [ { "$ref": "mol0" } ] }, "mol0": { "type": "molecule", "at...
2024-03-23, 204🔥, 0💬

Call getSmiles() and getSmarts() Nested
How to call getSmiles() and getSmarts() methods in 2 promises one nested in the other? One way to avoid the bug mentioned in the previous tutorial is to call ketcher.getSmiles() and ketcher.getSmarts() methods in 2 promises one nested in the other. This can be done by calling ketcher.getSmiles() fir...
2024-01-24, 204🔥, 0💬

$3Dmol.download('cid:...', ...) - Download CID Molecule
How to download molecule by CID with the $3Dmol.download() method? The syntax to download molecule by CID with the $3Dmol.download() method is shown below: $3Dmol.download("cid:{CID}", viewer, options, callback) -&gt; {$3Dmol.GLModel} viewer - The $3Dmol.GLViewer instance where the downloaded pr...
2023-09-10, 201🔥, 0💬

One Molecule with Disconnected Parts
Can I specify a single molecule object with multiple disconnected parts in a Ketcher file? Yes, you can specify a single molecule object with multiple disconnected parts in a Ketcher file. Here is a simple example of Ketcher file with a single "molecule" object of a 4-carbon chain. But the bond betw...
2024-01-31, 199🔥, 0💬

Missing 3Dmol-min.js on Local 3Dmol Server
Why is my local 3Dmol server redirecting to browser to https://get.webgl.org/? If you access your local 3Dmol server with a browser, and you see the https://get.webgl.org/ Website displayed, it's most likely missing the 3Dmol-min.js file on the server. This may happen if 3Dmol server was not install...
2023-09-10, 199🔥, 0💬

Load Data from Another HTML Element
How to load molecule data from another HTML element into the Embedded 3Dmol Viewer? You can use "data-element" and "data-type" attributes on the DIV element to load molecule data another HTML element into the Embedded 3Dmol Viewer. Here is an HTML code example, Embedded-Viewer-data-element.h tml,tha...
2023-09-10, 199🔥, 0💬

$3Dmol Namespace and Static Methods
What is the GLViewer Class? $3Dmol is the top namespace of the $3Dmol.js library. It contains a sub-namespace, several classes and some static methods as listed below. Sub-namespaces : $3Dmol.GLDraw - Lower level utilities for creating WebGL shape geometries Classes : $3Dmol.GLModel - A group of rel...
2023-09-10, 195🔥, 0💬

Start Online 3Dmol Viewer on Linux
How to start Online 3Dmol Viewer on my local server? If you have installed the Online 3Dmol Viewer in your home directory as shown in the previous tutorial, you can start and test it with these steps: 1. Go to the Online 3Dmol Viewer directory: fyicenter$ cd 3Dmol.js/packages/learning-env ironment2....
2023-09-10, 192🔥, 0💬

Ketcher File Structure for Molecule
What is the Ketcher file structure for a molecule structure? To represent a single molecule in a Ketcher file, you need to include a referenced-object in the "nodes" array as shown below: { "root": { "nodes": [ { "$ref": "mol&lt;seq&gt;" } ] }, "mol&lt;seq&gt;": { "type": "molecule",...
2024-03-07, 186🔥, 0💬

Code Bug in server.py in 3Dmol Source Code
Why am I getting the "Connection refused" error when accessing my local 3Dmol Viewer? If you are getting the "Connection refused" error when accessing your hosted 3Dmol Viewer over the network, it's most likely caused by the code bug in the server's Python source code. 1. Make sure that your 3Dmol V...
2023-09-10, 186🔥, 0💬

Molecule with Substituted Functional Group
How to specify a S-Group (Substituted Functional Group) in a molecule structure in Ketcher file format? There are 2 options to specify a S-Group (Substituted Functional Group) in a molecule structure: 1. Specify S-Group without Group Substructure: Just replace the atom symbol at the s-group attachin...
2024-02-28, 184🔥, 0💬

Export Ketcher File from Editor
How to export structure from Ketcher editor in Ketcher file format? The best way to learn the Ketcher file format is to export different types of chemical structures for the Ketcher editor in Ketcher file format as described below: 1. Open Ketcher editor as shown in previous tutorials. 2. Select the...
2024-03-23, 183🔥, 0💬

What Is Ketcher File Format
What is Ketcher File Format? A Ketcher file is a JSON document that stores the entire content created in the Ketcher editor. It supports the following features: Supports molecule 3-D structures. Supports chemical reactions. Supports styled text labels. Supports S-Groups. Here is a simple example of ...
2024-02-11, 183🔥, 0💬

Adding Text Labels in Ketcher File
How to add text labels in a Ketcher file? You can insert a "text" object structure into the "nodes" array to add a text label in a Ketcher file as shown below: { "type": "text", "data": { "content": &lt;text-definition&gt ;,"position": &lt;location-object&gt ;,"pos": &lt;bounding...
2024-02-28, 181🔥, 0💬

Scaling Issue on Importing Ketcher File
Why is my reaction schema scaled badly when imported from the Ketcher editor UI? The Ketcher editor UI seems to have a code bug. When a reaction schema stored in a Ketcher file is imported from the editor user interface, atom locations and the reaction arrow may be scaled down or up when mapping to ...
2024-01-31, 178🔥, 0💬

Ketcher File Structure
How is the Ketcher file structured? At a high level, a Ketcher file is structured to represent an object with a required property "root", which has a property "nodes" to hold an array of graphical objects. The hight level structure of a Ketcher file looks like this: { "root": { "nodes": [ &lt;ob...
2024-04-14, 176🔥, 0💬

Bond Type Codes in Ketcher File
What are bond type codes supported by Ketcher file? Ketcher file supports the following bond type codes: Single bond - "type": 1 Double bond - "type": 2 Triple Bond - "type": 3 Any bond - "type": 8 Aromatic bond - "type": 4 Single/double bond - "type": 5 Single/aromatic bond - "type": 6 Double/aroma...
2024-02-18, 172🔥, 0💬

Molecule Structure with Directed Bonds
How to specify a directed bond at a stereocenter in a molecule structure in Ketcher file format? You need to use the optional "stereo" property to specify a directed bond at a stereocenter in a molecule structure. For example: "stereo": 1 - for a upward bond "stereo": 6 - for a downward bond Note th...
2024-03-07, 170🔥, 0💬

$3Dmol.download('pdb:...', ...) - Download PDB Protein
How to download PDB Protein Data with the $3Dmol.download() method? The syntax to download PDB Protein Data with the $3Dmol.download() method is shown below: $3Dmol.download("pdb:{PDB_ID}" ,viewer, options, callback) -&gt; {$3Dmol.GLModel} viewer - The $3Dmol.GLViewer instance where the download...
2023-09-10, 166🔥, 0💬

<< < 8 9 10 11 12 13   ∑:309  Sort:Date