MCP HubMCP Hub
SKILL·090A6E

pkpd-modeling

K-Dense-AI
업데이트됨 27 days ago
11 조회
34,443
3,344
34,443
GitHub에서 보기
디자인designdata

정보

이 스킬은 약물 개발을 위한 약동학 및 약력학(PK/PD) 모델링과 시뮬레이션을 수행합니다. 농도-시간 데이터를 분석하고, 모델(NCA, 구획 모델, 집단 약동학)을 적합시키며, 투약 요법을 평가합니다. 생물학적 동등성 시험, 노출-반응 분석, 약물 상호작용 예측, 치료 약물 모니터링과 같은 작업에 활용할 수 있습니다.

빠른 설치

Claude Code

추천
기본
npx skills add K-Dense-AI/claude-scientific-skills -a claude-code
플러그인 명령대체
/plugin add https://github.com/K-Dense-AI/claude-scientific-skills
Git 클론대체
git clone https://github.com/K-Dense-AI/claude-scientific-skills.git ~/.claude/skills/pkpd-modeling

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Pharmacokinetic and Pharmacodynamic Modelling

When to use

Any question about what the body does to a drug or what the drug does to the body: deriving exposure metrics from concentration-time data, fitting a structural model, building or checking a population analysis, choosing a dose or a regimen, relating exposure to effect, comparing formulations, or scaling to a new population.

The three rules

1. Fix the exposure metric and the analysis population before computing anything. AUC(0-t), AUC(0-inf), AUC(0-tau) at steady state, and Cavg are different quantities and answer different questions. So do AUCinf based on observed versus predicted Clast. Choosing after seeing the numbers is how a negative study becomes positive.

2. Structural model, variability model, and covariate model are three separate decisions. They get conflated constantly — an extra compartment added to absorb what is really unmodelled between-occasion variability, a covariate added to fix what is really a misspecified absorption model. Diagnose which one is wrong before changing any of them.

3. Convergence is not identifiability. A fit that converges with 200% relative standard error on a parameter, or a correlation of 0.99 between two, has told you the data cannot separate them. Every fitting script here reports both and flags them, because the parameter table alone looks fine in exactly this situation.

Scope

This skill computes, diagnoses, and structures. It does not decide that a formulation is bioequivalent, select a dose for a trial, recommend a dose for a patient, conclude that a drug has no QT liability, or replace a qualified pharmacometrician, clinical pharmacologist, or the regulatory review. The scripts report; none of them concludes. tdm_bayes.py in particular is a modelling aid — any change to a patient's regimen is the treating clinician's decision.

Scripts

cd skills/pkpd-modeling/scripts
ScriptQuestion answered
nca.pyWhat are the exposure metrics, and is the terminal phase good enough to report them?
fit_compartmental.pyWhich structural model do these data support, and are its parameters identifiable?
simulate_regimen.pyWhat does this regimen do at steady state, and to what fraction of the population?
check_popk_dataset.pyWill NONMEM read this dataset the way I think it will?
exposure_response.pyIs there an exposure-response relationship, and is the plateau in the data?
bioequivalence.pyDoes the 90% CI meet the criterion, and which criterion applies?
allometry_and_fih.pyWhat is the starting dose, or the dose in a smaller/younger population?
ddi_static.pyDoes the in vitro data trigger a clinical DDI study under ICH M12?
tdm_bayes.pyWhat are this patient's individual parameters from their measured levels?

All take --format table|tsv|json. Data goes to stdout, provenance and findings to stderr, so > out.tsv keeps them separate. Exit code is 0 for no findings, 1 when findings were raised, 2 for bad input, so any of them can gate a workflow.

Two private modules carry the shared machinery: _models.py (analytical solutions for linear mammillary models, plus integrated Michaelis-Menten, TMDD and indirect-response structures) and _common.py (I/O and reporting). Import them rather than re-deriving a Bateman function.

Workflow

1. Non-compartmental analysis

python3 nca.py -i profile.csv --dose 100 --route extravascular --partial-auc 0-24

