Skip to main content

RobustNet is a package for multi-omics-informed metabolic robustness analysis

Project description

RobustNet is a Python package for simulating metabolic responses and evaluating the robustness of metabolic systems to perturbations in enzyme expression levels. The framework integrates multi-omics data, including fluxomics, metabolomics, proteomics, and enzyme kinetic databases, to construct ensembles of data-constrained kinetic models for systems-level analysis.

RobustNet is designed to characterize how intracellular metabolite concentrations and metabolic fluxes respond to metabolic engineering interventions, particularly enzyme upregulation and downregulation. By combining Bayesian parameter inference with ensemble-based perturbation simulations, the package enables quantitative assessment of metabolic stability, system viability, and sensitivity under perturbations, providing mechanistic insights to guide biosystem design and metabolic engineering strategies.

For additional details, please refer to the documentation. We also provide demonstrative scripts illustrating the complete workflow for analyzing metabolic robustness in representative models of E.coli and Synechocystis.

Installation

The package has been tested with Python 3.10-3.13 and can be installed from PyPI using pip.

python -m pip install --upgrade pip
pip install robustnet

Alternatively, the package can be installed directly from source (assuming git is installed):

git clone https://github.com/Chaowu88/robustnet.git /path/to/robustnet
pip install /path/to/robustnet

It is recommended to install the package within a virtual environment or conda environment.

For large-scale simulations, deployment on a high-performance computing system with parallel execution enabled is recommended to improve computational efficiency.

Example Usage

The RobustNet workflow consists of three major steps. First, let’s initialize and load the metablic model:

from robustnet import Model

model = Model('model_name')
model.read_from_file('path/to/model_file')

1. Estimate the reference-state fluxes

The first step is to estimate a reference steady-state flux distribution consistent with the defined metabolic network using available fluxomics data (typically from 13C metabolic flux analysis).

model.load_priors(
  'fluxomics',
  data=flux_measurements,
  std=flux_measurement_uncertainties
)

fit_res = model.estimate_reference_fluxes(
  bounds=flux_bounds,
  exclude_metabolites=excluded_from_mass_balance
)

2. Generate ensemble model parameter sets

Next, posterior parameter distributions are inferred using multi-omics measurements and enzyme kinetic priors. The resulting sampled parameter sets are used to construct ensembles of kinetic models for downstream simulations.

model.load_priors(
  'reference_fluxes',
  data=fit_res.estimated_fluxes,
  std=fit_res.estimated_flux_errors
)
model.load_priors(
  'metabolomics',
  data=metab_measurements,
  std=metab_measurement_uncertainties
)
model.load_priors(
  'proteomics',
  data=enz_measurements,
  std=enz_measurement_uncertainties
)
model.load_priors(
  'kparameters',
  data=kparam_measurements,
  std=kparam_measurement_uncertainties
)

samp_res = model.generate_parameter_sets(
  alpha=pentality_strength,
  n_samples=n_samples_to_draw,
  n_jobs=n_parallel_jobs
)

The sampling procedure integrates information from experimental measurements and enzyme databases while maintaining consistency across heterogeneous data sources and mechanistic constraints.

3. Simulate metabolic responses to perturbations

Using the parameterized ensemble models, metabolic responses and robustness can be evaluated under specified enzyme perturbations.

model.load_parameter_sets(
  mconc_set=samp_res.sampled_metabolite_concentrations,
  econc_set=samp_res.sampled_enzyme_concentrations,
  kparam_set=samp_res.sampled_kinetic_parameters
)

rob_res = model.evaluate_robustness(
  perturb_enzymes=enz_list,
  fold_change=perturbation_amplitude,
  n_models=n_models_to_generate,
  n_jobs=n_parallel_jobs
)

This workflow enables multi-omics-informed analysis of metabolic robustness and system-level responses to enzyme perturbations. The package also provides helper utilities and visualization functions for inspecting model parameterization, perturbation trajectories, robustness metrics, and sensitivity analyses.

For more detailed tutorials and API references, please refer to the documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

robustnet-0.2.0.tar.gz (49.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

robustnet-0.2.0-py3-none-any.whl (50.4 kB view details)

Uploaded Python 3

File details

Details for the file robustnet-0.2.0.tar.gz.

File metadata

  • Download URL: robustnet-0.2.0.tar.gz
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for robustnet-0.2.0.tar.gz
Algorithm Hash digest
SHA256 6ca54f5ea586cfc946ecdd265c6d18de769214696c9520ef2ae310e8e7570b8a
MD5 bdfb83f3b92fc9543f7a6eb7325bb3b5
BLAKE2b-256 a9dac3b85c95d9ef1aa62fbf31af473ed080266891c7fc27ca6da5d8fbccb92b

See more details on using hashes here.

File details

Details for the file robustnet-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: robustnet-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 50.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for robustnet-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 78a46803dd0a27043d45db95aa3356912ad0ada56beada7740aeaae60cba8540
MD5 b7b41bca6de589c578f3869e9b5c5290
BLAKE2b-256 d4ed67b2bfced121fd5ab6ad9ffe38e93c6a639ca1171a22fcf4296d406d9b44

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page