aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2018-12-12 10:22:30 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2018-12-12 10:22:30 +0100
commita8b7ab73a5df4fdf6cac5bad052b9ed77138fc86 (patch)
treecb4c76677217dd8da215b866ceecdcd279e52a81 /man
parent6cd60a250597e6cae027e17fbb9dd40ca63f1728 (diff)
Add whereClause argument to checkexperiment
Diffstat (limited to 'man')
-rw-r--r--man/checkexperiment.Rd10
1 files changed, 9 insertions, 1 deletions
diff --git a/man/checkexperiment.Rd b/man/checkexperiment.Rd
index 9d365f8..df11ebf 100644
--- a/man/checkexperiment.Rd
+++ b/man/checkexperiment.Rd
@@ -8,7 +8,8 @@
}
\usage{
checkplate(id, db = c("cytotox", "enzymes"))
- checkexperiment(id, db = c("ecotox", "cytotox", "enzymes"), endpoint = "\%")
+ checkexperiment(id, db = c("ecotox", "cytotox", "enzymes"), endpoint = "\%",
+ whereClause = "1")
}
\arguments{
\item{id}{
@@ -20,6 +21,10 @@
\item{endpoint}{
The endpoint that should be used for selecting the data. Only important if
the database "ecotox" is used. Defaults to "\%".}
+ \item{whereClause}{
+ With this argument, additional conditions for the SQL query can be set,
+ e.g. "duration = 48" (i.e. "Only retrieve data with duration 48"). The
+ default is 1 (in SQL syntax this means TRUE).}
}
\value{
The function lists a report and shows two graphs.
@@ -27,6 +32,9 @@
\examples{
# Check plate number 3 in the cytotox database
\dontrun{checkplate(3)}
+
+# Check data from experiment 1517 with duration 48 hours
+\dontrun{checkexperiment(1517, whereClause = "duration = 48")}
}
\author{
Johannes Ranke

Contact - Imprint