-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
References for anaerobic benchmarking #325
Comments
The graph has been shown in previous publications (e.g. yeast8 Supplementary Figure 4C), and is generated by this function. It uses this data, which was gathered in Österlund et al. 2013. Under "Methods" - "In silico growth simulations" it cites to the source of those values, evenwhile it does not explicitly mention to the precise paper in its Supplementary file 5. There might be more recent (post-2013) articles with relevant chemostat data, although anaerobic conditions are not as commonly studied, as you probably have also noticed. We'd be happy to enrich our benchmarking dataset with any additional datapoints though! |
Thanks for the quick reply. It appears that the plot on the README cuts off the C-limited anaerobic point with experimental growth rate of 0.369 h^-1 likely due to line 47 in https://github.com/SysBioChalmers/yeast-GEM/blob/main/code/modelTests/growth.m |
You're right that one point is no longer on the graph, the function is indeed sloppy to define the axes (it worked for yeast8 Supplementary Figure 4C: We'll change yeast-GEM/code/modelTests/growth.m Lines 45 to 46 in 3be6d1c
to the following in the next yeast-GEM release: exp_max = max(exp_data(:,4));
mod_max = max([mod_data1(:,4);mod_data2(:,4);mod_data3(:,4);mod_data4(:,4)]); But looking back at the yeast8 paper (figure above), it seemed like the C-limited anaerobic predictions have worsened since then (it was already overpredicted then, but not as drastically). But I'm not certain what model version was used to make the figure in the paper, would be interesting to trace back where it worsened. More general, a worse fit to anaerobic suggest that the growth associated energy requirement (GAM) is different between aerobic and anaerobic. Perhaps some biosynthetic pathway or macromolecule polymerization will use a non-optimal variant when no oxygen is available? Or it's a modelling artefact, hard to know a priori. |
I am attempting to recreate the in silico vs experimental growth rate plot and I am confused by the rescaling of biomass under N-limited conditions in the growth.m script: yeast-GEM/code/modelTests/growth.m Lines 74 to 78 in 3be6d1c
After these modifications there is a function call on line 80 for anaerobic conditions, which will re-scale the biomass further and undo the protein modification: yeast-GEM/code/modelTests/growth.m Lines 79 to 81 in 3be6d1c
Is there a reference for these changes? |
I see that the yeast-GEM/code/otherChanges/anaerobicModel.m Lines 11 to 14 in 3be6d1c
However, in the methods for that paper, the authors claim: "The composition of protein, DNA, RNA and lipids is assumed to be constant under all growth conditions. This assumption is supported by measurements of the amino acid composition of the protein under various growth conditions. Whereas the amino acid composition of the protein was measured (data not shown), we use the composition of nucleotides in RNA and DNA obtained by de Robichon-Szulmajster & Surdin-Kerjan (1971) and the lipid composition described by Rattray (1988). The unsaturated fatty acids and the sterols are assumed to be supplied by respectively the Tween 80 and the ergosterol content of the medium." Further in the results: |
There are two different changes on biomass:
These biomass composition changes are all introduced in the yeast8 paper. |
Regarding your second comment: biomass composition is indeed not scaled as an effect of anaerobiosis, only as an effect of N- vs. C-limitation. And indeed, biomass composition varies somewhat anyway, dependent on growth rate, media, cultivation conditions, stand of the moon. But the most significant change would be the reduction in protein content during N-limitation (which should be compensated for by something, and we assume this is carbohydrates), and the complete inability to synthesize certain metabolites (e.g. ergosterol). |
Thanks again for the lightening fast responses! I am still confused by line 17 in
This function does not change the biomass composition for anaerobic conditions? |
Mea culpa, I completely missed that line. You're right, it indeed reverts the changes that were earlier introduced for N-limitation. Quick fix is to just swap these biomass-modifying functions around in But, this also draws me to what is likely the cause of/contributing to the problem: yeast-GEM/code/otherChanges/anaerobicModel.m Lines 12 to 16 in 3be6d1c
The GAM is changed! In the Meanwhile, I cannot find (after a quick look at the article) the 30.49 number in Nissen et al. 1997, although its Table 3 seems to suggest 54.32 instead? Not sure, because it also suggest widely different values for different carbon sources, which is counterintuitive to me. |
Work on an updated anaerobic model are discussed in #352 |
Description of the issue:
I am looking to benchmark the model under anaerobic carbon limited conditions. I noticed that the main README now features a plot of in silico vs. experimental growth rates for combinations of C and N limitation in aerobic and anaerobic conditions (https://github.com/SysBioChalmers/yeast-GEM/blob/main/growth.png). Are there available reference datasets corresponding to these conditions (both flux tables for the simulations, and growth/metabolite measurements for the experiments)? Are there other references you can recommend for benchmarking the model under anaerobic conditions?
I hereby confirm that I have:
develop
branch of the repositoryThe text was updated successfully, but these errors were encountered: