get_wetmore_oral_equiv {httk}R Documentation

Get Literature Oral Equivalent Dose (deprecated).

Description

This function is included for backward compatibility. It calls get_lit_oral_equiv which converts a chemical plasma concetration to an oral equivalent dose using the values from the Wetmore et al. (2012) and (2013) publications and other literature.

Usage

get_wetmore_oral_equiv(
  conc,
  chem.name = NULL,
  chem.cas = NULL,
  suppress.messages = FALSE,
  which.quantile = 0.95,
  species = "Human",
  input.units = "uM",
  output.units = "mg",
  clearance.assay.conc = NULL,
  ...
)

Arguments

conc

Bioactive in vitro concentration in units of specified input.units, default of uM.

chem.name

Either the chemical name or the CAS number must be specified.

chem.cas

Either the CAS number or the chemical name must be specified.

suppress.messages

Suppress output messages.

which.quantile

Which quantile from the SimCYP Monte Carlo simulation is requested. Can be a vector. Papers include 0.05, 0.5, and 0.95 for humans and 0.5 for rats.

species

Species desired (either "Rat" or default "Human").

input.units

Units of given concentration, default of uM but can also be mg/L.

output.units

Units of dose, default of 'mg' for mg/kg BW/ day or 'mol' for mol/ kg BW/ day.

clearance.assay.conc

Concentration of chemical used in measureing intrinsic clearance data, 1 or 10 uM.

...

Additional parameters passed to get_lit_css.

Value

Equivalent dose in specified units, default of mg/kg BW/day.

Author(s)

John Wambaugh

References

Wetmore BA, Wambaugh JF, Ferguson SS, Sochaski MA, Rotroff DM, Freeman K, Clewell III HJ, Dix DJ, Andersen ME, Houck KA, others (2012). “Integration of dosimetry, exposure, and high-throughput screening data in chemical toxicity assessment.” Toxicological Sciences, 125(1), 157–174. doi:10.1093/toxsci/kfr254.

Wetmore BA, Wambaugh JF, Ferguson SS, Li L, Clewell III HJ, Judson RS, Freeman K, Bao W, Sochaski MA, Chu T, others (2013). “Relative impact of incorporating pharmacokinetics on predicting in vivo hazard and mode of action from high-throughput in vitro toxicity assays.” toxicological sciences, 132(2), 327–346. doi:10.1093/toxsci/kft012.

Wetmore BA, Wambaugh JF, Allen B, Ferguson SS, Sochaski MA, Setzer RW, Houck KA, Strope CL, Cantwell K, Judson RS, others (2015). “Incorporating high-throughput exposure predictions with dosimetry-adjusted in vitro bioactivity to inform chemical toxicity testing.” Toxicological Sciences, 148(1), 121–136. doi:10.1093/toxsci/kfv171.

Examples


table <- NULL
for(this.cas in sample(get_lit_cheminfo(),50)) table <- rbind(table,cbind(
as.data.frame(this.cas),as.data.frame(get_lit_oral_equiv(conc=1,chem.cas=this.cas))))




get_lit_oral_equiv(0.1,chem.cas="34256-82-1")

get_lit_oral_equiv(0.1,chem.cas="34256-82-1",which.quantile=c(0.05,0.5,0.95))


[Package httk version 2.6.1 Index]