cameo - computer aided metabolic engineering & optimziation
Project description
What is Cameo?
Cameo is a high-level python library developed to aid the strain design process in metabolic engineering projects. The library provides a modular framework of simulation methods, strain design methods, access to models, that targets developers that want custom analysis workflows.
Computationally heavy methods have been parallelized and can be run on a clusters using the IPython parallelization framework (see example and documentation for more details). The default fallback is python’s multiprocessing library.
Furthermore, it exposes a high-level API to users that just want to compute promising strain designs.
You got curious? Head over to try.cameo.bio and give it a try.
Installation
Use pip to install Cameo from PyPI (we recommend doing this inside a virtual environment).
pip install cameo
We highly recommend updating pip beforehand (pip install pip --upgrade).
In case you downloaded the source code, run
pip install -e . # recommended
while you are in the top level directory. You might need to run these commands with administrative privileges if you’re not using a virtual environment (using sudo for example).
Examples
A number of examples are available as static (nbviewer.ipython.org) or executable Jupyter (née IPython) notebooks (try.cameo.bio).
High-level API (for users)
Compute strain engineering strategies for a desired product in a number of host organisms using the high-level interface.
from cameo.api import design design(product='L-Serine')
Low-level API (for developers)
Find gene knockout targets using evolutionary computation.
from cameo import models
from cameo.strain_design.heuristic import GeneKnockoutOptimization
from cameo.strain_design.heuristic.objective_functions import biomass_product_coupled_yield
model = models.bigg.e_coli_core
obj = biomass_product_coupled_yield(
model.reactions.Biomass_Ecoli_core_w_GAM,
model.reactions.EX_succ_e,
model.reactions.EX_glc_e)
ko = GeneKnockoutOptimization(model=model, objective_function=obj)
ko.run(max_evaluations=50000, n=1, mutation_rate=0.15, indel_rate=0.185)
Predict heterologous pathways for a desired chemical.
from cameo.strain_design import pathway_prediction predictor = pathway_prediction.PathwayPredictor(model) pathways = predictor.run(product="vanillin")
Dependencies
This library depends on:
cobrapy for constraint-based modeling
optlang for heuristic optimization and mathematical programming
Furthermore, the following dependencies are needed:
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 cameo-0.7.0.tar.gz.
File metadata
- Download URL: cameo-0.7.0.tar.gz
- Upload date:
- Size: 26.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03b1d5e13e9ce500b6a63ddebb2d97085c2fa6853c5c0dcdb0bd72043d0199ca
|
|
| MD5 |
1e1e4b5dcb71e657ac583f55d04bb2b2
|
|
| BLAKE2b-256 |
ca74662fa5b7c5618d11e7baec516bdc7267099bd4582f4ad49b55a703ef67a1
|
File details
Details for the file cameo-0.7.0-py2.py3-none-any.whl.
File metadata
- Download URL: cameo-0.7.0-py2.py3-none-any.whl
- Upload date:
- Size: 24.7 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d69f4d1d319582b939c30559abbbbb4341312c6148c5d99fbf98e6cde6267bf2
|
|
| MD5 |
18f2816a21ededfa84dc09aacefe26c1
|
|
| BLAKE2b-256 |
b4cc01c1962f1142b419c76cd056cbd41879686986554ac0a7cbdb1a14534c80
|