diff options
Diffstat (limited to 'man')
-rw-r--r-- | man/chent.Rd | 5 | ||||
-rw-r--r-- | man/pp.Rd | 26 | ||||
-rw-r--r-- | man/print.chent.Rd | 17 | ||||
-rw-r--r-- | man/print.pai.Rd | 17 |
4 files changed, 64 insertions, 1 deletions
diff --git a/man/chent.Rd b/man/chent.Rd index ed304f5..c42863d 100644 --- a/man/chent.Rd +++ b/man/chent.Rd @@ -24,9 +24,12 @@ from the internet. \item{\code{mw}}{Molecular weight, with attribute 'source'} \item{\code{pubchem}}{List of information retreived from PubChem} + +\item{\code{rdkit}}{List of information obtained with RDKit} }} \examples{ -oct <- chent$new("1-octanol") +oct <- chent$new("1-octanol", smiles = "CCCCCCCCO") +oct$try_pubchem() print(oct) } \keyword{data} diff --git a/man/pp.Rd b/man/pp.Rd new file mode 100644 index 0000000..5be85bf --- /dev/null +++ b/man/pp.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2 (4.1.1): do not edit by hand +% Please edit documentation in R/chent.R +\docType{class} +\name{pp} +\alias{pp} +\title{R6 class for holding a product with at least one active ingredient} +\format{An \code{\link{R6Class}} generator object.} +\usage{ +pp +} +\description{ +An R6 class for holding information about a product with at least one active ingredient +} +\section{Fields}{ + +\describe{ +\item{\code{name}}{The name of the product} + +\item{\code{ais}}{A list of active ingredients} + +\item{\code{concentrations}}{The concentration of the ais} + +\item{\code{concentration_units}}{Defaults to g/L} +}} +\keyword{data} + diff --git a/man/print.chent.Rd b/man/print.chent.Rd new file mode 100644 index 0000000..56f04f5 --- /dev/null +++ b/man/print.chent.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2 (4.1.1): do not edit by hand +% Please edit documentation in R/chent.R +\name{print.chent} +\alias{print.chent} +\title{Printing method for chent objects} +\usage{ +\method{print}{chent}(x, ...) +} +\arguments{ +\item{x}{The chent object to be printed} + +\item{...}{Further arguments for compatibility with the S3 method} +} +\description{ +Printing method for chent objects +} + diff --git a/man/print.pai.Rd b/man/print.pai.Rd new file mode 100644 index 0000000..d7ee332 --- /dev/null +++ b/man/print.pai.Rd @@ -0,0 +1,17 @@ +% Generated by roxygen2 (4.1.1): do not edit by hand +% Please edit documentation in R/chent.R +\name{print.pai} +\alias{print.pai} +\title{Printing method for pai objects (pesticidal active ingredients)} +\usage{ +\method{print}{pai}(x, ...) +} +\arguments{ +\item{x}{The chent object to be printed} + +\item{...}{Further arguments for compatibility with the S3 method} +} +\description{ +Printing method for pai objects (pesticidal active ingredients) +} + |