Four choices decide the answer and are usually left implicit. This script makes all four explicit: --auc-method (default linup-logdown), --blq-rule, --lambda-z-points or an explicit --lambda-z-window, and whether you report auc_inf_obs or auc_inf_pred.

Lambda_z selection uses the standard rule: start from the last three quantifiable points, extend backwards, keep the longer window only if adjusted r-squared improves by more than 0.0001. Plain r-squared can only rise as points are added, so it would always pick the longest window. Points at or before Tmax are never eligible — including Tmax fits the tail of absorption and biases half-life, Vz and AUCinf downward.

On a noiseless simulated one-compartment oral profile with CL/F = 5, V/F = 20, ka = 1.2:

id  cmax     tmax  auc_last  lambda_z  t_half   r2_adj  auc_inf_obs  pct_auc_extrap  cl_f     vz_f
1   3.29678  1.5   19.8737   0.25      2.77259  1       19.8739      0.000781037     5.03173  20.1269

The 0.6% overestimate of CL/F is the trapezoidal rule on a sparsely sampled absorption phase, not an error — it is the irreducible bias of NCA on that sampling schedule, and it is why NCA and compartmental estimates of clearance never agree exactly.

The findings are the point. A steady-state profile truncated at tau produces:

finding: subject A: 25.2% of AUCinf is extrapolated (above 20%); AUCinf is driven by the
         lambda_z fit, not by data
finding: subject A: lambda_z window spans 0.58 half-lives (below 2.0); the terminal phase may
         not have been reached

Both are correct and both are routinely ignored. At steady state the reportable exposure metric is AUC(0-tau), not AUCinf; the script computes AUCinf anyway and tells you not to trust it.

2. Compartmental fitting and model selection

python3 fit_compartmental.py -i profile.csv --dose 500 --route iv-bolus --compare 1cmt,2cmt,3cmt

Parameters are estimated on the log scale, so they cannot go negative and their confidence intervals come out asymmetric. Weighting defaults to 1/y2 (constant CV), which is the right default for PK and the wrong one for a homoscedastic PD endpoint.

Fitting simulated two-compartment data (CL 4, V1 12, Q 6, V2 40, 8% proportional error):

model  parameters  wssr       aic       bic       f_vs_simpler  f_p_value    compared_with
1cmt   2           3.13201    -19.4956  -18.0795  n/a           n/a          n/a
2cmt   4           0.0309579  -84.7477  -81.9155  550.936       9.38016e-12  1cmt
3cmt   6           0.0232859  -85.0193  -80.771   1.4826        0.27762      2cmt

AIC picks the three-compartment model. BIC and the F test both reject it. AIC's fixed penalty of 2 per parameter is weak at this sample size, and it selects the overparameterised model more often than practitioners expect. The parameter table settles it:

finding: fit: Q3 has 98% RSE - not estimable from these data at this model size
finding: fit: V3 has 71% RSE - not estimable from these data at this model size

The one-compartment fit meanwhile earns:

finding: fit: residual signs are not random (runs test p = 0.0036) - a structural
         misspecification, which no amount of reweighting will fix

That distinction — structural misspecification versus a wrong error model — is the one to get right. A residual-versus-time plot with runs of the same sign means the model shape is wrong. Heteroscedastic residuals with random signs mean the weighting is wrong. Reweighting the first case hides it without fixing it.

3. Population PK

Check the dataset before running anything. This is where the time actually goes.

python3 check_popk_dataset.py -i nmdata.csv --covariates WT,CRCL --time-varying WT

The defects that matter are the silent ones. NM-TRAN does not reject a non-numeric DV — it reads BLQ as zero and fits it as a genuine zero concentration. A blank covariate becomes 0, so a missing body weight becomes a 0 kg patient. ADDL without II places no additional doses. Records sharing a timestamp are applied in file order, so whether a level is pre- or post-dose depends on which row came first. None of these stop a run.

severity  check                            detail
error     non-numeric DV                   DV contains text... NM-TRAN reads them as 0
error     subject with no dose             1 subject(s) have observations but no dose: 2
error     TIME not sorted                  1 subject(s) have out-of-order TIME: 1
error     covariate WT missing             1 record(s) have no value...
warning   duplicate TIME within a subject  NONMEM applies them in file order...

