From 427259df6bbaac86eb0df41538f372e2c926a20d Mon Sep 17 00:00:00 2001 From: blakeaw Date: Tue, 23 May 2023 09:34:07 -0500 Subject: [PATCH] Fixed a miss-ordering in the preconstructed models section where the imports of the PK/PD models and PK models were backwards. Added some addtional subsections to the ToC.? --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7282178..d0ae75e 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ PySB plugin package providing domain-specific macros and models for pharmacologi 4. [Documentation and Usage](#documentation-and-usage) 1. [Quick Overview](#quick-overview) 2. [Example](#example) + 3. [List of macros](#list-of-macros) + 4. [Preconstructed models](#preconstructed-models) 5. [Contact](#contact) 6. [Citing](#citing) @@ -155,7 +157,7 @@ Dosing functions: * `dose_bolus` - adds an instantaneous bolus dose of the specified drug/species, defining the initial concentration at time zero. * `dose_infusion` - adds a continous (zero-order) infusion of the specified drug/species. -### Pre-constructed models +### Preconstructed models In addition to the macros module, `pysb-pkpd` includes some pre-constructed two-compartment and three-compartment models. @@ -163,17 +165,16 @@ In addition to the macros module, `pysb-pkpd` includes some pre-constructed two- Two-compartment and three-compartment PK models with Emax PD function for the drug in the central compartment: ```python -from pysb.pkpd.pk_models import twocomp, threecomp +from pysb.pkpd.models import twocomp_emax, threecomp_emax ``` #### PK-only models Two-compartment and three-compartment PK models: ```python -from pysb.pkpd.models import twocomp_emax, threecomp_emax +from pysb.pkpd.pk_models import twocomp, threecomp ``` - ------ # Contact