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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file robustnet-0.1.9.tar.gz.
File metadata
- Download URL: robustnet-0.1.9.tar.gz
- Upload date:
- Size: 49.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59e7b62ad46a6b3173cc112d9df63860fd57849918f40101d4356a8605b09ad3
|
|
| MD5 |
3820f596448ddffa974366ec431838a4
|
|
| BLAKE2b-256 |
0cf69247d7271316c4c049a7b41ef6c7c1724907e44403f82fafe3a3232f6d0e
|
File details
Details for the file robustnet-0.1.9-py3-none-any.whl.
File metadata
- Download URL: robustnet-0.1.9-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.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e071d413f458657e371e84336e5a097ec1bfdd66efe307df64fbdf5b318b57f
|
|
| MD5 |
5f4eb538cea8a2246a754102a7b915b8
|
|
| BLAKE2b-256 |
34c4a9403dec8f88d87f0e7d1850cd2c90a20f9f5437fc8cc788cb9933c89856
|