Skip to content

Commit ab2c468

Browse files
committed
Added basico as part of Copasi environment
1 parent 67a599a commit ab2c468

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/source/next_steps.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Next Steps
33
==========
44

55
Congratulations on completing your PEtab file! Now that you have a standardized parameter estimation problem, you can use various tools to perform parameter estimation, sensitivity analysis, and model simulation. This page provides minimal working examples for the most commonly used tools in the PEtab ecosystem.
6+
For a complete list of tools, see the `PEtab software support <https://petab.readthedocs.io/en/latest/v1/software_support.html>`_.
67

78
.. contents::
89
:depth: 2
@@ -113,6 +114,25 @@ Model Simulation with COPASI
113114
* User friendly creation and adaptation of SBML models, e.g. introducing events
114115
* Support for parameter estimation and sensitivity analysis
115116

117+
**Python Interface:**
118+
119+
COPASI also provides the python interface `basiCO <https://basico.readthedocs.io/en/latest/index.html>`_, which supports the full feature set of PEtab.
120+
121+
.. code-block:: python
122+
123+
from basico import *
124+
import basico.petab
125+
from petab import Problem
126+
import petab.visualize
127+
128+
129+
pp = Problem.from_yaml('./Elowitz_Nature2000/Elowitz_Nature2000.yaml')
130+
sim = basico.petab.PetabSimulator(pp, working_dir='./temp_dir/')
131+
df = sim.simulate()
132+
petab.visualize.plot_problem(pp, simulations_df=df)
133+
134+
see `here <https://basico.readthedocs.io/en/latest/notebooks/Working_with_PEtab.html>`_ for an example notebook.
135+
116136
**Installation:**
117137

118138
Download COPASI for your platform from: https://copasi.org/download/

0 commit comments

Comments
 (0)