1 2 3 4 5 6 > >>   ∑:306  Sort:Rank

ketcher.setMolecule() - Import Molecule into Ketcher
How to import a molecule structure into the Ketcher with the ketcher.setMolecule() method? To import a molecule structure into the Ketcher, you can use the setMolecule(structure) method provided by the Ketcher API as shown in below: 1. Load the Ketcher editor in an "iframe" HTML element: <ifr...
2024-03-17, 340🔥, 0💬

ketcher.getMolfile() - Export Molecule in Molfile Format
How to export the molecule structure in Molfile format from the Ketcher with the ketcher.getMolfile() method? To export the molecule structure in Molfile format from the Ketcher, you can use the getMolfile() method provided by the Ketcher API as shown in below: 1. Load the Ketcher editor in an "ifra...
2024-03-17, 314🔥, 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<seq>" } ] }, "mol<seq>": { "type": "molecule",...
2024-03-07, 162🔥, 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, 154🔥, 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": <text-definition&gt ;,"position": <location-object&gt ;,"pos": <bounding...
2024-02-28, 165🔥, 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, 162🔥, 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, 177🔥, 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, 147🔥, 0💬

Ketcher File Format for Chemical Structures
Where to find FAQ (Frequently Asked Questions) on Ketcher File Format for Chemical Structures? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Ketcher File Format for Chemical Structures. What Is Ketcher File Format Ketcher File Structure Expor...
2024-02-11, 170🔥, 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, 156🔥, 0💬

Install BioPerl Package Manually
How to install BioPerl package manually? I am having trouble using the "cpan/cpanm" command. If you are having problems using the "cpan/cpanm" command, you can following this tutorial to install the BioPerl 1.7.7 distribution package manually. 1. Go to metacpan.org/pod/BioPerl . 2. Click "Download (...
2024-02-05, 347🔥, 2💬

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, 163🔥, 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, 157🔥, 0💬

Call getSmiles() and getSmarts() Parallelly
Why do getSmiles() and getSmarts() methods return the same result, if they are called in 2 parallel promises? There seems to be a bug in Ketcher v2.11.0 release. If you call getSmiles() and getSmarts() methods one after the other, you are creating 2 promises The first promise seems to be overriding ...
2024-01-24, 227🔥, 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, 192🔥, 0💬

Export Chemical Structure in All Formats
How to export the chemical structure in all Formats? If you want to export the chemical structure from the Ketcher editor in all formats, you can call those get*() methods in chained promises as shown the HTML document below: <html> <!-- export-structure-in-all-format s.htmlCopy...
2024-01-15, 291🔥, 0💬

Call getSmiles() and getSmarts() Chained
How to call getSmiles() and getSmarts() methods in 2 promises one chained to the other? Another way to avoid the bug mentioned in the previous tutorial is to call ketcher.getSmiles() and ketcher.getSmarts() methods in 2 chained promises. Chained promises use fulfilled and rejected handlers of the pr...
2024-01-15, 219🔥, 0💬

Export Chemical Structure in All Formats Failed
What will happen if I export the chemical structure in all formats in parallel promises? If you export the chemical structure in all formats in parallel promises by calling get*() methods, you will get unpredictable results. This is caused by a code bug in the Ketcher v2.11.0 release. The following ...
2024-01-10, 254🔥, 0💬

Ketcher Editor Interface
Where to find FAQ (Frequently Asked Questions) on Ketcher Editor Interface? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Ketcher Editor Interface. What Is Ketcher Editor Interface editor.struct() - Get Entire Structure editor.struct().atoms ...
2024-01-10, 238🔥, 0💬

Reaction with Stereocenters in CDXML Format Error
Why am I getting CDXML loader errors on reactions with stereocenters? Ketcher 2.11.0 has a code bug that gives you a CDXML loader error if you try to load a reaction with stereocenters in CDXML (ChemDraw XML) format as shown in this tutorial. 1. Open Ketcher editor as shown in previous tutorial. 2. ...
2024-01-10, 181🔥, 0💬

Download and Install Ketcher in Standalone Mode
How to Download and Install the latest version of Ketcher in standalone mode? Ketcher can be installed in 2 modes: Standalone and Remote. The Standalone mode incorporates Indigo backend services in the Ketcher build. It allows for Ketcher to work in browser with no server and even without the Intern...
2023-12-17, 468🔥, 0💬

What Is Ketcher - Chemical Structure Editor in JavaScript
What Is Ketcher, Chemical Structure Editor in JavaScript? Ketcher is an open-source web-based chemical structure editor written in JavaScript. It can be used as an integrated online Web tool to draw chemical structures and reactions. Main features of Ketcher are: Fast and convenient editing - Ketche...
2023-12-17, 369🔥, 0💬

generateImage() - Generate Image from Structure
How to generate image from a given chemical structure with the ketcher.generateImage() method? If you want to generate an image from the chemical structure in the Ketcher editor, you can export the structure in a specific format using a get*() method. Then call the ketcher.generateImage(structur e,o...
2023-12-14, 491🔥, 0💬

Call getInchi() and generateInchIKey() Methods
How to generate the InChI and InChIKey with the ketcher.getInchi() and ketcher.generateInchIKey() methods? InChI (International Chemical Identifier) and InChIKey (InChI Key) are identifiers of molecule structures, originally developed by Initially developed by the International Union of Pure and App...
2023-12-14, 342🔥, 0💬

1 2 3 4 5 6 > >>   ∑:306  Sort:Rank