PK Sampling Time Points - DR Formulation [Design Issues]

posted by Helmut Homepage – Vienna, Austria, 2024-10-18 11:16 (44 d 08:32 ago) – Posting: # 24238
Views: 970

Hi Titus,

❝ ❝ Do you know more about the drug than its tmax?

About the Drug - Since the study is a simulation-based experiment, I developed a hypothetical drug which is expected to have more colonic absorption to support my theoretical objective.

❝ I have pasted the Log-Conc profile of the drug for your reference below.

In your original post you talked about an SR formulation. Locally applied, locally acting drugs (LALAs) are delayed release (DR). The correct model is simple (one or two compartments but with a substantial lag-time), which is not your current one.
For an example see the profile of mesalazine (scroll down to Fig. 5 because what’s given in the NDA is crap).

❝ I totally agree with you point regarding Cmax. But also I want to be realistic in PK sampling time points to clinical setting. I mean, no over-sampling. therefore, according to US FDA guidance "Bio­equivalence Studies With Pharmacokinetic End­points for Drugs Submitted Under an ANDA Guidance for Industry, 2021", I can go upto 18 time points.

Guidelines are based on science in principle. :-D
However, they try to cover most of the ‘common’ cases, which might not be yours. For my approach see this presentation (slides 7–9). Unfortunately, lag-times in LALAs are terribly variable and you have to take that into account (in my simulations I use a truncated normal distribution and discretize it for the sampling times). See the [image]-script at the end.

Not a LALA but a PPI with extremely variable lag-times. Due to the acid-sensitivity of PPIs, all formulations are gastric resistant coated. Here the variability is caused by physiology (gastric motility / emptying) and is not a property of the formulation. Do you see how difficult it is to ‘catch’ Cmax?

❝ In my case, I do not see flip-flop kinetics, therefore I will assume the Tmax = 8.4 h as reliable parameter and add further more (3-5) time points.

Forget what I wrote about flip-flop PK. Anyhow, do you know that \(\small{k_\text{a}\gg k_\text{e}}\) (e.g., from IV or an IR formulation)?

❝ I also would like to know, what are the criteria to choose the PK sampling time points as best as possible to capture the PK estimates well? (All I know to describe the ADE phase and at least three or more terminal elimination half-lives of the drug).

My approach (if I have some real data beforehand):

library(truncnorm)
roundClosest <- function(x, y) {     # Round x to the closest multiple of y
  return(y * round(x / y))
}
npSummary <- function(x) {           # Nonparametric summary of x
  y                <- summary(x)[-4] # remove the mean
  attr(y, "names") <- c("Min", "Q I", "Median", "Q III", "Max")
  return(y)
}
delta    <- 1                        # sampling every hour
tlag.exp <- 6                        # expected lag-time
tlag.min <- 2                        # fast gastric passage
tlag.max <- 72                       # maximum possible gastric passage
tlag.sd  <- 4                        # standard deviation (pretty large)
n        <- 1e3                      # number of simulations
set.seed(123456)                     # for reproducibility
tlag     <- rtruncnorm(n = n, a = tlag.min, b = tlag.max,
                       mean = tlag.exp, sd = tlag.sd) # continuous
tlag     <- roundClosest(tlag, delta)                 # discrete
npSummary(tlag)
hist(tlag, breaks = "FD", freq = FALSE, , xlim = c(0, npSummary(tlag)[["Max"]]),
     main = "", las = 1, xlab = expression(italic(t)[lag]))

Gives

Min    Q I Median  Q III    Max
  2      5      7      9     18


Dif-tor heh smusma 🖖🏼 Довге життя Україна! [image]
Helmut Schütz
[image]

The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes

Complete thread:

UA Flag
Activity
 Admin contact
23,328 posts in 4,898 threads, 1,662 registered users;
84 visitors (0 registered, 84 guests [including 14 identified bots]).
Forum time: 18:48 CET (Europe/Vienna)

Satisfaction of one’s curiosity is one of the greatest sources
of happiness in life.    Linus Pauling

The Bioequivalence and Bioavailability Forum is hosted by
BEBAC Ing. Helmut Schütz
HTML5