Skip to content
/ simulib Public

Simulib is designed for metabolic modeling and dynamic flux balance analysis (dFBA) simulation.

License

Notifications You must be signed in to change notification settings

Amyris/simulib

Repository files navigation

Simulib: A Library for Metabolic Modeling

License Code Style Imports: isort version

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.

Features

  • 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.

Examples

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.

Getting Started

Prerequisites

  • Python 3.8 or higher
  • Docker (for development)

Installation

Simulib is not yet available on PyPI. For now, you can install it directly from the repository:

  1. Clone the repository:

    git clone https://github.com/Amyris/simulib.git
    cd simulib
  2. 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

Running Tests

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

Development

Docker Setup

We use Docker for development. Here's how to set up your development environment:

  1. Clone the Repository:
git clone https://github.com/Amyris/simulib.git
cd simulib
  1. Start the Docker Environment:
docker-compose up -d
  1. Enter the Docker Container:
docker-compose run --rm app bash

Development Workflow

  1. Branching: Create a new branch for your work:
git checkout -b feature/my-new-feature
  1. 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 the docker-compose.yml and Dockerfile to define the extras to be installed.
      • Default value(from .env.template): dfba
    • USER_UID: Defines the User ID for the vscode user inside the development container. This is crucial for matching file permissions between the host and the container.
      • Default value (from .env.template): 1000
    • SUNDIALS_VERSION: Defines the version of SUNDIALS library to be installed.
      • Default value (from Dockerfile): 5.0.0
    • GLPK_VERSION: Defines the version of GLPK library to be installed.
      • Default value (from Dockerfile): 4.65
    • UV_COMPILE_BYTECODE: Enables bytecode compilation for uv.
      • Default value (from Dockerfile): 1
    • UV_LINK_MODE: Sets the link mode for uv.
      • Default value (from Dockerfile): copy
    • USERNAME: Defines the username for the user inside the development container.
      • Default value (from Dockerfile): vscode
    • USER_GID: Defines the Group ID for the vscode user inside the development container.
      • Default value (from Dockerfile): $USER_UID

These variables can be configured in the .env file or passed as build arguments to the Docker commands.

  1. 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
  1. 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 .
  1. 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
  1. Push: Push your branch to your forked repository.

  2. Pull Request: Create a pull request to the main repository.

Using Dev Containers in VS Code

For a streamlined development experience, you can use Visual Studio Code's Dev Containers feature:

  1. Install VS Code and the Remote - Containers Extension: Ensure you have Visual Studio Code installed along with the Remote - Containers extension.

  2. Open the Repository in VS Code: Open the simulib repository folder in VS Code.

  3. 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.

  1. 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.

  2. 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).

Changelog

This project uses Conventional Commits and commitizen to manage the changelog. The CHANGELOG.md file is automatically generated based on commit messages.

Code Style

Python: We follow the PEP 8 style guide.
Formatting: We use black for code formatting.
Imports: We use isort for import sorting.

Contributing

We welcome contributions from everyone! Please see our CONTRIBUTING.md for more information on how to get involved.

Code of Conduct

Please review our CODE_OF_CONDUCT.md to understand the standards of behavior we expect from contributors.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

If you have any questions or need help, please open an issue or reach out to us directly.

About

Simulib is designed for metabolic modeling and dynamic flux balance analysis (dFBA) simulation.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published