SC1_Methods | R Documentation |
sc1_mthds
returns a list of functions to be used during level 1
single-concentration processing.
sc1_mthds()
The functions contained in the list returned by sc1_mthds
return
a list of expressions to be executed in the sc2
(not exported)
function environment. The functions are described here for reference
purposes, The sc1_mthds
function is not exported, nor is it
intended for use.
All available methods are described in the Available Methods section, listed by the function/method name.
A list functions
The methods are broken into three types, based on what fields they define. Different methods are used to define "bval" (the baseline value), "pval" (the positive control value), and "resp" (the final response value).
Although it does not say so specifically in each description, all methods are applied by acid.
More information about the level 3 single-concentration processing is available in the package vignette, "Data_processing."
Calculate the baseline value (bval) as the plate-wise median, by assay plate ID (apid), of the raw values (rval) for neutral control wells (wllt = n).
Calculate the baseline value (bval) as the plate-wise median, by assay plate ID (apid), of the raw values (rval) for test compound wells (wllt = t).
Calculate the baseline value (bval) as the plate-wise median, by assay plate ID (apid), of the raw values (rval) for test compound wells (wllt = t) and neutral control wells (wllt = n).
Calculate the baseline value (bval) as the median of the raw values (rval) for neutral control wells (wllt = n) by assay endpoint id (aeid).
Calculate the positive control value (pval) as the plate-wise median, by assay plate ID (apid), of the raw values (rval) for single-concentration gain-of-signal positive control wells (wllt = p).
Calculate the positive control value (pval) as the plate-wise median, by assay plate ID (apid), of the raw values (rval) for multiple-concentration loss-of-signal negative control wells (wllt = m).
Calculate the positive control value (pval) as the plate-wise maximum, by assay plate ID (apid), of the medians of the raw values (rval) for gain-of-signal single- or multiple-concentration positive control wells (wllt = p or c) by apid, well type, and concentration.
Calculate the positive control value (pval) as the plate-wise minimum, by assay plate ID (apid), of the medians of the raw values (rval) for gain-of-signal single- or multiple-concentration positive control wells (wllt = p or c) by apid, well type, and concentration.
Calculate the positive control value (pval) as the plate-wise minimum, by assay plate ID (apid), of the medians of the raw values (rval) for gain-of-signal single- or multiple-concentration negative control wells (wllt = m or o) by apid, well type, and concentration.
Set the positive control value (pval) to 0; pval = 0.
Calculate the positive control value (pval) as the plate-wise median, by assay plate ID (apid), of the raw values (rval) for single-concentration gain-of-signal positive control wells (wllt = p). For plates without p wells, set the pval as the median pval calculated from all plates.
Calculate the normalized response (resp) as a percent of control, i.e. the
ratio of the difference between the raw (rval) and baseline (bval) values divided by the
difference between positive control (pval) and baseline (bval) values multiplied by 100;
resp=(rval-bval)/(pval-bval)*100
.
Calculate the normalized response (resp) as fold change, i.e. the ratio of
the raw (rval) and baseline (bval) values; resp = rval/bval
.
Calculate the normalized response (resp) as the fold change of logged, i.e. the difference between raw (rval) and baseline (bval) log-scale values.
Transform the response values to log-scale (base 2).
Multiply the normalized response value (resp) by -1;
-1*resp
.
Use raw value (rval) as is. This may be necessary for additional endpoint-specific adjustments, or where no additional sc1 methods are needed.
Calculate the normalized response (resp) as a zero center
fold change, i.e. the ratio of the raw (rval) and baseline (bval) values minus 1;
resp=rval/bval-1
. Typically used for increasing responses.
This function is not exported and is not intended to be used by the user.
sc1
, Method functions
to query what
methods get applied to each acid
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.