No project description provided
Project description
MiSoS(oup)
Minimal Supplying Community Search (misosoup
) is a command line utility
designed to search for minimal microbial communities, wherein every member is
essential for the community's persistence within a given medium. Its primary
functions include:
- Identifying minimal communities within a specified medium.
- Identifying minimal "supplying" communities within a medium, where each member is crucial for the growth of a focal strain or species of interest.
To utilize "misosoup," users provide a set of genome-scale metabolic models, each representing a potential member of the community. The program then employs constraint-based optimizations to determine minimal communities. These optimizations assume a metabolic steady-state, akin to Flux Balance Analysis, without necessitating specific optimization criteria (though they can be optionally applied).
Once computations are complete, "misosoup" outputs information about community members, their respective growth rates, as well as their metabolic consumption and secretion, presented in a format both readable by humans and parseable by software.
Details
To find minimal microbial communities misosoup
solves a repeated sequence of
optimization problems using MILP formulations:
- Minimize the number of community member (see Zelezniak, et al. PNAS doi:10.1073/pnas.1421834112)
- Fix the active community members and check the feasibility of the entire community.
- Optionally: Optimize growth of the total community biomass.
- Optionally: Perform an optimization to reflect parsimonious enzyme usage (see Lewis, et al. Mol Syst Bio doi:10.1038/msb.2010.47)
Install MiSoS(soup)
misosoup
requires a version of Python >3.7 and <3.11.
The latest stable version of misosoup
is available through pip
and hence it can easily installed executing:
pip install misosoup
Dependencies
misosoup
uses theGuroby
optimizer that is free for academic use but it requires a license.- Academic licenses can be obtained on the gurobi license page
- Precise instructions on how to obtain and setup the gurobi licenses can be found on the gurobi website.
Usage
After installation, you can easily use misosoup
with:
misosoup MODEL_PATH/*.xml --output OUTPUT_FILE --media MEDIA_FILE --strain STRAIN
Arguments
MODEL_PATH
: indicates the path to the directory where the metabolic models are described. Strains with metabolic models included in this directory will be considered as potential members in the minimal communities. The models should be in sbml format and follow the same naming conventions (e.g. if glucose's id in one model is 'glc__D', the same id should be used in the other models).--output
- Use OUTPUT_FILE for output in yaml format. If it is not given, the results will be printed to stdout.
--media
- Load media from MEDIA_FILE. The file should contain the description of the
growth media that shall be tested. The file should contain a dictionary with
all media that the community should be evaluated on. Each of the media needs
to contain a dictionary of exchange reactions and there lower bound, (i.e.
R_EX_ac_e: -10
provides acetate to the communities). The medium with idbase_medium
will be added to all media.
- Load media from MEDIA_FILE. The file should contain the description of the
growth media that shall be tested. The file should contain a dictionary with
all media that the community should be evaluated on. Each of the media needs
to contain a dictionary of exchange reactions and there lower bound, (i.e.
--strain
- Indicates the focal STRAIN model id. If no strain is provided,
misosoup
computes minimal communities.
- Indicates the focal STRAIN model id. If no strain is provided,
Additional arguments
misosoup
can be used with additional arguments.
misosoup MODEL_PATH/*.xml --output OUTPUT_FILE --media MEDIA_FILE --strain STRAIN --parsimony --community-size COMMUNITY_SIZE --minimal-growth MINIMAL_GROWTH
--parsimony
- If this flag is used the algorithm will return the solution that minimizes the total flux. This does not affect the community members but can alter what each member consumes and secretes.
--community-size
- Instead of looking for all communities, find all communities up to size COMMUNITY_SIZE
--minimal-growth
- Set the MINIMAL_GROWTH rate of strains. Every strain that makes up a community needs to satisfy this minimal growth constraint. The default growth rate used is 0.01 (1/h).
All available options can be obtained with:
misosoup --help
Output file
As output misosoup
will generate a yaml file with the following general
structure:
carbon_source:
focal_strain:
- <Solution1>
- <Solution2>
The solutions indicated above contain multiple entries that depend on the
specific settings misosoup has been run with. Within the solutions there are
several entries that indicate if the different optimization / verification
methods that misosoup
used to verify the integrity of the solution failed or
succeded.
Example
cd example
The following code will run misosoup
to find minimal supplying communities for
A1R12 in a medium that contains acetate as carbon source:
misosoup ./strains/*.xml --output ./output_example.yaml --media media.yaml --strain A1R12 --media-select ac
In the example, we run misosoup
to find minimal supplying communities that
would allow growth of the strain
A1R12 in MBM with acetate (ac) as
the sole source of carbon. Looking at the output of the simulation
example_output.yaml) you'll see that misosoup
found two alternative supplying
communities:
- Solution 1: A1R12 can grow when in the presence of I3M07. If we inspect this
solution in more detail we can see (for example):
- Each strain produces carbon dioxide. We note this by looking at the
strain-specific carbon dioxide fluxes:
R_EX_co2_e_A1R12_i: 0.742
andR_EX_co2_e_I3M07_i: 0.957
. - The community as a whole also produces carbon dioxide, which can be seen
looking at the community-level carbon dioxide flux
R_EX_co2_e: 1.699
.
- Each strain produces carbon dioxide. We note this by looking at the
strain-specific carbon dioxide fluxes:
- Solution 2: A1R12 can grow when in the presence of I2R16. A similar analysis to the one conducted for solution 1 could be followed.
Citation
If you use misosoup, please cite X.
Workflows
snakemake
is a useful tool to execute many experiments and gather results.
See misosoup
Workflow Template
on how to use it.
Development
Any contributions are welcome.
MIT License
Copyright (c) 2021 Nicolas Ochsner
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
File details
Details for the file misosoup-2.3.0.tar.gz
.
File metadata
- Download URL: misosoup-2.3.0.tar.gz
- Upload date:
- Size: 24.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f6cf77afb965a2916d93abca0bddef6b935fcf30b96060189ba03408c1ea188 |
|
MD5 | aae871ce85355f8c34bc719d2a34f173 |
|
BLAKE2b-256 | 50f20569c8797a5ca484950ecdd50b17a287af92b73379463d70de10ca4415fb |
File details
Details for the file misosoup-2.3.0-py3-none-any.whl
.
File metadata
- Download URL: misosoup-2.3.0-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f29bd61bf5b2e25a69f50bf16e1f4a8d009b55cfc246139729bf0eeb26988443 |
|
MD5 | 7421a3a9c1d5e4af74f53b38a501344d |
|
BLAKE2b-256 | 8d6c68e46be044166e66f14459290b86ebbd2b3bb431d862c5aef7cd2b90dee9 |