Simulib is a Python library designed for metabolic modeling and dynamic flux balance analysis (dFBA) simulation. It provides tools for defining, analyzing, and simulating metabolic networks, with a focus on kinetic modeling and steady-state analysis.
- Dynamic model definition: Define and simulate metabolic networks using kinetic rate laws.
- Steady-State Analysis: Perform steady-state flux analysis and other related calculations.
- DFBA Support: The library supports Dynamic Flux Balance Analysis.
- Extensible: Easily extend the library with new analysis methods and more.
- Modular Design: The library is designed with a modular architecture, making it easy to understand and contribute to.
Simulib provides several example notebooks of its usage to help you get started. These examples demonstrate show how simulib handles math expressions, represents dynamic and steady state models, and performs dynamic flux balance analysis.
- Python 3.8 or higher
- Docker (for development)
Simulib is not yet available on PyPI. For now, you can install it directly from the repository:
-
Clone the repository:
git clone https://github.com/Amyris/simulib.git cd simulib
-
Install the library using
uv
(inside the Docker container):docker-compose run --rm app uv sync
or if you want to install the extras:
docker-compose run --rm app uv sync --extra dfba
To run the tests, use the following command inside the Docker container:
- If you want to run the core tests:
docker-compose run --rm app uv run --with pytest pytest ./tests/core
- If you want to run the tests with the dfba extra:
docker-compose run --rm app uv run --with dfba --with pytest pytest ./tests
We use Docker for development. Here's how to set up your development environment:
- Clone the Repository:
git clone https://github.com/Amyris/simulib.git
cd simulib
- Start the Docker Environment:
docker-compose up -d
- Enter the Docker Container:
docker-compose run --rm app bash
- Branching: Create a new branch for your work:
git checkout -b feature/my-new-feature
- Development: Make your changes, ensuring they align with the project's goals and coding style.
- Adding Dependencies:
docker-compose run --rm app uv add <package>
- Upgrading Dependencies:
# Initial setup or after changes to uv.lock
docker-compose run --rm app uv sync
# Add a new dependency
docker-compose run --rm app uv add <package-name>
# Upgrade a specific dependency
docker-compose run --rm app uv update <package-name>
# Upgrade all dependencies
docker-compose run --rm app uv update
# Install/Sync with extras
docker-compose run --rm app uv sync --extra dev --extra test --extra dfba
-
Environment Variables: Create a .env file (use .env.template as template). The following environment variables are used within the project's Docker setup:
EXTRAS
: Specifies extra features or dependencies to be included during the build process. It is used in thedocker-compose.yml
andDockerfile
to define the extras to be installed.- Default value(from
.env.template
):dfba
- Default value(from
USER_UID
: Defines the User ID for thevscode
user inside the development container. This is crucial for matching file permissions between the host and the container.- Default value (from
.env.template
):1000
- Default value (from
SUNDIALS_VERSION
: Defines the version of SUNDIALS library to be installed.- Default value (from
Dockerfile
):5.0.0
- Default value (from
GLPK_VERSION
: Defines the version of GLPK library to be installed.- Default value (from
Dockerfile
):4.65
- Default value (from
UV_COMPILE_BYTECODE
: Enables bytecode compilation for uv.- Default value (from
Dockerfile
):1
- Default value (from
UV_LINK_MODE
: Sets the link mode for uv.- Default value (from
Dockerfile
):copy
- Default value (from
USERNAME
: Defines the username for the user inside the development container.- Default value (from
Dockerfile
):vscode
- Default value (from
USER_GID
: Defines the Group ID for the vscode user inside the development container.- Default value (from
Dockerfile
):$USER_UID
- Default value (from
These variables can be configured in the .env file or passed as build arguments to the Docker commands.
- Testing: Run the existing tests to ensure your changes haven't introduced any regressions. Add new tests if you're adding new functionality.
# Run all tests
docker-compose run --rm app uv run --with dfba --with pytest pytest
# Run core tests only
docker-compose run --rm app uv run --with pytest pytest ./tests/core
# Run tests with dfba extra
docker-compose run --rm app uv run --with dfba --with pytest pytest ./tests/extras/extra_dfba
# Run a specific test file
docker-compose run --rm app uv run --with pytest pytest /path/to/mytest.py
- Linting and Formatting: Ensure your code adheres to our linting and formatting standards. We use black and isort.
# Format a specific file with black
docker-compose run --rm app uv run black "path/to/your/file.py"
# Format all files with black
docker-compose run --rm app uv run black .
# Sort imports in a specific file with isort
docker-compose run --rm app uv run isort "path/to/your/file.py"
# Sort imports in all files with isort
docker-compose run --rm app uv run isort .
- Commit: Commit your changes with clear and concise commit messages using Commitizen.
# install cz
pip install commitizen
# stage modified files
git add .
# create commit and follow instructions
cz c
-
Push: Push your branch to your forked repository.
-
Pull Request: Create a pull request to the main repository.
For a streamlined development experience, you can use Visual Studio Code's Dev Containers feature:
-
Install VS Code and the Remote - Containers Extension: Ensure you have Visual Studio Code installed along with the Remote - Containers extension.
-
Open the Repository in VS Code: Open the simulib repository folder in VS Code.
-
Reopen in Container: A .devcontainer configuration is provided and VS Code should prompt you to reopen the project in a container. If not, open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P) and select:
Remote-Containers: Reopen in Container
VS Code will build the container as specified in the .devcontainer folder and attach to it, giving you an isolated development environment that mirrors the Docker setup.
-
Working Inside the Container: Once inside the container, you can use the integrated terminal to run commands, tests, or any other development tasks as outlined above.
-
Rebuilding the Container If you make changes to the container configuration, you can rebuild the container by using the Command Palette and selecting:
Remote-Containers: Rebuild Container
Note: To have git
working correctly within the dev container, one must match the USER_UID
build argument to your own user_uid (id -u
).
This project uses Conventional Commits and commitizen
to manage the changelog. The CHANGELOG.md
file is automatically generated based on commit messages.
Python: We follow the PEP 8 style guide.
Formatting: We use black for code formatting.
Imports: We use isort for import sorting.
We welcome contributions from everyone! Please see our CONTRIBUTING.md for more information on how to get involved.
Please review our CODE_OF_CONDUCT.md to understand the standards of behavior we expect from contributors.
This project is licensed under the MIT License - see the LICENSE file for details.
If you have any questions or need help, please open an issue or reach out to us directly.