Skip to content

Commit

Permalink
Merge pull request #310 from USEPA/309-sc2-pc40
Browse files Browse the repository at this point in the history
309 sc2 pc40
  • Loading branch information
madison-feshuk authored Dec 4, 2024
2 parents 1c49765 + 47027e2 commit 29cfea3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
3 changes: 1 addition & 2 deletions R/mc6_mthds.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@
#' \item{noise}{Flag series as noisy if the quality of fit as calculated by the root mean square
#' error (rmse) for the series is greater than the cutoff (coff); \eqn{rmse > coff}{rmse > coff}.}
#' \item{border}{Flag series if borderline activity is suspected based on modeled top parameter
#' (top) relative to cutoff (coff); \eqn{|top|<=1.2*coff~or~|top|>=0.8*coff}{|top| <= 1.2(coff) or
#' |top| >= 0.8(coff)}.}
#' (top) relative to cutoff (coff); \eqn{0.8*coff<=|top|<=1.2*coff}.}
#' \item{overfit.hit}{Method not yet updated for tcpl implementation. Flag hit-calls that would
#' get changed after doing the small N correction to the aic values.}
#' \item{efficacy.50}{Flag low efficacy hits if series has an active hit call (hitc >= 0.9) and
Expand Down
8 changes: 8 additions & 0 deletions R/sc2_mthds.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
#' \item{pc20}{Add a cutoff value of 20. Typically for percent of control data.}
#' \item{pc25}{Add a cutoff value of 25. Typically for percent of control data.}
#' \item{pc30}{Add a cutoff value of 30. Typically for percent of control data.}
#' \item{pc40}{Add a cutoff value of 40. Typically for percent of control data.}
#' }
#' }
#'
Expand Down Expand Up @@ -251,6 +252,13 @@ sc2_mthds <- function() {
e1 <- bquote(coff <- c(coff, 16))
list(e1)

},

pc40 = function() {

e1 <- bquote(coff <- c(coff, 40))
list(e1)

}
)
}
Expand Down
3 changes: 1 addition & 2 deletions man/MC6_Methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/SC2_Methods.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions vignettes/Introduction_Appendices.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2212,8 +2212,7 @@ FlagDescription <- c("Flag series if model directionality is questionable, i.e.
square error $(rmse)$ for the series is greater than the cutoff $(coff)$;
$rmse > coff$",
"Flag series if borderline activity is suspected based on modeled top
parameter $(top)$ relative to cutoff $(coff)$; $|top| <= 1.2 * coff$ or
$|top|>= 0.8 * coff$.",
parameter $(top)$ relative to cutoff $(coff)$; $0.8 * coff <= |top| <= 1.2 * coff$",
"Flag series if the average number of replicates per concentration is less than
2; $nrep < 2$.",
"Flag series if 4 concentrations or less were tested; $nconc <= 4$.",
Expand Down

0 comments on commit 29cfea3

Please sign in to comment.