ChemieEnglischHugo

Depth-First

Depth-First
Recent content on Depth-First
Startseite
language
ChemieEnglisch
Veröffentlicht

A recent article introduced Rubidium, a cheminformatics toolkit written in Ruby. One of Ruby’s strengths is the speed with which it enables disparate pieces of code to be glued together - even if they’re written in different programming languages. In this article, we’ll see how Rubidium can be extended to provide support for converting IUPAC nomenclature into SMILES, InChI, or Molfile formats.

ChemieEnglisch
Veröffentlicht

Interconverting molecular languages is a very common operation in cheminformatics, so convenient conversion tools are desirable. Recent articles have discussed JRuby as a functional cheminformatics scripting environement. In this article, we’ll see how this functionality can be combined with convenience for molecular language conversions.

ChemieEnglisch
Veröffentlicht

Recent articles have discussed the use of JRuby for cheminformatics. We’ve seen how to parse SMILES strings, and read or write InChIs. In this article, we’ll see how easy it is to parse IUPAC nomenclature from JRuby using Peter Corbett’s OPSIN library. Installation After installing JRuby, simply download the OPSIN jarfile and copy it to your JRuby lib directory. You’re done.

ChemieEnglisch
Veröffentlicht

The increased use of the InChI identifier is making the reading and writing of InChIs a standard cheminformatics capability. Recent articles have discussed the advantages of JRuby for cheminformatics. One disadvantage of JRuby is that code written in C can’t be directly used. The presents a potential problem for libraries, such as the InChI toolkit, that are written in C. Fortunately, the solution is simple.