% ChemmineOB
% Kevin Horan & Thomas Girke
% r format(Sys.time(),"%B %d, %Y")
library(ChemmineOB) library(knitcitations) RefManageR:::BibOptions(style="markdown") #`r citep(c("10.1186/1752-153X-2-5", "10.1186/1758-2946-3-33"))`. OpenBabel is an open source
ChemmineOB provides an R interface to a subset of
cheminformatics functionalities implemented by the OpelBabel C++ project
r citep(c("http://journal.chemistrycentral.com/content/2/1/5", "10.1186/1758-2946-3-33"))
. OpenBabel is an open source
cheminformatics toolbox that includes utilities for structure format
interconversions, descriptor calculations, compound similarity searching
and more. ChemineOB aims to make a subset of these
utilities available from within R. For non-developers,
ChemineOB is primarily intended to be used from
ChemmineR r citep(c("10.1093/bioinformatics/btn307", "10.1093/nar/gkr320","10.1093/bioinformatics/btt475"))
as an add-on package rather than used directly.
To use the ChemmineOB package on Linux or Mac, OpenBabel
2.3.0 or greater needs to be installed on a system. On Linux systems,
the OpenBabel header files are also required in order to compile ChemmineOB. The windows distribution
will include its own version of OpenBabel. The OpenBabel site
(http://openbabel.org/wiki/Get_Open_Babel) provides excellent
instructions for installing the OpenBabel software on Mac or Linux
systems. The ChemmineR and ChemmineOB
packages can be installed from within R with the
biocLite
install script.
source("http://bioconductor.org/biocLite.R") biocLite(c("ChemmineR", "ChemmineOB")) library("ChemmineR") library("ChemmineOB")
If the installation fails on Linux, you may need to manually set the locations of the open babel libraries and header files. This is best done through configure flags. For example, at the command prompt do:
$ R CMD INSTALL --configure-args='--with-openbabel-include=... --with-openbabel-lib=...' <ChemmineOB package file>
where the '...' are replaced by the relevant paths. See the README file for more details.
Detailed instructions for using ChemmineOB are provided in the vignette of the ChemmineR package instead of this document. The main reason for consolidating the documentation in one central document rather than distributing it across several vignettes is that it helps minimizing duplications and inconsistencies. It also is the more suitable format for providing a task-oriented description of functionalities for users. To obtain an overview of the OpenBabel utilities supported by ChemmineOB, we recommend consulting the OpenBabel Functions section of the ChemmineR vignette. To open the ChemmineR vignette from R, one can use the following command.
vignette("ChemmineR")
ChemmineOB now includes wrapper functions for all of OpenBabel, as genereted by SWIG. We still maintain our own set of functions to provide better integration with R in general and ChemmineR specifically.
If you are familiar with the Open Babel API, using the SWIG wrapper should be similar, once you know a few conventions used. You can look at the R code in this package to see examples of these.
OBConversion *x = new OBConversion(...)
in R you would have:
x = OBConversion(...)
x->AddOption(...)
we have:
OBConversion_AddOption(x,...)
result = stringp() OBDescriptor_GetStringValue(... , result$cast()) stringValue = result$value()
There are still many special cases however. The SWIG documentation can help, as well as browsing the generated R code in R/ChemmineOB.R.
sessionInfo()
This software was developed with funding from the National Science Foundation: ABI-0957099, 2010-0520325 and IGERT-0504249.
bibliography()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.