For the estimation itself, this skill does not reimplement NLME — see references/population-pk.md for estimation methods, the BLQ M1-M7 methods, covariate model building, and the diagnostics that decide whether a model is acceptable, and references/software-ecosystem.md for which tool to reach for.

4. Simulation and regimen selection

python3 simulate_regimen.py --cl 5 --v 40 --dose 500 --interval 12 --n-doses 10 --steady-state
python3 simulate_regimen.py --cl 5 --v 40 --dose 500 --interval 12 --n-doses 10 \
    --simulate 2000 --omega-cl 0.35 --omega-v 0.25 --target-trough 4.0

Deterministic simulation answers "what does the typical patient look like", which is almost never the question:

metric             p5        p25      median   p75      p95      geo_mean
peak               11.861    14.6018  16.6702  19.1476  22.9339  16.6453
trough             0.863226  2.15191  3.64412  5.49655  9.21053  3.27035

target       fraction_attaining
trough >= 4  0.444

The typical trough is 3.6 and the target is 4, so 44% of the population attains it. A regimen tuned on the typical patient leaves about half the population on the wrong side of the target. Reported attainment is still optimistic here: this is between-subject variability only, with no residual or between-occasion component.

Linear models are solved analytically and superposed, which is exact. --nonlinear switches to integrated Michaelis-Menten elimination, where superposition is invalid and multiple-dose behaviour cannot be inferred from a single dose at all.

5. Exposure-response

python3 exposure_response.py --emax -i er.csv --sigmoid
python3 exposure_response.py --cqtc -i qt.csv --cmax 250

The Emax fit reports fraction_of_emax_reached and flags a fit whose plateau is outside the data. When the highest observed exposure reaches only a third of the estimated Emax, Emax and EC50 are extrapolations that are strongly correlated with each other; quoting them as independent estimates is not supportable, and a "linear" exposure-response is simply the low-concentration limb of the same curve.

--cqtc evaluates the upper bound of the two-sided 90% confidence interval of predicted placebo-corrected change-from-baseline QTc against the 10 ms threshold, which is the question ICH E14 actually asks. A point estimate, or a 95% interval, answers a different one. The bundled model is an ordinary linear regression for screening; a submission-grade C-QTc analysis needs a mixed model with random intercept and slope per subject.

Every mode carries the same caveat, because it is the one that gets forgotten: patients are randomised to dose, not to exposure. Exposure-response across quantiles is observational even inside a randomised trial, and can reflect the covariates that drive clearance.

6. Bioequivalence

python3 bioequivalence.py -i be.csv --design 2x2 --metric AUC
python3 bioequivalence.py -i be.csv --design replicate --metric Cmax --scaling both
python3 bioequivalence.py --power --cv 0.30 --gmr 0.95 --target-power 0.80

