Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest-cov openpyxl pytest-httpx pysces lmfit seaborn numexpr python-libcombine deepdiff deprecation
python3 -m pip install pytest-cov openpyxl pytest-httpx pysces copasi-basico lmfit seaborn numexpr python-libcombine deepdiff deprecation
pip3 install -e .

- name: Test with pytest
Expand Down
546 changes: 546 additions & 0 deletions examples/KineticModellingCOPASI.ipynb

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion pyenzyme/sbml/omex.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,7 @@ def read_sbml_omex(path: Path | str) -> tuple[TextIO, dict[str, pd.DataFrame]]:

meas_data[entry.location] = df

return open(omex.get_path(master_file.location)), meas_data
return open(
omex.get_path(master_file.location),
encoding="utf-8",
), meas_data
7 changes: 6 additions & 1 deletion pyenzyme/thinlayers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
except ImportError:
pass

__all__ = ["BaseThinLayer", "ThinLayerPysces"]
try:
from .basico import ThinLayerCopasi
except ImportError:
pass

__all__ = ["BaseThinLayer", "ThinLayerPysces", "ThinLayerCopasi"]
Loading