From c1a1e8c95ca28904e74bbd4b4afc8fe19a925ebc Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Fri, 31 Mar 2017 17:53:41 +0200 Subject: Make RODBC a hard dependency again, ChangeLog --- ChangeLog | 6 +++++- DESCRIPTION | 3 +-- NAMESPACE | 3 ++- R/checkexperiment.R | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 132c7c2..e03db8c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,16 @@ -2017-03-30 Johannes Ranke +2017-03-31 Johannes Ranke * DESCRIPTION: New verson 0.7.1 * Change package encoding to UTF-8 * Add checkcontrols() function + * Add check of positive controls in checkexperiment() for Vibrio fischeri + data * Add static documentation using pkgdown * R/drfit.R: Suppress error messages to pass CRAN checks for examples * Update test results * Remove trailing whitespace and mixed indentation in source files + * Make RODBC a hard dependency again to avoid problems with R not finding + odbcDriverConnect 2016-09-02 Johannes Ranke diff --git a/DESCRIPTION b/DESCRIPTION index 62107c8..d9982e4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,8 +4,7 @@ Date: 2017-03-31 Title: Dose-Response Data Evaluation Authors@R: c(person("Johannes", "Ranke", role = c("aut", "cre"), email = "jranke@uni-bremen.de")) -Imports: graphics, grDevices, MASS, drc, reshape2, qcc -Suggests: RODBC +Imports: graphics, grDevices, MASS, drc, reshape2, qcc, RODBC Description: A somewhat outdated package of basic and easy-to-use functions for fitting dose-response curves to continuous dose-response data, calculating some toxicological parameters and plotting the results. Please consider using diff --git a/NAMESPACE b/NAMESPACE index 5d17fd6..7f0ac50 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -4,7 +4,8 @@ import( graphics, grDevices, stats, - MASS + MASS, + RODBC ) importFrom("drc", drm, ED, LN.2, LL.2, BC.4, W1.2) diff --git a/R/checkexperiment.R b/R/checkexperiment.R index 8c844e6..5af237c 100644 --- a/R/checkexperiment.R +++ b/R/checkexperiment.R @@ -1,4 +1,4 @@ -if(getRversion() >= '2.15.1') utils::globalVariables(c("type", "conc")) +if(getRversion() >= '2.15.1') utils::globalVariables(c("type", "conc", "substance")) checkexperiment <- function(id, db = "ecotox", endpoint = "%") { databases <- data.frame( -- cgit v1.2.1