Ruby CDK for Newbies
Scripting languages and cheminformatics can be a highly-effective combination. With their relaxed syntax, compilation-free execution, and interactive testing environments, scripting languages offer fast development iteration cycles. And scripting languages' support for manipulating libraries written in other languages can be key in today's heterogeneous cheminformatics software environment.
Although there are many cheminformatics scripting environments to choose from, Ruby offers some important advantages. Number one on the list is the wildly-popular Ruby on Rails Web development framework. Others worth mentioning include interactive ruby (irb), the RubyGems package manager, the Rake build system, the JRuby Ruby implementation, RubyForge, and a host of other productivity-boosters.
A major focus of Depth-First over the last few months has been Ruby CDK. This library consists of a thin Ruby wrapper around the open source Chemistry Development Kit (CDK), Structure-CDK, an open source 2D rendering toolkit, and OPSIN, an open source chemical nomenclature parser. A recent comment on Depth-First by Egon Willighagen, one of CDK's creators, got me thinking about centralizing this documentation. The following collection of links is a step in that direction.
Overview and Installation
Agile Chemical Informatics Development with CDK and Ruby CDK 0.3.0 Installation of Ruby CDK on Linux.
Running Ruby Java Bridge on Windows Special installation instructions for Ruby CDK on Windows.
Ruby CDK in Its Environment
From IUPAC Nomenclature to 2D Structures with OPSIN OPSIN converts IUPAC nomenclature into molecular representations and is now part of Ruby CDK.
Eleven Free Cheminformatics Scripting Environments So many choices, so little time.
Metaprogramming with Ruby : mapping Java Packages Onto Ruby Modules Behind the scenes look at a trick used in Ruby CDK.
Using Ruby CDK
Build a Rails Cheminformatics Application in Thirty Minutes First article in a series on building a SMILES Depict application.
Anatomy of a Cheminformatics Web Application: Beautifying Depict Second article in the series - cleaning up the Depict user interface.
Anatomy of a Cheminformatics Web Application: Ajaxifying Depict Third article in the series - use Ajax to automatically update the Depict drawing.
Cheminformatics for the Web: Convert SD Files to HTML with Ruby CDK SD Files are both everywhere and useless by themselves to chemists - why not convert them into HTML and post them to the Web?
Diversity-Oriented Chemical Informatics CDK is chock-full of nifty little tidbits, like the ability to enumerate all molecules of a given empirical formula.
Scripting Molecular Fingerprints with Ruby CDK To borrow a phrase from a cheminformatics master: "It's just that easy."
Hacking Molbank: Creating a Graphical Table of Contents The intersection of Open Access, Open Source, and rapid application development.
Anatomy of a Cheminformatics Web Application: Structure Cleanup in Java Molecular Editor The structure editor can be lean, mean, and still highly functional - just offload resource-hungry features to the server.
From IUPAC Name to Molecular Formula with Ruby CDK Peter Corbett's awesome OPSIN Library plays nice with Ruby CDK.
From InChI to Image with Ruby Open Babel and Ruby CDK InChIs are not easy to interpret - fortunately, this little library will do it for you.
Easily Calculate TPSA Descriptors from SMILES Strings Using Ruby CDK It just works.
Ruby CDK One-Liners: Create a Molfile with 2D Atom Coordinates from Arbitrary SMILES Strings Extremely short library for solving a very common cheminformatics problem.
Source Code Documentation in Ruby: RDoc for Ruby CDK When all else fails, read the documentation.
Image Generation Credit: txt2pic.com
Ruby CDK One-Liners: Create a Molfile With 2D Atom Coordinates From Arbitrary SMILES Strings
A very common operation in cheminformatics is the interconversion of molfiles and SMILES strings. Usually, converting from SMILES gives a molfile in which all atoms have coordinates of (0,0,0). Sometimes you just need more than that. The following Ruby CDK code will accept an arbitrary SMILES string and return a molfile with fully-assigned 2D atom coordinates:
require 'rubygems'
require 'rcdk'
require 'rcdk/util'
include RCDK::Util
XY.coordinate_molfile Lang.smiles_to_molfile('c1ccccc1')Looking at it this way, those four lines of require/include statements seem pretty darn verbose.
Easily Calculate TPSA Descriptors from SMILES Strings Using Ruby CDK 3
A D-F reader wrote in to ask how to calculate Topological Polar Surface Area (TPSA) using Ruby CDK. TPSA is one of the most widely-used descriptors for predicting membrane permeability and from it other important ADME properties. This article shows how to calculate TPSA with Ruby using Ruby CDK.
The Library
Our library consists of nothing more than a few method calls to manipulate the underlying CDK library. The tpsa_for method accepts any SMILES string and returns the calculated TPSA:
require 'rubygems'
require_gem 'rcdk'
require 'rcdk/util'
jrequire 'org.openscience.cdk.qsar.descriptors.molecular.TPSADescriptor'
module TPSA
@@calc = Org::Openscience::Cdk::Qsar::Descriptors::Molecular::TPSADescriptor.new
def tpsa_for smiles
mol = RCDK::Util::Lang.read_smiles smiles
@@calc.calculate(mol).getValue.doubleValue
end
endAn Interactive Test
Saving the library to a file called tpsa.rb lets us test it through interactive Ruby (irb):
$ irb irb(main):001:0> require 'tpsa' ./tpsa.rb:2:Warning: require_gem is obsolete. Use gem instead. /usr/local/lib/ruby/gems/1.8/gems/rcdk-0.3.0/lib/rcdk/java.rb:26:Warning: require_gem is obsolete. Use gem instead. => true irb(main):002:0> include TPSA => Object irb(main):003:0> tpsa_for 'COCCc1ccc(OCC(O)CNC(C)C)cc1' # metoprolol => 50.72 irb(main):004:0> tpsa_for 'O=C3Nc1ccc(Cl)cc1C(c2ccccc2)=NC3O' # oxazepam => 61.69
The results we obtain for metoprolol and oxazepam are 50.72 and 61.69, respectively. These values compare well with those reported by Ertl et al. in the definitive paper on TPSA (50.7 and 61.7, respectively).
Conclusions
It doesn't take much Ruby to command a wide range of cheminformatics functionality - in this case TPSA calculations. But the fun doesn't stop there. The CDK, and by extension Ruby CDK, offer access to a wide array of descriptor calculations, each of which follow the same basic pattern outlined here. All of it can be prototyped, debugged, and deployed through one of the most flexible programming languages currently available.
From InChI to Image with Ruby Open Babel and Ruby CDK 2
Like SMILES, InChI is a line notation that can be used to encode and store chemical information relatively efficiently. Although there are a number of scenarios where this strategy is used, what many of them have in common is the need to eventually convert an InChI into a human-readable form. In most cases, this form will be a 2D chemical structure. This article will show how a small Ruby library can convert InChI strings into color PNG images with the help of Ruby Open Babel and Ruby CDK.
The Library
Our library accepts an InChI as input and produces a scaled PNG image as output. It re-uses part of a previously-discussed library for the interconversion of SMILES and InChI.
require 'rubygems'
require 'openbabel'
require_gem 'rcdk'
require 'rcdk/util'
module InChI
@@to_smiles = OpenBabel::OBConversion.new
@@to_smiles.set_in_and_out_formats 'inchi', 'smi'
def inchi_to_png inchi, path_to_png, width, height
smiles = inchi_to_smiles inchi
RCDK::Util::Image.smiles_to_png smiles, path_to_png, width, height
end
private
def inchi_to_smiles inchi
mol = OpenBabel::OBMol.new
@@to_smiles.read_string(mol, inchi) or raise "Can't parse InChI: #{inchi}."
@@to_smiles.write_string(mol).strip
end
endTesting
Our library can be tested by saving it to a file called inchi.rb and using interactive Ruby (the warning can safely be ignored for now):$ irb irb(main):001:0> require 'inchi' ./inchi.rb:3:Warning: require_gem is obsolete. Use gem instead. /usr/local/lib/ruby/gems/1.8/gems/rcdk-0.3.0/lib/rcdk/java.rb:26:Warning: require_gem is obsolete. Use gem instead. i=> true irb(main):002:0> include InChI => Object irb(main):003:0> inchi='InChI=1/C23H27FN4O2/c1-15-18(23(29)28-10-3-2-4-21(28)25-15)9-13-27-11-7-16(8-12-27)22-19-6-5-17(24)14-20(19)30-26-22/h5-6,14,16H,2-4,7-13H2,1H3' #risperidone => "InChI=1/C23H27FN4O2/c1-15-18(23(29)28-10-3-2-4-21(28)25-15)9-13-27-11-7-16(8-12-27)22-19-6-5-17(24)14-20(19)30-26-22/h5-6,14,16H,2-4,7-13H2,1H3" irb(main):004:0> inchi_to_png inchi, 'risperidone.png', 300, 300 => nil
This code produces the following image:

