aboutsummaryrefslogtreecommitdiff
path: root/man/chent.Rd
diff options
context:
space:
mode:
Diffstat (limited to 'man/chent.Rd')
-rw-r--r--man/chent.Rd20
1 files changed, 17 insertions, 3 deletions
diff --git a/man/chent.Rd b/man/chent.Rd
index a1a5fe8..d94452e 100644
--- a/man/chent.Rd
+++ b/man/chent.Rd
@@ -9,7 +9,20 @@ An \code{\link{R6Class}} generator object
\description{
The class is initialised with an identifier. Chemical information is retrieved from
the internet. Additionally, it can be generated using RDKit if RDKit and its
-python bindings are installed and configured for use with PythonInR.
+python bindings are installed.
+}
+\examples{
+oct <- chent$new("1-octanol", smiles = "CCCCCCCCO")
+print(oct)
+if (!is.null(oct$Picture)) {
+ plot(oct)
+}
+
+caffeine <- chent$new("caffeine")
+print(caffeine)
+if (!is.null(caffeine$Picture)) {
+ plot(caffeine)
+}
}
\keyword{data}
\section{Public fields}{
@@ -25,8 +38,9 @@ python bindings are installed and configured for use with PythonInR.
\item{\code{pubchem}}{List of information retreived from PubChem}
-\item{\code{rdkit}}{List of information obtained with RDKit, if installed and
-configured for use with PythonInR}
+\item{\code{rdkit}}{List of information obtained with RDKit}
+
+\item{\code{mol}}{<rdkit.Chem.rdchem.Mol> object}
\item{\code{svg}}{SVG code}

Contact - Imprint