Learn R Programming

httk (version 2.1.0)

lump_tissues: Lump tissue parameters

Description

This function takes the parameters from predict_partitioning_schmitt and lumps the partition coefficients along with the volumes and flows based on the given tissue list. It is useful in Monte Carlo simulation of individual partition coefficients when calculating the rest of body partition coefficient.

Usage

lump_tissues(
  Ktissue2pu.in,
  parameters = NULL,
  tissuelist = NULL,
  species = "Human",
  tissue.vols = NULL,
  tissue.flows = NULL,
  model = "pbtk",
  suppress.messages = FALSE
)

Value

Krbc2pu

Ratio of concentration of chemical in red blood cells to unbound concentration in plasma.

Krest2pu

Ratio of concentration of chemical in rest of body tissue to unbound concentration in plasma.

Vrestc

Volume of the rest of the body per kg body weight, L/kg BW.

Vliverc

Volume of the liver per kg body weight, L/kg BW.

Qtotal.liverf

Fraction of cardiac output flowing to the gut and liver, i.e. out of the liver.

Qgutf

Fraction of cardiac output flowing to the gut.

Qkidneyf

Fraction of cardiac output flowing to the kidneys.

Arguments

Ktissue2pu.in

List of partition coefficients from predict_partitioning_schmitt.

parameters

A list of physiological parameters including flows and volumes for tissues in tissuelist

tissuelist

Manually specifies compartment names and tissues, which override the standard compartment names and tissues that are usually specified in a model's associated modelinfo file. Remaining tissues in the model's associated alltissues listing are lumped in the rest of the body.

species

Species desired (either "Rat", "Rabbit", "Dog", "Mouse", or default "Human").

tissue.vols

A list of volumes for tissues in tissuelist

tissue.flows

A list of flows for tissues in tissuelist

model

Specify which model (and therefore which tissues) are being considered

suppress.messages

Whether or not the output message is suppressed.

Author

John Wambaugh and Robert Pearce

Details

This function returns the flows, volumes, and partition coefficients for the lumped tissues specified in tissue list Ktissue2plasma -- tissue to free plasma concentration partition coefficients for every tissue specified by Schmitt (2008) (the tissue.data table) tissuelist -- a list of character vectors, the name of each entry in the list is its own compartment. The tissues in the alltissues vector are the Schmitt (2008) tissues that are to be considered in the lumping process. The tissuelist can also be manually specified for alternate lumping schemes: for example, tissuelist<-list(Rapid=c("Brain","Kidney")) specifies the flow.col and vol.col in the tissuedata.table.

References

Pearce, Robert G., et al. "Evaluation and calibration of high-throughput predictions of chemical distribution to tissues." Journal of pharmacokinetics and pharmacodynamics 44.6 (2017): 549-565.

Examples

Run this code

pcs <- predict_partitioning_schmitt(chem.name='bisphenola')
tissuelist <- list(liver=c("liver"),kidney=c("kidney"),lung=c("lung"),gut=c("gut")
,muscle.bone=c('muscle','bone'))
lump_tissues(pcs,tissuelist=tissuelist)

Run the code above in your browser using DataLab