We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0e0e54 commit 8325b53Copy full SHA for 8325b53
petab/v2/models/__init__.py
@@ -0,0 +1,2 @@
1
+"""Handling of different model types supported by PEtab."""
2
+from ...v1.models import * # noqa: F401, F403
petab/v2/models/model.py
+"""PEtab model abstraction"""
+from ...v1.models.model import * # noqa: F401, F403
petab/v2/models/pysb_model.py
+"""Functions for handling PySB models"""
+from ...v1.models.pysb_model import * # noqa: F401, F403
petab/v2/models/sbml_model.py
+"""Functions for handling SBML models"""
+from ...v1.models.sbml_model import * # noqa: F401, F403
0 commit comments