< 1 2 3 >   ∑:70  Sort:Date

SMARTS for Reaction Patterns
What are SMARTS string representations for reaction patterns? SMARTS is an extension of SMILES to represent molecular patterns. But it can represent chemical reaction patterns using the following format: R 1 .R 2 ....&gt;A 1 .A 2 ....&gt;P 1 .P 2 .... Where: R 1 , R 2 , ... are SMARTS string...
2023-12-29, 365🔥, 0💬

What Is Ketcher Editor Interface
What is Ketcher Editor interface? Ketcher Editor interface is part of the Ketcher JavaScript API that allows you to interact with Ketcher editor UI elements. To access Ketcher Editor interface, you need to access the "ketcher" object as a property of the content "window" object of the "iframe" where...
2023-12-08, 365🔥, 0💬

Reaction FYI-1005090
Reaction Summary: ID: FYI-1005090 Formula: [C6 H11 Cl]+[H O] > [C6 H12 O]+[Cl] SMILES: C1C[C@@H](Cl)C[C@H]1C.[OH-]>>C 1C[C@H](O)C[C@H]1C.[Cl-]Received at FYIcenter.com on: 2023-10-13
2023-10-27, 352🔥, 0💬

ketcher.getRxn() - Export Reaction in RXN Format
How to export the reaction structure in RXN format from the Ketcher with the ketcher.getRxn() method? To export the reaction structure in RXN format from the Ketcher, you can use the getRxn() method provided by the Ketcher API as shown in below: 1. Load the Ketcher editor in an "iframe" HTML element...
2023-12-10, 343🔥, 0💬

What Is Ketcher Indigo Interface
What is Ketcher Indigo interface? Ketcher Indigo interface is part of the Ketcher JavaScript API that allows you to use some Indigo Toolkit functionalities. To access Ketcher Indigo interface, you need to access the "ketcher" object as a property of the content "window" object of the "iframe" where ...
2023-11-13, 340🔥, 0💬

Save Structure from Ketcher to Server
How to save structures created in Ketcher editor to the Web server? If you want to save the chemical structure created in the Ketcher editor to the backend Web server, you need write JavaScript code to extract the molecule data and send it as an HTML form parameter to the server. 1. Create a new HTM...
2023-10-11, 335🔥, 0💬

Introduction to Ketcher
Where to find FAQ (Frequently Asked Questions) on basic understanding of Ketcher, Chemical Structure Editor in JavaScript? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on basic understanding of Ketcher, Chemical Structure Editor in JavaScript. ...
2023-11-02, 331🔥, 0💬

editor.setOptions() - Set Editor Options
How to get a list of options used by the Ketcher editor with the editor.setOptions() method? If you want to update one or more options used by the Ketcher editor, you can use the editor.setOptions() method on the Ketcher Editor interface. Here is an HTML document that shows you how to update some op...
2023-11-18, 327🔥, 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: &lt;html&gt; &lt;!-- export-structure-in-all-format s.htmlCopy...
2024-01-15, 321🔥, 0💬

Restore Structure from Server to Ketcher
How to restore a chemical structure from the Web server to the Ketcher editor? If you want to build a chemical structure editor with the capability to save the structure on the Web server and restore it later to the Ketcher, you should follow steps described below: 1. Using JavaScript to export the ...
2023-10-11, 318🔥, 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, 316🔥, 0💬

What Is Reaction Equation
What Is Reaction Equation? A Reaction Equation or Chemical Equation is an expression that represents a chemical reaction. A reaction equation uses the following basic format: m 1 R 1 + m 2 R 2 + ... → n 1 P 1 + n 2 P 2 + ... Where: R 1 , R 2 , ... are molecular formulas of reactants m 1 , m 2 , ... ...
2023-10-15, 311🔥, 0💬

What Is Chemical Reaction
What Is Chemical Reaction? A Chemical Reaction is a process in which the bonds are broken within reactant molecules, and new bonds are formed within product molecules in order to form a new substance. There are 6 main types of chemical reactions: Combustion Reaction - A reaction with a combustible m...
2023-10-15, 298🔥, 0💬

indigo.calculate() - Calculates Chemical Properties
How to calculate chemical properties of a given structure with the indigo.calculate() method? If you want to calculate chemical properties like mass and weight of a given chemical structure you can use the indigo.calculate() method on the Ketcher Indigo interface. Here is an HTML document that shows...
2023-11-09, 291🔥, 0💬

Reaction FYI-1005064
Reaction Summary: ID: FYI-1005064 Formula: [C2 H4 O2]+[C2 H6 O] > [C4 H8 O2] SMILES: CC(O)=O.CCO>>CC(OCC)=O Received at FYIcenter.com on: 2023-10-12
2023-10-27, 284🔥, 0💬

Reaction Presentations and File Formats
Where to find FAQ (Frequently Asked Questions) on Reaction Presentations and File Formats? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Reaction Presentations and File Formats. SMILES for Reactions SMARTS for Reaction Patterns SMIRKS for Gen...
2023-11-25, 283🔥, 0💬

indigo.generateImageAsBase64() - Generate Image as Base64
How to generate images of a given structure as a Base64 encoded string with the indigo.generateImageAsBase64() method? If you want to generate an image of a given structure in PNG, JPEG, or SVG format and Base64 encoded, you can use the indigo.generateImageAsBase64() method on the Ketcher Indigo int...
2023-11-09, 278🔥, 0💬

editor.options() - Get Editor Options
How to get a list of options used by the Ketcher editor with the editor.options() method? If you want to get a list of options used by the Ketcher editor, you can use the editor.options() method on the Ketcher Editor interface. Here is an HTML document that shows you how to get a list of options cur...
2023-11-18, 275🔥, 0💬

editor.struct() - Get Entire Structure
How to get the entire structure currently in the Ketcher editor with the editor.struct() method? If you want to get detailed information about the entire structure currently in the Ketcher editor, you can call the editor.struct() method on the Ketcher Editor interface. Here is an HTML document that ...
2023-12-08, 273🔥, 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, 270🔥, 0💬

editor.struct().loops - Get Loop List
How to get a list of loops currently in the Ketcher editor with the editor.struct().loops property? If you want to get a list of loops currently in the Ketcher editor, you can use the editor.struct().loops property on the Ketcher Editor interface. Here is an HTML document that shows you how to get a...
2023-11-23, 269🔥, 0💬

Ketcher User Interface Menu Icons
What are Ketcher user interface menu icons? Ketcher user interface menu icons are organized into 4 toolbars: 1. Action toolbar - Displayed horizontally at the top of the window, the main toolbar contains the following buttons to perform different actions: Clear canvas - Removes everything in the edi...
2023-11-06, 268🔥, 0💬

Introduction to Chemical Reaction
Where to find FAQ (Frequently Asked Questions) in understanding what is Chemical Reaction and its basic properties? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is Chemical Reaction. What Is Chemical Reaction What Is React...
2023-09-25, 264🔥, 0💬

Show InChI String on Ketcher
How to display the InChI string of the molecule in Ketcher editor? You can follow steps below to display the InChI string of the molecule in Ketcher editor. 1. Open Ketcher editor as shown in previous tutorial. 2. Select the "Benzene" button in the template toolbar at the bottom of the editor window...
2023-10-27, 263🔥, 0💬

< 1 2 3 >   ∑:70  Sort:Date