If you have questions, suggestions or bug reports regarding CNApy, you can use either of the CNApy GitHub issues, the CNApy GitHub discussions or the CNApy Gitter chat room.
CNApy is a Python-based graphical user interface for a) many common methods of Constraint-Based Reconstruction and Analysis (COBRA) with stoichiometric metabolic models, b) the visualization of COBRA calculation results and c) the creation and editing of metabolic models.
Supported COBRA methods (partly provided by cobrapy) include:
- Flux Balance Analysis (FBA)
- Flux Variability Analysis (FVA)
- Making measured flux scenarios stoichiometrically feasible
- Elementary Flux Modes (EFM)
- Thermodynamic methods based on OptMDFpathway
- Many advanced strain design algorithms such as OptKnock, RobustKnock, OptCouple and advanced Minimal Cut Sets through its integration of the StrainDesign package
- Yield optimization (based on linear-fractional programming)
- Phase plane analysis
All calculation results can be visualized in CNApy's interactive and editable metabolic maps. These maps can also use vector-based (SVG) backgrounds. Escher maps are also natively supported and can be created and edited inside CNApy.
Aside of performing calculations on metabolic models, CNApy can also be used to create and/or edit metabolic models. This includes all important aspects of the model's reactions, metabolites and genes. For model loading and export, CNApy supports the widely used SBML standard format.
For more details on CNApy's many more features, see section Documentation and Tutorials.
For information about how to install CNApy, see section Installation Options.
For information about how to contribute to CNApy as a developer, see section Contribute to the CNApy development.
If you want to cite CNApy, see section How to cite CNApy.
Associated project note: If you want to use the well-known MATLAB-based CellNetAnalyzer (CNA), which is not compatible with CNApy, you can download it from CNA's website.
- The CNApy guide contains information for all major functions of CNApy.
- Our CNApy YouTube channel provides some videos of working with CNApy.
- We also provide directly usable CNApy example projects which include some of the most common E. coli models. These projects can also be downloaded within CNApy at its first start-up or via CNApy's File menu.
There are 4 alternative ways to install CNApy:
- If you use Windows, the easiest way is to use our Windows installer, see section Using the Windows installer.
- If you use Linux or Apple MacOS X, the easiest installation producure is our assisted installation protocol, see Assisted installation under Linux and MacOS X.
- If you already have installed Anaconda or Miniconda on your computer, you can directly install CNApy as a conda package as described in section Install CNApy as conda package.
- If you want to develop CNApy, follow the instruction for the cloning and set-up of the CNApy repository using git and conda in section Setup the CNApy development environment.
Everyone is welcome to contribute to CNApy's development. See our contribution file for more detailed instructions.
- Download the zipped CNApy Windows installer from here.
- Unzip the file into your desired location. You can do this by right-clicking on the file and selecting the option to extract the files.
- In the location where you unzipped the file, click on "INSTALL_CNAPY.bat". As soon as the installation is finished, the appearing window closes and you can start CNApy either by double-clicking on the newly created CNApy desktop icon or by searching for CNApy through the task bar search.
Click on the operating system you use:
- Download Miniconda from here.
- Install Miniconda by double-clicking the downloaded file. If the script does not run, right-click on the file, open its settings and select the option to make it executable (alternative: run 'chmod u+x ./Miniconda3-latest-Linux-x86_64.sh' in your terminal). Follow the appearing installation instructions and remember in which folder you install Miniconda. If you already use Anaconda on your computer (for which we also directly provide a conda CNApy package, see here), deactivate all installation options which put Miniconda to your console or system PATH to avoid possible problems.
- Using your file manager, go to the folder where you installed Miniconda. Then, open the appearing sub-folder "condabin".
- Download the CNApy installation assistant script from here into the mentioned "condabin" folder.
- In the file manager, double-click on the newly downloaded installation assistant script which is called "cnapy-assistant-script.sh". If the script does not run, right-click on the file, open its settings and select the option to make it executable (alternative: run 'chmod u+x ./cnapy-assistant-script.sh' in your terminal). Wait until CNApy is downloaded and installed.
- You can now run CNApy by executing the following two terminal instructions in the mentioned "condabin" folder:
./conda activate cnapy-1.1.10
cnapy
- If you have a (new) Mac with an ARM processor, such as the M1 or M2, download Miniconda from here. If you have an (older) Mac with an Intel processor, download Miniconda from here. If you are unsure which processor your Mac has, click on the Apple menu in the upper-left of your screen and choose "About This Mac".
- Install Miniconda by double-clicking the downloaded file. Follow the appearing installation instructions and remember in which folder you install Miniconda. If you already use Anaconda on your computer (for which we directly provide a conda CNApy package, see here), deactivate all installation options which put Miniconda to your console or system PATH to avoid possible problems
- Using Finder, go to the folder where you installed Miniconda. Then, open the appearing sub-folder "condabin".
- Download the CNApy installation assistant script from here into the mentioned "condabin" folder.
- In the file manager, double-click on the newly downloaded installation assistant script which is called "cnapy-installation-script.sh". If the script does not run, right-click on the file, open its settings and select the option to make it executable (alternative: run 'chmod u+x ./cnapy-assistant-script.sh' in your terminal). Wait until CNApy is downloaded and installed.
- Open the terminal in the mentioned "condabin" folder. You can now run CNApy by executing the following two terminal instructions:
./conda activate cnapy-1.1.10
cnapy
-
Create a conda environment with all dependencies
conda create -n cnapy-1.1.10 -c Gurobi -c IBMDecisionOptimization -c conda-forge -c cnapy cnapy=1.1.10 --yes
-
Activate the cnapy conda environment
conda activate cnapy-1.1.10
-
Run CNApy within you activated conda environment
cnapy
Furthermore, you can also perform the following optional steps:
-
(optional and only recommended if you have already installed CNApy by using conda) If you already have a cnapy environment, e.g., cnapy-1.X.X, you can delete it with the command
# Here, the Xs stand for the last CNApy version you've installed by using conda conda env remove -n cnapy-1.X.X
-
(optional, but recommended if you also use other Python distributions or Anaconda environments) In order to solve potential package version problems, set a systems variable called "PYTHONNOUSERSITE" to the value "True".
Under Linux systems, you can do this with the following command:
export PYTHONNOUSERSITE=True
Under Windows systems, you can do this by searching for your system's "environmental variables" and adding the variable PYTHONNOUSERSITE with the value True using Window's environmental variables setting window.
We use conda as package manager to install all dependencies. You can use miniconda. If you have conda installed you can:
-
Create a conda development environment with all dependencies
conda env create -n cnapy-dev -f environment.yml
-
Activate the development environment
conda activate cnapy-dev
-
Checkout the latest cnapy development version using git
git clone https://github.com/cnapy-org/CNApy.git
-
Change into the source directory and run CNApy
cd CNApy python cnapy.py
Any contribution intentionally submitted for inclusion in the work by you, shall be licensed under the terms of the Apache 2.0 license without any additional terms or conditions.
If you use CNApy in your scientific work, please consider to cite CNApy's publication:
Thiele et al. (2022). CNApy: a CellNetAnalyzer GUI in Python for analyzing and designing metabolic networks. Bioinformatics 38, 1467-1469, doi.org/10.1093/bioinformatics/btab828.