tcplCytoPt
provides estimates for chemical-specific cytotoxicity
distributions (more information available in the vignette.) Before
calculating the cytotoxicity distributions, the level 5 data is subsetted
by the tcplSubsetChid
function. The 'chid' parameter specifies a subset of chemicals to use in the
calculations, given by chemical ID (chid). The 'aeid' parameter specifies
which assays to use in calculating the cytotoxicity point and distribution.
By default tcplCytoPt
will use all available chemicals and the
assay endpoints defined by the 'burst_assay' field in the
"assay_component_endpoint" table. The examples show how to identify the
"burst" endpoints.
tcplCytoPt
returns the cytotoxicity point (the AC50 values of the
active "burst" endpoints), the corresponding MAD, and the global MAD (median
of the calculated MAD values). Not every chemical must be tested in every
"burst" endpoint. The 'min.test' parameter allows the user to specify a
minimum number of tested assay endpoints as a requirement for MAD values to
be included in the global MAD calculation. For example, suppose the user
supplies 10 "burst" assays. The user can choose to require a chemical to be
tested in at least 5 of those assays for it's MAD value to be included in
the global MAD calculation. Having chemicals with many less "burst" endpoints
tested may inflate or deflate the global MAD calculation. By default (values
of TRUE
or NULL
), tcplCytoPt
requires a chemical to be
tested in at least 80% of the given "burst" assays. The user can also
provide 'min.test' values of FALSE
(indicating to include all MAD
values), or a number (indicating a specific number of endpoints).
Chemicals without at least 2 active "burst" assays do not have a MAD value,
and the cytotoxicity point is defined by the 'default.pt' parameter. The
default value for 'default.pt' is 3.
The resulting data.table has the following fields:
- "chid" -- The chemical ID.
- "code" -- The chemcial code.
- "chnm" -- The chemical name.
- "casn" -- The chemical CASRN.
- "med" -- The median of the "burst" endpoint log(AC50) ("modl_ga" in
the level 5 output) values.
- "mad" -- The MAD of the "burst" endpoint log(AC50) values.
- "ntst" -- The number of "burst" endpoints tested.
- "nhit" -- The number of acive "burst" endpoints.
- "use_global_mad" -- TRUE/FALSE, whether the mad value was used in the
global MAD calculation.
- "global_mad" -- The median of the "mad" values where "use_global_mad"
is TRUE.
- "cyto_pt" -- The cytotoxicity point, or the value in "med" when
"nhit" is at least 2.
- "cyto_pt_um" -- $10^cyto_pt$
- "lower_bnd_um" -- $10^(cyto_pt - 3*global_mad)$