-
|
Hello @cdiener, I have been trying to use MICOM in my research and I have a few queries regarding different approaches to defining growth rates.
1. grow(tradeoff=1.0)
2. cooperative_tradeoff(fraction=1.0)
In a nutshell:
Any insights or clarification would be much appreciated. Thank you very much for your time and for developing this tool! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @rebminso,
|
Beta Was this translation helpful? Give feedback.
Hi @rebminso,
growuses cooperative tradeoff FBA as well under the hood.fractionandtradeoffdescribe the same parameter. It's just unfortunate naming I should fix. They will give the same results for growth rates within solver accuracy.Those are just different APIs.
growis part of the workflows and supposed to be used for multiple samples. It sets sensible defaults but has less flexibility.cooperative_tradeoffis part of the single model API. It does not have as many checks and requires manual control for setting the medium, finding minimum imports etc. But it does give more control for custom strategies.Yes it's possible. It's just
sum(abundance * growth rates)for each sample…