Three criteria share the word "bioequivalence" and are not interchangeable: average BE (90% CI inside 80.00-125.00%), EMA's ABEL (limits widened as a function of CVwR, capped at 69.84-143.19%, point estimate still within 80-125%), and FDA's RSABE (a scaled linearised bound via Hyslop's method, not an interval at all). --scaling refuses to run on a 2x2 design:

error: reference-scaling requires --design replicate. High observed variability in a 2x2 study
does not license widening: without replicated reference administrations there is no estimate of
within-subject reference variability to scale to.

Sample size reproduces the published tables exactly (CV 30%, GMR 0.95, 80% power → N = 40 for a 2x2). Power is computed by integrating over the sampling distribution of the estimated standard deviation rather than treating the standard error as known — the normal approximation overstates power at realistic sample sizes. Note that N is driven far more by the assumed GMR than by CV; assuming 1.00 instead of 0.95 roughly halves the calculated N and is the usual reason a BE study comes in underpowered.

7. Scaling, paediatrics, and first-in-human

python3 allometry_and_fih.py --scale --cl 5 --weight-from 70 --weight-to 6 --pma-weeks 44
python3 allometry_and_fih.py --fih --noael rat=50,dog=10 --safety-factor 10

Scaling by size alone below about 2 years of age overpredicts clearance, in a neonate by several fold, because clearance is limited by enzyme and renal maturation rather than by size. Supplying --pma-weeks adds the Anderson-Holford sigmoidal maturation term; omitting it below 20 kg raises a finding.

parameter  reference  exponent  size_scaled  maturation_factor  final
CL         5          0.75      0.792063     0.30634            0.242641
V          40         1         3.42857      1                  3.42857

Size alone would predict 0.79 L/h; with maturation at 44 weeks post-menstrual age it is 0.24 L/h, a 3.3-fold difference. Volume is not matured — maturation describes eliminating capacity, not distribution space.

--fih uses the body-surface-area conversion from FDA's 2005 maximum-safe-starting-dose guidance and always emits a finding that a NOAEL-derived MRSD is not sufficient on its own for agonist immunomodulators: compute MABEL with --mabel and take the lower value.

8. Drug interactions

python3 ddi_static.py --basic --ki 0.5 --imax 2.0 --fu 0.05 --dose 0.4
python3 ddi_static.py --msm --ki 0.5 --imax 2.0 --fu 0.05 --dose 0.4 --fm 0.9 --fg 0.7

ICH M12 basic models with their cut-offs (R1 ≥ 1.02 hepatic, ≥ 11 intestinal; R2 ≥ 1.25 for TDI; R3 ≤ 0.8 for induction; transporter cut-offs by site), plus the mechanistic static model. The basic models are deliberately conservative: a negative is meaningful, a positive is a trigger for further work, not a prediction of clinical magnitude.

The mechanistic static model reports the ceiling alongside the prediction:

note: With fm = 0.9, no inhibitor of this pathway can raise the victim AUC above 10.00-fold. If
the prediction approaches that ceiling, fm is doing more work than the inhibition constants.

fm and Fg dominate the answer far more than the inhibition constants, and are usually the least well established numbers in the calculation.

9. Therapeutic drug monitoring

python3 tdm_bayes.py --model vancomycin-adult --weight 80 --crcl 75 \
    --dose 1500 --interval 12 --level [email protected] --level 42@2 --target-auc24 500

MAP Bayesian estimation shrinks towards the population when the data are uninformative and follows the data when they are not, which is why it beats both a trough read against population parameters and log-linear regression on two points. A single level raises a finding: it cannot separate clearance from volume, and whichever parameter the sample is uninformative about has simply returned its prior.

The bundled vancomycin parameterisation is explicitly labelled illustrative. Substitute a model validated in your population before the output means anything.

Software ecosystem

Verified against live sources on 2026-07-27; see references/software-ecosystem.md for the full map and references/source-ledger.md for provenance.

  • Pharmpy 2.1.1 (2026-05-19) is the practical Python entry point — model-agnostic, drives NONMEM/nlmixr2/rxode2, and ships 19 run_* tools including run_amd, run_modelsearch, run_covsearch, run_structsearch, run_pdsearch, run_modelrank, run_vpc and run_qa. Two breaking changes are recent enough to catch you out: 2.0.0 (2026-02-12) changed dataset row indices to start at 1, and 2.1.0 (2026-05-08) renamed add_placebo_model to set_placebo_model and now requires numpy ≥ 2.
  • NONMEM 7.6 (user guides dated November 2025) remains the regulatory default. New since 7.5: ADVAN16 (RADAR5 implicit Runge-Kutta for stiff delay differential equations), ADVAN17 (stiff delay differential-algebraic), NUTS Bayesian sampling, and SAEM storage of individual samples.
  • nlmixr2 (requires rxode2 ≥ 5.0.0) is the credible open-source NLME alternative; babelmixr2 and monolix2rx translate models between it, NONMEM and Monolix.
  • PKPy (PeerJ, 2025) is a Python popPK framework but is GitHub-only — not on PyPI, so pip install pkpy fails. chi-drm (1.0.3) is on PyPI for Bayesian PKPD.
  • Open Systems Pharmacology Suite v12 (PK-Sim/MoBi) is the open-source PBPK platform; Simcyp and GastroPlus are the commercial ones. ospsuite is R-only and needs .NET 8.

Python has no mature NCA or NLME package of regulatory standing. That gap is why this skill ships its own validated NCA and fitting implementations rather than wrapping one.

What this skill exists to prevent

  1. Lambda_z chosen by plain r-squared, or fitted through Tmax.
  2. AUCinf reported from a profile where 25% of it was extrapolated.
  3. AIC allowed to select a compartment whose intercompartmental clearance has 98% RSE.
  4. Reweighting used to fix non-random residuals, which are a structural problem.
  5. BLQ left in a DV column, where NM-TRAN reads it as a real zero.
  6. A regimen chosen on the typical patient, with no attainment estimate for the population.
  7. Emax and EC50 quoted as independent estimates when the plateau was never observed.
  8. Reference-scaled bioequivalence limits applied to a 2x2 study.
  9. Allometric scaling to a neonate with no maturation term.
  10. An MRSD from a NOAEL used as the starting dose for an agonist immunomodulator.

References

  • references/nca-conventions.md — parameter definitions, lambda_z rules, BLQ handling, steady state
  • references/structural-models.md — closed-form solutions, parameterisations, NONMEM ADVAN/TRANS map
  • references/population-pk.md — NLME estimation, covariate building, BLQ M1-M7, diagnostics, VPC
  • references/pd-and-exposure-response.md — Emax, indirect response, effect compartment, ER analysis
  • references/tmdd-and-biologics.md — TMDD approximations, monoclonal antibody PK, immunogenicity
  • references/pbpk.md — when PBPK earns its cost, platforms, and what verification requires
  • references/bioequivalence.md — designs, ABE/ABEL/RSABE, ICH M13 series, highly variable drugs
  • references/special-populations.md — paediatrics, renal and hepatic impairment, obesity, pregnancy
  • references/dataset-standards.md — CDISC PC/PP and ADPC/ADPP, NONMEM data items, common defects
  • references/ddi-and-qt.md — ICH M12 stepwise assessment, static models, ICH E14/S7B C-QTc
  • references/antimicrobial-and-tdm.md — PK/PD indices, PTA/CFR, vancomycin AUC-guided dosing, MIPD
  • references/software-ecosystem.md — every tool, what it is for, licensing, and verified versions
  • references/regulatory-guidance.md — the guidance ledger with dates, status, and what each requires
  • references/source-ledger.md — provenance and research dates for every claim in this skill

Assets

  • assets/popk-analysis-plan.md — population analysis plan structure, with the decisions stated up front
  • assets/nca-reporting-checklist.md — what an NCA report has to state for the numbers to be interpretable

GitHub 저장소

K-Dense-AI/claude-scientific-skills
경로: skills/pkpd-modeling
0
agent-skillsai-scientistbioinformaticschemoinformaticsclaudeclaude-skills
FAQ

자주 묻는 질문

pkpd-modeling Skill이란 무엇인가요?

pkpd-modeling은(는) K-Dense-AI이(가) 만든 Claude Skill입니다. Skill은 Claude가 필요할 때 불러오는 지침과 리소스를 묶어 추가 프롬프트 없이 pkpd-modeling 관련 작업을 수행할 수 있게 합니다.

pkpd-modeling은(는) 어떻게 설치하나요?

이 페이지의 설치 명령을 사용하세요. pkpd-modeling을(를) Claude Code 플러그인으로 추가하거나 저장소를 skills 디렉터리에 복제한 다음 Claude를 다시 시작해 Skill을 불러옵니다.

pkpd-modeling은(는) 어떤 카테고리에 속하나요?

pkpd-modeling은(는) 디자인 카테고리에 속합니다.

pkpd-modeling은(는) 무료로 사용할 수 있나요?

네. pkpd-modeling은(는) AIMCP에 등록되어 있으며 무료로 설치할 수 있습니다.

연관 스킬

executing-plans
디자인

executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.

스킬 보기
requesting-code-review
디자인

이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.

스킬 보기
connect-mcp-server
디자인

이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.

스킬 보기
web-cli-teleport
디자인

이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.

스킬 보기