Skip to contents

The get_ACC function retrieves the activity concentration at cutoff (ACC) values for specified chemicals.

Usage

get_ACC(CAS)

Arguments

CAS

Vector of CAS.

Value

data frame with columns CAS, chnm, flags, endPoint, ACC, MlWt, and ACC_value

Details

The function get_ACC will convert the ACC values in the ToxCast database from units of (\(\mu\)M) to units of \(\mu\)g/L, and reformat the data as input to toxEval.

Examples

CAS <- c("121-00-6", "136-85-6", "80-05-7", "84-65-1", "5436-43-1", "126-73-8")
ACC <- get_ACC(CAS)
head(ACC)
#> # A tibble: 6 × 8
#>   CAS      hit_val  aeid flags      MlWt ACC_value chnm                 endPoint
#>   <chr>      <dbl> <dbl> <list>    <dbl>     <dbl> <chr>                <chr>   
#> 1 121-00-6   0.187  1508 <dbl [1]>  180.      33.7 2-tert-Butyl-4-meth… CCTE_Si…
#> 2 121-00-6   1.73    103 <dbl [1]>  180.     312.  2-tert-Butyl-4-meth… ATG_PXR…
#> 3 121-00-6   2.26      2 <dbl [2]>  180.     407.  2-tert-Butyl-4-meth… ACEA_ER…
#> 4 121-00-6   3.11    290 <dbl [2]>  180.     561.  2-tert-Butyl-4-meth… BSK_LPS…
#> 5 121-00-6   5.23    135 <dbl [1]>  180.     942.  2-tert-Butyl-4-meth… ATG_PXR…
#> 6 121-00-6   6.06    732 <dbl [1]>  180.    1093.  2-tert-Butyl-4-meth… NVS_TR_…