Skip to content

Commit 29cfea3

Browse files
Merge pull request #310 from USEPA/309-sc2-pc40
309 sc2 pc40
2 parents 1c49765 + 47027e2 commit 29cfea3

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

Diff for: R/mc6_mthds.R

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@
4747
#' \item{noise}{Flag series as noisy if the quality of fit as calculated by the root mean square
4848
#' error (rmse) for the series is greater than the cutoff (coff); \eqn{rmse > coff}{rmse > coff}.}
4949
#' \item{border}{Flag series if borderline activity is suspected based on modeled top parameter
50-
#' (top) relative to cutoff (coff); \eqn{|top|<=1.2*coff~or~|top|>=0.8*coff}{|top| <= 1.2(coff) or
51-
#' |top| >= 0.8(coff)}.}
50+
#' (top) relative to cutoff (coff); \eqn{0.8*coff<=|top|<=1.2*coff}.}
5251
#' \item{overfit.hit}{Method not yet updated for tcpl implementation. Flag hit-calls that would
5352
#' get changed after doing the small N correction to the aic values.}
5453
#' \item{efficacy.50}{Flag low efficacy hits if series has an active hit call (hitc >= 0.9) and

Diff for: R/sc2_mthds.R

+8
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
#' \item{pc20}{Add a cutoff value of 20. Typically for percent of control data.}
6666
#' \item{pc25}{Add a cutoff value of 25. Typically for percent of control data.}
6767
#' \item{pc30}{Add a cutoff value of 30. Typically for percent of control data.}
68+
#' \item{pc40}{Add a cutoff value of 40. Typically for percent of control data.}
6869
#' }
6970
#' }
7071
#'
@@ -251,6 +252,13 @@ sc2_mthds <- function() {
251252
e1 <- bquote(coff <- c(coff, 16))
252253
list(e1)
253254

255+
},
256+
257+
pc40 = function() {
258+
259+
e1 <- bquote(coff <- c(coff, 40))
260+
list(e1)
261+
254262
}
255263
)
256264
}

Diff for: man/MC6_Methods.Rd

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: man/SC2_Methods.Rd

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vignettes/Introduction_Appendices.Rmd

+1-2
Original file line numberDiff line numberDiff line change
@@ -2212,8 +2212,7 @@ FlagDescription <- c("Flag series if model directionality is questionable, i.e.
22122212
square error $(rmse)$ for the series is greater than the cutoff $(coff)$;
22132213
$rmse > coff$",
22142214
"Flag series if borderline activity is suspected based on modeled top
2215-
parameter $(top)$ relative to cutoff $(coff)$; $|top| <= 1.2 * coff$ or
2216-
$|top|>= 0.8 * coff$.",
2215+
parameter $(top)$ relative to cutoff $(coff)$; $0.8 * coff <= |top| <= 1.2 * coff$",
22172216
"Flag series if the average number of replicates per concentration is less than
22182217
2; $nrep < 2$.",
22192218
"Flag series if 4 concentrations or less were tested; $nconc <= 4$.",

0 commit comments

Comments
 (0)