diff options
author | ranke <ranke@d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc> | 2006-04-21 21:28:41 +0000 |
---|---|---|
committer | ranke <ranke@d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc> | 2006-04-21 21:28:41 +0000 |
commit | f6ca9cbb4b1ca8056cd9668760e8d55d638154aa (patch) | |
tree | ef28c1395f565c940c061db96f5a7e6ab844729e /man | |
parent | d12771d9fd5fa73be38bd247ec79043652f0d64c (diff) |
Working version of the checkexperiment function,
including documentation, but R CMD check tells me that
"use of NULL environment is deprecated"
git-svn-id: http://kriemhild.uft.uni-bremen.de/svn/drfit@66 d1b72e20-2ee0-0310-a1c4-ad5adbbefcdc
Diffstat (limited to 'man')
-rw-r--r-- | man/checkexperiment.Rd | 33 | ||||
-rw-r--r-- | man/checkplate.Rd | 33 |
2 files changed, 33 insertions, 33 deletions
diff --git a/man/checkexperiment.Rd b/man/checkexperiment.Rd new file mode 100644 index 0000000..54352e8 --- /dev/null +++ b/man/checkexperiment.Rd @@ -0,0 +1,33 @@ +\name{checkexperiment} +\alias{checkexperiment} +\alias{checkplate} +\title{Check raw data from a specified experiment or microtiter plate} +\description{ + Report metadata from a specified experiment or microtiter plate from a + specified database, box plot controls, and plot the dose-response data. +} +\usage{ + checkplate(id,db="cytotox") + checkexperiment(id,db="ecotox") +} +\arguments{ + \item{id}{ + The id of the experiment or the plate identifying it within the database.} + \item{db}{ + The database to be used. Currently, the microtiter plate databases + "cytotox", "enzymes" of the UFT Department of Bioorganic Chemistry are + supported, as well as the database of ecotoxicity experiments "ecotox".} +} +\value{ + The function lists a report and shows two graphs side by side. +} +\examples{ +# Check plate number 1 in the cytotox database +\dontrun{data <- checkplate(3)} +} +\author{ + Johannes Ranke + \email{jranke@uni-bremen.de} + \url{http://www.uft.uni-bremen.de/chemie/ranke} +} +\keyword{database} diff --git a/man/checkplate.Rd b/man/checkplate.Rd deleted file mode 100644 index 794b3f6..0000000 --- a/man/checkplate.Rd +++ /dev/null @@ -1,33 +0,0 @@ -\name{checkplate} -\alias{checkplate} -\title{Check raw data from a specified microtiter plate} -\description{ - Report metadata from a specified microtiter plate from a specified database, box - plot positive and negative (blind) controls, and show the response data on the - plate. -} -\usage{ - checkplate(plate,db="cytotox") -} -\arguments{ - \item{plate}{ - The number of the plate identifying it within the database.} - \item{db}{ - The database to be used. Currently, the databases "cytotox" and "enzymes" - of the UFT Department of Bioorganic Chemistry are supported (default is - "cytotox").} -} -\value{ - The function lists a report and shows two graphs. -} -\examples{ -# Check plate number 1 in the cytotox database -\dontrun{data <- checkplate(1)} -} -\author{ - Johannes Ranke - \email{jranke@uni-bremen.de} - \url{http://www.uft.uni-bremen.de/chemie/ranke} -} -\keyword{database} -\keyword{internal} |