Skip to main content

PySB add-on providing domain-specific macros and models for pharmacological PK/PD modeling.

Project description

pysb-pkpd

Python version badge PySB version badge license version release Static Badge DOI

pysb-pkpd enables you to efficiently program and simulate dynamic PK/PD and QSP models in Python using the PySB modeling framework.

:pill: :computer:

What's new in

version 0.5.0

  • Documentation: Docs
  • standard module defining convenience functions to generate one-, two-, and three-compartment models:
    • standard.one_compartment_model
    • standard.two_compartment_model
    • standard.three_compartment_model

version 0.4.0

  • Test suite - tests
  • Contribution info/guidelines - CONTRIBUTING
  • Bug fix in the dose_absorbed macro.

version 0.3.0

  • Macro encoding a Fixed-effect PD model: fixed_effect
  • Macro encoding a Log-linear Effect PD model: loglinear_effect
  • simulate function to simplify the process of simulating models.
  • The macro encoding the Linear-effect PD model, linear_effect, has an optional intercept argument to allow users to set the y-intercept of the linear model.

Table of Contents

  1. Install
    1. Dependencies
    2. pip install
    3. Manual install
  2. License
  3. Change Log
  4. Documentation and Usage
    1. Quick Overview
    2. Example
  5. Contact
  6. Contributing
  7. Supporting
  8. Other Useful Tools

Install

! Note
psyb-pkpd is still in version zero development so new versions may not be backwards compatible.

pysb-pkpd installs as the pysb.pkpd Python (namespace) package. It is has been developed with Python 3.11.3 and PySB 1.15.0.

Dependencies

Note that pysb-pkpd has the following core dependencies:

  • PySB - developed using PySB version 1.15.0, and recommended to install using conda/mamba.
conda install -c alubbock pysb

For automated testing and coverage analysis:

pip install pytest coverage nose

pip install

You can install the latest pysb-pkpd version using pip

Fresh install:

pip install pysb-pkpd

Or to upgrade from an older version:

pip install --upgrade pysb-pkpd

Manual install

First, download the repository. Then from the pysb-pkpd folder/directory run

pip install .

License

This project is licensed under the BSD 2-Clause License - see the LICENSE file for details


Change Log

See: CHANGELOG


Documentation and Usage

Full documentation is available at:

blakeaw.github.io/pysb-pkpd/

Built With:

Built with Material for MkDocs

Quick Overview

pysb-pkpd is an add-on for the PySB modeling framework. Its key feature is a set of domain-specific PySB macros that facilitate the efficient and descriptive programmatic construction of PK/PD models in Python using the PySB framework. It also provides convenience functions to quickly build standard one-, two-, and three-compartment PK/PD models.

You can also check out my blog post, Modeling Drug Dynamics using Programmatic PK/PD Models in Python: An Introduction to PK/PD Modeling using PySB and pysb-pkpd, for an introduction to PK/PD modeling concepts and additional illustrative case studies of building PK/PD models with pysb and pysb-pkpd.

Example

Building a two-compartment PK model with a sigmoidal Emax PD function:

from pysb import Model
import pysb.pkpd as pkpd

# Initialize the PySB model:
Model()

# Add a Monomer for the drug:
pkpd.drug_monomer(name='Drug')

# Add the compartments for a two-compartment model:
pkpd.two_compartments(c1_name="CENTRAL",
                             c1_size=2.0,
                             c2_name="PERIPHERAL",
                             c2_size=1.0)


# Add a dose of the drug using an 
# instantaneous 'bolus' dose in the central
# compartment (initial amount of drug at time zero).
#   Note that dose is an amount such as weight, mass, or moles,
#     which will be converted automatically to an initial concentration
#     as: 
#         [Drug]_0 = dose / V_CENTRAL , 
#     where V_CENTRAL is the size (i.e., volume) of the central compartment.
pkpd.dose_bolus(Drug, CENTRAL, dose=100.)

