From 1df33dbb3d310f94ccddbf57906e12bd6fa93c3f Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 11 Sep 2015 10:04:54 +0200 Subject: Working version with basic functionality --- man/chent.Rd | 5 ++++- man/pp.Rd | 26 ++++++++++++++++++++++++++ man/print.chent.Rd | 17 +++++++++++++++++ man/print.pai.Rd | 17 +++++++++++++++++ 4 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 man/pp.Rd create mode 100644 man/print.chent.Rd create mode 100644 man/print.pai.Rd (limited to 'man') 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) +} + -- cgit v1.2.1