MetEvolSim (Metabolome Evolution Simulator) Python Package


Keywords
simulation, evolution, systems-biology, sbml, copasi, metabolism, metabolome, abundances, metabolic-network, kinetic-model, evolution-rate, biochemical-networks, metabolic-abundances
License
GPL-3.0
Install
pip install MetEvolSim==1.0.0

Documentation

Metabolome Evolution Simulator

A Python package to simulate the long-term evolution of metabolic levels.

PyPI version  


MetEvolSim (Metabolome Evolution Simulator) is a Python package which provides numerical tools to simulate the long-term evolution of metabolic abundances in kinetic models of metabolic network. To use MetEvolSim, a SBML-formatted metabolic network model is required, along with kinetic parameters and initial metabolic concentrations. Additionally, the model must reach a stable steady-state, which is computed with Copasi software.

MetEvolSim is being developed by Charles Rocabert, Gábor Boross, Orsolya Liska and Balázs Papp.

If you are planning to use MetEvolSim for research or have encountered any issues with the software, do not hesitate to contact Charles Rocabert.

   

Table of contents

Publications

  • O. Liska, G. Boross, C. Rocabert, B. Szappanos, R. Tengölics, B. Papp. Principles of metabolome conservation in animals. Proceedings of the National Academy of Sciences 120 (35), e2302147120 (2023) (https://doi.org/10.1073/pnas.2302147120).

Dependencies

  • Python ≥ 3,
  • Numpy ≥ 1.21 (automatically installed when using pip),
  • Python-libsbml ≥ 5.19 (automatically installed when using pip),
  • NetworkX ≥ 2.6 (automatically installed when using pip),
  • CopasiSE ≥ 4.27 (to be installed separately),
  • pip ≥ 21.3.1 (optional).

Installation

• To install Copasi software, visit http://copasi.org/ and download the command line version CopasiSE.

• To install the latest release of MetEvolSim:

pip install MetEvolSim

Alternatively, download the latest release in the folder of your choice and unzip it. Then follow the instructions below:

# Navigate to the MetEvolSim folder
cd /path/to/MetEvolSim

# Install MetEvolSim Python package
python3 setup.py install

First usage

MetEvolSim has been tested with numerous publicly accessible metabolic networks; however, we cannot guarantee that it will be compatible with any model (please refer to the list of tested metabolic models). The package includes the class Model to manipulate SBML models. Additionally, it is necessary to set up an objective function (a list of target reactions and their coefficients) and to provide the path of CopasiSE software. Please note that objective function coefficients are not operational in the current version of MetEvolSim.

# Import MetEvolSim package
import metevolsim

# Create an objective function
target_fluxes = [['ATPase', 1.0], ['PDC', 1.0]]

# Load the SBML metabolic model
model = metevolsim.Model(sbml_filename='glycolysis.xml',
                         objective_function=target_fluxes,
                         copasi_path='/Applications/COPASI/CopasiSE')

# Print some informations on the metabolic model
print(model.get_number_of_species())
print(model.get_wild_type_species_value('Glc'))

# Get a kinetic parameter at random
param = model.get_random_parameter()
print(param)

# Mutate this kinetic parameter with a log-scale mutation size 0.01
model.random_parameter_mutation(param, sigma=0.01)

# Compute wild-type and mutant steady-states
model.compute_wild_type_steady_state()
model.compute_mutant_steady_state()

# Run a metabolic control analysis on the wild-type
model.compute_wild_type_metabolic_control_analysis()
# This function will output two datasets:
# - output/wild_type_MCA_unscaled.txt containing unscaled control coefficients,
# - output/wild_type_MCA_scaled.txt containing scaled control coefficients.

# Compute all pairwise metabolite shortest paths
model.build_species_graph()
model.save_shortest_paths(filename="glycolysis_shortest_paths.txt")

# Compute a flux drop analysis to measure the contribution of each flux to the fitness
# (in this example, each flux is dropped at 1% of its original value)
model.flux_drop_analysis(drop_coefficient=0.01,
                         filename="flux_drop_analysis.txt",
                         owerwrite=True)

MetEvolSim offers two distinct numerical approaches for assessing the evolution of metabolic abundances:

  • Evolution experiments, based on a Markov Chain Monte Carlo (MCMC) algorithm, Sensitivity analysis, that can either explore every kinetic parameter in a given range and record changes in associated fluxes and metabolic abundances (One-At-a-Time sensitivity analysis) or randomly explore the kinetic parameter space by randomly mutating a single kinetic parameter multiple times (random sensitivity analysis).

All numerical analysis output files are saved in the output subfolder.

Evolution experiments:

Algorithm overview: A. The model of interest is loaded as a wild-type from a SBML file (kinetic equations, kinetic parameter values and initial metabolic concentrations must be specified). B. At each iteration t, a single kinetic parameter is selected at random and mutated through a log10-normal distribution of standard deviation σ. C. The new steady-state is computed using Copasi software, and the MOMA distance z between the mutant and the wild-type target fluxes is computed. D. If z is under a given selection threshold ω, the mutation is accepted. Else, the mutation is discarded. E. A new iteration t+1 is computed.


There are six types of selection available:
  • MUTATION_ACCUMULATION: Run a mutation accumulation experiment by accepting all new mutations without any selection threshold,
  • ABSOLUTE_METABOLIC_SUM_SELECTION: Run an evolution experiment by applying a stabilizing selection on the sum of absolute metabolic abundances,
  • ABSOLUTE_TARGET_FLUXES_SELECTION: Run an evolution experiment by applying a stabilizing selection on the MOMA distance of absolute target fluxes,
  • RELATIVE_TARGET_FLUXES_SELECTION: Run an evolution experiment by applying a stabilizing selection on the MOMA distance of relative target fluxes.
# Load a Markov Chain Monte Carlo (MCMC) instance
mcmc = metevolsim.MCMC(sbml_filename='glycolysis.xml',
                       objective_function=target_fluxes,
                       total_iterations=10000,
                       sigma=0.01,
                       selection_scheme="MUTATION_ACCUMULATION",
                       selection_threshold=1e-4,
                       copasi_path='/Applications/COPASI/CopasiSE')

# Initialize the MCMC instance
mcmc.initialize()

# Compute the successive iterations and write output files
stop_MCMC = False
while not stop_MCMC:
    stop_mcmc = mcmc.iterate()
    mcmc.write_output_file()
    mcmc.write_statistics()

One-At-a-Time (OAT) sensitivity analysis:

For each kinetic parameter p, each metabolic abundance [Xi] and each flux νj, the algorithm numerically computes relative derivatives and control coefficients.

# Load a sensitivity analysis instance
sa = metevolsim.SensitivityAnalysis(sbml_filename='glycolysis.xml',
                                    copasi_path='/Applications/COPASI/CopasiSE')

# Run the full OAT sensitivity analysis
sa.run_OAT_analysis(factor_range=1.0, factor_step=0.01)

Random sensitivity analysis:

At each iteration, a single kinetic parameter p is mutated at random in a log10-normal distribution of size σ, and relative derivatives and control coefficients are computed.

# Load a sensitivity analysis instance
sa = metevolsim.SensitivityAnalysis(sbml_filename='glycolysis.xml',
                                    copasi_path='/Applications/COPASI/CopasiSE')

# Run the full OAT sensitivity analysis
sa.run_random_analysis(sigma=0.01, nb_iterations=1000)

Help

To get assistance with a MetEvolSim class or method, use the Python help function:

help(metevolsim.Model.set_species_initial_value)

To get a brief overview and a list of parameters and outputs:

Help on function set_species_initial_value in module metevolsim:

set_species_initial_value(self, species_id, value)
    Set the initial concentration of the species 'species_id' in the
    mutant model.

    Parameters
    ----------
    species_id: str
            Species identifier (as defined in the SBML model).
    value: float >= 0.0
            Species abundance.

    Returns
    -------
    None
(END)

Ready-to-use examples

Ready-to-use examples come pre-packaged with MetEvolSim package. They can also be downloaded here: https://github.com/charlesrocabert/MetEvolSim/raw/master/example/example.zip.

List of tested metabolic models

Reference Model Running with MetEvolSim
Bakker et al. (1997) Trypanosoma brucei glycolysis
Curto et al. (1998) Human purine metabolism
Mulquiney et al. (1999) Human erythrocyte
Jamshidi et al. (2001) Red blood cell
Bali et al. (2001) Red blood cell glycolysis
Lambeth et al. (2002) Skeletal muscle glycogenolysis
Holzhutter et al. (2004) Human erythrocyte
Beard et al. (2005) Mitochondrial respiration
Banaji et al. (2005) Cerebral blood flood control
Bertram et al. (2006) Mitochondrial ATP production
Bruck et al. (2008) Yeast glycolysis
Reed et al. (2008) Glutathione metabolism
Curien et al. (2009) Aspartame metabolism
Jerby et al. (2010) Human liver metabolism
Li et al. (2010) Yeast glycolysis
Bekaert et al. (2010) Mouse metabolism reconstruction
Bordbar et al. (2011) Human multi-tissues
Koenig et al. (2012) Hepatocyte glucose metabolism
Messiha et al. (2013) Yeast glycolysis + pentose phosphate
Mitchell et al. (2013) Liver iron metabolism
Stanford et al. (2013) Yeast whole cell model
Bordbar et al. (2015) Red blood cell
Costa et al. (2016) E. coli core metabolism
Millard et al. (2016) E. coli core metabolism
Bulik et al. (2016) Hepatic glucose metabolism

Copyright © 2018-2023 Charles Rocabert, Gábor Boross, Orsolya Liska and Balázs Papp. All rights reserved.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.