View source: R/get_lit_oral_equiv.R
get_lit_oral_equiv | R Documentation |
This function 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.
get_lit_oral_equiv(
conc,
chem.name = NULL,
chem.cas = NULL,
dtxsid = NULL,
suppress.messages = FALSE,
which.quantile = 0.95,
species = "Human",
input.units = "uM",
output.units = "mg",
clearance.assay.conc = NULL,
...
)
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. |
dtxsid |
EPA's 'DSSTox Structure ID (https://comptox.epa.gov/dashboard) the chemical must be identified by either CAS, name, or DTXSIDs |
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. |
Equivalent dose in specified units, default of mg/kg BW/day.
John Wambaugh
wetmore2012integrationhttk
\insertRefwetmore2013relativehttk
\insertRefwetmore2015incorporatinghttk
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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.