Mackinac: A bridge between ModelSEED and COBRApy
Project description
Mackinac combines the ability of ModelSEED to automatically reconstruct metabolic models with the advanced analysis capabilities in cobrapy to bridge the differences between the two frameworks. Mackinac provides support for using the ModelSEED web service to create draft genome-scale models from genomes available in the Pathosystems Resource Integration Center (PATRIC) and creates a COBRA model from a ModelSEED model. If you are not a registered PATRIC user, you must complete a new user registration to work with the ModelSEED web service.
If you already have models available in ModelSEED, you can simply import and create a COBRA model with the create_cobra_model_from_modelseed_model() function. You can then use all of the features in cobrapy to analyze, inspect, explore, and draw conclusions from the model.
You can also reconstruct and gap fill models using the ModelSEED service for any organism with a genome available in PATRIC. Additional functions are available for working with ModelSEED models, managing workspace objects, getting information about PATRIC genomes, and calculating reaction likelihoods.
Please use the cobrapy Google Group for help. Alternatively, you can use gitter.im for quick questions and discussions (faster response times).
More information about opencobra is available at the website.
Installation
Use pip to install Mackinac from PyPI (we recommend doing this inside a virtual environment):
pip install mackinac
Web service URLs
Mackinac uses web services provided by other organizations which can be offline, the interface can change, or the URL can change. Mackinac uses these default URLs:
ModelSEED web service at http://p3c.theseed.org/dev1/services/ProbModelSEED
Workspace web service at https://p3.theseed.org/services/Workspace
PATRIC web service at https://www.patricbrc.org/api/
Alternate URLs include the following:
Former production ModelSEED web service at https://p3.theseed.org/services/ProbModelSEED
You can change the URL used to connect to a web service as shown below:
>>> import mackinac >>> mackinac.modelseed.ms_client.url = 'http://p3c.theseed.org/dev1/services/ProbModelSEED' >>> mackinac.workspace.ws_client.url = 'https://p3.theseed.org/services/Workspace' >>> mackinac.genome.patric_url = 'https://www.patricbrc.org/api/'
Direct installation in virtual environment
If virtualenvwrapper is not installed, follow the directions to install virtualenvwrapper. You should also update your shell startup file.
Clone the git repository to your computer with this command:
$ git clone https://github.com/mmundy42/mackinac.git
Create a virtualenv for Mackinac with these commands:
$ cd mackinac $ mkvirtualenv mackinac
Use the --python option to select a specific version of Python for the virtualenv. For example, python=python3 to select the current python3 installed on the system.
Note on macOS, matplotlib requires Python be installed as a framework but virtualenv creates a non-framework build of Python. See the matplotlib FAQ for details on a workaround.
Upgrade pip and setuptools to the latest versions with these commands:
(mackinac)$ pip install --upgrade pip setuptools
Install all of the Mackinac dependencies with this command:
(mackinac)$ pip install -r requirements.txt
This command can take a few minutes while numpy, pandas, and libsbml are built in the virtualenv.
Install the latest version of Mackinac with this command:
(mackinac)$ python setup.py install
Install the pytest package with this command:
(mackinac)$ pip install pytest
You need to provide a username and password for the tests to obtain an authentication token. Substitute your PATRIC username and password and run the tests with this command:
(mackinac)$ TEST_USERNAME=<username> TEST_PASSWORD=<password> pytest mackinac/test -v
Run examples in a notebook
An example of how to use Mackinac is provided in a notebook. Here’s how to start Jupyter and run the notebook from the virtualenv.
Install Jupyter with this command:
(mackinac)$ pip install jupyter
Install a kernel that uses the virtualenv installation with this command:
(mackinac)$ ipython kernel install --name "Mackinac_Python27" --user
Start the Jupyter notebook server with this command:
(mackinac)$ jupyter notebook
Jupyter opens a web page in your default browser with a file browser.
Navigate to the “documentation_builder” folder and click on the “modelseed.ipynb” notebook.
After the notebook opens, from the “Kernel” menu, select “Change kernel” and click on “Mackinac_Python27”.
Now you can run the cells in the notebook.
Release Notes
Version 0.8.4 (May 18, 2017)
Fixed usages of deprecated cobra.core.Model.add_reaction() function
Added another way to parse error returned by ModelSEED server
Version 0.8.3 (May 8, 2017)
Fixed setting reaction objective coefficient with cobra 0.6
Version 0.8.2 (May 5, 2017)
Removed dependency on a specific version of six package
Updated directions for virtual environment installation
Switched default ModelSEED service URL to current active server
Version 0.8.1 (March 15, 2017)
Version corresponding to published paper
How to cite Mackinac
If you use Mackinac for an analysis, please cite this paper: Mackinac: a bridge between ModelSEED and COBRApy to generate and analyze genome-scale metabolic models
References
COBRApy: COnstraints-Based Reconstruction and Analysis for Python
High-throughput generation, optimization and analysis of genome-scale metabolic models (ModelSEED)
PATRIC, the bacterial bioinformatics database and analysis resource
Mackinac Bridge
The Mackinac Bridge is one of the longest suspension bridges in the United States and spans the Straits of Mackinac to connect the Upper and Lower Peninsulas of Michigan.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mackinac-0.8.4.tar.gz
.
File metadata
- Download URL: mackinac-0.8.4.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5a95db3d3607ede34aa22fbc30bcd295f51e0d0867d16b17c21617d077bae96 |
|
MD5 | 8d5a164c250bbd8a2da69fb766a3d309 |
|
BLAKE2b-256 | 3b62f75db7e0eeb6dcc1d4a445259c21e2c78d95b58b8ed829e49a62f5fa9e69 |