Our library can also be used on more complicated molecules, for example Brevetoxin:
$ irb irb(main):001:0> require 'inchi' ./inchi.rb:3:Warning: require_gem is obsolete. Use gem instead. /usr/local/lib/ruby/gems/1.8/gems/rcdk-0.3.0/lib/rcdk/java.rb:26:Warning: require_gem is obsolete. Use gem instead. => true irb(main):002:0> include InChI => Object irb(main):003:0> inchi='InChI=1/C49H70O13/c1-26-17-36-39(22-45(52)58-36)57-44-21-38-40(62-48(44,4)23-26)18-28(3)46-35(55-38)11-7-6-10-31-32(59-46)12-8-14-34-33(54-31)13-9-15-43-49(5,61-34)24-42-37(56-43)20-41-47(60-42)30(51)19-29(53-41)16-27(2)25-50/h6-8,14,25-26,28-44,46-47,51H,2,9-13,15-24H2,1,3-5H3/b7-6-,14-8-' #brevetoxin a => "InChI=1/C49H70O13/c1-26-17-36-39(22-45(52)58-36)57-44-21-38-40(62-48(44,4)23-26)18-28(3)46-35(55-38)11-7-6-10-31-32(59-46)12-8-14-34-33(54-31)13-9-15-43-49(5,61-34)24-42-37(56-43)20-41-47(60-42)30(51)19-29(53-41)16-27(2)25-50/h6-8,14,25-26,28-44,46-47,51H,2,9-13,15-24H2,1,3-5H3/b7-6-,14-8-" irb(main):004:0> inchi_to_png inchi, 'brevetoxin.png', 300, 200 => nil
This produces the following image:

Conclusions
While our library could certainly be improved, it solves what otherwise would be a very difficult problem conveniently. Areas for further work include error handling and improving the appearance of the images (the latter is the aim of Firefly). Despite the fact that three programming languages are used (Ruby, C++, and Java), this complexity is neatly encapsulated behind a simple Ruby interface.
Structure Diagram Generation 4
Given a molecule with no 2D coordinates, how would you render a human-readable view? This problem arises in many situations, but most commonly in the context of interpreting line notations such as IUPAC nomenclature, SMILES, or InChI. Whatever the solution you come up with, you'll come face-to-face with the structure diagram generation (SDG) problem.
Generating 2D molecular coordinates is a fundamental (and remarkably difficult) problem in cheminformatics. Discussions in the primary literature date back to at least the 1970s with Chemical Abstract Service's pioneering large-scale efforts. A recent article from Chemical Computing Group (CCG) described the design and implementation of an advanced SDG system. To my knowledge, the only open source implementation of an SDG system is found in the Chemistry Development Kit, and by extension Ruby CDK.
The SDG problem plays an important role in the aesthetics of chemical structure diagrams, as mentioned by two readers. To render a molecule aesthetically, 2D coordinates must minimize confusing atom overlaps, unconventional orientations, and unusual bond angles.
The role of SDG in cheminformatics can only continue to increase in importance, especially as more and more structures are automatically generated through mining the primary literature, the Internet, old PDFs, and other sources. With all of these new computer-generated structures will come the need to make them readily understandable to a chemist through SDG.
Older posts: 1 2