# Add (1st order) distribution and re-distribution between the 
# central and peripheral compartments:
#    Note that klist is [k_distribute, k_redistribute]
pkpd.distribute(Drug, CENTRAL, PERIPHERAL, klist=[1.0, 1e-1])

# Include linear elimination of Drug from the central compartment 
# by processes like metabolism and renal excretion.
pkpd.eliminate(Drug, CENTRAL, kel=1e-2)

# Add the sigmoidal Emax PD function for Drug in the
# central compartment:
pkpd.sigmoidal_emax(Drug, CENTRAL, emax=1.,
                                   ec50=10.,
                                   n=1.7)
               

PKRO Example

See this notebook for another example using PySB with the psyb-pkpd add-on to build a simple semi-mechanistic pharmacokinetic and receptor occupancy (PKRO) model.


Contact

  • Issues :bug: : Please open a GitHub Issue to report any problems/bugs with the code or its execution, or to make any feature requests.

  • Discussions :grey_question: : If you have questions, suggestions, or want to discuss anything else related to the project, feel free to use the pysb-pkpd Discussions board.

  • Support :question: : For any other support inquiries you can send an email to blakeaw1102@gmail.com.


Contributing

Interested in contributing to this project? See CONTRIBUTING for details.


Supporting

I'm very happy that you've chosen to use pysb-pkpd. This add-on is a project that I develop and maintain on my own time, independently of the core PySB library, and without external funding. If you've found it helpful, here are a few ways you can support its ongoing development:

  • Star :star: : Show your support by starring the pysb-pkpd GitHub repository. It helps increase the project's visibility and lets others know it's useful. It also benefits my motivation to continue improving the package!
  • Share :mega: : Sharing pysb-pkpd on your social media, forums, or with your network is another great way to support the project. It helps more people discover pysb-pkpd, which in turn motivates me to keep developing!
  • Cite :books: : Citing or mentioning this software in your work, publications, or projects is another valuable way to support it. It helps spread the word and acknowledges the effort put into its development, which is greatly appreciated!
  • Sponsor :dollar: : Even small financial contributions, such as spotting me the cost of a tea through Ko-fi so I can get my caffeine fix, can make a big difference! Every little bit can help me continue developing this and other open-source projects.

ko-fi


Other Useful Tools

Parameter estimation

Please see packages such as simplePSO, PyDREAM, Gleipnir, or GAlibrate for tools to do PySB model parameter estimation using stochastic optimization or Bayesian Monte Carlo approaches.

PD response models

If you want to separately fit response data independetly of PK data, then the pharmacodynamic-response-models package may also be useful.

PySB model visualization

pyvipr can be used for static and dynamic PySB model visualizations.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysb_pkpd-0.5.3.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pysb_pkpd-0.5.3-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file pysb_pkpd-0.5.3.tar.gz.

File metadata

  • Download URL: pysb_pkpd-0.5.3.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysb_pkpd-0.5.3.tar.gz
Algorithm Hash digest
SHA256 e09c18f81ce7e0809e726387ef05c8921fc233dd0e067031b960b3c1cda28b4f
MD5 16b3b0d873903f7f1fa7c4d84d0f561d
BLAKE2b-256 04b5caf4a93184971807af6fe72f14057efdc404f8d1d9067422e5451137e47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysb_pkpd-0.5.3.tar.gz:

Publisher: python-publish-pypi.yml on blakeaw/pysb-pkpd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysb_pkpd-0.5.3-py3-none-any.whl.

File metadata

  • Download URL: pysb_pkpd-0.5.3-py3-none-any.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysb_pkpd-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4f496db4c19f5dd51b9183c1dfedf8a6d267bf49c2e4c9164a4a307108f31fd0
MD5 4be00e0db13586439279eb2cd114ba85
BLAKE2b-256 18240186018dd1f01356ee50da8ec5ccae7502998477f1ae4a18b4372d4a3b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysb_pkpd-0.5.3-py3-none-any.whl:

Publisher: python-publish-pypi.yml on blakeaw/pysb-pkpd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page