Skip to content

Commit 8325b53

Browse files
authored
Add petab.v2.models (#302)
For now just imports from v1
1 parent b0e0e54 commit 8325b53

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

petab/v2/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"""PEtab model abstraction"""
2+
from ...v1.models.model import * # noqa: F401, F403

petab/v2/models/pysb_model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"""Functions for handling PySB models"""
2+
from ...v1.models.pysb_model import * # noqa: F401, F403

petab/v2/models/sbml_model.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"""Functions for handling SBML models"""
2+
from ...v1.models.sbml_model import * # noqa: F401, F403

0 commit comments

Comments
 (0)