get_wetmore_oral_equiv: Get Literature Oral Equivalent Dose (deprecated).

View source: R/get_lit_oral_equiv.R

get_wetmore_oral_equivR 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

\insertRef

wetmore2012integrationhttk

\insertRef

wetmore2013relativehttk

\insertRef

wetmore2015incorporatinghttk

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))


httk documentation built on June 8, 2025, 12:19 p.m.