< 1 2 3 4 5 6 7 > >>   ∑:179  Sort:Date

Install Open Babel Library RPM Package for CentOS
How to download and install Open Babel library RPM package for CentOS computers? Open Babel library RPM package is the base package that is required to support other Open Babel RPM interface packages. So you should download and install it first as shown in this tutorial. 1. Go back to the Linux pack...
2020-10-20, 2919🔥, 0💬

What IS JSME - Molecule Editor in JavaScript
What IS JSME, Molecule Editor in JavaScript? JSME, Molecule Editor in JavaScript is a free molecule editor created by Peter Ertl and Bruno Bienfait. It can be used as an integrated online Web tool. JSME features are described in its documentation as: "JSME supports drawing and editing of molecules a...
2020-05-18, 2893🔥, 0💬

List of Open Babel Commands
How many command line tools are provided in the Open Babel package? By default, Open Babel package provides the following command line tools: babel (obabel) - Convert chemistry and molecular modeling data files. obchiral - Print molecular chirality information. obconformer - Generate conformer coord...
2020-11-22, 2836🔥, 0💬

Show InChI and InChIKey on JSME
How to display the InChI string and InChIKey of the molecule in JSME editor? JSME does not offer any API methods to export the InChI string and InChIKey of the molecule in the editor. But you can display them on the editor UI. 1. Follow the previous tutorial to install JSME on your Web server. 2. Ru...
2020-05-18, 2729🔥, 0💬

ketcher.getSmiles() and ketcher.getSmarts()
How to export the chemical structure in SMILES and SMARTS formats from the Ketcher with the ketcher.getSmiles() and ketcher.getSmarts() methods? To export the chemical structure (molecule, reaction, or substructure pattern) in SMILES and SMARTS formats from the Ketcher, you can use the getSmiles() a...
2023-12-10, 2625🔥, 0💬

Save Molecule from JSME to Server
How to save molecules created in JSME editor to the Web server? If you want to save the molecule structure created in the JSME editor to the backend Web server, you need write JavaScript code to extract the molecule data and send it as HTML form parameters. 1. Create a new HTML document, save-molecu...
2020-05-18, 2534🔥, 0💬

List of File Formats Supported by Open Babel
How to get a list of File Formats Supported by Open Babel? You can use "babel -L formats" command to get a list of File Formats Supported by Open Babel: fyicenter$ babel -L formats abinit -- ABINIT Output Format [Read-only] acr -- ACR format [Read-only] adf -- ADF cartesian input format [Write-only]...
2020-07-15, 2520🔥, 0💬

Build Molecule Pattern in JSME
How to build a molecule pattern in JSME editor? I also want to save it a SMARTS string to do substructure search. If you want to build a molecule pattern in JSME, you can follow this tutorial. 1. Follow the previous tutorial to install JSME on your Web server. 2. Run the demo page on the Apache Web ...
2020-05-18, 2501🔥, 0💬

JSME JavaScript API
Where to find FAQ (Frequently Asked Questions) on JSME JavaScript API? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on JSME JavaScript API. What Is JSME JavaScript API JSApplet.Inchi.computeInchi() - Generate InChI Save Molecule from JSME to Se...
2020-05-18, 2497🔥, 0💬

"babel -o fpt ..." Command - Similarity Search
How to use "babel -o fpt ..." command to do similarity search? You can use the "fpt" output file format with the "babel" command to do similarity search using the following syntax: babel input_section -o fpt When you run the above commands, Open Babel will perform the following: Take the first molec...
2020-12-15, 2482🔥, 0💬

Open Babel File Location on macOS
Where are Open Babel files located on my macOS computers? If you install Open Babel 2.3.1 with the pre-compiled binary package on a macOS computer, you can find its program file location with the "which" command: fyicenter$ which babel /usr/local/bin/babel fyicenter$ ls -l /usr/local/bin/babel -rwxr...
2020-05-24, 2416🔥, 0💬

"obabel ... -o svg" Command - Generate SVG from SMILES
How to generate a molecule SVG picture from a SMILES string? The easiest way to generate a molecule SVG picture from a SMILES string is to use the the "babel ... -o svg" command. For example, the following command generate a SVG picture of the tyrosine molecule from a SMILES string: fyicenter$ obabe...
2021-07-19, 2372🔥, 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, 2287🔥, 0💬

