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

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, 1672🔥, 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, 1655🔥, 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, 1608🔥, 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, 1563🔥, 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, 1553🔥, 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, 1469🔥, 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, 1424🔥, 0💬

"babel -i sdf -o svg" - Custom Atom Positions
How to create a molecule structure with custom atom positions? You can create a molecule structure with custom atom positions using "obabel -i sdf -o svg" command as shown below. 1. Create a SDF file for your molecule structure. Take the L-Alanin-2D.sdf file used in other tutorials as an example. 2....
2021-12-01, 1382🔥, 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, 1367🔥, 0💬

Similarity Search with Open Babel
Where to find FAQ (Frequently Asked Questions) on Similarity Search with Open Babel? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Similarity Search with Open Babel. "babel -o fpt ..." Command - Similarity Search Fingerprint Types Supported i...
2020-12-22, 1317🔥, 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, 1311🔥, 0💬

"babel ... -o svg -xP300" Bug - width="px" height="px"
Why "babel ... -o svg -xP300" command is not able scale a molecule SVG image? The "babel ... -o svg -xP300" command has a code bug that results incorrect attributes, width="px" height="px", in the top level "svg" element. in both Open 2.3 and 2.4 releases. However, "obabel ... -o svg -xP300" command...
2020-07-22, 1274🔥, 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, 1270🔥, 0💬

"babel ... -o svg -xX" - Hide Implicit H in SVG
How to hide those H symbols (Hydrogen symbols) implicitly added to non-carbon terminal atoms in SVG with the "babel" command? If you want to hide those Hydrogen symbols implicitly added to non-carbon terminal atoms in SVG format, you can use the "-o svg -xX" option with the "babel" command. Here is ...
2020-07-22, 1258🔥, 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, 1176🔥, 0💬

Introduction to JSME
Where to find FAQ (Frequently Asked Questions) on basic understanding of JSME, Molecule Editor in JavaScript? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on basic understanding of JSME, Molecule Editor in JavaScript. What IS JSME - Molecule Ed...
2020-05-18, 1151🔥, 0💬

"obconformer" - Generate Best Conformer
What Is "obconformer" command? How to use it to generate the best conformer from a base molecule? "obconformer" command is a command line tool provided in the Open Babel package that allows you to generate the best conformer from a base molecule. Here is the user manual of the "obconformer" command....
2020-11-22, 1149🔥, 0💬

Substructure Search with Wildcard Bond "~"
How to use Wildcard Bond in a substructure search using "babel" commands? You can use "~" in a SMARTS string as a wildcard bond to represent "ANY" bond in a substructure search using "babel" commands. Here are some examples of substructure matching with a wildcard bond "~" in the molecule pattern: f...
2020-06-08, 1148🔥, 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, 1100🔥, 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, 1069🔥, 0💬

Substructure Search with Wildcard Atom "*"
How to use Wildcard Atom in a substructure search using "babel" commands? You can use "*" in a SMARTS string as a wildcard atom to represent "ANY" atom in a substructure search using "babel" commands. Here are some examples of substructure matching with a wildcard atom "*" in the molecule pattern: f...
2020-06-08, 1063🔥, 0💬

Substructure Search with Open Babel
Where to find FAQ (Frequently Asked Questions) on Substructure Search with Open Babel? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Substructure Search with Open Babel. "babel -s ..." Command - Substructure Search Substructure Search with Wi...
2020-06-08, 1058🔥, 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, 1057🔥, 0💬

Open Babel Command Files on macOS
What are Open Babel commands and files installed by the macOS binary package? If you install Open Babel 2.3.1 with the pre-compiled binary package on a macOS computer, you will get a number of Open Babel commands. All Open Babel command files are located in the /usr/local/bin directory: fyicenter$ l...
2020-05-24, 1028🔥, 0💬

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