mfapy is a Python toolbox for 13C-metabolic flux analysis developed by Matsuda and Shimizu lab group in Osaka university, Japan. mfapy supports:
- The elementary metabolite unit (EMU) framework developed by Antoniewicz et al 2007.
- Isotopically nonstationary 13C metabolic flux analysis (INST-MFA)
- Parallel labeling experiment without limitation of number of experiments.
- Metabolic flux, net metabolic flux of reversible reaction, and metabolite concentration could be considered as fitting parameters.
- G-value by introducing the "pseudo" reaction
- Goodness-of-fit analysis
- Parallel performing non-linear optimization jobs using joblib package.
- Automated model construction from model description file
Please check 'mfapy-document' repository. https://fumiomatsuda.github.io/mfapy-document/
This software is released under the MIT License, see LICENSE.txt.
Python 3.9
mfapy requires the packages:
NumPy and SciPy (van der Walt, Colbert & Varoquaux, 2011)
nlopt https://nlopt.readthedocs.io/en/latest/
joblib
mkl-service
mfapy was developed and tested using the PyScripter IDE, and was tested in 64 bit version of Anaconda3 distribution in Windows 10.
- Install 64 bit version of Anaconda3
- Create virtual environment such as named "mfapy" and install required packages
> conda create -n mfapy python=3.9 numpy scipy matplotlib joblib
> conda activate mfapy
> conda install -c conda-forge nlopt
> conda install -c anaconda mkl-service
- Install mfapy Unzip and set as current folder
> python setup.py install
> python setup.py test
Sample python code in 'Explanation_1_13CMFA_toymodel.py' explains how to use mfapy. Detailed explanations are available from docstrings Example python codes are also available.
Learn more https://fumiomatsuda.github.io/mfapy-document/
19/06/28 class MetabolicModel: search_ci Grid search procedure is updated.
19/06/28 class MdvData: add_gaussian_noise "normalize" option is newly added.
19/07/01 optimize: def fit_r_mdv_deep add global optimization by "GN_CRS2_LM" before iteration
19/12/27 Support Python 3.8
19/12/27 Example_1_toymodel_INST.py is updated to explain a method to construct time course mdv data from mdv files.
20/7/12 initializing_Rm_fitting, fit_r_mdv_scipy, fit_r_mdv_nlopt in optimizaton: Expection is newly raised to avoid error in paralell processing.
20/7/13 joblib instead of pp is employed for paralell proceccing.
20/7/30 Format of model definition file was updated to support external with a backward compatibility.
20/7/30 load_metabolic_model_reactions in mfapyio: Support external id.
20/7/30 load_metabolic_model_metabolites in mfapyio: Support external id.
20/7/30 load_metabolic_model_reversibles in mfapyio: Support external id.
20/7/30 load_metabolic_model_fragments in mfapyio: Support external id.
20/7/30 External id data was added to Example_0_toymodel_model.txt,
20/7/30 External id data was added to Example_1_toymodel_model.txt.
20/7/30 External id data was added to Example_2_MCF7_taxol_model.txt.
20/7/30 show_results in metablicmodel: Output format was modified for more beautiful alignment.
20/7/30 show_results in metablicmodel: "checkrss" option was added to check RSS levels of each fragment and "fitting" reactions and metabolites.
20/8/19 Files for Example 6 (the Metropolis-Hastings algorithm reported in Scientific Reports volume 10, Article number: 286 (2020)) were newly included in sample folder.
20/8/19 mfapy.carbonsource.set_carbonsources method is newly developed for batch loading of labelling pattern information of carbon sources.
20/8/31 Files for Explanation 1 were newly included in sample folder to demonstrate the functions of mfapy.carbonsource.set_carbonsources
20/8/31 mfapy.metabolicmodel.show_results_in_map is newly developed to project flux data on the metabolic map (.GML) available in Vanted. Files of Example 2 were updated to generate "Example_2_cancer_map_mapped.gml" from a blank map "Example_2_cancer_map_new.gml".
20/9/3 Files for Example 7 (the Metropolis-Hastings algorithm reported in Scientific Reports volume 10, Article number: 286 (2020)) were updated to reproduce MCF-7 example.
20/9/3 A bug in mfapy.metabolicmodel.calc_rss was fixed.
20/9/6 test_metabolicmodel.py was updated to support mfapy.metabolicmodel.generarate_flux_distribution => mfapy.metabolicmodel.generarate_state
20/12/24 Model check functions were added to MetabolicModel.
21/1/9 Example files were totally reorganized.
21/1/9 Explanation 1 files were newly added to explain mfapy functions.
21/2/26 Support Google docstring format.
21/2/26 'mfapy-document' repository was created. https://fumiomatsuda.github.io/mfapy-document/
22/2/14 Limiation in the maximum EMU size is removed.
22/3/14 Problems in setup.py are corrected (Thanks for Prof. Suneng Fu).
22/5/30 Test
If you want to learn more about setup.py
files, check out `this repository https://github.com/fumiomatsuda/mfapy