What Is Open Babel, Chemistry Toolbox
What Is Open Babel, Chemistry Toolbox? Open Babel, is a chemical toolbox designed to speak the many languages of chemical data. It's an open, collaborative project allowing anyone to search, convert, analyze, or store data from molecular modeling, chemistry, solid-state materials, biochemistry, or r...
2020-09-15, 2259🔥, 0💬

What Is Ketcher JavaScript API
What is Ketcher JavaScript API? Ketcher JavaScript API is programming interface provided by Ketcher for your JavaScript code to interact with the Ketcher editor. To access Ketcher JavaScript API, you need to access the "ketcher" object as a property of the content "window" object of the "iframe" whe...
2024-07-25, 2199🔥, 0💬

JSME Molecule Editor User Interface
Where to find FAQ (Frequently Asked Questions) on JSME Molecule Editor User Interface? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on JSME Molecule Editor User Interface. JSME User Interface Menu Icons Show InChI and InChIKey on JSME Build Mol...
2020-08-03, 2196🔥, 1💬

Introduction to Open Babel
Where to find FAQ (Frequently Asked Questions) on basic understanding of Open Babel, Chemistry Toolbox? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on basic understanding of Open Babel, Chemistry Toolbox. What Is Open Babel, Chemistry Toolbox ...
2020-05-21, 2188🔥, 0💬

Custom Wedge/Hash with SVG output
How to create a molecule structure with custom wedge/hash bonds? I don't like the default presentation of wedge/hash bonds. As shown in the previous tutorial, Open Babel has its own algorithm to detect stereo centers and decide which bond to presented as a wedge or hash bond. The resulting wedge/has...
2021-12-02, 2184🔥, 0💬

JSME User Interface Menu Icons
What are JSME user interface menu icons? JSME user interface menu icons are organized into 3 groups: 1. Action Icons - Located on in the first icon bar on top of the editor. Actions icons allows you to perform the following actions: SMILES - Displays the SMILES string of everything in the editor. De...
2020-05-18, 2156🔥, 0💬

Loading JSME JavaScript in "body"
Can I load JSME JavaScript code in HTML "body" element instead of "head"? Yes, you can load JSME JavaScript code in HTML "body" element instead of "head" 1. Create a new HTML document, load-JSME-in-body.html, with JSME loaded in the "body" element: &lt;html&gt; &lt;head&gt; &lt;t...
2020-05-18, 2132🔥, 0💬

Install JSME on Apache Web Server
How to install JSME on an Apache Web server? If you want to install JSME on a Web server for others to try it remotely, you can follow this tutorial to install it an an Apache Web server. 1. Follow the previous tutorial to download and install JSME on your local computer in the "./JSME_nnnn-nn-nn" s...
2020-05-18, 2115🔥, 0💬

R/S (Right/Left) Hand Stereo Centers
Right/Left Hand Stereo Centers? In chemstry study, a stereo center a labeled as R (Rectus, Right in Latin) Hand or S (Sinister, Left in Latin) according to the following rules. 1. Assign precedence ranks to its 4 neighboring branches, as #1, #2, #3, and #4. Neighboring branch with #1 has the highest...
2021-12-02, 2102🔥, 0💬

Structure Display Command on Open Babel GUI
How to change the display command on Open Babel GUI? By default, Open Babel GUI uses Firefox to display molecule structure. If you don't have Firefox installed, you will get an error: Obgui Error: Execution of command "firefox ..." failed. System cannot find the file. To fix the problem, you can cha...
2022-05-31, 2051🔥, 0💬

"babel --append ..." Command - Calculate Molecule Properties
How to use "babel --append ..." command to calculate Molecule Properties? The "--append ..." option of the "babel" command can be used to copy existing molecule properties from the input data source, and append them to the "title" field of output molecules. But the "--append ..." option can also be ...
2020-12-26, 2014🔥, 0💬

< 1 2 3 4 5 6 7 > >>   ∑:179  Sort:Date