This function initializes the parameters needed in the functions
calc_mc_css
, calc_mc_oral_equiv
, and
calc_analytic_css
for the three
compartment steady state model ('3compartmentss') as used in
Rotroff et al. (2010), Wetmore et al. (2012), Wetmore et al. (2015), and
elsewhere. By assuming that enough time has passed to reach steady-state, we
eliminate the need for tissue-specific parititon coefficients because we
assume all tissues have come to equilibrium with the unbound concentration
in plasma. However, we still use chemical properties to predict the
blood:plasma ratio for estimating first-pass hepatic metabolism for oral
exposures.
parameterize_steadystate(
chem.cas = NULL,
chem.name = NULL,
dtxsid = NULL,
species = "Human",
clint.pvalue.threshold = 0.05,
default.to.human = FALSE,
class.exclude = TRUE,
force.human.clint.fup = FALSE,
adjusted.Funbound.plasma = TRUE,
adjusted.Clint = TRUE,
restrictive.clearance = TRUE,
fup.lod.default = 0.005,
suppress.messages = FALSE,
minimum.Funbound.plasma = 1e-04,
Caco2.options = NULL,
...
)
Hepatic Intrinsic Clearance, uL/min/10^6 cells.
Fraction of the oral dose absorbed and surviving gut metabolism, that is, the fraction of the dose that enters the gutlumen.
Fraction of plasma that is not bound.
Flow rate of blood exiting the liver, L/h/kg BW^3/4.
Glomerular Filtration Rate, L/h/kg BW^3/4, volume of fluid filtered from kidney and excreted.
Body Weight, kg
Molecular Weight, g/mol
Millions cells per gram of liver tissue.
Volume of the liver per kg body weight, L/kg BW.
Liver tissue density, kg/L.
The fraction of chemical unbound in hepatocyte assay using the method of Kilford et al. (2008)
Fraction of dose remaining after first pass clearance, calculated from the corrected well-stirred model.
Chemical Abstract Services Registry Number (CAS-RN) -- the chemical must be identified by either CAS, name, or DTXISD
Chemical name (spaces and capitalization ignored) -- the chemical must be identified by either CAS, name, or DTXISD
EPA's DSSTox Structure ID (https://comptox.epa.gov/dashboard) -- the chemical must be identified by either CAS, name, or DTXSIDs
Species desired (either "Rat", "Rabbit", "Dog", "Mouse", or default "Human").
Hepatic clearances with clearance assays having p-values greater than the threshold are set to zero.
Substitutes missing species-specific values with human values if TRUE (default is FALSE).
Exclude chemical classes identified as outside of domain of applicability by relevant modelinfo_[MODEL] file (default TRUE).
Uses human hepatic intrinsic clearance and fraction of unbound plasma in calculation of partition coefficients for rats if true.
Uses Pearce et al. (2017) lipid binding adjustment for Funbound.plasma (which impacts partition coefficients) when set to TRUE (Default).
Uses Kilford et al. (2008) hepatocyte incubation binding adjustment for Clint when set to TRUE (Default).
In calculating hepatic.bioavailability, protein binding is not taken into account (set to 1) in liver clearance if FALSE.
Default value used for fraction of unbound plasma for chemicals where measured value was below the limit of detection. Default value is 0.0005.
Whether or not the output message is suppressed.
Monte Carlo draws less than this value are set equal to this value (default is 0.0001 -- half the lowest measured Fup in our dataset).
A list of options to use when working with Caco2 apical to
basolateral data Caco2.Pab
, default is Caco2.options = list(Caco2.Pab.default = 1.6,
Caco2.Fabs = TRUE, Caco2.Fgut = TRUE, overwrite.invivo = FALSE, keepit100 = FALSE). Caco2.Pab.default sets the default value for
Caco2.Pab if Caco2.Pab is unavailable. Caco2.Fabs = TRUE uses Caco2.Pab to calculate
fabs.oral, otherwise fabs.oral = Fabs
. Caco2.Fgut = TRUE uses Caco2.Pab to calculate
fgut.oral, otherwise fgut.oral = Fgut
. overwrite.invivo = TRUE overwrites Fabs and Fgut in vivo values from literature with
Caco2 derived values if available. keepit100 = TRUE overwrites Fabs and Fgut with 1 (i.e. 100 percent) regardless of other settings.
See get_fbio
for further details.
Other parameters
John Wambaugh and Greg Honda
We model systemic oral bioavailability as
Fbio=Fabs*Fgut*Fhep.
Fhep
is estimated from in vitro TK data using
calc_hep_bioavailability
.
If Fbio
has been measured in vivo and is found in
table chem.physical_and_invitro.data
then we set
Fabs*Fgut
to the measured value divided by
Fhep
Otherwise, if Caco2 membrane permeability data or predictions
are available Fabs is estimated
using calc_fabs.oral
.
Intrinsic hepatic metabolism is used to very roughly estimate
Fgut
using calc_fgut.oral
.
pearce2017httkhttk
kilford2008hepatocellularhttk
calc_analytic_css_3compss
apply_clint_adjustment
tissue.data
physiology.data
parameters <- parameterize_steadystate(chem.name='Bisphenol-A',species='Rat')
parameters <- parameterize_steadystate(chem.cas='80-05-7')
Run the code above in your browser using DataLab