diff --git a/benchmarks/cobra-cameo-merge-benchmarks-before-merge.ipynb b/benchmarks/cobra-cameo-merge-benchmarks-before-merge.ipynb index bab9c1d98..64cfc5065 100644 --- a/benchmarks/cobra-cameo-merge-benchmarks-before-merge.ipynb +++ b/benchmarks/cobra-cameo-merge-benchmarks-before-merge.ipynb @@ -2,32 +2,27 @@ "cells": [ { "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": false - }, + "execution_count": 1, + "metadata": {}, "outputs": [], "source": [ "import cobra\n", - "from cobra.io import read_sbml_model\n", - "from cobra.test import create_test_model\n", + "from cobra.io import read_sbml_model, load_model\n", "from cobra import Model" ] }, { "cell_type": "code", - "execution_count": 3, - "metadata": { - "collapsed": false - }, + "execution_count": 2, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['/Users/niso/anaconda/envs/cameo3.4/lib/python3.4/site-packages/cobra']" + "['/Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra']" ] }, - "execution_count": 3, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -38,18 +33,16 @@ }, { "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": false - }, + "execution_count": 3, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'0.4.1'" + "'0.24.0'" ] }, - "execution_count": 4, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -60,10 +53,8 @@ }, { "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": true - }, + "execution_count": 4, + "metadata": {}, "outputs": [], "source": [ "benchmark_results = {}" @@ -71,33 +62,39 @@ }, { "cell_type": "code", - "execution_count": 6, - "metadata": { - "collapsed": true - }, - "outputs": [], + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "m = create_test_model('ecoli')" + "m = load_model('iJO1366')" ] }, { "cell_type": "code", - "execution_count": 7, - "metadata": { - "collapsed": false - }, + "execution_count": 6, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "10 loops, best of 3: 67.9 ms per loop\n" + "12 s ± 1.45 s per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 7, @@ -115,9 +112,7 @@ { "cell_type": "code", "execution_count": 8, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['add_reaction'] = _" @@ -126,21 +121,19 @@ { "cell_type": "code", "execution_count": 9, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "10 loops, best of 3: 28.2 ms per loop\n" + "565 ms ± 83 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 9, @@ -157,9 +150,7 @@ { "cell_type": "code", "execution_count": 10, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['add_reactions'] = _" @@ -167,32 +158,38 @@ }, { "cell_type": "code", - "execution_count": 15, - "metadata": { - "collapsed": false - }, + "execution_count": 11, + "metadata": {}, "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/core/group.py:148: UserWarning: need to pass in a list\n", + " warn(\"need to pass in a list\")\n" + ] + }, { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 913 ms per loop\n" + "7.06 s ± 368 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 15, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%%timeit -o\n", - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")\n", + "model = load_model('iJO1366')\n", "for reaction in model.reactions:\n", " model.remove_reactions([reaction])" ] @@ -200,9 +197,7 @@ { "cell_type": "code", "execution_count": 12, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['remove_reaction'] = _" @@ -210,77 +205,85 @@ }, { "cell_type": "code", - "execution_count": 8, - "metadata": { - "collapsed": false - }, + "execution_count": 13, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 589 ms per loop\n" + "291 ms ± 18.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 8, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%%timeit -o\n", - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")" + "model = load_model('e_coli_core')" ] }, { "cell_type": "code", - "execution_count": 9, - "metadata": { - "collapsed": true - }, + "execution_count": 14, + "metadata": {}, "outputs": [], "source": [ - "benchmark_results['read_sbml_model'] = _" + "benchmark_results['load_model'] = _" ] }, { "cell_type": "code", - "execution_count": 20, - "metadata": { - "collapsed": false - }, + "execution_count": 15, + "metadata": {}, "outputs": [], "source": [ - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")" + "model = load_model('e_coli_core')" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "133 ms ± 5.07 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "%%timeit -o\n", "for reaction in model.reactions:\n", " model.objective = reaction\n", " solution = model.optimize()\n", - " solution.f" + " solution.objective_value" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, + "execution_count": 17, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['iteratete_all_reactions_set_objective_solve'] = _" @@ -288,25 +291,23 @@ }, { "cell_type": "code", - "execution_count": 13, - "metadata": { - "collapsed": false - }, + "execution_count": 18, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "10 loops, best of 3: 60.3 ms per loop\n" + "15.9 ms ± 1.55 ms per loop (mean ± std. dev. of 7 runs, 100 loops each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 13, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -318,10 +319,8 @@ }, { "cell_type": "code", - "execution_count": 14, - "metadata": { - "collapsed": true - }, + "execution_count": 19, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['model_copy'] = _" @@ -340,9 +339,9 @@ "metadata": { "anaconda-cloud": {}, "kernelspec": { - "display_name": "Python [conda env:cameo3.4]", + "display_name": "Python 3 (ipykernel)", "language": "python", - "name": "conda-env-cameo3.4-py" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -354,7 +353,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.4.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/benchmarks/cobra-cameo-merge-benchmarks.ipynb b/benchmarks/cobra-cameo-merge-benchmarks.ipynb index 0742c6f29..e09ffe1cf 100644 --- a/benchmarks/cobra-cameo-merge-benchmarks.ipynb +++ b/benchmarks/cobra-cameo-merge-benchmarks.ipynb @@ -3,172 +3,23 @@ { "cell_type": "code", "execution_count": 1, - "metadata": { - "collapsed": false - }, - "outputs": [ - { - "data": { - "text/html": [] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": [ - "\n", - "(function(global) {\n", - " function now() {\n", - " return new Date();\n", - " }\n", - "\n", - " var force = \"1\";\n", - "\n", - " if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n", - " window._bokeh_onload_callbacks = [];\n", - " window._bokeh_is_loading = undefined;\n", - " }\n", - "\n", - "\n", - " \n", - " if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n", - " window._bokeh_timeout = Date.now() + 5000;\n", - " window._bokeh_failed_load = false;\n", - " }\n", - "\n", - " var NB_LOAD_WARNING = {'data': {'text/html':\n", - " \"
\\n\"+\n", - " \"

\\n\"+\n", - " \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", - " \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", - " \"

\\n\"+\n", - " \"
    \\n\"+\n", - " \"
  • re-rerun `output_notebook()` to attempt to load from CDN again, or
  • \\n\"+\n", - " \"
  • use INLINE resources instead, as so:
  • \\n\"+\n", - " \"
\\n\"+\n", - " \"\\n\"+\n", - " \"from bokeh.resources import INLINE\\n\"+\n", - " \"output_notebook(resources=INLINE)\\n\"+\n", - " \"\\n\"+\n", - " \"
\"}};\n", - "\n", - " function display_loaded() {\n", - " if (window.Bokeh !== undefined) {\n", - " Bokeh.$(\"#\").text(\"BokehJS successfully loaded.\");\n", - " } else if (Date.now() < window._bokeh_timeout) {\n", - " setTimeout(display_loaded, 100)\n", - " }\n", - " }\n", - "\n", - " function run_callbacks() {\n", - " window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n", - " delete window._bokeh_onload_callbacks\n", - " console.info(\"Bokeh: all callbacks have finished\");\n", - " }\n", - "\n", - " function load_libs(js_urls, callback) {\n", - " window._bokeh_onload_callbacks.push(callback);\n", - " if (window._bokeh_is_loading > 0) {\n", - " console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", - " return null;\n", - " }\n", - " if (js_urls == null || js_urls.length === 0) {\n", - " run_callbacks();\n", - " return null;\n", - " }\n", - " console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", - " window._bokeh_is_loading = js_urls.length;\n", - " for (var i = 0; i < js_urls.length; i++) {\n", - " var url = js_urls[i];\n", - " var s = document.createElement('script');\n", - " s.src = url;\n", - " s.async = false;\n", - " s.onreadystatechange = s.onload = function() {\n", - " window._bokeh_is_loading--;\n", - " if (window._bokeh_is_loading === 0) {\n", - " console.log(\"Bokeh: all BokehJS libraries loaded\");\n", - " run_callbacks()\n", - " }\n", - " };\n", - " s.onerror = function() {\n", - " console.warn(\"failed to load library \" + url);\n", - " };\n", - " console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", - " document.getElementsByTagName(\"head\")[0].appendChild(s);\n", - " }\n", - " };\n", - "\n", - " var js_urls = ['https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-compiler-0.12.2.min.js'];\n", - "\n", - " var inline_js = [\n", - " function(Bokeh) {\n", - " Bokeh.set_log_level(\"info\");\n", - " },\n", - " \n", - " function(Bokeh) {\n", - " \n", - " Bokeh.$(\"#5a10f400-90ee-41ca-8c98-41a150f2b7a8\").text(\"BokehJS is loading...\");\n", - " },\n", - " function(Bokeh) {\n", - " console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.css\");\n", - " Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.css\");\n", - " console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.css\");\n", - " Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.css\");\n", - " }\n", - " ];\n", - "\n", - " function run_inline_js() {\n", - " \n", - " if ((window.Bokeh !== undefined) || (force === \"1\")) {\n", - " for (var i = 0; i < inline_js.length; i++) {\n", - " inline_js[i](window.Bokeh);\n", - " }} else if (Date.now() < window._bokeh_timeout) {\n", - " setTimeout(run_inline_js, 100);\n", - " } else if (!window._bokeh_failed_load) {\n", - " console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", - " window._bokeh_failed_load = true;\n", - " } else if (!force) {\n", - " var cell = $(\"#\").parents('.cell').data().cell;\n", - " cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", - " }\n", - "\n", - " }\n", - "\n", - " if (window._bokeh_is_loading === 0) {\n", - " console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", - " run_inline_js();\n", - " } else {\n", - " load_libs(js_urls, function() {\n", - " console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n", - " run_inline_js();\n", - " });\n", - " }\n", - "}(this));" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "metadata": {}, + "outputs": [], "source": [ "import cobra\n", - "from cobra.io import read_sbml_model\n", - "from cobra.test import create_test_model\n", + "from cobra.io import load_model\n", "from cobra import Model" ] }, { "cell_type": "code", "execution_count": 2, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['/Users/niso/Dev/cobrapy-fork/cobra']" + "['/Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra']" ] }, "execution_count": 2, @@ -183,14 +34,12 @@ { "cell_type": "code", "execution_count": 3, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'0.4.2b2.post32+gitf12ab3a'" + "'0.24.0'" ] }, "execution_count": 3, @@ -205,9 +54,7 @@ { "cell_type": "code", "execution_count": 4, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "benchmark_results = {}" @@ -216,20 +63,26 @@ { "cell_type": "code", "execution_count": 5, - "metadata": { - "collapsed": true - }, - "outputs": [], + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "m = create_test_model('ecoli')" + "m = load_model('iJO1366')" ] }, { "cell_type": "code", - "execution_count": 17, - "metadata": { - "collapsed": false - }, + "execution_count": 6, + "metadata": {}, "outputs": [], "source": [ "m.solver = 'glpk'" @@ -237,25 +90,23 @@ }, { "cell_type": "code", - "execution_count": 18, - "metadata": { - "collapsed": false - }, + "execution_count": 7, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 2.58 s per loop\n" + "11.3 s ± 1.26 s per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 18, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } @@ -269,10 +120,8 @@ }, { "cell_type": "code", - "execution_count": 19, - "metadata": { - "collapsed": true - }, + "execution_count": 8, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['add_reaction'] = _" @@ -280,25 +129,23 @@ }, { "cell_type": "code", - "execution_count": 20, - "metadata": { - "collapsed": false - }, + "execution_count": 9, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 1.79 s per loop\n" + "726 ms ± 33.2 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 20, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -311,10 +158,8 @@ }, { "cell_type": "code", - "execution_count": 19, - "metadata": { - "collapsed": true - }, + "execution_count": 10, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['add_reactions'] = _" @@ -322,42 +167,66 @@ }, { "cell_type": "code", - "execution_count": 27, - "metadata": { - "collapsed": false - }, + "execution_count": 11, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 7.67 s per loop\n" + "4.82 s ± 585 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 27, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%%timeit -o\n", - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")\n", + "model = load_model('iJO1366')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "8.47 s ± 1.98 s per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "%%timeit -o\n", + "model = load_model('iJO1366')\n", "for reaction in model.reactions:\n", " model.remove_reactions([reaction])" ] }, { "cell_type": "code", - "execution_count": 28, - "metadata": { - "collapsed": true - }, + "execution_count": 13, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['remove_reaction'] = _" @@ -365,41 +234,37 @@ }, { "cell_type": "code", - "execution_count": 29, - "metadata": { - "collapsed": false - }, + "execution_count": 14, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 7.05 s per loop\n" + "7.93 s ± 508 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 29, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "%%timeit -o\n", - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")\n", + "model = load_model('iJO1366')\n", "model.remove_reactions(model.reactions)" ] }, { "cell_type": "code", - "execution_count": 28, - "metadata": { - "collapsed": true - }, + "execution_count": 15, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['remove_reactions'] = _" @@ -407,48 +272,72 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, + "execution_count": 16, + "metadata": {}, "outputs": [], + "source": [ + "model = load_model('iJO1366')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1min 20s ± 11.3 s per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "%%timeit -o\n", - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")" + "for reaction in model.reactions:\n", + " model.objective = reaction\n", + " solution = model.optimize()\n", + " solution.fluxes" ] }, { "cell_type": "code", - "execution_count": 23, - "metadata": { - "collapsed": false - }, + "execution_count": 18, + "metadata": {}, "outputs": [], "source": [ - "model = read_sbml_model(\"/Users/niso/Dev/cobrapy-fork/cobra/test/data/iJO1366.xml\")" + "benchmark_results['iterate_all_reactions_set_objective_optimize'] = _" ] }, { "cell_type": "code", - "execution_count": 24, - "metadata": { - "collapsed": false - }, + "execution_count": 19, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 13.7 s per loop\n" + "22 s ± 1.59 s per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 24, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -457,42 +346,38 @@ "%%timeit -o\n", "for reaction in model.reactions:\n", " model.objective = reaction\n", - " solution = model.solve()\n", - " solution.f" + " solution = model.slim_optimize() # If you only care about the flux of the objective\n", + " solution" ] }, { "cell_type": "code", - "execution_count": 25, - "metadata": { - "collapsed": true - }, + "execution_count": 20, + "metadata": {}, "outputs": [], "source": [ - "benchmark_results['iteratete_all_reactions_set_objective_solve'] = _" + "benchmark_results['iterate_all_reactions_set_objective_slim_optimize'] = _" ] }, { "cell_type": "code", - "execution_count": 13, - "metadata": { - "collapsed": false - }, + "execution_count": 21, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1 loop, best of 3: 794 ms per loop\n" + "688 ms ± 88 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] }, { "data": { "text/plain": [ - "" + "" ] }, - "execution_count": 13, + "execution_count": 21, "metadata": {}, "output_type": "execute_result" } @@ -504,10 +389,8 @@ }, { "cell_type": "code", - "execution_count": 14, - "metadata": { - "collapsed": true - }, + "execution_count": 22, + "metadata": {}, "outputs": [], "source": [ "benchmark_results['model_copy'] = _" @@ -526,9 +409,9 @@ "metadata": { "anaconda-cloud": {}, "kernelspec": { - "display_name": "Python [conda env:cobra-merge]", + "display_name": "Python 3 (ipykernel)", "language": "python", - "name": "conda-env-cobra-merge-py" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -540,7 +423,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.4.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/benchmarks/geometric_fba.ipynb b/benchmarks/geometric_fba.ipynb index 033cad974..c46684cf5 100644 --- a/benchmarks/geometric_fba.ipynb +++ b/benchmarks/geometric_fba.ipynb @@ -22,26 +22,9 @@ "cell_type": "code", "execution_count": 3, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "DEBUG:optlang.util:Gurobi python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/gurobipy\n", - "DEBUG:optlang.util:GLPK python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/swiglpk\n", - "DEBUG:optlang.util:Mosek python bindings not available.\n", - "DEBUG:optlang.util:CPLEX python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/cplex\n", - "DEBUG:optlang.util:Scipy solver not available\n", - "DEBUG:pip._internal.utils.misc:lzma module is not available\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: git\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: hg\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: svn\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: bzr\n" - ] - } - ], + "outputs": [], "source": [ - "from cobra.test import create_test_model" + "from cobra.io import load_model" ] }, { @@ -57,9 +40,26 @@ "cell_type": "code", "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:cobra.core.model:The current solver interface glpk doesn't support setting the optimality tolerance.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "model = create_test_model(\"textbook\")" + "model = load_model(\"textbook\")" ] }, { @@ -459,7 +459,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -473,7 +473,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/benchmarks/parallel_fva.ipynb b/benchmarks/parallel_fva.ipynb index 671ac376b..134af5725 100644 --- a/benchmarks/parallel_fva.ipynb +++ b/benchmarks/parallel_fva.ipynb @@ -24,7 +24,7 @@ "metadata": {}, "outputs": [], "source": [ - "from cobra.test import create_test_model" + "from cobra.io import load_model" ] }, { @@ -40,9 +40,26 @@ "cell_type": "code", "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:cobra.core.model:The current solver interface glpk doesn't support setting the optimality tolerance.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "model = create_test_model(\"ecoli\")" + "model = load_model(\"iJO1366\")" ] }, { @@ -54,8 +71,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 5.71 s, sys: 0 ns, total: 5.71 s\n", - "Wall time: 5.71 s\n" + "CPU times: user 7.15 s, sys: 119 ms, total: 7.27 s\n", + "Wall time: 7.55 s\n" ] }, { @@ -85,286 +102,36 @@ " \n", " \n", " \n", - " DM_4CRSOL\n", + " DM_4crsol_c\n", " 0.000208\n", " 0.000219\n", " \n", " \n", - " DM_5DRIB\n", + " DM_5drib_c\n", " 0.000210\n", " 0.112258\n", " \n", " \n", - " DM_AACALD\n", + " DM_aacald_c\n", " 0.000000\n", " 0.000000\n", " \n", " \n", - " DM_AMOB\n", + " DM_amob_c\n", " 0.000002\n", " 0.000002\n", " \n", " \n", - " DM_MTHTHF\n", + " DM_mththf_c\n", " 0.000418\n", " 0.515309\n", " \n", " \n", - " DM_OXAM\n", - " 0.000000\n", - " 1.010167\n", - " \n", - " \n", - " Ec_biomass_iJO1366_WT_53p95M\n", - " 0.000000\n", - " 0.049326\n", - " \n", - " \n", - " Ec_biomass_iJO1366_core_53p95M\n", - " 0.933253\n", - " 0.982372\n", - " \n", - " \n", - " EX_12ppd__R_e\n", - " 0.000000\n", - " 0.724815\n", - " \n", - " \n", - " EX_12ppd__S_e\n", - " 0.000000\n", - " 0.713997\n", - " \n", - " \n", - " EX_14glucan_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_15dap_e\n", - " 0.000000\n", - " 0.394750\n", - " \n", - " \n", - " EX_23camp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23ccmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23cgmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23cump_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23dappa_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_26dap__M_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_2ddglcn_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_34dhpac_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3amp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3cmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3gmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3hcinnm_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3hpp_e\n", - " 0.000000\n", - " 0.631600\n", - " \n", - " \n", - " EX_3hpppn_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3ump_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_4abut_e\n", - " 0.000000\n", - " 0.667183\n", - " \n", - " \n", - " EX_4hoxpacd_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_5dglcn_e\n", - " 0.000000\n", - " 0.563929\n", - " \n", - " \n", " ...\n", " ...\n", " ...\n", " \n", " \n", - " VALTRS\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " VALabcpp\n", - " 0.000000\n", - " 15.790000\n", - " \n", - " \n", - " VALt2rpp\n", - " -15.790000\n", - " 0.000000\n", - " \n", - " \n", - " VALtex\n", - " -0.526333\n", - " 0.000000\n", - " \n", - " \n", - " VPAMTr\n", - " -999.605083\n", - " 999.457448\n", - " \n", - " \n", - " WCOS\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " X5PL3E\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XAND\n", - " 0.000000\n", - " 1.263200\n", - " \n", - " \n", - " XANt2pp\n", - " 0.000000\n", - " 47.370000\n", - " \n", - " \n", - " XANtex\n", - " -0.644490\n", - " 0.000000\n", - " \n", - " \n", - " XANtpp\n", - " -47.370000\n", - " 0.000000\n", - " \n", - " \n", - " XMPtex\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XPPT\n", - " 0.000000\n", - " 11.842500\n", - " \n", - " \n", - " XTSNH\n", - " 0.000000\n", - " 11.842500\n", - " \n", - " \n", - " XTSNt2rpp\n", - " -0.302684\n", - " 0.000000\n", - " \n", - " \n", - " XTSNtex\n", - " -0.302684\n", - " 0.000000\n", - " \n", - " \n", - " XYLI1\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLI2\n", - " -11.842500\n", - " 19.342500\n", - " \n", - " \n", - " XYLK\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLK2\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLUt2pp\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLUtex\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLabcpp\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLt2pp\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLtex\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", " ZN2abcpp\n", " 0.000000\n", " 11.842500\n", @@ -395,73 +162,23 @@ "" ], "text/plain": [ - " minimum maximum\n", - "DM_4CRSOL 0.000208 0.000219\n", - "DM_5DRIB 0.000210 0.112258\n", - "DM_AACALD 0.000000 0.000000\n", - "DM_AMOB 0.000002 0.000002\n", - "DM_MTHTHF 0.000418 0.515309\n", - "DM_OXAM 0.000000 1.010167\n", - "Ec_biomass_iJO1366_WT_53p95M 0.000000 0.049326\n", - "Ec_biomass_iJO1366_core_53p95M 0.933253 0.982372\n", - "EX_12ppd__R_e 0.000000 0.724815\n", - "EX_12ppd__S_e 0.000000 0.713997\n", - "EX_14glucan_e 0.000000 0.000000\n", - "EX_15dap_e 0.000000 0.394750\n", - "EX_23camp_e 0.000000 0.000000\n", - "EX_23ccmp_e 0.000000 0.000000\n", - "EX_23cgmp_e 0.000000 0.000000\n", - "EX_23cump_e 0.000000 0.000000\n", - "EX_23dappa_e 0.000000 0.000000\n", - "EX_26dap__M_e 0.000000 0.000000\n", - "EX_2ddglcn_e 0.000000 0.000000\n", - "EX_34dhpac_e 0.000000 0.000000\n", - "EX_3amp_e 0.000000 0.000000\n", - "EX_3cmp_e 0.000000 0.000000\n", - "EX_3gmp_e 0.000000 0.000000\n", - "EX_3hcinnm_e 0.000000 0.000000\n", - "EX_3hpp_e 0.000000 0.631600\n", - "EX_3hpppn_e 0.000000 0.000000\n", - "EX_3ump_e 0.000000 0.000000\n", - "EX_4abut_e 0.000000 0.667183\n", - "EX_4hoxpacd_e 0.000000 0.000000\n", - "EX_5dglcn_e 0.000000 0.563929\n", - "... ... ...\n", - "VALTRS 0.000000 0.000000\n", - "VALabcpp 0.000000 15.790000\n", - "VALt2rpp -15.790000 0.000000\n", - "VALtex -0.526333 0.000000\n", - "VPAMTr -999.605083 999.457448\n", - "WCOS 0.000000 0.000000\n", - "X5PL3E 0.000000 0.000000\n", - "XAND 0.000000 1.263200\n", - "XANt2pp 0.000000 47.370000\n", - "XANtex -0.644490 0.000000\n", - "XANtpp -47.370000 0.000000\n", - "XMPtex 0.000000 0.000000\n", - "XPPT 0.000000 11.842500\n", - "XTSNH 0.000000 11.842500\n", - "XTSNt2rpp -0.302684 0.000000\n", - "XTSNtex -0.302684 0.000000\n", - "XYLI1 0.000000 0.000000\n", - "XYLI2 -11.842500 19.342500\n", - "XYLK 0.000000 0.000000\n", - "XYLK2 0.000000 0.000000\n", - "XYLUt2pp 0.000000 0.000000\n", - "XYLUtex 0.000000 0.000000\n", - "XYLabcpp 0.000000 0.000000\n", - "XYLt2pp 0.000000 0.000000\n", - "XYLtex 0.000000 0.000000\n", - "ZN2abcpp 0.000000 11.842500\n", - "ZN2t3pp 0.000000 47.370000\n", - "ZN2tpp 0.000000 47.370318\n", - "ZNabcpp 0.000000 9.474064\n", - "Zn2tex 0.000318 0.000335\n", + " minimum maximum\n", + "DM_4crsol_c 0.000208 0.000219\n", + "DM_5drib_c 0.000210 0.112258\n", + "DM_aacald_c 0.000000 0.000000\n", + "DM_amob_c 0.000002 0.000002\n", + "DM_mththf_c 0.000418 0.515309\n", + "... ... ...\n", + "ZN2abcpp 0.000000 11.842500\n", + "ZN2t3pp 0.000000 47.370000\n", + "ZN2tpp 0.000000 47.370318\n", + "ZNabcpp 0.000000 9.474064\n", + "Zn2tex 0.000318 0.000335\n", "\n", "[2583 rows x 2 columns]" ] }, - "execution_count": 6, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -479,8 +196,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 68.9 ms, sys: 60.2 ms, total: 129 ms\n", - "Wall time: 2.03 s\n" + "CPU times: user 106 ms, sys: 75.7 ms, total: 182 ms\n", + "Wall time: 4.74 s\n" ] }, { @@ -510,286 +227,36 @@ " \n", " \n", " \n", - " DM_4CRSOL\n", + " DM_4crsol_c\n", " 0.000208\n", " 0.000219\n", " \n", " \n", - " DM_5DRIB\n", + " DM_5drib_c\n", " 0.000210\n", " 0.112258\n", " \n", " \n", - " DM_AACALD\n", + " DM_aacald_c\n", " 0.000000\n", " 0.000000\n", " \n", " \n", - " DM_AMOB\n", + " DM_amob_c\n", " 0.000002\n", " 0.000002\n", " \n", " \n", - " DM_MTHTHF\n", + " DM_mththf_c\n", " 0.000418\n", " 0.515309\n", " \n", " \n", - " DM_OXAM\n", - " 0.000000\n", - " 1.010167\n", - " \n", - " \n", - " Ec_biomass_iJO1366_WT_53p95M\n", - " 0.000000\n", - " 0.049326\n", - " \n", - " \n", - " Ec_biomass_iJO1366_core_53p95M\n", - " 0.933253\n", - " 0.982372\n", - " \n", - " \n", - " EX_12ppd__R_e\n", - " 0.000000\n", - " 0.724815\n", - " \n", - " \n", - " EX_12ppd__S_e\n", - " 0.000000\n", - " 0.713997\n", - " \n", - " \n", - " EX_14glucan_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_15dap_e\n", - " 0.000000\n", - " 0.394750\n", - " \n", - " \n", - " EX_23camp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23ccmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23cgmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23cump_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_23dappa_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_26dap__M_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_2ddglcn_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_34dhpac_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3amp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3cmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3gmp_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3hcinnm_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3hpp_e\n", - " 0.000000\n", - " 0.631600\n", - " \n", - " \n", - " EX_3hpppn_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_3ump_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_4abut_e\n", - " 0.000000\n", - " 0.667183\n", - " \n", - " \n", - " EX_4hoxpacd_e\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " EX_5dglcn_e\n", - " 0.000000\n", - " 0.563929\n", - " \n", - " \n", " ...\n", " ...\n", " ...\n", " \n", " \n", - " VALTRS\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " VALabcpp\n", - " 0.000000\n", - " 15.790000\n", - " \n", - " \n", - " VALt2rpp\n", - " -15.790000\n", - " 0.000000\n", - " \n", - " \n", - " VALtex\n", - " -0.526333\n", - " 0.000000\n", - " \n", - " \n", - " VPAMTr\n", - " -999.605083\n", - " 999.457448\n", - " \n", - " \n", - " WCOS\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " X5PL3E\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XAND\n", - " 0.000000\n", - " 1.263200\n", - " \n", - " \n", - " XANt2pp\n", - " 0.000000\n", - " 47.370000\n", - " \n", - " \n", - " XANtex\n", - " -0.644490\n", - " 0.000000\n", - " \n", - " \n", - " XANtpp\n", - " -47.370000\n", - " 0.000000\n", - " \n", - " \n", - " XMPtex\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XPPT\n", - " 0.000000\n", - " 11.842500\n", - " \n", - " \n", - " XTSNH\n", - " 0.000000\n", - " 11.842500\n", - " \n", - " \n", - " XTSNt2rpp\n", - " -0.302684\n", - " 0.000000\n", - " \n", - " \n", - " XTSNtex\n", - " -0.302684\n", - " 0.000000\n", - " \n", - " \n", - " XYLI1\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLI2\n", - " -11.842500\n", - " 19.342500\n", - " \n", - " \n", - " XYLK\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLK2\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLUt2pp\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLUtex\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLabcpp\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLt2pp\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", - " XYLtex\n", - " 0.000000\n", - " 0.000000\n", - " \n", - " \n", " ZN2abcpp\n", " 0.000000\n", " 11.842500\n", @@ -820,68 +287,18 @@ "" ], "text/plain": [ - " minimum maximum\n", - "DM_4CRSOL 0.000208 0.000219\n", - "DM_5DRIB 0.000210 0.112258\n", - "DM_AACALD 0.000000 0.000000\n", - "DM_AMOB 0.000002 0.000002\n", - "DM_MTHTHF 0.000418 0.515309\n", - "DM_OXAM 0.000000 1.010167\n", - "Ec_biomass_iJO1366_WT_53p95M 0.000000 0.049326\n", - "Ec_biomass_iJO1366_core_53p95M 0.933253 0.982372\n", - "EX_12ppd__R_e 0.000000 0.724815\n", - "EX_12ppd__S_e 0.000000 0.713997\n", - "EX_14glucan_e 0.000000 0.000000\n", - "EX_15dap_e 0.000000 0.394750\n", - "EX_23camp_e 0.000000 0.000000\n", - "EX_23ccmp_e 0.000000 0.000000\n", - "EX_23cgmp_e 0.000000 0.000000\n", - "EX_23cump_e 0.000000 0.000000\n", - "EX_23dappa_e 0.000000 0.000000\n", - "EX_26dap__M_e 0.000000 0.000000\n", - "EX_2ddglcn_e 0.000000 0.000000\n", - "EX_34dhpac_e 0.000000 0.000000\n", - "EX_3amp_e 0.000000 0.000000\n", - "EX_3cmp_e 0.000000 0.000000\n", - "EX_3gmp_e 0.000000 0.000000\n", - "EX_3hcinnm_e 0.000000 0.000000\n", - "EX_3hpp_e 0.000000 0.631600\n", - "EX_3hpppn_e 0.000000 0.000000\n", - "EX_3ump_e 0.000000 0.000000\n", - "EX_4abut_e 0.000000 0.667183\n", - "EX_4hoxpacd_e 0.000000 0.000000\n", - "EX_5dglcn_e 0.000000 0.563929\n", - "... ... ...\n", - "VALTRS 0.000000 0.000000\n", - "VALabcpp 0.000000 15.790000\n", - "VALt2rpp -15.790000 0.000000\n", - "VALtex -0.526333 0.000000\n", - "VPAMTr -999.605083 999.457448\n", - "WCOS 0.000000 0.000000\n", - "X5PL3E 0.000000 0.000000\n", - "XAND 0.000000 1.263200\n", - "XANt2pp 0.000000 47.370000\n", - "XANtex -0.644490 0.000000\n", - "XANtpp -47.370000 0.000000\n", - "XMPtex 0.000000 0.000000\n", - "XPPT 0.000000 11.842500\n", - "XTSNH 0.000000 11.842500\n", - "XTSNt2rpp -0.302684 0.000000\n", - "XTSNtex -0.302684 0.000000\n", - "XYLI1 0.000000 0.000000\n", - "XYLI2 -11.842500 19.342500\n", - "XYLK 0.000000 0.000000\n", - "XYLK2 0.000000 0.000000\n", - "XYLUt2pp 0.000000 0.000000\n", - "XYLUtex 0.000000 0.000000\n", - "XYLabcpp 0.000000 0.000000\n", - "XYLt2pp 0.000000 0.000000\n", - "XYLtex 0.000000 0.000000\n", - "ZN2abcpp 0.000000 11.842500\n", - "ZN2t3pp 0.000000 47.370000\n", - "ZN2tpp 0.000000 47.370318\n", - "ZNabcpp 0.000000 9.474064\n", - "Zn2tex 0.000318 0.000335\n", + " minimum maximum\n", + "DM_4crsol_c 0.000208 0.000219\n", + "DM_5drib_c 0.000210 0.112258\n", + "DM_aacald_c 0.000000 0.000000\n", + "DM_amob_c 0.000002 0.000002\n", + "DM_mththf_c 0.000418 0.515309\n", + "... ... ...\n", + "ZN2abcpp 0.000000 11.842500\n", + "ZN2t3pp 0.000000 47.370000\n", + "ZN2tpp 0.000000 47.370318\n", + "ZNabcpp 0.000000 9.474064\n", + "Zn2tex 0.000318 0.000335\n", "\n", "[2583 rows x 2 columns]" ] @@ -894,11 +311,18 @@ "source": [ "%time flux_variability_analysis(model, fraction_of_optimum=0.95, processes=4)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -912,7 +336,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.1" }, "toc": { "base_numbering": 1, diff --git a/benchmarks/single_gene_deletion_linear_room.ipynb b/benchmarks/single_gene_deletion_linear_room.ipynb index 39dd87791..47e644be2 100644 --- a/benchmarks/single_gene_deletion_linear_room.ipynb +++ b/benchmarks/single_gene_deletion_linear_room.ipynb @@ -27,21 +27,18 @@ "name": "stderr", "output_type": "stream", "text": [ - "DEBUG:optlang.util:Gurobi python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/gurobipy\n", - "DEBUG:optlang.util:GLPK python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/swiglpk\n", + "DEBUG:optlang.util:Gurobi python bindings not available.\n", + "DEBUG:optlang.util:GLPK python bindings found at /Users/uridavidakavia/PycharmProjects/venv_cobrapy3_7/lib/python3.7/site-packages/swiglpk\n", "DEBUG:optlang.util:Mosek python bindings not available.\n", - "DEBUG:optlang.util:CPLEX python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/cplex\n", - "DEBUG:optlang.util:Scipy solver not available\n", - "DEBUG:pip._internal.utils.misc:lzma module is not available\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: git\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: hg\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: svn\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: bzr\n" + "DEBUG:optlang.util:CPLEX python bindings not available.\n", + "DEBUG:optlang.util:OSQP python bindings not available.\n", + "DEBUG:optlang.util:COINOR_CBC python bindings not available.\n", + "DEBUG:optlang.util:Scipy linprog function found at /Users/uridavidakavia/PycharmProjects/venv_cobrapy3_7/lib/python3.7/site-packages/scipy/optimize/__init__.py\n" ] } ], "source": [ - "from cobra.test import create_test_model" + "from cobra.io import load_model" ] }, { @@ -57,9 +54,26 @@ "cell_type": "code", "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:cobra.core.model:The current solver interface glpk doesn't support setting the optimality tolerance.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "model = create_test_model(\"textbook\")" + "model = load_model(\"textbook\")" ] }, { @@ -391,7 +405,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -405,7 +419,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/benchmarks/single_gene_deletion_room.ipynb b/benchmarks/single_gene_deletion_room.ipynb index b3576576c..0b8d52eac 100644 --- a/benchmarks/single_gene_deletion_room.ipynb +++ b/benchmarks/single_gene_deletion_room.ipynb @@ -27,21 +27,18 @@ "name": "stderr", "output_type": "stream", "text": [ - "DEBUG:optlang.util:Gurobi python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/gurobipy\n", - "DEBUG:optlang.util:GLPK python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/swiglpk\n", + "DEBUG:optlang.util:Gurobi python bindings not available.\n", + "DEBUG:optlang.util:GLPK python bindings found at /Users/uridavidakavia/PycharmProjects/venv_cobrapy3_7/lib/python3.7/site-packages/swiglpk\n", "DEBUG:optlang.util:Mosek python bindings not available.\n", - "DEBUG:optlang.util:CPLEX python bindings found at /home/moritz/.virtualenvs/cobra/lib/python3.5/site-packages/cplex\n", - "DEBUG:optlang.util:Scipy solver not available\n", - "DEBUG:pip._internal.utils.misc:lzma module is not available\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: git\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: hg\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: svn\n", - "DEBUG:pip._internal.vcs:Registered VCS backend: bzr\n" + "DEBUG:optlang.util:CPLEX python bindings not available.\n", + "DEBUG:optlang.util:OSQP python bindings not available.\n", + "DEBUG:optlang.util:COINOR_CBC python bindings not available.\n", + "DEBUG:optlang.util:Scipy linprog function found at /Users/uridavidakavia/PycharmProjects/venv_cobrapy3_7/lib/python3.7/site-packages/scipy/optimize/__init__.py\n" ] } ], "source": [ - "from cobra.test import create_test_model" + "from cobra.io import load_model" ] }, { @@ -57,9 +54,26 @@ "cell_type": "code", "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "INFO:cobra.core.model:The current solver interface glpk doesn't support setting the optimality tolerance.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "model = create_test_model(\"textbook\")" + "model = load_model(\"textbook\")" ] }, { @@ -312,7 +326,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 1min 21s, sys: 53.1 ms, total: 1min 21s\n", + "CPU times: user 1min 15s, sys: 1.6 s, total: 1min 17s\n", "Wall time: 1min 21s\n" ] }, @@ -337,33 +351,33 @@ " \n", " \n", " \n", + " ids\n", " growth\n", " status\n", " \n", - " \n", - " ids\n", - " \n", - " \n", - " \n", " \n", " \n", " \n", - " (b1779)\n", + " 0\n", + " {b1779}\n", " 45.0\n", " optimal\n", " \n", " \n", - " (b0008)\n", - " 0.0\n", - " optimal\n", - " \n", - " \n", - " (b0114)\n", + " 1\n", + " {b2276}\n", " NaN\n", " time_limit\n", " \n", " \n", - " (b2276)\n", + " 2\n", + " {b0008}\n", + " 0.0\n", + " optimal\n", + " \n", + " \n", + " 3\n", + " {b0114}\n", " NaN\n", " time_limit\n", " \n", @@ -372,15 +386,14 @@ "" ], "text/plain": [ - " growth status\n", - "ids \n", - "(b1779) 45.0 optimal\n", - "(b0008) 0.0 optimal\n", - "(b0114) NaN time_limit\n", - "(b2276) NaN time_limit" + " ids growth status\n", + "0 {b1779} 45.0 optimal\n", + "1 {b2276} NaN time_limit\n", + "2 {b0008} 0.0 optimal\n", + "3 {b0114} NaN time_limit" ] }, - "execution_count": 15, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -388,11 +401,18 @@ "source": [ "%time single_gene_deletion(model, method=\"room\", gene_list=genes, processes=1)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -406,7 +426,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/configuration.ipynb b/documentation_builder/configuration.ipynb index 25f7ef317..4725a3f94 100644 --- a/documentation_builder/configuration.ipynb +++ b/documentation_builder/configuration.ipynb @@ -166,12 +166,12 @@ " Name\n", " \n", " Memory address\n", - " 0x07f0426135fd0\n", + " 0x7f8642e5bba8\n", " \n", " Stoichiometry\n", " \n", - "

-->

\n", - "

-->

\n", + "

-->

\n", + "

-->

\n", " \n", " \n", " GPR\n", @@ -184,7 +184,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 7, @@ -219,12 +219,12 @@ " Name\n", " \n", " Memory address\n", - " 0x07f04260d4438\n", + " 0x7f8642e5bda0\n", " \n", " Stoichiometry\n", " \n", - "

<=>

\n", - "

<=>

\n", + "

<=>

\n", + "

<=>

\n", " \n", " \n", " GPR\n", @@ -237,7 +237,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 8, @@ -262,16 +262,26 @@ "metadata": {}, "outputs": [], "source": [ - "from cobra.test import create_test_model" + "from cobra.io import load_model" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "model = create_test_model(\"textbook\")" + "model = load_model(\"textbook\")" ] }, { @@ -290,7 +300,7 @@ " NameR acetate reversible transport via proton - symport\n", " \n", " Memory address\n", - " 0x07f042607c780\n", + " 0x7f8642f174e0\n", " \n", " Stoichiometry\n", " \n", @@ -308,7 +318,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 11, @@ -342,7 +352,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 12, @@ -376,7 +386,7 @@ "metadata": {}, "outputs": [], "source": [ - "new_model = create_test_model(\"textbook\")" + "new_model = load_model(\"textbook\")" ] }, { @@ -387,7 +397,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 15, @@ -409,7 +419,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -423,7 +433,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.1" }, "toc": { "base_numbering": 1, diff --git a/documentation_builder/constraints_objectives.ipynb b/documentation_builder/constraints_objectives.ipynb index 226ba4307..8527f58e2 100644 --- a/documentation_builder/constraints_objectives.ipynb +++ b/documentation_builder/constraints_objectives.ipynb @@ -34,8 +34,8 @@ "metadata": {}, "outputs": [], "source": [ - "import cobra.test\n", - "model = cobra.test.create_test_model('textbook')" + "from cobra.io import load_model\n", + "model = load_model('textbook')" ] }, { @@ -94,7 +94,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "4.66274904774 4.66274904774 0.855110960926157\n" + "4.662749047738151 4.662749047738149 0.855110960926157\n" ] } ], @@ -158,7 +158,7 @@ } ], "source": [ - "model = cobra.test.create_test_model('textbook')\n", + "model = load_model('textbook')\n", "with model:\n", " model.objective = {model.reactions.Biomass_Ecoli_core: 1}\n", " model.optimize()\n", @@ -180,7 +180,7 @@ { "data": { "text/plain": [ - "-1.0*Biomass_Ecoli_core_reverse_2cdba + 1.0*Biomass_Ecoli_core" + "1.0*Biomass_Ecoli_core - 1.0*Biomass_Ecoli_core_reverse_2cdba" ] }, "execution_count": 6, @@ -225,13 +225,15 @@ "outputs": [ { "data": { - "application/pdf": "JVBERi0xLjQKJazcIKu6CjEgMCBvYmoKPDwgL1R5cGUgL0NhdGFsb2cgL1BhZ2VzIDIgMCBSID4+\nCmVuZG9iago4IDAgb2JqCjw8IC9YT2JqZWN0IDcgMCBSIC9Qcm9jU2V0IFsgL1BERiAvVGV4dCAv\nSW1hZ2VCIC9JbWFnZUMgL0ltYWdlSSBdCi9TaGFkaW5nIDYgMCBSIC9Gb250IDMgMCBSIC9QYXR0\nZXJuIDUgMCBSIC9FeHRHU3RhdGUgNCAwIFIgPj4KZW5kb2JqCjEwIDAgb2JqCjw8IC9Hcm91cCA8\nPCAvQ1MgL0RldmljZVJHQiAvVHlwZSAvR3JvdXAgL1MgL1RyYW5zcGFyZW5jeSA+PgovTWVkaWFC\nb3ggWyAwIDAgMzU2Ljg4ODA2ODE4MTggMjkzLjIgXSAvQ29udGVudHMgOSAwIFIgL0Fubm90cyBb\nIF0KL1Jlc291cmNlcyA4IDAgUiAvVHlwZSAvUGFnZSAvUGFyZW50IDIgMCBSID4+CmVuZG9iago5\nIDAgb2JqCjw8IC9MZW5ndGggMTEgMCBSIC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4\nnO2cS48tx3GE9/MremlvDuv9WEqwLUA7yQS8ELyiKNqEKMASYP99fxFZZ6ZnxEuBIoy7MC3QvEz2\n6a6uyoyIfDTz9e3LF7/I1zd/udL1LX/9z/W769/5+++vfP3q+uKfvv7v//zq69/+6pfXV395Sdi/\ne6l9PNZaaSz+8Y/3fyy7Pgqm9Pqn/3h5+dMLd+fKX3HDb15yftS4OKfH1N3aeOSb5Y93S1nl0TG9\n/epp4cZ/ePmv6/VfZP4XN6i1PbhuZv7/n7++/u360/XFL4pesFy/Zg3fXpk7vL2mXiq//Pbju5bx\nGGmUzp3SI7feetdqa3rssdcaV6mP1GVnNS//+vKb60euxs+9/vxNLOltQS/xL1jQ84qXl5zKY+yZ\n+75K6o86C/9jOTnVR9tlamPe7Dm1R+l97bh6cDpl2Mqy2pR1cEFuaV5fcQ9+uHIaNq9cebtLxtcH\nzkefM+cP1vV8XNzi1b4feaxa53W/8X7smtuY71bBBrXdUlu+xdua2cbUxyh64Nv7aXOf7/e2G29W\n3SM/dsoc1LuL8yPX1fKHGydeqq/6V8tIj5Rr6eu+6L2/5/Xuxtte3M23jbvd9rbJb4t4fyJvS76f\n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\n/QvT1y+ev3tnHorl1zmXH/8DLzW+7r7/4Gb+iT9Q/C3lCfPdD+7mn/iD7/0u/P3n4j/xB+n6xl+J\n8/eXX355ffEvmoS+vvyDPRdv9ZijBx012zxm8k+//P3LPxCA/3h9+e31z1++/2HVg9ET5BwC/r/+\nYXn7Yb5+/dEv3j7Jv6//9u3+7fv46u5ekjj98Nm8PbxrxpzkMHkU2/83+YeZ9H1lVTv+z99cn7zy\n5cOVLzwuvz6u3xb3/au4X52/39zfzP6yOrEdETif+I8GxMSiJn6+03Rj/mAMJ/u7Lo6PqG8XPr+q\n/tEX3T5bv115s/60y9/9ZxNeL3+z/j2XfzIIwNL46lTDj/OH/V7XWjGgrVvxV5t/09vfdjb+qxVv\n6z7/PYo3gxqhK+8x/g8dXB+ZnsfP59O++8Qa1Oz+eO0fv/cOf8O5f2aCn5ngZyb4mQl+ZoL/L0zw\nm5f/BXjtzFYKZW5kc3RyZWFtCmVuZG9iagoxMSAwIG9iago3MTkxCmVuZG9iagoxNiAwIG9iago8\nPCAvTGVuZ3RoIDgwIC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4nEWMuw3AMAhEe6Zg\nBH4mZp8olbN/GyBK3HBPunu4OhIyU95hhocEngwshlPxBpmjYDW4RlKNneyjsG5fdYHmelOr9fcH\nKk92dnE9zcsZ9AplbmRzdHJlYW0KZW5kb2JqCjE3IDAgb2JqCjw8IC9MZW5ndGggMjQ4IC9GaWx0\nZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4nC1ROZIDQQjL5xV6QnPT77HLkff/6QrKAYOGQyA6\nLXFQxk8Qlive8shVtOHvmRjBd8Gh38p1GxY5EBVI0hhUTahdvB69B3YcZgLzpDUsgxnrAz9jCjd6\ncXhMxtntdRk1BHvXa09mUDIrF3HJxAVTddjImcNPpowL7VzPDci5EdZlGKSblcaMhCNNIVJIoeom\nqTNBkASjq1GjjRzFfunLI51hVSNqDPtcS9vXcxPOGjQ7Fqs8OaVHV5zLycULKwf9vM3ARVQaqzwQ\nEnC/20P9nOzkN97SubPF9Phec7K8MBVY8ea1G5BNtfg3L+L4PePr+fwDqKVbFgplbmRzdHJlYW0K\nZW5kb2JqCjE4IDAgb2JqCjw8IC9MZW5ndGggNDkgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3Ry\nZWFtCnicMza0UDBQMDQwB5JGhkCWkYlCiiEXSADEzOWCCeaAWQZAGqI4B64mhysNAMboDSYKZW5k\nc3RyZWFtCmVuZG9iagoxOSAwIG9iago8PCAvTGVuZ3RoIDIxMCAvRmlsdGVyIC9GbGF0ZURlY29k\nZSA+PgpzdHJlYW0KeJw1UMsNQzEIu2cKFqgUAoFknla9df9rbdA7YRH/QljIlAh5qcnOKelLPjpM\nD7Yuv7EiC611JezKmiCeK++hmbKx0djiYHAaJl6AFjdg6GmNGjV04YKmLpVCgcUl8Jl8dXvovk8Z\neGoZcnYEEUPJYAlquhZNWLQ8n5BOAeL/fsPuLeShkvPKnhv5G5zt8DuzbuEnanYi0XIVMtSzNMcY\nCBNFHjx5RaZw4rPWd9U0EtRmC06WAa5OP4wOAGAiXlmA7K5EOUvSjqWfb7zH9w9AAFO0CmVuZHN0\ncmVhbQplbmRvYmoKMTQgMCBvYmoKPDwgL0ZpcnN0Q2hhciAwIC9OYW1lIC9EZWphVnVTYW5zIC9C\nYXNlRm9udCAvRGVqYVZ1U2FucyAvV2lkdGhzIDEyIDAgUgovVHlwZSAvRm9udCAvTGFzdENoYXIg\nMjU1Ci9FbmNvZGluZyA8PCAvVHlwZSAvRW5jb2RpbmcgL0RpZmZlcmVuY2VzIFsgNDYgL3Blcmlv\nZCA0OCAvemVybyAvb25lIC90d28gXSA+PgovRm9udERlc2NyaXB0b3IgMTMgMCBSIC9Gb250TWF0\ncml4IFsgMC4wMDEgMCAwIDAuMDAxIDAgMCBdIC9TdWJ0eXBlIC9UeXBlMwovRm9udEJCb3ggWyAt\nMTAyMSAtNDYzIDE3OTQgMTIzMyBdIC9DaGFyUHJvY3MgMTUgMCBSID4+CmVuZG9iagoxMyAwIG9i\nago8PCAvRm9udE5hbWUgL0RlamFWdVNhbnMgL0l0YWxpY0FuZ2xlIDAgL0ZvbnRCQm94IFsgLTEw\nMjEgLTQ2MyAxNzk0IDEyMzMgXQovRmxhZ3MgMzIgL1N0ZW1WIDAgL01heFdpZHRoIDEzNDIgL0Rl\nc2NlbnQgLTIzNiAvWEhlaWdodCAwIC9DYXBIZWlnaHQgMAovVHlwZSAvRm9udERlc2NyaXB0b3Ig\nL0FzY2VudCA5MjkgPj4KZW5kb2JqCjEyIDAgb2JqClsgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg\nNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2\nMDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCAzMTggNDAxIDQ2\nMCA4MzggNjM2Cjk1MCA3ODAgMjc1IDM5MCAzOTAgNTAwIDgzOCAzMTggMzYxIDMxOCAzMzcgNjM2\nIDYzNiA2MzYgNjM2IDYzNiA2MzYgNjM2IDYzNgo2MzYgNjM2IDMzNyAzMzcgODM4IDgzOCA4Mzgg\nNTMxIDEwMDAgNjg0IDY4NiA2OTggNzcwIDYzMiA1NzUgNzc1IDc1MiAyOTUKMjk1IDY1NiA1NTcg\nODYzIDc0OCA3ODcgNjAzIDc4NyA2OTUgNjM1IDYxMSA3MzIgNjg0IDk4OSA2ODUgNjExIDY4NSAz\nOTAgMzM3CjM5MCA4MzggNTAwIDUwMCA2MTMgNjM1IDU1MCA2MzUgNjE1IDM1MiA2MzUgNjM0IDI3\nOCAyNzggNTc5IDI3OCA5NzQgNjM0IDYxMgo2MzUgNjM1IDQxMSA1MjEgMzkyIDYzNCA1OTIgODE4\nIDU5MiA1OTIgNTI1IDYzNiAzMzcgNjM2IDgzOCA2MDAgNjM2IDYwMCAzMTgKMzUyIDUxOCAxMDAw\nIDUwMCA1MDAgNTAwIDEzNDIgNjM1IDQwMCAxMDcwIDYwMCA2ODUgNjAwIDYwMCAzMTggMzE4IDUx\nOCA1MTgKNTkwIDUwMCAxMDAwIDUwMCAxMDAwIDUyMSA0MDAgMTAyMyA2MDAgNTI1IDYxMSAzMTgg\nNDAxIDYzNiA2MzYgNjM2IDYzNiAzMzcKNTAwIDUwMCAxMDAwIDQ3MSA2MTIgODM4IDM2MSAxMDAw\nIDUwMCA1MDAgODM4IDQwMSA0MDEgNTAwIDYzNiA2MzYgMzE4IDUwMAo0MDEgNDcxIDYxMiA5Njkg\nOTY5IDk2OSA1MzEgNjg0IDY4NCA2ODQgNjg0IDY4NCA2ODQgOTc0IDY5OCA2MzIgNjMyIDYzMiA2\nMzIKMjk1IDI5NSAyOTUgMjk1IDc3NSA3NDggNzg3IDc4NyA3ODcgNzg3IDc4NyA4MzggNzg3IDcz\nMiA3MzIgNzMyIDczMiA2MTEgNjA1CjYzMCA2MTMgNjEzIDYxMyA2MTMgNjEzIDYxMyA5ODIgNTUw\nIDYxNSA2MTUgNjE1IDYxNSAyNzggMjc4IDI3OCAyNzggNjEyIDYzNAo2MTIgNjEyIDYxMiA2MTIg\nNjEyIDgzOCA2MTIgNjM0IDYzNCA2MzQgNjM0IDU5MiA2MzUgNTkyIF0KZW5kb2JqCjE1IDAgb2Jq\nCjw8IC9vbmUgMTYgMCBSIC90d28gMTcgMCBSIC9wZXJpb2QgMTggMCBSIC96ZXJvIDE5IDAgUiA+\nPgplbmRvYmoKMyAwIG9iago8PCAvRjEgMTQgMCBSID4+CmVuZG9iago0IDAgb2JqCjw8IC9BMSA8\nPCAvQ0EgMCAvVHlwZSAvRXh0R1N0YXRlIC9jYSAxID4+Ci9BMiA8PCAvQ0EgMSAvVHlwZSAvRXh0\nR1N0YXRlIC9jYSAxID4+ID4+CmVuZG9iago1IDAgb2JqCjw8ID4+CmVuZG9iago2IDAgb2JqCjw8\nID4+CmVuZG9iago3IDAgb2JqCjw8ID4+CmVuZG9iagoyIDAgb2JqCjw8IC9LaWRzIFsgMTAgMCBS\nIF0gL0NvdW50IDEgL1R5cGUgL1BhZ2VzID4+CmVuZG9iagoyMCAwIG9iago8PCAvQ3JlYXRpb25E\nYXRlIChEOjIwMTcwMzA3MTUzNTE3KzAyJzAwJykKL0NyZWF0b3IgKG1hdHBsb3RsaWIgMi4wLjAs\nIGh0dHA6Ly9tYXRwbG90bGliLm9yZykKL1Byb2R1Y2VyIChtYXRwbG90bGliIHBkZiBiYWNrZW5k\nKSA+PgplbmRvYmoKeHJlZgowIDIxCjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAwMDAxNiAwMDAw\nMCBuIAowMDAwMDEwNDA2IDAwMDAwIG4gCjAwMDAwMTAyMTIgMDAwMDAgbiAKMDAwMDAxMDI0NCAw\nMDAwMCBuIAowMDAwMDEwMzQzIDAwMDAwIG4gCjAwMDAwMTAzNjQgMDAwMDAgbiAKMDAwMDAxMDM4\nNSAwMDAwMCBuIAowMDAwMDAwMDY1IDAwMDAwIG4gCjAwMDAwMDAzOTggMDAwMDAgbiAKMDAwMDAw\nMDIwOCAwMDAwMCBuIAowMDAwMDA3NjY0IDAwMDAwIG4gCjAwMDAwMDkwODUgMDAwMDAgbiAKMDAw\nMDAwODg4NSAwMDAwMCBuIAowMDAwMDA4NTYyIDAwMDAwIG4gCjAwMDAwMTAxMzggMDAwMDAgbiAK\nMDAwMDAwNzY4NSAwMDAwMCBuIAowMDAwMDA3ODM3IDAwMDAwIG4gCjAwMDAwMDgxNTggMDAwMDAg\nbiAKMDAwMDAwODI3OSAwMDAwMCBuIAowMDAwMDEwNDY2IDAwMDAwIG4gCnRyYWlsZXIKPDwgL1Jv\nb3QgMSAwIFIgL0luZm8gMjAgMCBSIC9TaXplIDIxID4+CnN0YXJ0eHJlZgoxMDYxNAolJUVPRgo=\n", - "image/png": "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\nAAAAAElFTkSuQmCC\n", + "application/pdf": "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PgplbmRvYmoKMTMgMCBvYmoKWyA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMAo2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDMxOCA0MDEgNDYwIDgzOCA2MzYKOTUwIDc4MCAyNzUgMzkwIDM5MCA1MDAgODM4IDMxOCAzNjEgMzE4IDMzNyA2MzYgNjM2IDYzNiA2MzYgNjM2IDYzNiA2MzYgNjM2CjYzNiA2MzYgMzM3IDMzNyA4MzggODM4IDgzOCA1MzEgMTAwMCA2ODQgNjg2IDY5OCA3NzAgNjMyIDU3NSA3NzUgNzUyIDI5NQoyOTUgNjU2IDU1NyA4NjMgNzQ4IDc4NyA2MDMgNzg3IDY5NSA2MzUgNjExIDczMiA2ODQgOTg5IDY4NSA2MTEgNjg1IDM5MCAzMzcKMzkwIDgzOCA1MDAgNTAwIDYxMyA2MzUgNTUwIDYzNSA2MTUgMzUyIDYzNSA2MzQgMjc4IDI3OCA1NzkgMjc4IDk3NCA2MzQgNjEyCjYzNSA2MzUgNDExIDUyMSAzOTIgNjM0IDU5MiA4MTggNTkyIDU5MiA1MjUgNjM2IDMzNyA2MzYgODM4IDYwMCA2MzYgNjAwIDMxOAozNTIgNTE4IDEwMDAgNTAwIDUwMCA1MDAgMTM0MiA2MzUgNDAwIDEwNzAgNjAwIDY4NSA2MDAgNjAwIDMxOCAzMTggNTE4IDUxOAo1OTAgNTAwIDEwMDAgNTAwIDEwMDAgNTIxIDQwMCAxMDIzIDYwMCA1MjUgNjExIDMxOCA0MDEgNjM2IDYzNiA2MzYgNjM2IDMzNwo1MDAgNTAwIDEwMDAgNDcxIDYxMiA4MzggMzYxIDEwMDAgNTAwIDUwMCA4MzggNDAxIDQwMSA1MDAgNjM2IDYzNiAzMTggNTAwCjQwMSA0NzEgNjEyIDk2OSA5NjkgOTY5IDUzMSA2ODQgNjg0IDY4NCA2ODQgNjg0IDY4NCA5NzQgNjk4IDYzMiA2MzIgNjMyIDYzMgoyOTUgMjk1IDI5NSAyOTUgNzc1IDc0OCA3ODcgNzg3IDc4NyA3ODcgNzg3IDgzOCA3ODcgNzMyIDczMiA3MzIgNzMyIDYxMSA2MDUKNjMwIDYxMyA2MTMgNjEzIDYxMyA2MTMgNjEzIDk4MiA1NTAgNjE1IDYxNSA2MTUgNjE1IDI3OCAyNzggMjc4IDI3OCA2MTIgNjM0CjYxMiA2MTIgNjEyIDYxMiA2MTIgODM4IDYxMiA2MzQgNjM0IDYzNCA2MzQgNTkyIDYzNSA1OTIgXQplbmRvYmoKMTYgMCBvYmoKPDwgL29uZSAxNyAwIFIgL3BlcmlvZCAxOCAwIFIgL3R3byAxOSAwIFIgL3plcm8gMjAgMCBSID4+CmVuZG9iagozIDAgb2JqCjw8IC9GMSAxNSAwIFIgPj4KZW5kb2JqCjQgMCBvYmoKPDwgL0ExIDw8IC9DQSAwIC9UeXBlIC9FeHRHU3RhdGUgL2NhIDEgPj4KL0EyIDw8IC9DQSAxIC9UeXBlIC9FeHRHU3RhdGUgL2NhIDEgPj4gPj4KZW5kb2JqCjUgMCBvYmoKPDwgPj4KZW5kb2JqCjYgMCBvYmoKPDwgPj4KZW5kb2JqCjcgMCBvYmoKPDwgPj4KZW5kb2JqCjIgMCBvYmoKPDwgL0NvdW50IDEgL0tpZHMgWyAxMSAwIFIgXSAvVHlwZSAvUGFnZXMgPj4KZW5kb2JqCjIxIDAgb2JqCjw8IC9DcmVhdGlvbkRhdGUgKEQ6MjAyMjA0MDQyMDQwNDYtMDQnMDAnKQovQ3JlYXRvciAoTWF0cGxvdGxpYiB2My41LjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcpCi9Qcm9kdWNlciAoTWF0cGxvdGxpYiBwZGYgYmFja2VuZCB2My41LjEpID4+CmVuZG9iagp4cmVmCjAgMjIKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDE2IDAwMDAwIG4gCjAwMDAwMTAzMzAgMDAwMDAgbiAKMDAwMDAxMDEzNiAwMDAwMCBuIAowMDAwMDEwMTY4IDAwMDAwIG4gCjAwMDAwMTAyNjcgMDAwMDAgbiAKMDAwMDAxMDI4OCAwMDAwMCBuIAowMDAwMDEwMzA5IDAwMDAwIG4gCjAwMDAwMDAwNjUgMDAwMDAgbiAKMDAwMDAwMDM1MiAwMDAwMCBuIAowMDAwMDA3NTU1IDAwMDAwIG4gCjAwMDAwMDAyMDggMDAwMDAgbiAKMDAwMDAwNzUzNCAwMDAwMCBuIAowMDAwMDA5MDA5IDAwMDAwIG4gCjAwMDAwMDg4MDIgMDAwMDAgbiAKMDAwMDAwODQ2NSAwMDAwMCBuIAowMDAwMDEwMDYyIDAwMDAwIG4gCjAwMDAwMDc1NzUgMDAwMDAgbiAKMDAwMDAwNzczMCAwMDAwMCBuIAowMDAwMDA3ODUzIDAwMDAwIG4gCjAwMDAwMDgxNzcgMDAwMDAgbiAKMDAwMDAxMDM5MCAwMDAwMCBuIAp0cmFpbGVyCjw8IC9JbmZvIDIxIDAgUiAvUm9vdCAxIDAgUiAvU2l6ZSAyMiA+PgpzdGFydHhyZWYKMTA1NDcKJSVFT0YK\n", + "image/png": "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\n", "text/plain": [ - "" + "
" ] }, - "metadata": {}, + "metadata": { + "needs_background": "light" + }, "output_type": "display_data" } ], @@ -321,12 +323,10 @@ { "cell_type": "code", "execution_count": 11, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ - "model = cobra.test.create_test_model('textbook')\n", + "model = load_model('textbook')\n", "difference = model.problem.Variable('difference')" ] }, @@ -367,11 +367,11 @@ "name": "stdout", "output_type": "stream", "text": [ - "-5.234680806802543\n", - "-5.2346808068025386\n", - "-5.234680806802525\n", - "-1.8644444444444337\n", - "-1.8644444444444466\n" + "-5.234680806802513\n", + "-5.234680806802513\n", + "-5.234680806802513\n", + "-0.9322222222222226\n", + "-0.9322222222222231\n" ] } ], @@ -382,11 +382,18 @@ " model.optimize()\n", " print(model.solver.variables.difference.primal)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -400,7 +407,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.3" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/deletions.ipynb b/documentation_builder/deletions.ipynb index 2f91f9c62..85fe76739 100644 --- a/documentation_builder/deletions.ipynb +++ b/documentation_builder/deletions.ipynb @@ -2,70 +2,57 @@ "cells": [ { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "# Simulating Deletions" ] }, { "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "execution_count": 1, + "metadata": {}, "outputs": [], "source": [ "import pandas\n", "from time import time\n", "\n", - "import cobra.test\n", + "from cobra.io import load_model\n", "from cobra.flux_analysis import (\n", " single_gene_deletion, single_reaction_deletion, double_gene_deletion,\n", " double_reaction_deletion)\n", "\n", - "cobra_model = cobra.test.create_test_model(\"textbook\")\n", - "ecoli_model = cobra.test.create_test_model(\"ecoli\")" + "cobra_model = load_model(\"textbook\")\n", + "ecoli_model = load_model(\"iJO1366\")" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Knocking out single genes and reactions" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "A commonly asked question when analyzing metabolic models is what will happen if a certain reaction was not allowed to have any flux at all. This can tested using cobrapy by" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, "tags": [] }, "outputs": [ { - "output_type": "stream", "name": "stdout", - "text": "complete model: \npfk knocked out: \n" + "output_type": "stream", + "text": [ + "complete model: \n", + "pfk knocked out: \n" + ] } ], "source": [ @@ -84,16 +71,19 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 3, "metadata": { - "collapsed": false, "tags": [] }, "outputs": [ { - "output_type": "stream", "name": "stdout", - "text": "complete model: \npfkA knocked out: \npfkB knocked out: \n" + "output_type": "stream", + "text": [ + "complete model: \n", + "pfkA knocked out: \n", + "pfkB knocked out: \n" + ] } ], "source": [ @@ -107,32 +97,22 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Single Deletions" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Perform all single gene deletions on a model" ] }, { "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "execution_count": 4, + "metadata": {}, "outputs": [], "source": [ "deletion_results = single_gene_deletion(cobra_model)" @@ -140,31 +120,194 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "These can also be done for only a subset of genes" ] }, { "cell_type": "code", - "execution_count": 6, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "execution_count": 5, + "metadata": {}, "outputs": [ { - "output_type": "execute_result", "data": { - "text/plain": " ids growth status\n0 {b0351} 0.873922 optimal\n1 {b0727} 0.858307 optimal\n2 {b2587} 0.873922 optimal\n3 {b0474} 0.873922 optimal\n4 {b3734} 0.374230 optimal\n5 {b0726} 0.858307 optimal\n6 {b3735} 0.374230 optimal\n7 {b1241} 0.873922 optimal\n8 {b1276} 0.873922 optimal\n9 {b1849} 0.873922 optimal\n10 {b3732} 0.374230 optimal\n11 {s0001} 0.211141 optimal\n12 {b0118} 0.873922 optimal\n13 {b0356} 0.873922 optimal\n14 {b2296} 0.873922 optimal\n15 {b0116} 0.782351 optimal\n16 {b1478} 0.873922 optimal\n17 {b3115} 0.873922 optimal\n18 {b3736} 0.374230 optimal\n19 {b3733} 0.374230 optimal", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
idsgrowthstatus
0{b0351}0.873922optimal
1{b0727}0.858307optimal
2{b2587}0.873922optimal
3{b0474}0.873922optimal
4{b3734}0.374230optimal
5{b0726}0.858307optimal
6{b3735}0.374230optimal
7{b1241}0.873922optimal
8{b1276}0.873922optimal
9{b1849}0.873922optimal
10{b3732}0.374230optimal
11{s0001}0.211141optimal
12{b0118}0.873922optimal
13{b0356}0.873922optimal
14{b2296}0.873922optimal
15{b0116}0.782351optimal
16{b1478}0.873922optimal
17{b3115}0.873922optimal
18{b3736}0.374230optimal
19{b3733}0.374230optimal
\n
" + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idsgrowthstatus
0{b1849}0.873922optimal
1{b1478}0.873922optimal
2{b1276}0.873922optimal
3{b0351}0.873922optimal
4{b3733}0.374230optimal
5{b1241}0.873922optimal
6{b0116}0.782351optimal
7{b0727}0.858307optimal
8{b0356}0.873922optimal
9{b2587}0.873922optimal
10{b0118}0.873922optimal
11{b0726}0.858307optimal
12{b3736}0.374230optimal
13{b3735}0.374230optimal
14{b2296}0.873922optimal
15{b3115}0.873922optimal
16{b3732}0.374230optimal
17{b0474}0.873922optimal
18{s0001}0.211141optimal
19{b3734}0.374230optimal
\n", + "
" + ], + "text/plain": [ + " ids growth status\n", + "0 {b1849} 0.873922 optimal\n", + "1 {b1478} 0.873922 optimal\n", + "2 {b1276} 0.873922 optimal\n", + "3 {b0351} 0.873922 optimal\n", + "4 {b3733} 0.374230 optimal\n", + "5 {b1241} 0.873922 optimal\n", + "6 {b0116} 0.782351 optimal\n", + "7 {b0727} 0.858307 optimal\n", + "8 {b0356} 0.873922 optimal\n", + "9 {b2587} 0.873922 optimal\n", + "10 {b0118} 0.873922 optimal\n", + "11 {b0726} 0.858307 optimal\n", + "12 {b3736} 0.374230 optimal\n", + "13 {b3735} 0.374230 optimal\n", + "14 {b2296} 0.873922 optimal\n", + "15 {b3115} 0.873922 optimal\n", + "16 {b3732} 0.374230 optimal\n", + "17 {b0474} 0.873922 optimal\n", + "18 {s0001} 0.211141 optimal\n", + "19 {b3734} 0.374230 optimal" + ] }, + "execution_count": 5, "metadata": {}, - "execution_count": 6 + "output_type": "execute_result" } ], "source": [ @@ -173,31 +316,194 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "This can also be done for reactions" ] }, { "cell_type": "code", - "execution_count": 7, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "execution_count": 6, + "metadata": {}, "outputs": [ { - "output_type": "execute_result", "data": { - "text/plain": " ids growth status\n0 {ACALDt} 0.873922 optimal\n1 {ATPS4r} 0.374230 optimal\n2 {EX_ac_e} 0.873922 optimal\n3 {AKGDH} 0.858307 optimal\n4 {ACKr} 0.873922 optimal\n5 {ETOHt2r} 0.873922 optimal\n6 {CS} 0.000000 optimal\n7 {ALCD2x} 0.873922 optimal\n8 {ACONTa} 0.000000 optimal\n9 {D_LACt2} 0.873922 optimal\n10 {ADK1} 0.873922 optimal\n11 {Biomass_Ecoli_core} 0.000000 optimal\n12 {ATPM} 0.916647 optimal\n13 {CYTBD} 0.211663 optimal\n14 {ACt2r} 0.873922 optimal\n15 {CO2t} 0.461670 optimal\n16 {ACALD} 0.873922 optimal\n17 {ENO} 0.000000 optimal\n18 {AKGt2r} 0.873922 optimal\n19 {ACONTb} 0.000000 optimal", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
idsgrowthstatus
0{ACALDt}0.873922optimal
1{ATPS4r}0.374230optimal
2{EX_ac_e}0.873922optimal
3{AKGDH}0.858307optimal
4{ACKr}0.873922optimal
5{ETOHt2r}0.873922optimal
6{CS}0.000000optimal
7{ALCD2x}0.873922optimal
8{ACONTa}0.000000optimal
9{D_LACt2}0.873922optimal
10{ADK1}0.873922optimal
11{Biomass_Ecoli_core}0.000000optimal
12{ATPM}0.916647optimal
13{CYTBD}0.211663optimal
14{ACt2r}0.873922optimal
15{CO2t}0.461670optimal
16{ACALD}0.873922optimal
17{ENO}0.000000optimal
18{AKGt2r}0.873922optimal
19{ACONTb}0.000000optimal
\n
" + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idsgrowthstatus
0{AKGt2r}8.739215e-01optimal
1{D_LACt2}8.739215e-01optimal
2{Biomass_Ecoli_core}0.000000e+00optimal
3{ETOHt2r}8.739215e-01optimal
4{ADK1}8.739215e-01optimal
5{ACONTb}3.279963e-17optimal
6{ACt2r}8.739215e-01optimal
7{ACONTa}3.344590e-15optimal
8{ACKr}8.739215e-01optimal
9{ALCD2x}8.739215e-01optimal
10{ATPS4r}3.742299e-01optimal
11{ACALD}8.739215e-01optimal
12{ENO}1.357454e-16optimal
13{EX_ac_e}8.739215e-01optimal
14{ACALDt}8.739215e-01optimal
15{CS}4.757918e-15optimal
16{AKGDH}8.583074e-01optimal
17{CO2t}4.616696e-01optimal
18{CYTBD}2.116629e-01optimal
19{ATPM}9.166475e-01optimal
\n", + "
" + ], + "text/plain": [ + " ids growth status\n", + "0 {AKGt2r} 8.739215e-01 optimal\n", + "1 {D_LACt2} 8.739215e-01 optimal\n", + "2 {Biomass_Ecoli_core} 0.000000e+00 optimal\n", + "3 {ETOHt2r} 8.739215e-01 optimal\n", + "4 {ADK1} 8.739215e-01 optimal\n", + "5 {ACONTb} 3.279963e-17 optimal\n", + "6 {ACt2r} 8.739215e-01 optimal\n", + "7 {ACONTa} 3.344590e-15 optimal\n", + "8 {ACKr} 8.739215e-01 optimal\n", + "9 {ALCD2x} 8.739215e-01 optimal\n", + "10 {ATPS4r} 3.742299e-01 optimal\n", + "11 {ACALD} 8.739215e-01 optimal\n", + "12 {ENO} 1.357454e-16 optimal\n", + "13 {EX_ac_e} 8.739215e-01 optimal\n", + "14 {ACALDt} 8.739215e-01 optimal\n", + "15 {CS} 4.757918e-15 optimal\n", + "16 {AKGDH} 8.583074e-01 optimal\n", + "17 {CO2t} 4.616696e-01 optimal\n", + "18 {CYTBD} 2.116629e-01 optimal\n", + "19 {ATPM} 9.166475e-01 optimal" + ] }, + "execution_count": 6, "metadata": {}, - "execution_count": 7 + "output_type": "execute_result" } ], "source": [ @@ -206,41 +512,166 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Double Deletions" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Double deletions run in a similar way." ] }, { "cell_type": "code", - "execution_count": 8, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "execution_count": 7, + "metadata": {}, "outputs": [ { - "output_type": "execute_result", "data": { - "text/plain": " ids growth status\n0 {b2935} 0.8739 optimal\n1 {b2465, b2464} 0.8739 optimal\n2 {b0008, b2464} 0.8739 optimal\n3 {b0008, b3919} 0.7040 optimal\n4 {b3919, b2465} 0.7040 optimal\n5 {b0008, b2935} 0.8739 optimal\n6 {b3919} 0.7040 optimal\n7 {b2465, b2935} 0.8739 optimal\n8 {b0008, b2465} 0.8739 optimal\n9 {b3919, b2464} 0.7040 optimal\n10 {b2464} 0.8739 optimal\n11 {b0008} 0.8739 optimal\n12 {b3919, b2935} 0.7040 optimal\n13 {b2935, b2464} 0.8739 optimal\n14 {b2465} 0.8739 optimal", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
idsgrowthstatus
0{b2935}0.8739optimal
1{b2465, b2464}0.8739optimal
2{b0008, b2464}0.8739optimal
3{b0008, b3919}0.7040optimal
4{b3919, b2465}0.7040optimal
5{b0008, b2935}0.8739optimal
6{b3919}0.7040optimal
7{b2465, b2935}0.8739optimal
8{b0008, b2465}0.8739optimal
9{b3919, b2464}0.7040optimal
10{b2464}0.8739optimal
11{b0008}0.8739optimal
12{b3919, b2935}0.7040optimal
13{b2935, b2464}0.8739optimal
14{b2465}0.8739optimal
\n
" + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idsgrowthstatus
0{b2465, b3919}0.7040optimal
1{b2935, b2464}0.8739optimal
2{b0008, b2465}0.8739optimal
3{b2465}0.8739optimal
4{b0008}0.8739optimal
5{b0008, b2464}0.8648optimal
6{b2465, b2935}-0.0000optimal
7{b0008, b3919}0.7040optimal
8{b2465, b2464}0.8739optimal
9{b0008, b2935}0.8739optimal
10{b3919}0.7040optimal
11{b2464}0.8739optimal
12{b2935}0.8739optimal
13{b2935, b3919}0.7040optimal
14{b3919, b2464}0.7040optimal
\n", + "
" + ], + "text/plain": [ + " ids growth status\n", + "0 {b2465, b3919} 0.7040 optimal\n", + "1 {b2935, b2464} 0.8739 optimal\n", + "2 {b0008, b2465} 0.8739 optimal\n", + "3 {b2465} 0.8739 optimal\n", + "4 {b0008} 0.8739 optimal\n", + "5 {b0008, b2464} 0.8648 optimal\n", + "6 {b2465, b2935} -0.0000 optimal\n", + "7 {b0008, b3919} 0.7040 optimal\n", + "8 {b2465, b2464} 0.8739 optimal\n", + "9 {b0008, b2935} 0.8739 optimal\n", + "10 {b3919} 0.7040 optimal\n", + "11 {b2464} 0.8739 optimal\n", + "12 {b2935} 0.8739 optimal\n", + "13 {b2935, b3919} 0.7040 optimal\n", + "14 {b3919, b2464} 0.7040 optimal" + ] }, + "execution_count": 7, "metadata": {}, - "execution_count": 8 + "output_type": "execute_result" } ], "source": [ @@ -250,28 +681,26 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "By default, the double deletion function will automatically use multiprocessing, splitting the task over up to 4 cores if they are available. The number of cores can be manually specified as well. Setting use of a single core will disable use of the multiprocessing library, which often aids debugging." ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, "tags": [] }, "outputs": [ { - "output_type": "stream", "name": "stdout", - "text": "Double gene deletions for 200 genes completed in 9.02 sec with 2 cores\nDouble gene deletions for 200 genes completed in 15.48 sec with 1 core\nSpeedup of 1.72x\n" + "output_type": "stream", + "text": [ + "Double gene deletions for 200 genes completed in 1.29 sec with 2 cores\n", + "Double gene deletions for 200 genes completed in 1.74 sec with 1 core\n", + "Speedup of 1.35x\n" + ] } ], "source": [ @@ -294,31 +723,159 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Double deletions can also be run for reactions." ] }, { "cell_type": "code", - "execution_count": 10, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "execution_count": 9, + "metadata": {}, "outputs": [ { - "output_type": "execute_result", "data": { - "text/plain": " ids growth status\n0 {ACt2r, ACKr} 0.8739 optimal\n1 {ACONTa, ACKr} 0.0000 optimal\n2 {ACONTa, ACONTb} 0.0000 optimal\n3 {ACONTa} 0.0000 optimal\n4 {ACONTb, ACt2r} 0.0000 optimal\n5 {ACt2r} 0.8739 optimal\n6 {ACONTa, ADK1} 0.0000 optimal\n7 {ACONTa, ACt2r} 0.0000 optimal\n8 {ADK1, ACt2r} 0.8739 optimal\n9 {ACONTb, ACKr} 0.0000 optimal\n10 {ADK1} 0.8739 optimal\n11 {ACONTb, ADK1} 0.0000 optimal\n12 {ADK1, ACKr} 0.8739 optimal\n13 {ACKr} 0.8739 optimal\n14 {ACONTb} 0.0000 optimal", - "text/html": "
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
idsgrowthstatus
0{ACt2r, ACKr}0.8739optimal
1{ACONTa, ACKr}0.0000optimal
2{ACONTa, ACONTb}0.0000optimal
3{ACONTa}0.0000optimal
4{ACONTb, ACt2r}0.0000optimal
5{ACt2r}0.8739optimal
6{ACONTa, ADK1}0.0000optimal
7{ACONTa, ACt2r}0.0000optimal
8{ADK1, ACt2r}0.8739optimal
9{ACONTb, ACKr}0.0000optimal
10{ADK1}0.8739optimal
11{ACONTb, ADK1}0.0000optimal
12{ADK1, ACKr}0.8739optimal
13{ACKr}0.8739optimal
14{ACONTb}0.0000optimal
\n
" + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idsgrowthstatus
0{ACONTa}0.0000optimal
1{ACt2r, ACONTa}0.0000optimal
2{ACKr}0.8739optimal
3{ACt2r, ACKr}0.8739optimal
4{ADK1, ACONTb}0.0000optimal
5{ACONTa, ACONTb}0.0000optimal
6{ACKr, ACONTa}0.0000optimal
7{ACKr, ACONTb}0.0000optimal
8{ACt2r, ADK1}0.8739optimal
9{ACt2r, ACONTb}0.0000optimal
10{ADK1, ACKr}0.8739optimal
11{ACONTb}0.0000optimal
12{ADK1, ACONTa}0.0000optimal
13{ACt2r}0.8739optimal
14{ADK1}0.8739optimal
\n", + "
" + ], + "text/plain": [ + " ids growth status\n", + "0 {ACONTa} 0.0000 optimal\n", + "1 {ACt2r, ACONTa} 0.0000 optimal\n", + "2 {ACKr} 0.8739 optimal\n", + "3 {ACt2r, ACKr} 0.8739 optimal\n", + "4 {ADK1, ACONTb} 0.0000 optimal\n", + "5 {ACONTa, ACONTb} 0.0000 optimal\n", + "6 {ACKr, ACONTa} 0.0000 optimal\n", + "7 {ACKr, ACONTb} 0.0000 optimal\n", + "8 {ACt2r, ADK1} 0.8739 optimal\n", + "9 {ACt2r, ACONTb} 0.0000 optimal\n", + "10 {ADK1, ACKr} 0.8739 optimal\n", + "11 {ACONTb} 0.0000 optimal\n", + "12 {ADK1, ACONTa} 0.0000 optimal\n", + "13 {ACt2r} 0.8739 optimal\n", + "14 {ADK1} 0.8739 optimal" + ] }, + "execution_count": 9, "metadata": {}, - "execution_count": 10 + "output_type": "execute_result" } ], "source": [ @@ -345,9 +902,14 @@ }, "outputs": [ { - "output_type": "stream", "name": "stdout", - "text": "ids growth status\n89 {ATPM} 0.916647 optimal\n ids growth status\n2238 {ATPM, TKT1} 0.90584 optimal\n" + "output_type": "stream", + "text": [ + " ids growth status\n", + "12 {ATPM} 0.916647 optimal\n", + " ids growth status\n", + "859 {ATPM, TKT1} 0.90584 optimal\n" + ] } ], "source": [ @@ -373,9 +935,18 @@ }, "outputs": [ { - "output_type": "stream", "name": "stdout", - "text": "ids growth status\n15 {PFK} 0.704037 optimal\n17 {TKT1} 0.864759 optimal\n89 {ATPM} 0.916647 optimal\n ids growth status\n762 {ATPM} 0.916647 optimal\n2238 {ATPM, TKT1} 0.905840 optimal\n2533 {PFK, ATPM} 0.704037 optimal\n" + "output_type": "stream", + "text": [ + " ids growth status\n", + "12 {ATPM} 0.916647 optimal\n", + "44 {TKT1} 0.864759 optimal\n", + "71 {PFK} 0.704037 optimal\n", + " ids growth status\n", + "425 {ATPM, PFK} 0.704037 optimal\n", + "859 {ATPM, TKT1} 0.905840 optimal\n", + "4125 {ATPM} 0.916647 optimal\n" + ] } ], "source": [ @@ -397,9 +968,9 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3.8.5 64-bit", + "display_name": "Python 3 (ipykernel)", "language": "python", - "name": "python38564bitf0104f1d307f43fe817f807276206b68" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -411,9 +982,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.5-final" + "version": "3.7.1" } }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +} diff --git a/documentation_builder/dfba.ipynb b/documentation_builder/dfba.ipynb index fd96740d7..03cefd329 100644 --- a/documentation_builder/dfba.ipynb +++ b/documentation_builder/dfba.ipynb @@ -42,11 +42,21 @@ "cell_type": "code", "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ "import cobra\n", - "from cobra.test import create_test_model\n", - "model = create_test_model('textbook')" + "from cobra.io import load_model\n", + "model = load_model('textbook')" ] }, { @@ -67,7 +77,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -149,7 +159,7 @@ "name": "stderr", "output_type": "stream", "text": [ - "t = 5.804: : 185it [00:16, 11.27it/s]\n" + "t = 5.804: : 185it [00:05, 34.89it/s]\n" ] } ], @@ -218,10 +228,11 @@ " 5.41206877, 5.02222068, 4.62299297, 4.21779303, 3.81071525,\n", " 3.40650104, 3.01042208, 2.6280723 , 2.26504645, 1.92656158,\n", " 1.61703023, 1.33965598, 1.09616507, 0.88670502, 0.70995892,\n", - " 0.56344028, 0.44387781, 0.34762375, 0.27100065]])" + " 0.56344028, 0.44387781, 0.34762375, 0.27100065]])\n", + " y_events: [array([[0.87280538, 0.25178492]])]" ] }, - "execution_count": 5, + "execution_count": 7, "metadata": {}, "output_type": "execute_result" } @@ -254,7 +265,7 @@ }, { "data": { - "image/png": "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\n", + "image/png": "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\n", "text/plain": [ "
" ] @@ -274,11 +285,18 @@ "ax.set_ylabel('Biomass', color='b')\n", "ax2.set_ylabel('Glucose', color='r')" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -292,7 +310,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.1" }, "toc": { "base_numbering": 1, diff --git a/documentation_builder/faq.ipynb b/documentation_builder/faq.ipynb index 39860f600..bad5f1500 100644 --- a/documentation_builder/faq.ipynb +++ b/documentation_builder/faq.ipynb @@ -62,14 +62,23 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "from __future__ import print_function\n", - "import cobra.test\n", - "model = cobra.test.create_test_model()\n", + "from cobra.io import load_model\n", + "model = load_model(\"iYS1720\")\n", "\n", "for metabolite in model.metabolites:\n", - " metabolite.id = \"test_\" + metabolite.id\n", + " metabolite.id = f\"test_{metabolite.id}\"\n", "\n", "try:\n", " model.metabolites.get_by_id(model.metabolites[0].id)\n", @@ -95,22 +104,25 @@ "\n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", + " \n", " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", "
Metabolite identifiertest_dcaACP_c
NameDecanoyl-ACP-n-C100ACP
Metabolite identifiertest_10fthf_c
Name10-Formyltetrahydrofolate
Memory address0x0110f096300x7f9c91ec0a90
FormulaC21H39N2O8PRSFormulaC20H21N7O7
Compartmentc
In 9 reaction(s)\n", + " FTHFD, ULA4NFT, GARFT, AICART, TDPFRMT, MTHFC, BIOMASS_Ec_iAF1260_core_59p81M, BIOMASS_invivo, FMETTRS\n", + "
" ], "text/plain": [ - "" + "" ] }, "execution_count": 2, @@ -136,7 +148,7 @@ "source": [ "That depends on what precisely you mean by delete a gene.\n", "\n", - "If you want to simulate the model with a gene knockout, use the `cobra.manipulation.knock_out_model_genes` function. The effects of this function are reversed when exiting a context." + "If you want to simulate the model with a gene knockout, use the `cobra.manipulation.knock_out_model_genes` function within a context. The effects of this function are reversed when exiting a context." ] }, { @@ -154,10 +166,11 @@ } ], "source": [ - "model = cobra.test.create_test_model()\n", + "model = load_model(\"iYS1720\")\n", "PGI = model.reactions.get_by_id(\"PGI\")\n", "print(\"bounds before knockout:\", (PGI.lower_bound, PGI.upper_bound))\n", - "cobra.manipulation.knock_out_model_genes(model, [\"STM4221\"])\n", + "from cobra.manipulation import knock_out_model_genes\n", + "knock_out_model_genes(model, [\"STM4221\"])\n", "print(\"bounds after knockouts\", (PGI.lower_bound, PGI.upper_bound))" ] }, @@ -199,7 +212,7 @@ } ], "source": [ - "model = cobra.test.create_test_model()\n", + "model = load_model(\"iYS1720\")\n", "model.reactions.get_by_id(\"PGI\").reversibility" ] }, @@ -219,7 +232,8 @@ "name": "stderr", "output_type": "stream", "text": [ - "cobra/core/reaction.py:501 \u001b[1;31mUserWarning\u001b[0m: Setting reaction reversibility is ignored\n" + "/Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/core/reaction.py:810: UserWarning: Setting reaction reversibility is ignored\n", + " warn(\"Setting reaction reversibility is ignored\")\n" ] } ], @@ -276,54 +290,19 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "With optlang solvers, the LP formulation of a model is obtained by it's string representation. All solvers behave the same way." + "With optlang solvers, the LP formulation of a model is obtained by its string representation. All solvers behave the same way." ] }, { "cell_type": "code", "execution_count": 7, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "with open('test.lp', 'w') as out:\n", " out.write(str(model.solver))" ] }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### For cobrapy's internal solvers" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "With the internal solvers, we first create the problem and use functions bundled with the solver. \n", - "\n", - "Please note that unlike the LP file format, the MPS file format does not specify objective direction and is always a minimization. Some (but not all) solvers will rewrite the maximization as a minimization." - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "model = cobra.test.create_test_model()\n", - "# glpk through cglpk\n", - "glpk = cobra.solvers.cglpk.create_problem(model)\n", - "glpk.write(\"test.lp\")\n", - "glpk.write(\"test.mps\") # will not rewrite objective\n", - "# cplex\n", - "cplex = cobra.solvers.cplex_solver.create_problem(model)\n", - "cplex.write(\"test.lp\")\n", - "cplex.write(\"test.mps\") # rewrites objective" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -341,7 +320,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -355,7 +334,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.7" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/gapfilling.ipynb b/documentation_builder/gapfilling.ipynb index a149f00df..9c373bfaa 100644 --- a/documentation_builder/gapfilling.ipynb +++ b/documentation_builder/gapfilling.ipynb @@ -35,10 +35,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Where *l*, *u* are lower and upper bounds for reaction *i* and *z* is an indicator variable that is zero if the reaction is not used and otherwise 1, *c* is a user-defined cost associated with using the *i*th reaction, $v^\\star$ is the flux of the objective and *t* a lower bound for that objective. To demonstrate, let's take a model and remove some essential reactions from it." ] @@ -46,24 +43,27 @@ { "cell_type": "code", "execution_count": 1, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, - "outputs": [], + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "import cobra.test\n", + "from cobra.io import load_model\n", "from cobra.flux_analysis import gapfill\n", - "model = cobra.test.create_test_model(\"salmonella\")" + "model = load_model(\"iYS1720\")" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "In this model D-Fructose-6-phosphate is an essential metabolite. We will remove all the reactions using it, and at them to a separate model." ] @@ -71,11 +71,7 @@ { "cell_type": "code", "execution_count": 2, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [], "source": [ "universal = cobra.Model(\"universal_reactions\")\n", @@ -87,10 +83,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Now, because of these gaps, the model won't grow." ] @@ -98,11 +91,7 @@ { "cell_type": "code", "execution_count": 3, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "data": { @@ -121,10 +110,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "We will use can use the model's original objective, growth, to figure out which of the removed reactions are required for the model be feasible again. This is very similar to making the 'no-growth but growth (NGG)' predictions of [Kumar et al. 2009](http://dx.doi.org/10.1371/journal.pcbi.1000308)." ] @@ -132,21 +118,14 @@ { "cell_type": "code", "execution_count": 4, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "GF6PTA\n", - "F6PP\n", - "TKT2\n", - "FBP\n", - "MAN6PI\n" + "TALA\n" ] } ], @@ -158,10 +137,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "We can obtain multiple possible reaction sets by having the algorithm go through multiple iterations." ] @@ -169,11 +145,7 @@ { "cell_type": "code", "execution_count": 5, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "name": "stdout", @@ -181,28 +153,17 @@ "text": [ "---- Run 1 ----\n", "GF6PTA\n", - "F6PP\n", - "TKT2\n", - "FBP\n", - "MAN6PI\n", + "TALA\n", "---- Run 2 ----\n", "GF6PTA\n", "TALA\n", - "PGI\n", - "F6PA\n", - "MAN6PI\n", "---- Run 3 ----\n", - "GF6PTA\n", - "F6PP\n", "TKT2\n", + "GF6PTA\n", "FBP\n", - "MAN6PI\n", "---- Run 4 ----\n", "GF6PTA\n", - "TALA\n", - "PGI\n", - "F6PA\n", - "MAN6PI\n" + "TALA\n" ] } ], @@ -216,10 +177,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "We can also instead of using the original objective, specify a given metabolite that we want the model to be able to produce." ] @@ -227,17 +185,13 @@ { "cell_type": "code", "execution_count": 6, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "FBP\n" + "F6PA\n" ] } ], @@ -251,10 +205,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Finally, note that using mixed-integer linear programming is computationally quite expensive and for larger models you may want to consider alternative [gap filling methods](http://opencobra.github.io/cobrapy/tags/gapfilling/) and [reconstruction methods](http://opencobra.github.io/cobrapy/tags/reconstruction/)." ] @@ -262,7 +213,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -276,9 +227,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.0" + "version": "3.7.1" } }, "nbformat": 4, - "nbformat_minor": 0 + "nbformat_minor": 1 } diff --git a/documentation_builder/getting_started.ipynb b/documentation_builder/getting_started.ipynb index 863ac5386..9f2be895b 100644 --- a/documentation_builder/getting_started.ipynb +++ b/documentation_builder/getting_started.ipynb @@ -25,15 +25,23 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "from __future__ import print_function\n", - "\n", "import cobra\n", - "import cobra.test\n", + "from cobra.io import load_model\n", "\n", - "# \"ecoli\" and \"salmonella\" are also valid arguments\n", - "model = cobra.test.create_test_model(\"textbook\")" + "# \"iJO1366\" and \"salmonella\" are also valid arguments\n", + "model = load_model(\"textbook\")" ] }, { @@ -88,7 +96,7 @@ " e_coli_core\n", " \n", " Memory address\n", - " 0x010cb2d358\n", + " 0x07feb1af21f28\n", " \n", " Number of metabolites\n", " 72\n", @@ -96,6 +104,9 @@ " Number of reactions\n", " 95\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", " 1.0*Biomass_Ecoli_core - 1.0*Biomass_Ecoli_core_reverse_2cdba\n", " \n", @@ -105,7 +116,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 3, @@ -140,12 +151,12 @@ " NameL-Glutamate exchange\n", " \n", " Memory address\n", - " 0x0117a94898\n", + " 0x7feb1b012eb8\n", " \n", " Stoichiometry\n", " \n", - "

glu__L_e -->

\n", - "

L-Glutamate -->

\n", + "

glu__L_e -->

\n", + "

L-Glutamate -->

\n", " \n", " \n", " GPR\n", @@ -158,7 +169,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 4, @@ -193,19 +204,20 @@ " NameATP\n", " \n", " Memory address\n", - " 0x01179dae48\n", + " 0x7feb1af41550\n", " \n", " FormulaC10H12N5O13P3\n", " \n", " Compartmentc\n", " \n", " In 13 reaction(s)\n", - " PPCK, ATPS4r, ADK1, ATPM, GLNS, GLNabc, ACKr, PGK, PPS, PYK, SUCOAS, Biomass_Ecoli_core, PFK\n", + " Biomass_Ecoli_core, ATPS4r, PGK, ACKr, ADK1, GLNS, ATPM, PFK, PPS, GLNabc, PYK, PPCK, SUCOAS\n", + " \n", " \n", " " ], "text/plain": [ - "" + "" ] }, "execution_count": 5, @@ -274,7 +286,7 @@ " Nameglucose-6-phosphate isomerase\n", " \n", " Memory address\n", - " 0x0117afacc0\n", + " 0x7feb1b09c2e8\n", " \n", " Stoichiometry\n", " \n", @@ -292,7 +304,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 7, @@ -367,7 +379,9 @@ { "cell_type": "code", "execution_count": 10, - "metadata": {}, + "metadata": { + "scrolled": true + }, "outputs": [ { "name": "stdout", @@ -392,7 +406,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Bounds can also be modified one-at-a-time using `reaction.lower_bound` or `reaction.upper_bound`. This approach is less desirable than setting both bounds simultaneously with `reaction.bounds` because a user might accidently set a lower bound *higher* than an upper bound (or vice versa). Currently, cobrapy will automatically adjust the other bound (e.g. the bound the user didn't manually adjust) so that this violation doesn't occur, but this feature may be removed in the near future. " + "Bounds can also be modified one-at-a-time using `reaction.lower_bound` or `reaction.upper_bound`. This approach is less desirable than setting both bounds simultaneously with `reaction.bounds` because a user might accidently set a lower bound *higher* than an upper bound (or vice versa). If a lower bound is *higher* than upper bound (or vice versa), this will lead to an error." ] }, { @@ -404,8 +418,21 @@ "name": "stdout", "output_type": "stream", "text": [ - "Upper bound prior to setting new lower bound: 1000.0\n", - "Upper bound after setting new lower bound: 1100\n" + "Upper bound prior to setting new lower bound: 1000.0\n" + ] + }, + { + "ename": "ValueError", + "evalue": "The lower bound must be less than or equal to the upper bound (1100 <= 1000.0).", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/var/folders/v7/99h1ft7s0mzg1_83fmbc8mnm0000gn/T/ipykernel_23255/4168182522.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mold_bounds\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpgi\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbounds\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'Upper bound prior to setting new lower bound:'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpgi\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mupper_bound\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mpgi\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlower_bound\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m1100\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'Upper bound after setting new lower bound:'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpgi\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mupper_bound\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0mpgi\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbounds\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mold_bounds\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/PycharmProjects/cobrapy/src/cobra/util/context.py\u001b[0m in \u001b[0;36mwrapper\u001b[0;34m(self, new_value)\u001b[0m\n\u001b[1;32m 109\u001b[0m \u001b[0mcontext\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpartial\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfunc\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mold_value\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 110\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 111\u001b[0;31m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnew_value\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 112\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 113\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mwrapper\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/PycharmProjects/cobrapy/src/cobra/core/reaction.py\u001b[0m in \u001b[0;36mlower_bound\u001b[0;34m(self, value)\u001b[0m\n\u001b[1;32m 368\u001b[0m \"\"\"\n\u001b[1;32m 369\u001b[0m \u001b[0;31m# Validate bounds before setting them.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 370\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_check_bounds\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mvalue\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_upper_bound\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 371\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_lower_bound\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mvalue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 372\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mupdate_variable_bounds\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/PycharmProjects/cobrapy/src/cobra/core/reaction.py\u001b[0m in \u001b[0;36m_check_bounds\u001b[0;34m(lb, ub)\u001b[0m\n\u001b[1;32m 292\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlb\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0mub\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 293\u001b[0m raise ValueError(\n\u001b[0;32m--> 294\u001b[0;31m \u001b[0;34mf\"The lower bound must be less than or equal to the upper bound \"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 295\u001b[0m \u001b[0;34mf\"({lb} <= {ub}).\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 296\u001b[0m )\n", + "\u001b[0;31mValueError\u001b[0m: The lower bound must be less than or equal to the upper bound (1100 <= 1000.0)." ] } ], @@ -622,19 +649,20 @@ " NameATP\n", " \n", " Memory address\n", - " 0x01179dae48\n", + " 0x7feb1af41550\n", " \n", " FormulaC10H12N5O13P3\n", " \n", " Compartmentc\n", " \n", " In 13 reaction(s)\n", - " PPCK, ATPS4r, ADK1, ATPM, GLNS, GLNabc, ACKr, PGK, PPS, PYK, SUCOAS, Biomass_Ecoli_core, PFK\n", + " Biomass_Ecoli_core, ATPS4r, PGK, ACKr, ADK1, GLNS, ATPM, PFK, PPS, GLNabc, PYK, PPCK, SUCOAS\n", + " \n", " \n", " " ], "text/plain": [ - "" + "" ] }, "execution_count": 19, @@ -766,10 +794,10 @@ { "data": { "text/plain": [ - "frozenset({,\n", - " ,\n", - " ,\n", - " })" + "frozenset({,\n", + " ,\n", + " ,\n", + " })" ] }, "execution_count": 24, @@ -794,7 +822,7 @@ "source": [ "The `gene_reaction_rule` is a boolean representation of the gene requirements for this reaction to be active as described in [Schellenberger et al 2011 Nature Protocols 6(9):1290-307](http://dx.doi.org/doi:10.1038/nprot.2011.308).\n", "\n", - "The GPR is stored as the gene_reaction_rule for a Reaction object as a string." + "The GPR is stored as the GPR class in the gpr for a Reaction. A string representation of it is stored as the gene_reaction_rule for a Reaction object." ] }, { @@ -803,19 +831,19 @@ "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "'b4025'" - ] - }, - "execution_count": 25, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "b4025\n", + "b4025\n" + ] } ], "source": [ - "gpr = pgi.gene_reaction_rule\n", - "gpr" + "gpr = pgi.gpr\n", + "print(gpr)\n", + "gpr_string = pgi.gene_reaction_rule\n", + "print(gpr_string)" ] }, { @@ -833,7 +861,7 @@ { "data": { "text/plain": [ - "frozenset({})" + "frozenset({})" ] }, "execution_count": 26, @@ -861,17 +889,18 @@ " Namepgi\n", " \n", " Memory address\n", - " 0x01179cec18\n", + " 0x7feb1afb0f98\n", " \n", " FunctionalTrue\n", " \n", " In 1 reaction(s)\n", - " PGI\n", + " PGI\n", + " \n", " \n", " " ], "text/plain": [ - "" + "" ] }, "execution_count": 27, @@ -899,7 +928,7 @@ { "data": { "text/plain": [ - "frozenset({})" + "frozenset({})" ] }, "execution_count": 28, @@ -926,7 +955,7 @@ { "data": { "text/plain": [ - "frozenset({, })" + "frozenset({, })" ] }, "execution_count": 29, @@ -982,17 +1011,18 @@ " Name\n", " \n", " Memory address\n", - " 0x011793d748\n", + " 0x7feb1b0aacf8\n", " \n", " FunctionalTrue\n", " \n", " In 1 reaction(s)\n", - " PGI\n", + " PGI\n", + " \n", " \n", " " ], "text/plain": [ - "" + "" ] }, "execution_count": 31, @@ -1067,7 +1097,7 @@ } ], "source": [ - "model = cobra.test.create_test_model('textbook')\n", + "model = load_model('textbook')\n", "for reaction in model.reactions[:5]:\n", " with model as model:\n", " reaction.knock_out()\n", @@ -1124,9 +1154,9 @@ "output_type": "stream", "text": [ "original objective: 1.0*Biomass_Ecoli_core - 1.0*Biomass_Ecoli_core_reverse_2cdba\n", - "print objective in first context: -1.0*ATPM_reverse_5b752 + 1.0*ATPM\n", + "print objective in first context: 1.0*ATPM - 1.0*ATPM_reverse_5b752\n", "print objective in second context: 1.0*ACALD - 1.0*ACALD_reverse_fda2b\n", - "objective after exiting second context: -1.0*ATPM_reverse_5b752 + 1.0*ATPM\n", + "objective after exiting second context: 1.0*ATPM - 1.0*ATPM_reverse_5b752\n", "back to original objective: 1.0*Biomass_Ecoli_core - 1.0*Biomass_Ecoli_core_reverse_2cdba\n" ] } @@ -1167,11 +1197,18 @@ "with model as inner:\n", " inner.reactions.PFK.knock_out" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1185,7 +1222,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/io.ipynb b/documentation_builder/io.ipynb index c88bb894b..a11f29d50 100644 --- a/documentation_builder/io.ipynb +++ b/documentation_builder/io.ipynb @@ -26,23 +26,25 @@ "output_type": "stream", "text": [ "mini test files: \n", - "mini.json, mini.mat, mini.pickle, mini.yml, mini_cobra.xml, mini_fbc1.xml, mini_fbc2.xml, mini_fbc2.xml.bz2, mini_fbc2.xml.gz\n" + "/Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini_fbc2.xml, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini.json, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini_fbc1.xml, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini_fbc2.xml.gz, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini.yml, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini_cobra.xml, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini.mat, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini_fbc2.xml.bz2, /Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/data/mini.pickle\n" ] } ], "source": [ - "import cobra.test\n", - "import os\n", - "from os.path import join\n", + "from pathlib import Path\n", + "from cobra.io import load_json_model_model, save_json_model, load_matlab_model, save_matlab_model, read_sbml_model, write_sbml_model\n", + "import logging\n", "\n", - "data_dir = cobra.test.data_dir\n", + "data_dir = Path(\".\") / \"..\" / \"src\" / \"cobra\" / \"data\"\n", + "data_dir = data_dir.resolve()\n", "\n", "print(\"mini test files: \")\n", - "print(\", \".join(i for i in os.listdir(data_dir) if i.startswith(\"mini\")))\n", + "print(\", \".join(str(i) for i in data_dir.glob('mini*.*')))\n", "\n", - "textbook_model = cobra.test.create_test_model(\"textbook\")\n", - "ecoli_model = cobra.test.create_test_model(\"ecoli\")\n", - "salmonella_model = cobra.test.create_test_model(\"salmonella\")" + "textbook_model = load_model(\"textbook\")\n", + "ecoli_model = load_model(\"iJO1366\")\n", + "logging.getLogger(\"cobra.io.sbml\").setLevel(logging.ERROR) # salmonella leads to lots of warnings without this line\n", + "salmonella_model = load_model(\"salmonella\")" ] }, { @@ -76,7 +78,7 @@ " mini_textbook\n", " \n", " Memory address\n", - " 0x01074fd080\n", + " 0x07fbe29d69cf8\n", " \n", " Number of metabolites\n", " 23\n", @@ -84,8 +86,11 @@ " Number of reactions\n", " 18\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", - " -1.0*ATPM_reverse_5b752 - 1.0*PFK_reverse_d24a6 + 1.0*PFK + 1.0*ATPM\n", + " 1.0*ATPM - 1.0*ATPM_reverse_5b752 + 1.0*PFK - 1.0*PFK_reverse_d24a6\n", " \n", " Compartments\n", " cytosol, extracellular\n", @@ -93,7 +98,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 2, @@ -102,18 +107,17 @@ } ], "source": [ - "cobra.io.read_sbml_model(join(data_dir, \"mini_fbc2.xml\"))" + "mini_fbc2_path = data_dir / \"mini_fbc2.xml\" \n", + "read_sbml_model(str(mini_fbc2_path.resolve()))" ] }, { "cell_type": "code", "execution_count": 3, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ - "cobra.io.write_sbml_model(textbook_model, \"test_fbc2.xml\")" + "write_sbml_model(textbook_model, \"test_fbc2.xml\")" ] }, { @@ -142,7 +146,7 @@ " mini_textbook\n", " \n", " Memory address\n", - " 0x0112fa6b38\n", + " 0x07fbe29d693c8\n", " \n", " Number of metabolites\n", " 23\n", @@ -150,8 +154,11 @@ " Number of reactions\n", " 18\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", - " -1.0*ATPM_reverse_5b752 - 1.0*PFK_reverse_d24a6 + 1.0*PFK + 1.0*ATPM\n", + " 1.0*ATPM - 1.0*ATPM_reverse_5b752 + 1.0*PFK - 1.0*PFK_reverse_d24a6\n", " \n", " Compartments\n", " cytosol, extracellular\n", @@ -159,7 +166,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 4, @@ -168,19 +175,17 @@ } ], "source": [ - "cobra.io.read_sbml_model(join(data_dir, \"mini_cobra.xml\"))" + "mini_cobra_path = data_dir / \"mini_cobra.xml\" \n", + "read_sbml_model(str(mini_cobra_path.resolve()))" ] }, { "cell_type": "code", "execution_count": 5, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ - "cobra.io.write_sbml_model(\n", - " textbook_model, \"test_cobra.xml\", use_fbc_package=False)" + "write_sbml_model(textbook_model, \"test_cobra.xml\")" ] }, { @@ -212,7 +217,7 @@ " mini_textbook\n", " \n", " Memory address\n", - " 0x0113061080\n", + " 0x07fbe29c6ac50\n", " \n", " Number of metabolites\n", " 23\n", @@ -220,8 +225,11 @@ " Number of reactions\n", " 18\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", - " -1.0*ATPM_reverse_5b752 - 1.0*PFK_reverse_d24a6 + 1.0*PFK + 1.0*ATPM\n", + " 1.0*ATPM - 1.0*ATPM_reverse_5b752 + 1.0*PFK - 1.0*PFK_reverse_d24a6\n", " \n", " Compartments\n", " cytosol, extracellular\n", @@ -229,7 +237,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 6, @@ -238,18 +246,17 @@ } ], "source": [ - "cobra.io.load_json_model(join(data_dir, \"mini.json\"))" + "mini_json_path = data_dir / \"mini.json\" \n", + "load_json_model(str(mini_json_path.resolve()))" ] }, { "cell_type": "code", "execution_count": 7, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ - "cobra.io.save_json_model(textbook_model, \"test.json\")" + "save_json_model(textbook_model, \"test.json\")" ] }, { @@ -281,7 +288,7 @@ " mini_textbook\n", " \n", " Memory address\n", - " 0x0113013390\n", + " 0x07fbe29c6ad30\n", " \n", " Number of metabolites\n", " 23\n", @@ -289,16 +296,19 @@ " Number of reactions\n", " 18\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", - " -1.0*ATPM_reverse_5b752 - 1.0*PFK_reverse_d24a6 + 1.0*PFK + 1.0*ATPM\n", + " 1.0*ATPM - 1.0*ATPM_reverse_5b752 + 1.0*PFK - 1.0*PFK_reverse_d24a6\n", " \n", " Compartments\n", - " extracellular, cytosol\n", + " cytosol, extracellular\n", " \n", " " ], "text/plain": [ - "" + "" ] }, "execution_count": 8, @@ -307,18 +317,17 @@ } ], "source": [ - "cobra.io.load_yaml_model(join(data_dir, \"mini.yml\"))" + "mini_yml_path = data_dir / \"mini.yml\"\n", + "load_yaml_model(str(mini_yml_path.resolve()))" ] }, { "cell_type": "code", "execution_count": 9, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ - "cobra.io.save_yaml_model(textbook_model, \"test.yml\")" + "save_yaml_model(textbook_model, \"test.yml\")" ] }, { @@ -352,7 +361,7 @@ " mini_textbook\n", " \n", " Memory address\n", - " 0x0113000b70\n", + " 0x07fbe29c5dd30\n", " \n", " Number of metabolites\n", " 23\n", @@ -360,8 +369,11 @@ " Number of reactions\n", " 18\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", - " -1.0*ATPM_reverse_5b752 - 1.0*PFK_reverse_d24a6 + 1.0*PFK + 1.0*ATPM\n", + " 1.0*ATPM - 1.0*ATPM_reverse_5b752 + 1.0*PFK - 1.0*PFK_reverse_d24a6\n", " \n", " Compartments\n", " c, e\n", @@ -369,7 +381,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 10, @@ -378,8 +390,11 @@ } ], "source": [ - "cobra.io.load_matlab_model(\n", - " join(data_dir, \"mini.mat\"), variable_name=\"mini_textbook\")" + "mini_mat_path = data_dir / \"mini.mat\"\n", + "load_matlab_model(\n", + " str(mini_mat_path.resolve()),\n", + " variable_name=\"mini_textbook\",\n", + ")" ] }, { @@ -404,7 +419,7 @@ " mini_textbook\n", " \n", " Memory address\n", - " 0x0113758438\n", + " 0x07fbe299af940\n", " \n", " Number of metabolites\n", " 23\n", @@ -412,8 +427,11 @@ " Number of reactions\n", " 18\n", " \n", + " Number of groups\n", + " 0\n", + " \n", " Objective expression\n", - " -1.0*ATPM_reverse_5b752 - 1.0*PFK_reverse_d24a6 + 1.0*PFK + 1.0*ATPM\n", + " 1.0*ATPM - 1.0*ATPM_reverse_5b752 + 1.0*PFK - 1.0*PFK_reverse_d24a6\n", " \n", " Compartments\n", " c, e\n", @@ -421,7 +439,7 @@ " " ], "text/plain": [ - "" + "" ] }, "execution_count": 11, @@ -430,7 +448,8 @@ } ], "source": [ - "cobra.io.load_matlab_model(join(data_dir, \"mini.mat\"))" + "mini_mat_path = data_dir / \"mini.mat\"\n", + "load_matlab_model(str(mini_mat_path.resolve()))" ] }, { @@ -443,12 +462,10 @@ { "cell_type": "code", "execution_count": 12, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ - "cobra.io.save_matlab_model(textbook_model, \"test.mat\")" + "save_matlab_model(textbook_model, \"test.mat\")" ] }, { @@ -470,7 +487,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -484,7 +501,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.0" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/loopless.ipynb b/documentation_builder/loopless.ipynb index 68ae44c44..98af41600 100644 --- a/documentation_builder/loopless.ipynb +++ b/documentation_builder/loopless.ipynb @@ -2,20 +2,14 @@ "cells": [ { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "# Loopless FBA" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "The goal of this procedure is identification of a thermodynamically consistent flux state without loops, as implied by the name. You can find a more detailed description in the [method](#Method) section at the end of the notebook." ] @@ -23,17 +17,13 @@ { "cell_type": "code", "execution_count": 1, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [], "source": [ "%matplotlib inline\n", "import plot_helper\n", "\n", - "import cobra.test\n", + "from cobra.io import load_model\n", "from cobra import Reaction, Metabolite, Model\n", "from cobra.flux_analysis.loopless import add_loopless, loopless_solution\n", "from cobra.flux_analysis import pfba" @@ -41,20 +31,14 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Loopless solution" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Classical loopless approaches as described below are computationally expensive to solve due to the added mixed-integer constraints. A much faster, and pragmatic approach is instead to post-process flux distributions to simply set fluxes to zero wherever they can be zero without changing the fluxes of any exchange reactions in the model. [CycleFreeFlux](http://dx.doi.org/10.1093/bioinformatics/btv096) is an algorithm that can be used to achieve this and in cobrapy it is implemented in the `cobra.flux_analysis.loopless_solution` function. `loopless_solution` will identify the closest flux distribution (using only loopless elementary flux modes) to the original one. Note that this will not remove loops which you explicitly requested, for instance by forcing a loop reaction to carry non-zero flux. \n", "\n", @@ -64,14 +48,12973 @@ { "cell_type": "code", "execution_count": 2, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, - "outputs": [], + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Model does not contain SBML fbc package information.\n", + "SBML package 'layout' not supported by cobrapy, information is not parsed\n", + "SBML package 'render' not supported by cobrapy, information is not parsed\n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of FORMULA in the notes element is discouraged, use fbc:chemicalFormula instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Use of the species charge attribute is discouraged, use fbc:charge instead: \n", + "Adding exchange reaction EX_4hba_c_boundary with default bounds for boundary metabolite: 4hba_c_boundary.\n", + "Adding exchange reaction EX_5drib_c_boundary with default bounds for boundary metabolite: 5drib_c_boundary.\n", + "Adding exchange reaction EX_hmfurn_c_boundary with default bounds for boundary metabolite: hmfurn_c_boundary.\n", + "Adding exchange reaction EX_oxam_c_boundary with default bounds for boundary metabolite: oxam_c_boundary.\n", + "Adding exchange reaction EX_chitob_e_boundary with default bounds for boundary metabolite: chitob_e_boundary.\n", + "Adding exchange reaction EX_pydxn_e_boundary with default bounds for boundary metabolite: pydxn_e_boundary.\n", + "Adding exchange reaction EX_pydx_e_boundary with default bounds for boundary metabolite: pydx_e_boundary.\n", + "Adding exchange reaction EX_12ppd__R_e_boundary with default bounds for boundary metabolite: 12ppd__R_e_boundary.\n", + "Adding exchange reaction EX_12ppd__S_e_boundary with default bounds for boundary metabolite: 12ppd__S_e_boundary.\n", + "Adding exchange reaction EX_14glucan_e_boundary with default bounds for boundary metabolite: 14glucan_e_boundary.\n", + "Adding exchange reaction EX_15dap_e_boundary with default bounds for boundary metabolite: 15dap_e_boundary.\n", + "Adding exchange reaction EX_23camp_e_boundary with default bounds for boundary metabolite: 23camp_e_boundary.\n", + "Adding exchange reaction EX_23ccmp_e_boundary with default bounds for boundary metabolite: 23ccmp_e_boundary.\n", + "Adding exchange reaction EX_23cgmp_e_boundary with default bounds for boundary metabolite: 23cgmp_e_boundary.\n", + "Adding exchange reaction EX_23cump_e_boundary with default bounds for boundary metabolite: 23cump_e_boundary.\n", + "Adding exchange reaction EX_23dappa_e_boundary with default bounds for boundary metabolite: 23dappa_e_boundary.\n", + "Adding exchange reaction EX_26dap__M_e_boundary with default bounds for boundary metabolite: 26dap__M_e_boundary.\n", + "Adding exchange reaction EX_2ddglcn_e_boundary with default bounds for boundary metabolite: 2ddglcn_e_boundary.\n", + "Adding exchange reaction EX_34dhpac_e_boundary with default bounds for boundary metabolite: 34dhpac_e_boundary.\n", + "Adding exchange reaction EX_3amp_e_boundary with default bounds for boundary metabolite: 3amp_e_boundary.\n", + "Adding exchange reaction EX_3cmp_e_boundary with default bounds for boundary metabolite: 3cmp_e_boundary.\n", + "Adding exchange reaction EX_3gmp_e_boundary with default bounds for boundary metabolite: 3gmp_e_boundary.\n", + "Adding exchange reaction EX_3hcinnm_e_boundary with default bounds for boundary metabolite: 3hcinnm_e_boundary.\n", + "Adding exchange reaction EX_3hpppn_e_boundary with default bounds for boundary metabolite: 3hpppn_e_boundary.\n", + "Adding exchange reaction EX_3ump_e_boundary with default bounds for boundary metabolite: 3ump_e_boundary.\n", + "Adding exchange reaction EX_4abut_e_boundary with default bounds for boundary metabolite: 4abut_e_boundary.\n", + "Adding exchange reaction EX_4hoxpacd_e_boundary with default bounds for boundary metabolite: 4hoxpacd_e_boundary.\n", + "Adding exchange reaction EX_5dglcn_e_boundary with default bounds for boundary metabolite: 5dglcn_e_boundary.\n", + "Adding exchange reaction EX_LalaDgluMdapDala_e_boundary with default bounds for boundary metabolite: LalaDgluMdapDala_e_boundary.\n", + "Adding exchange reaction EX_LalaDgluMdap_e_boundary with default bounds for boundary metabolite: LalaDgluMdap_e_boundary.\n", + "Adding exchange reaction EX_ac_e_boundary with default bounds for boundary metabolite: ac_e_boundary.\n", + "Adding exchange reaction EX_acac_e_boundary with default bounds for boundary metabolite: acac_e_boundary.\n", + "Adding exchange reaction EX_acald_e_boundary with default bounds for boundary metabolite: acald_e_boundary.\n", + "Adding exchange reaction EX_acgal1p_e_boundary with default bounds for boundary metabolite: acgal1p_e_boundary.\n", + "Adding exchange reaction EX_acgal_e_boundary with default bounds for boundary metabolite: acgal_e_boundary.\n", + "Adding exchange reaction EX_acgam1p_e_boundary with default bounds for boundary metabolite: acgam1p_e_boundary.\n", + "Adding exchange reaction EX_acgam_e_boundary with default bounds for boundary metabolite: acgam_e_boundary.\n", + "Adding exchange reaction EX_acmana_e_boundary with default bounds for boundary metabolite: acmana_e_boundary.\n", + "Adding exchange reaction EX_acmum_e_boundary with default bounds for boundary metabolite: acmum_e_boundary.\n", + "Adding exchange reaction EX_acnam_e_boundary with default bounds for boundary metabolite: acnam_e_boundary.\n", + "Adding exchange reaction EX_acolipa_e_boundary with default bounds for boundary metabolite: acolipa_e_boundary.\n", + "Adding exchange reaction EX_acser_e_boundary with default bounds for boundary metabolite: acser_e_boundary.\n", + "Adding exchange reaction EX_ade_e_boundary with default bounds for boundary metabolite: ade_e_boundary.\n", + "Adding exchange reaction EX_adn_e_boundary with default bounds for boundary metabolite: adn_e_boundary.\n", + "Adding exchange reaction EX_adocbl_e_boundary with default bounds for boundary metabolite: adocbl_e_boundary.\n", + "Adding exchange reaction EX_ag_e_boundary with default bounds for boundary metabolite: ag_e_boundary.\n", + "Adding exchange reaction EX_agm_e_boundary with default bounds for boundary metabolite: agm_e_boundary.\n", + "Adding exchange reaction EX_akg_e_boundary with default bounds for boundary metabolite: akg_e_boundary.\n", + "Adding exchange reaction EX_ala__B_e_boundary with default bounds for boundary metabolite: ala__B_e_boundary.\n", + "Adding exchange reaction EX_ala__D_e_boundary with default bounds for boundary metabolite: ala__D_e_boundary.\n", + "Adding exchange reaction EX_ala__L_e_boundary with default bounds for boundary metabolite: ala__L_e_boundary.\n", + "Adding exchange reaction EX_alaala_e_boundary with default bounds for boundary metabolite: alaala_e_boundary.\n", + "Adding exchange reaction EX_all__D_e_boundary with default bounds for boundary metabolite: all__D_e_boundary.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Adding exchange reaction EX_alltn_e_boundary with default bounds for boundary metabolite: alltn_e_boundary.\n", + "Adding exchange reaction EX_amp_e_boundary with default bounds for boundary metabolite: amp_e_boundary.\n", + "Adding exchange reaction EX_anhgm_e_boundary with default bounds for boundary metabolite: anhgm_e_boundary.\n", + "Adding exchange reaction EX_arab__L_e_boundary with default bounds for boundary metabolite: arab__L_e_boundary.\n", + "Adding exchange reaction EX_arbtn_e_boundary with default bounds for boundary metabolite: arbtn_e_boundary.\n", + "Adding exchange reaction EX_arbtn__fe3_e_boundary with default bounds for boundary metabolite: arbtn__fe3_e_boundary.\n", + "Adding exchange reaction EX_arg__L_e_boundary with default bounds for boundary metabolite: arg__L_e_boundary.\n", + "Adding exchange reaction EX_ascb__L_e_boundary with default bounds for boundary metabolite: ascb__L_e_boundary.\n", + "Adding exchange reaction EX_asn__L_e_boundary with default bounds for boundary metabolite: asn__L_e_boundary.\n", + "Adding exchange reaction EX_aso3_e_boundary with default bounds for boundary metabolite: aso3_e_boundary.\n", + "Adding exchange reaction EX_asp__L_e_boundary with default bounds for boundary metabolite: asp__L_e_boundary.\n", + "Adding exchange reaction EX_but_e_boundary with default bounds for boundary metabolite: but_e_boundary.\n", + "Adding exchange reaction EX_butso3_e_boundary with default bounds for boundary metabolite: butso3_e_boundary.\n", + "Adding exchange reaction EX_ca2_e_boundary with default bounds for boundary metabolite: ca2_e_boundary.\n", + "Adding exchange reaction EX_cbi_e_boundary with default bounds for boundary metabolite: cbi_e_boundary.\n", + "Adding exchange reaction EX_cbl1_e_boundary with default bounds for boundary metabolite: cbl1_e_boundary.\n", + "Adding exchange reaction EX_cd2_e_boundary with default bounds for boundary metabolite: cd2_e_boundary.\n", + "Adding exchange reaction EX_cgly_e_boundary with default bounds for boundary metabolite: cgly_e_boundary.\n", + "Adding exchange reaction EX_chol_e_boundary with default bounds for boundary metabolite: chol_e_boundary.\n", + "Adding exchange reaction EX_cit_e_boundary with default bounds for boundary metabolite: cit_e_boundary.\n", + "Adding exchange reaction EX_icit_e_boundary with default bounds for boundary metabolite: icit_e_boundary.\n", + "Adding exchange reaction EX_acon__C_e_boundary with default bounds for boundary metabolite: acon__C_e_boundary.\n", + "Adding exchange reaction EX_cl_e_boundary with default bounds for boundary metabolite: cl_e_boundary.\n", + "Adding exchange reaction EX_cmp_e_boundary with default bounds for boundary metabolite: cmp_e_boundary.\n", + "Adding exchange reaction EX_co2_e_boundary with default bounds for boundary metabolite: co2_e_boundary.\n", + "Adding exchange reaction EX_cobalt2_e_boundary with default bounds for boundary metabolite: cobalt2_e_boundary.\n", + "Adding exchange reaction EX_colipa_e_boundary with default bounds for boundary metabolite: colipa_e_boundary.\n", + "Adding exchange reaction EX_cpgn_e_boundary with default bounds for boundary metabolite: cpgn_e_boundary.\n", + "Adding exchange reaction EX_cpgn__un_e_boundary with default bounds for boundary metabolite: cpgn__un_e_boundary.\n", + "Adding exchange reaction EX_crn_e_boundary with default bounds for boundary metabolite: crn_e_boundary.\n", + "Adding exchange reaction EX_csn_e_boundary with default bounds for boundary metabolite: csn_e_boundary.\n", + "Adding exchange reaction EX_cu2_e_boundary with default bounds for boundary metabolite: cu2_e_boundary.\n", + "Adding exchange reaction EX_cu_e_boundary with default bounds for boundary metabolite: cu_e_boundary.\n", + "Adding exchange reaction EX_cyan_e_boundary with default bounds for boundary metabolite: cyan_e_boundary.\n", + "Adding exchange reaction EX_cynt_e_boundary with default bounds for boundary metabolite: cynt_e_boundary.\n", + "Adding exchange reaction EX_cys__D_e_boundary with default bounds for boundary metabolite: cys__D_e_boundary.\n", + "Adding exchange reaction EX_cys__L_e_boundary with default bounds for boundary metabolite: cys__L_e_boundary.\n", + "Adding exchange reaction EX_cysi__L_e_boundary with default bounds for boundary metabolite: cysi__L_e_boundary.\n", + "Adding exchange reaction EX_cytd_e_boundary with default bounds for boundary metabolite: cytd_e_boundary.\n", + "Adding exchange reaction EX_dad__2_e_boundary with default bounds for boundary metabolite: dad__2_e_boundary.\n", + "Adding exchange reaction EX_damp_e_boundary with default bounds for boundary metabolite: damp_e_boundary.\n", + "Adding exchange reaction EX_dca_e_boundary with default bounds for boundary metabolite: dca_e_boundary.\n", + "Adding exchange reaction EX_dcmp_e_boundary with default bounds for boundary metabolite: dcmp_e_boundary.\n", + "Adding exchange reaction EX_dcyt_e_boundary with default bounds for boundary metabolite: dcyt_e_boundary.\n", + "Adding exchange reaction EX_ddca_e_boundary with default bounds for boundary metabolite: ddca_e_boundary.\n", + "Adding exchange reaction EX_dgmp_e_boundary with default bounds for boundary metabolite: dgmp_e_boundary.\n", + "Adding exchange reaction EX_dgsn_e_boundary with default bounds for boundary metabolite: dgsn_e_boundary.\n", + "Adding exchange reaction EX_dha_e_boundary with default bounds for boundary metabolite: dha_e_boundary.\n", + "Adding exchange reaction EX_dimp_e_boundary with default bounds for boundary metabolite: dimp_e_boundary.\n", + "Adding exchange reaction EX_din_e_boundary with default bounds for boundary metabolite: din_e_boundary.\n", + "Adding exchange reaction EX_dms_e_boundary with default bounds for boundary metabolite: dms_e_boundary.\n", + "Adding exchange reaction EX_dmso_e_boundary with default bounds for boundary metabolite: dmso_e_boundary.\n", + "Adding exchange reaction EX_dopa_e_boundary with default bounds for boundary metabolite: dopa_e_boundary.\n", + "Adding exchange reaction EX_dtmp_e_boundary with default bounds for boundary metabolite: dtmp_e_boundary.\n", + "Adding exchange reaction EX_dump_e_boundary with default bounds for boundary metabolite: dump_e_boundary.\n", + "Adding exchange reaction EX_duri_e_boundary with default bounds for boundary metabolite: duri_e_boundary.\n", + "Adding exchange reaction EX_eca4colipa_e_boundary with default bounds for boundary metabolite: eca4colipa_e_boundary.\n", + "Adding exchange reaction EX_enlipa_e_boundary with default bounds for boundary metabolite: enlipa_e_boundary.\n", + "Adding exchange reaction EX_enter_e_boundary with default bounds for boundary metabolite: enter_e_boundary.\n", + "Adding exchange reaction EX_etha_e_boundary with default bounds for boundary metabolite: etha_e_boundary.\n", + "Adding exchange reaction EX_ethso3_e_boundary with default bounds for boundary metabolite: ethso3_e_boundary.\n", + "Adding exchange reaction EX_etoh_e_boundary with default bounds for boundary metabolite: etoh_e_boundary.\n", + "Adding exchange reaction EX_f6p_e_boundary with default bounds for boundary metabolite: f6p_e_boundary.\n", + "Adding exchange reaction EX_fald_e_boundary with default bounds for boundary metabolite: fald_e_boundary.\n", + "Adding exchange reaction EX_fe2_e_boundary with default bounds for boundary metabolite: fe2_e_boundary.\n", + "Adding exchange reaction EX_fe3_e_boundary with default bounds for boundary metabolite: fe3_e_boundary.\n", + "Adding exchange reaction EX_fe3dcit_e_boundary with default bounds for boundary metabolite: fe3dcit_e_boundary.\n", + "Adding exchange reaction EX_fe3dhbzs_e_boundary with default bounds for boundary metabolite: fe3dhbzs_e_boundary.\n", + "Adding exchange reaction EX_fe3hox_e_boundary with default bounds for boundary metabolite: fe3hox_e_boundary.\n", + "Adding exchange reaction EX_fe3hox__un_e_boundary with default bounds for boundary metabolite: fe3hox__un_e_boundary.\n", + "Adding exchange reaction EX_fecrm_e_boundary with default bounds for boundary metabolite: fecrm_e_boundary.\n", + "Adding exchange reaction EX_fecrm__un_e_boundary with default bounds for boundary metabolite: fecrm__un_e_boundary.\n", + "Adding exchange reaction EX_feenter_e_boundary with default bounds for boundary metabolite: feenter_e_boundary.\n", + "Adding exchange reaction EX_feoxam_e_boundary with default bounds for boundary metabolite: feoxam_e_boundary.\n", + "Adding exchange reaction EX_feoxam__un_e_boundary with default bounds for boundary metabolite: feoxam__un_e_boundary.\n", + "Adding exchange reaction EX_for_e_boundary with default bounds for boundary metabolite: for_e_boundary.\n", + "Adding exchange reaction EX_fru_e_boundary with default bounds for boundary metabolite: fru_e_boundary.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Adding exchange reaction EX_frulys_e_boundary with default bounds for boundary metabolite: frulys_e_boundary.\n", + "Adding exchange reaction EX_fruur_e_boundary with default bounds for boundary metabolite: fruur_e_boundary.\n", + "Adding exchange reaction EX_fuc__L_e_boundary with default bounds for boundary metabolite: fuc__L_e_boundary.\n", + "Adding exchange reaction EX_fum_e_boundary with default bounds for boundary metabolite: fum_e_boundary.\n", + "Adding exchange reaction EX_g1p_e_boundary with default bounds for boundary metabolite: g1p_e_boundary.\n", + "Adding exchange reaction EX_g3pc_e_boundary with default bounds for boundary metabolite: g3pc_e_boundary.\n", + "Adding exchange reaction EX_g3pe_e_boundary with default bounds for boundary metabolite: g3pe_e_boundary.\n", + "Adding exchange reaction EX_g3pg_e_boundary with default bounds for boundary metabolite: g3pg_e_boundary.\n", + "Adding exchange reaction EX_g3pi_e_boundary with default bounds for boundary metabolite: g3pi_e_boundary.\n", + "Adding exchange reaction EX_g3ps_e_boundary with default bounds for boundary metabolite: g3ps_e_boundary.\n", + "Adding exchange reaction EX_g6p_e_boundary with default bounds for boundary metabolite: g6p_e_boundary.\n", + "Adding exchange reaction EX_gal1p_e_boundary with default bounds for boundary metabolite: gal1p_e_boundary.\n", + "Adding exchange reaction EX_gal__bD_e_boundary with default bounds for boundary metabolite: gal__bD_e_boundary.\n", + "Adding exchange reaction EX_gal_e_boundary with default bounds for boundary metabolite: gal_e_boundary.\n", + "Adding exchange reaction EX_galct__D_e_boundary with default bounds for boundary metabolite: galct__D_e_boundary.\n", + "Adding exchange reaction EX_galctn__D_e_boundary with default bounds for boundary metabolite: galctn__D_e_boundary.\n", + "Adding exchange reaction EX_galctn__L_e_boundary with default bounds for boundary metabolite: galctn__L_e_boundary.\n", + "Adding exchange reaction EX_galt_e_boundary with default bounds for boundary metabolite: galt_e_boundary.\n", + "Adding exchange reaction EX_galur_e_boundary with default bounds for boundary metabolite: galur_e_boundary.\n", + "Adding exchange reaction EX_gam6p_e_boundary with default bounds for boundary metabolite: gam6p_e_boundary.\n", + "Adding exchange reaction EX_gam_e_boundary with default bounds for boundary metabolite: gam_e_boundary.\n", + "Adding exchange reaction EX_gbbtn_e_boundary with default bounds for boundary metabolite: gbbtn_e_boundary.\n", + "Adding exchange reaction EX_gdp_e_boundary with default bounds for boundary metabolite: gdp_e_boundary.\n", + "Adding exchange reaction EX_glc__D_e_boundary with default bounds for boundary metabolite: glc__D_e_boundary.\n", + "Adding exchange reaction EX_glcn_e_boundary with default bounds for boundary metabolite: glcn_e_boundary.\n", + "Adding exchange reaction EX_glcr_e_boundary with default bounds for boundary metabolite: glcr_e_boundary.\n", + "Adding exchange reaction EX_glcur1p_e_boundary with default bounds for boundary metabolite: glcur1p_e_boundary.\n", + "Adding exchange reaction EX_glcur_e_boundary with default bounds for boundary metabolite: glcur_e_boundary.\n", + "Adding exchange reaction EX_gln__L_e_boundary with default bounds for boundary metabolite: gln__L_e_boundary.\n", + "Adding exchange reaction EX_glu__L_e_boundary with default bounds for boundary metabolite: glu__L_e_boundary.\n", + "Adding exchange reaction EX_gly_e_boundary with default bounds for boundary metabolite: gly_e_boundary.\n", + "Adding exchange reaction EX_glyald_e_boundary with default bounds for boundary metabolite: glyald_e_boundary.\n", + "Adding exchange reaction EX_glyb_e_boundary with default bounds for boundary metabolite: glyb_e_boundary.\n", + "Adding exchange reaction EX_glyc2p_e_boundary with default bounds for boundary metabolite: glyc2p_e_boundary.\n", + "Adding exchange reaction EX_glyc3p_e_boundary with default bounds for boundary metabolite: glyc3p_e_boundary.\n", + "Adding exchange reaction EX_glyc__R_e_boundary with default bounds for boundary metabolite: glyc__R_e_boundary.\n", + "Adding exchange reaction EX_glyc_e_boundary with default bounds for boundary metabolite: glyc_e_boundary.\n", + "Adding exchange reaction EX_glyclt_e_boundary with default bounds for boundary metabolite: glyclt_e_boundary.\n", + "Adding exchange reaction EX_gmp_e_boundary with default bounds for boundary metabolite: gmp_e_boundary.\n", + "Adding exchange reaction EX_gsn_e_boundary with default bounds for boundary metabolite: gsn_e_boundary.\n", + "Adding exchange reaction EX_gthox_e_boundary with default bounds for boundary metabolite: gthox_e_boundary.\n", + "Adding exchange reaction EX_gthrd_e_boundary with default bounds for boundary metabolite: gthrd_e_boundary.\n", + "Adding exchange reaction EX_gtp_e_boundary with default bounds for boundary metabolite: gtp_e_boundary.\n", + "Adding exchange reaction EX_gua_e_boundary with default bounds for boundary metabolite: gua_e_boundary.\n", + "Adding exchange reaction EX_h2_e_boundary with default bounds for boundary metabolite: h2_e_boundary.\n", + "Adding exchange reaction EX_h2o2_e_boundary with default bounds for boundary metabolite: h2o2_e_boundary.\n", + "Adding exchange reaction EX_h2o_e_boundary with default bounds for boundary metabolite: h2o_e_boundary.\n", + "Adding exchange reaction EX_h2s_e_boundary with default bounds for boundary metabolite: h2s_e_boundary.\n", + "Adding exchange reaction EX_h_e_boundary with default bounds for boundary metabolite: h_e_boundary.\n", + "Adding exchange reaction EX_hacolipa_e_boundary with default bounds for boundary metabolite: hacolipa_e_boundary.\n", + "Adding exchange reaction EX_halipa_e_boundary with default bounds for boundary metabolite: halipa_e_boundary.\n", + "Adding exchange reaction EX_hdca_e_boundary with default bounds for boundary metabolite: hdca_e_boundary.\n", + "Adding exchange reaction EX_hdcea_e_boundary with default bounds for boundary metabolite: hdcea_e_boundary.\n", + "Adding exchange reaction EX_hg2_e_boundary with default bounds for boundary metabolite: hg2_e_boundary.\n", + "Adding exchange reaction EX_his__L_e_boundary with default bounds for boundary metabolite: his__L_e_boundary.\n", + "Adding exchange reaction EX_hom__L_e_boundary with default bounds for boundary metabolite: hom__L_e_boundary.\n", + "Adding exchange reaction EX_hxa_e_boundary with default bounds for boundary metabolite: hxa_e_boundary.\n", + "Adding exchange reaction EX_hxan_e_boundary with default bounds for boundary metabolite: hxan_e_boundary.\n", + "Adding exchange reaction EX_idon__L_e_boundary with default bounds for boundary metabolite: idon__L_e_boundary.\n", + "Adding exchange reaction EX_ile__L_e_boundary with default bounds for boundary metabolite: ile__L_e_boundary.\n", + "Adding exchange reaction EX_imp_e_boundary with default bounds for boundary metabolite: imp_e_boundary.\n", + "Adding exchange reaction EX_indole_e_boundary with default bounds for boundary metabolite: indole_e_boundary.\n", + "Adding exchange reaction EX_inost_e_boundary with default bounds for boundary metabolite: inost_e_boundary.\n", + "Adding exchange reaction EX_ins_e_boundary with default bounds for boundary metabolite: ins_e_boundary.\n", + "Adding exchange reaction EX_isetac_e_boundary with default bounds for boundary metabolite: isetac_e_boundary.\n", + "Adding exchange reaction EX_k_e_boundary with default bounds for boundary metabolite: k_e_boundary.\n", + "Adding exchange reaction EX_kdo2lipid4_e_boundary with default bounds for boundary metabolite: kdo2lipid4_e_boundary.\n", + "Adding exchange reaction EX_lac__D_e_boundary with default bounds for boundary metabolite: lac__D_e_boundary.\n", + "Adding exchange reaction EX_lac__L_e_boundary with default bounds for boundary metabolite: lac__L_e_boundary.\n", + "Adding exchange reaction EX_lcts_e_boundary with default bounds for boundary metabolite: lcts_e_boundary.\n", + "Adding exchange reaction EX_leu__L_e_boundary with default bounds for boundary metabolite: leu__L_e_boundary.\n", + "Adding exchange reaction EX_lipa__cold_e_boundary with default bounds for boundary metabolite: lipa__cold_e_boundary.\n", + "Adding exchange reaction EX_lipa_e_boundary with default bounds for boundary metabolite: lipa_e_boundary.\n", + "Adding exchange reaction EX_lys__L_e_boundary with default bounds for boundary metabolite: lys__L_e_boundary.\n", + "Adding exchange reaction EX_lyx__L_e_boundary with default bounds for boundary metabolite: lyx__L_e_boundary.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Adding exchange reaction EX_mal__D_e_boundary with default bounds for boundary metabolite: mal__D_e_boundary.\n", + "Adding exchange reaction EX_mal__L_e_boundary with default bounds for boundary metabolite: mal__L_e_boundary.\n", + "Adding exchange reaction EX_malt_e_boundary with default bounds for boundary metabolite: malt_e_boundary.\n", + "Adding exchange reaction EX_malthx_e_boundary with default bounds for boundary metabolite: malthx_e_boundary.\n", + "Adding exchange reaction EX_maltpt_e_boundary with default bounds for boundary metabolite: maltpt_e_boundary.\n", + "Adding exchange reaction EX_malttr_e_boundary with default bounds for boundary metabolite: malttr_e_boundary.\n", + "Adding exchange reaction EX_maltttr_e_boundary with default bounds for boundary metabolite: maltttr_e_boundary.\n", + "Adding exchange reaction EX_man6p_e_boundary with default bounds for boundary metabolite: man6p_e_boundary.\n", + "Adding exchange reaction EX_man_e_boundary with default bounds for boundary metabolite: man_e_boundary.\n", + "Adding exchange reaction EX_manglyc_e_boundary with default bounds for boundary metabolite: manglyc_e_boundary.\n", + "Adding exchange reaction EX_melib_e_boundary with default bounds for boundary metabolite: melib_e_boundary.\n", + "Adding exchange reaction EX_met__D_e_boundary with default bounds for boundary metabolite: met__D_e_boundary.\n", + "Adding exchange reaction EX_met__L_e_boundary with default bounds for boundary metabolite: met__L_e_boundary.\n", + "Adding exchange reaction EX_metsox__R__L_e_boundary with default bounds for boundary metabolite: metsox__R__L_e_boundary.\n", + "Adding exchange reaction EX_metsox__S__L_e_boundary with default bounds for boundary metabolite: metsox__S__L_e_boundary.\n", + "Adding exchange reaction EX_mg2_e_boundary with default bounds for boundary metabolite: mg2_e_boundary.\n", + "Adding exchange reaction EX_minohp_e_boundary with default bounds for boundary metabolite: minohp_e_boundary.\n", + "Adding exchange reaction EX_mmet_e_boundary with default bounds for boundary metabolite: mmet_e_boundary.\n", + "Adding exchange reaction EX_mn2_e_boundary with default bounds for boundary metabolite: mn2_e_boundary.\n", + "Adding exchange reaction EX_mnl_e_boundary with default bounds for boundary metabolite: mnl_e_boundary.\n", + "Adding exchange reaction EX_mobd_e_boundary with default bounds for boundary metabolite: mobd_e_boundary.\n", + "Adding exchange reaction EX_mso3_e_boundary with default bounds for boundary metabolite: mso3_e_boundary.\n", + "Adding exchange reaction EX_n2o_e_boundary with default bounds for boundary metabolite: n2o_e_boundary.\n", + "Adding exchange reaction EX_na1_e_boundary with default bounds for boundary metabolite: na1_e_boundary.\n", + "Adding exchange reaction EX_nac_e_boundary with default bounds for boundary metabolite: nac_e_boundary.\n", + "Adding exchange reaction EX_nh4_e_boundary with default bounds for boundary metabolite: nh4_e_boundary.\n", + "Adding exchange reaction EX_ni2_e_boundary with default bounds for boundary metabolite: ni2_e_boundary.\n", + "Adding exchange reaction EX_nmn_e_boundary with default bounds for boundary metabolite: nmn_e_boundary.\n", + "Adding exchange reaction EX_no2_e_boundary with default bounds for boundary metabolite: no2_e_boundary.\n", + "Adding exchange reaction EX_no3_e_boundary with default bounds for boundary metabolite: no3_e_boundary.\n", + "Adding exchange reaction EX_no_e_boundary with default bounds for boundary metabolite: no_e_boundary.\n", + "Adding exchange reaction EX_o2_e_boundary with default bounds for boundary metabolite: o2_e_boundary.\n", + "Adding exchange reaction EX_o2s_e_boundary with default bounds for boundary metabolite: o2s_e_boundary.\n", + "Adding exchange reaction EX_ocdca_e_boundary with default bounds for boundary metabolite: ocdca_e_boundary.\n", + "Adding exchange reaction EX_ocdcea_e_boundary with default bounds for boundary metabolite: ocdcea_e_boundary.\n", + "Adding exchange reaction EX_octa_e_boundary with default bounds for boundary metabolite: octa_e_boundary.\n", + "Adding exchange reaction EX_orn_e_boundary with default bounds for boundary metabolite: orn_e_boundary.\n", + "Adding exchange reaction EX_orot_e_boundary with default bounds for boundary metabolite: orot_e_boundary.\n", + "Adding exchange reaction EX_oaa_e_boundary with default bounds for boundary metabolite: oaa_e_boundary.\n", + "Adding exchange reaction EX_pacald_e_boundary with default bounds for boundary metabolite: pacald_e_boundary.\n", + "Adding exchange reaction EX_peamn_e_boundary with default bounds for boundary metabolite: peamn_e_boundary.\n", + "Adding exchange reaction EX_phe__L_e_boundary with default bounds for boundary metabolite: phe__L_e_boundary.\n", + "Adding exchange reaction EX_pheme_e_boundary with default bounds for boundary metabolite: pheme_e_boundary.\n", + "Adding exchange reaction EX_pi_e_boundary with default bounds for boundary metabolite: pi_e_boundary.\n", + "Adding exchange reaction EX_pnto__R_e_boundary with default bounds for boundary metabolite: pnto__R_e_boundary.\n", + "Adding exchange reaction EX_ppa_e_boundary with default bounds for boundary metabolite: ppa_e_boundary.\n", + "Adding exchange reaction EX_ppal_e_boundary with default bounds for boundary metabolite: ppal_e_boundary.\n", + "Adding exchange reaction EX_pppn_e_boundary with default bounds for boundary metabolite: pppn_e_boundary.\n", + "Adding exchange reaction EX_ppt_e_boundary with default bounds for boundary metabolite: ppt_e_boundary.\n", + "Adding exchange reaction EX_pro__L_e_boundary with default bounds for boundary metabolite: pro__L_e_boundary.\n", + "Adding exchange reaction EX_progly_e_boundary with default bounds for boundary metabolite: progly_e_boundary.\n", + "Adding exchange reaction EX_psclys_e_boundary with default bounds for boundary metabolite: psclys_e_boundary.\n", + "Adding exchange reaction EX_pser__L_e_boundary with default bounds for boundary metabolite: pser__L_e_boundary.\n", + "Adding exchange reaction EX_ptrc_e_boundary with default bounds for boundary metabolite: ptrc_e_boundary.\n", + "Adding exchange reaction EX_pyr_e_boundary with default bounds for boundary metabolite: pyr_e_boundary.\n", + "Adding exchange reaction EX_r5p_e_boundary with default bounds for boundary metabolite: r5p_e_boundary.\n", + "Adding exchange reaction EX_rib__D_e_boundary with default bounds for boundary metabolite: rib__D_e_boundary.\n", + "Adding exchange reaction EX_rmn_e_boundary with default bounds for boundary metabolite: rmn_e_boundary.\n", + "Adding exchange reaction EX_sbt__D_e_boundary with default bounds for boundary metabolite: sbt__D_e_boundary.\n", + "Adding exchange reaction EX_ser__D_e_boundary with default bounds for boundary metabolite: ser__D_e_boundary.\n", + "Adding exchange reaction EX_ser__L_e_boundary with default bounds for boundary metabolite: ser__L_e_boundary.\n", + "Adding exchange reaction EX_skm_e_boundary with default bounds for boundary metabolite: skm_e_boundary.\n", + "Adding exchange reaction EX_so2_e_boundary with default bounds for boundary metabolite: so2_e_boundary.\n", + "Adding exchange reaction EX_so3_e_boundary with default bounds for boundary metabolite: so3_e_boundary.\n", + "Adding exchange reaction EX_so4_e_boundary with default bounds for boundary metabolite: so4_e_boundary.\n", + "Adding exchange reaction EX_spmd_e_boundary with default bounds for boundary metabolite: spmd_e_boundary.\n", + "Adding exchange reaction EX_succ_e_boundary with default bounds for boundary metabolite: succ_e_boundary.\n", + "Adding exchange reaction EX_sucr_e_boundary with default bounds for boundary metabolite: sucr_e_boundary.\n", + "Adding exchange reaction EX_sulfac_e_boundary with default bounds for boundary metabolite: sulfac_e_boundary.\n", + "Adding exchange reaction EX_tartr__L_e_boundary with default bounds for boundary metabolite: tartr__L_e_boundary.\n", + "Adding exchange reaction EX_taur_e_boundary with default bounds for boundary metabolite: taur_e_boundary.\n", + "Adding exchange reaction EX_tcynt_e_boundary with default bounds for boundary metabolite: tcynt_e_boundary.\n", + "Adding exchange reaction EX_thm_e_boundary with default bounds for boundary metabolite: thm_e_boundary.\n", + "Adding exchange reaction EX_thr__L_e_boundary with default bounds for boundary metabolite: thr__L_e_boundary.\n", + "Adding exchange reaction EX_thrp_e_boundary with default bounds for boundary metabolite: thrp_e_boundary.\n", + "Adding exchange reaction EX_thym_e_boundary with default bounds for boundary metabolite: thym_e_boundary.\n", + "Adding exchange reaction EX_thymd_e_boundary with default bounds for boundary metabolite: thymd_e_boundary.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Adding exchange reaction EX_tma_e_boundary with default bounds for boundary metabolite: tma_e_boundary.\n", + "Adding exchange reaction EX_tmao_e_boundary with default bounds for boundary metabolite: tmao_e_boundary.\n", + "Adding exchange reaction EX_tre_e_boundary with default bounds for boundary metabolite: tre_e_boundary.\n", + "Adding exchange reaction EX_trp__L_e_boundary with default bounds for boundary metabolite: trp__L_e_boundary.\n", + "Adding exchange reaction EX_tsul_e_boundary with default bounds for boundary metabolite: tsul_e_boundary.\n", + "Adding exchange reaction EX_ttdca_e_boundary with default bounds for boundary metabolite: ttdca_e_boundary.\n", + "Adding exchange reaction EX_ttdcea_e_boundary with default bounds for boundary metabolite: ttdcea_e_boundary.\n", + "Adding exchange reaction EX_tungs_e_boundary with default bounds for boundary metabolite: tungs_e_boundary.\n", + "Adding exchange reaction EX_tym_e_boundary with default bounds for boundary metabolite: tym_e_boundary.\n", + "Adding exchange reaction EX_tyr__L_e_boundary with default bounds for boundary metabolite: tyr__L_e_boundary.\n", + "Adding exchange reaction EX_tyrp_e_boundary with default bounds for boundary metabolite: tyrp_e_boundary.\n", + "Adding exchange reaction EX_uacgam_e_boundary with default bounds for boundary metabolite: uacgam_e_boundary.\n", + "Adding exchange reaction EX_udpacgal_e_boundary with default bounds for boundary metabolite: udpacgal_e_boundary.\n", + "Adding exchange reaction EX_udpg_e_boundary with default bounds for boundary metabolite: udpg_e_boundary.\n", + "Adding exchange reaction EX_udpgal_e_boundary with default bounds for boundary metabolite: udpgal_e_boundary.\n", + "Adding exchange reaction EX_udpglcur_e_boundary with default bounds for boundary metabolite: udpglcur_e_boundary.\n", + "Adding exchange reaction EX_ump_e_boundary with default bounds for boundary metabolite: ump_e_boundary.\n", + "Adding exchange reaction EX_ura_e_boundary with default bounds for boundary metabolite: ura_e_boundary.\n", + "Adding exchange reaction EX_urea_e_boundary with default bounds for boundary metabolite: urea_e_boundary.\n", + "Adding exchange reaction EX_uri_e_boundary with default bounds for boundary metabolite: uri_e_boundary.\n", + "Adding exchange reaction EX_val__L_e_boundary with default bounds for boundary metabolite: val__L_e_boundary.\n", + "Adding exchange reaction EX_xan_e_boundary with default bounds for boundary metabolite: xan_e_boundary.\n", + "Adding exchange reaction EX_xmp_e_boundary with default bounds for boundary metabolite: xmp_e_boundary.\n", + "Adding exchange reaction EX_xtsn_e_boundary with default bounds for boundary metabolite: xtsn_e_boundary.\n", + "Adding exchange reaction EX_xyl__D_e_boundary with default bounds for boundary metabolite: xyl__D_e_boundary.\n", + "Adding exchange reaction EX_xylu__L_e_boundary with default bounds for boundary metabolite: xylu__L_e_boundary.\n", + "Adding exchange reaction EX_zn2_e_boundary with default bounds for boundary metabolite: zn2_e_boundary.\n", + "Adding exchange reaction EX_AEP_e_boundary with default bounds for boundary metabolite: AEP_e_boundary.\n", + "Adding exchange reaction EX_4hoxpac_e_boundary with default bounds for boundary metabolite: 4hoxpac_e_boundary.\n", + "Adding exchange reaction EX_remnant1_e_boundary with default bounds for boundary metabolite: remnant1_e_boundary.\n", + "Adding exchange reaction EX_colipa20Oag_e_boundary with default bounds for boundary metabolite: colipa20Oag_e_boundary.\n", + "Adding exchange reaction EX_salchs4_e_boundary with default bounds for boundary metabolite: salchs4_e_boundary.\n", + "Adding exchange reaction EX_salchs4fe_e_boundary with default bounds for boundary metabolite: salchs4fe_e_boundary.\n", + "Adding exchange reaction EX_salchsx_e_boundary with default bounds for boundary metabolite: salchsx_e_boundary.\n", + "Adding exchange reaction EX_tag__D_e_boundary with default bounds for boundary metabolite: tag__D_e_boundary.\n", + "Adding exchange reaction EX_airs_e_boundary with default bounds for boundary metabolite: airs_e_boundary.\n", + "Adding exchange reaction EX_pep_e_boundary with default bounds for boundary metabolite: pep_e_boundary.\n", + "Adding exchange reaction EX_2pg_e_boundary with default bounds for boundary metabolite: 2pg_e_boundary.\n", + "Adding exchange reaction EX_3pg_e_boundary with default bounds for boundary metabolite: 3pg_e_boundary.\n", + "Adding exchange reaction EX_tet_e_boundary with default bounds for boundary metabolite: tet_e_boundary.\n", + "Adding exchange reaction EX_foam_e_boundary with default bounds for boundary metabolite: foam_e_boundary.\n", + "Adding exchange reaction EX_tartr__D_e_boundary with default bounds for boundary metabolite: tartr__D_e_boundary.\n", + "Adding exchange reaction EX_4abz_e_boundary with default bounds for boundary metabolite: 4abz_e_boundary.\n", + "Adding exchange reaction EX_feroxB_e_boundary with default bounds for boundary metabolite: feroxB_e_boundary.\n", + "Adding exchange reaction EX_feroxBfe_e_boundary with default bounds for boundary metabolite: feroxBfe_e_boundary.\n", + "Adding exchange reaction EX_feroxE_e_boundary with default bounds for boundary metabolite: feroxE_e_boundary.\n", + "Adding exchange reaction EX_feroxEfe_e_boundary with default bounds for boundary metabolite: feroxEfe_e_boundary.\n", + "Adding exchange reaction EX_feroxG_e_boundary with default bounds for boundary metabolite: feroxG_e_boundary.\n", + "Adding exchange reaction EX_feroxGfe_e_boundary with default bounds for boundary metabolite: feroxGfe_e_boundary.\n", + "Adding exchange reaction EX_drib_e_boundary with default bounds for boundary metabolite: drib_e_boundary.\n", + "Adding exchange reaction EX_dxyl_e_boundary with default bounds for boundary metabolite: dxyl_e_boundary.\n", + "Adding exchange reaction EX_salchs2fe_e_boundary with default bounds for boundary metabolite: salchs2fe_e_boundary.\n", + "Adding exchange reaction EX_rnam_e_boundary with default bounds for boundary metabolite: rnam_e_boundary.\n", + "Adding exchange reaction EX_colipaOA_e_boundary with default bounds for boundary metabolite: colipaOA_e_boundary.\n", + "Adding exchange reaction EX_udcpo4_e_boundary with default bounds for boundary metabolite: udcpo4_e_boundary.\n", + "Adding exchange reaction EX_tcb_e_boundary with default bounds for boundary metabolite: tcb_e_boundary.\n", + "Adding exchange reaction EX_fe3dhbzs3_e_boundary with default bounds for boundary metabolite: fe3dhbzs3_e_boundary.\n", + "Adding exchange reaction EX_23dhbzs3_e_boundary with default bounds for boundary metabolite: 23dhbzs3_e_boundary.\n", + "Adding exchange reaction EX_guln__L_e_boundary with default bounds for boundary metabolite: guln__L_e_boundary.\n", + "Adding exchange reaction EX_udcpo5_e_boundary with default bounds for boundary metabolite: udcpo5_e_boundary.\n", + "Adding exchange reaction EX_4hthr_e_boundary with default bounds for boundary metabolite: 4hthr_e_boundary.\n", + "Adding exchange reaction EX_salchs2_e_boundary with default bounds for boundary metabolite: salchs2_e_boundary.\n", + "Adding exchange reaction EX_tton_e_boundary with default bounds for boundary metabolite: tton_e_boundary.\n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Use of GENE ASSOCIATION or GENE_ASSOCIATION in the notes element is discouraged, use fbc:gpr instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding LOWER_BOUND and UPPER_BOUND in KineticLaw is discouraged, use fbc:fluxBounds instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n", + "Encoding OBJECTIVE_COEFFICIENT in KineticLaw is discouraged, use fbc:fluxObjective instead: \n" + ] + } + ], "source": [ - "salmonella = cobra.test.create_test_model('salmonella')\n", + "salmonella = load_model('salmonella')\n", "nominal = salmonella.optimize()\n", "loopless = loopless_solution(salmonella)" ] @@ -79,11 +13022,7 @@ { "cell_type": "code", "execution_count": 3, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [], "source": [ "import pandas\n", @@ -93,16 +13032,12 @@ { "cell_type": "code", "execution_count": 4, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 4, @@ -111,13 +13046,15 @@ }, { "data": { - "application/pdf": "JVBERi0xLjQKJazcIKu6CjEgMCBvYmoKPDwgL1BhZ2VzIDIgMCBSIC9UeXBlIC9DYXRhbG9nID4+\nCmVuZG9iago4IDAgb2JqCjw8IC9TaGFkaW5nIDYgMCBSIC9Qcm9jU2V0IFsgL1BERiAvVGV4dCAv\nSW1hZ2VCIC9JbWFnZUMgL0ltYWdlSSBdCi9Gb250IDMgMCBSIC9QYXR0ZXJuIDUgMCBSIC9YT2Jq\nZWN0IDcgMCBSIC9FeHRHU3RhdGUgNCAwIFIgPj4KZW5kb2JqCjEwIDAgb2JqCjw8IC9SZXNvdXJj\nZXMgOCAwIFIgL1BhcmVudCAyIDAgUiAvTWVkaWFCb3ggWyAwIDAgMzk0LjQ2NTYyNSAyNjUuNjgz\nNzUgXQovR3JvdXAgPDwgL0NTIC9EZXZpY2VSR0IgL1MgL1RyYW5zcGFyZW5jeSAvVHlwZSAvR3Jv\ndXAgPj4gL0Fubm90cyBbIF0KL0NvbnRlbnRzIDkgMCBSIC9UeXBlIC9QYWdlID4+CmVuZG9iago5\nIDAgb2JqCjw8IC9MZW5ndGggMTEgMCBSIC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4\nnO1dSZMkt3W+96+oo31AEngLlqMYshnhCB8kM+yDQgcFRdFikJQlhqS/7+8hs7syJ4BC5XRVT/aw\nSM2I9eorZGJ7C/CWcPr+6YtfhdN3P5/86Xv8+efpd6ff4///eAqnr05f/Prbf/z5m29/+9WXp29+\nfvKg//jERSaJGknx8Yf1R4o6xcxJQfabT//79PTTE56CX3yFhr97epI8lflXnCYVg6HpzFP6gPrD\nmkoqU1naPLewpuJJf3r666nRPLNM+UQhTSKnv317+p/TT6cvfkW161OgoDFHAs6jO8s/6clPyWvO\nxErl9Lfv8O7f4895kLq/PG1++duvnq5E/u27p79ipGyoA15WJp+5cEocyymIYiBy8lRSkNM3P56+\n+E9/+vVfXvD294P6oD6oD+qD+i6pE5cgkSQL4wNpDKmk7LmBdX7yFEuSDJlgn0h9khRLboMZUjBQ\nkpitZVGGOAraAgNLhSCvIJeuafgMvozFtxBknkj8/PoqXgQCLbQb3qIxEl59D+tDoZhSZJk/UfQl\nqMbma3jPWVmVUv1ASiFzaLWM3qVSfMgU64RgsINQhjR+3US7zUy7wVR/9suNNSvFkGNtWKJ48kyd\n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\nAfC9+Rye/nn63en3oPwRf76yb56STBQICqqV+1CIBj39uCZKVar19MPT05dPS4vh9M+nv9ZHO3t2\n5ClGNYW9WD4ZmmqenKcvvz598e+YZX/6+k9PeeKUi7cAYHz+49O/sP/X09ffP/3b12jJJFPtwct/\n4Odf/Prb7//w33//rz/89LP78c8//f3npWPPL1G784S3nHJNj7J+/zX1ig4Ey3ScLTOxwl64tgd0\nox7ENFnKKC2bHqyo1/RA41RqPYNAkO5X9iDcpgcUxK70C+d1D9bUXg82r0fBDvOFFMZSLEsf7DXr\nW57wltunRj8ln6w+3PqpK+p1T1XLdwdTM7B6Wj01tB/LPk3MwTKYrB67pl71WJhqU7FEAlYKQFaP\npc5j1cpbm9vZ5rEr6nWPFfy4QLLmelN4fiy/PHaDD8VydtclUyyIP9AM/+Evf/m/H779+efmu0qe\nSlT7DcaWGDY4411FJ/mQemFF2w5OwfIcqdVPSZZAbM4z8jaM5dyJLFMSjdhW606cqVd1ImO6Jado\nBQvpzXjLuRMh6GTa1LYTZ+pVnQgh4Jce84Cu5zfjL6te4NVTtKoY226cyZdXv07Rzz8I2H0hU8Lf\ncoHJrB6dImSEsabto8/ky2wG20diHcREE9QYtlK8YHMXWM354eTjBJ6WgF8/fEW+8uFYfNjPkosI\n0UWGs3o4GA575g8GfUW+9uHMk0KtpxQFkvkC25k1PlNssMuKcTVoF1Nga+XrH5/8sr5++gsWzR9+\neG6CTv+BLz5UdLDG/vHnb7797Vdfnr75edWtFRtd9RW8qeSFjf7XE2fGwvoQvqJ+gG+23mrkA/S5\nmUut/+bp/wFKYXyBCmVuZHN0cmVhbQplbmRvYmoKMTEgMCBvYmoKNzQ4MAplbmRvYmoKMTcgMCBv\nYmoKPDwgL0xlbmd0aCAzNyAvU3VidHlwZSAvRm9ybSAvVHlwZSAvWE9iamVjdCAvRmlsdGVyIC9G\nbGF0ZURlY29kZQovQkJveCBbIC0xMDIxIC00NjMgMTc5NCAxMjMzIF0gPj4Kc3RyZWFtCnic4zI0\nMFMwNjVVyOUyNzYCs3LALCNzIyALJItgQWTTAAFfCgoKZW5kc3RyZWFtCmVuZG9iagoxOCAwIG9i\nago8PCAvTGVuZ3RoIDMzMiAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJlYW0KeJwtUjmOJDEM\ny/0KfmAA6/Lxnh5M1Pv/dElVBQWqbMs85HLDRCV+LJDbUWvi10ZmoMLwr6vMhe9I28g6iGvIRVzJ\nlsJnRCzkMcQ8xILv2/gZHvmszMmzB8Yv2fcZVuypCctCxosztMMqjsMqyLFg6yKqe3hTpMOpJNjj\ni/8+xXMXgha+I2jAL/nnqyN4vqRF2j1m27RbD5ZpR5UUloPtac7L5EvrLFfH4/kg2d4VO0JqV4Ci\nMHfGeS6OMm1lRGthZ4OkxsX25tiPpQRd6MZlpDgC+ZkqwgNKmsxsoiD+yOkhpzIQpq7pSie3URV3\n6slcs7m8nUkyW/dFis0UzuvCmfV3mDKrzTt5lhOlTkX4GXu2BA2d4+rZa5mFRrc5wSslfDZ2enLy\nvZpZD8mpSEgV07oKTqPIFEvYlviaiprS1Mvw35f3GX//ATPifAEKZW5kc3RyZWFtCmVuZG9iagox\nOSAwIG9iago8PCAvTGVuZ3RoIDE2MSAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJlYW0KeJxF\nkEsSwyAMQ/ecQkfwRwZ8nnS6Su+/rSFNs4CnsUAGdycEqbUFE9EFL21Lugs+WwnOxnjoNm41EuQE\ndYBWpONolFJ9ucVplXTxaDZzKwutEx1mDnqUoxmgEDoV3u2i5HKm7s75R3D1X/VHse6czcTAZOUO\nhGb1Ke58mx1RXd1kf9JjbtZrfxX2qrC0rKXlhNvOXTOgBO6pHO39BalzOoQKZW5kc3RyZWFtCmVu\nZG9iagoyMCAwIG9iago8PCAvTGVuZ3RoIDIxMCAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJl\nYW0KeJw1UMsNQzEIu2cKFqgUAoFknla9df9rbdA7YRH/QljIlAh5qcnOKelLPjpMD7Yuv7EiC611\nJezKmiCeK++hmbKx0djiYHAaJl6AFjdg6GmNGjV04YKmLpVCgcUl8Jl8dXvovk8ZeGoZcnYEEUPJ\nYAlquhZNWLQ8n5BOAeL/fsPuLeShkvPKnhv5G5zt8DuzbuEnanYi0XIVMtSzNMcYCBNFHjx5RaZw\n4rPWd9U0EtRmC06WAa5OP4wOAGAiXlmA7K5EOUvSjqWfb7zH9w9AAFO0CmVuZHN0cmVhbQplbmRv\nYmoKMjEgMCBvYmoKPDwgL0xlbmd0aCAyMTQgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFt\nCnicPVC7EUMxCOs9BQvkznztN8/Lpcv+bSScpEI2QhKUmkzJlIc6ypKsKU8dPktih7yH5W5kNiUq\nRS+TsCX30ArxfYnmFPfd1ZazQzSXaDl+CzMqqhsd00s2mnAqE7qg3MMz+g1tdANWhx6xWyDQpGDX\ntiByxw8YDMGZE4siDEpNBv+tcvdS3O89HG+iiJR08K755fTLzy28Tj2ORLq9+YprcaY6CkRwRmry\ninRhxbLIQ6TVBDU9A2u1AK7eevk3aEd0GYDsE4njNKUcQ//WuMfrA4eKUvQKZW5kc3RyZWFtCmVu\nZG9iagoyMiAwIG9iago8PCAvTGVuZ3RoIDMzOCAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJl\nYW0KeJw1Ujmu3UAM630KXSCAds2c5wWpfu7fhpRfCkO0VoqajhaVafllIVUtky6/7UltiRvy98kK\niROSVyXapQyRUPk8hVS/Z8u8vtacESBLlQqTk5LHJQv+DJfeLhznY2s/jyN3PXpgVYyEEgHLFBOj\na1k6u8Oajfw8pgE/4hFyrli3HGMVSA26cdoV70PzecgaIGaYlooKXVaJFn5B8aBHrX33WFRYINHt\nHElwjI1QkYB2gdpIDDmzFruoL/pZlJgJdO2LIu6iwBJJzJxiXTr6Dz50LKi/NuPLr45K+kgra0za\nd6NJacwik66XRW83b309uEDzLsp/Xs0gQVPWKGl80KqdYyiaGWWFdxyaDDTHHIfMEzyHMxKU9H0o\nfl9LJrookT8ODaF/Xx6jjJwGbwFz0Z+2igMX8dlhrxxghdLFmuR9QCoTemD6/9f4ef78Axy2gFQK\nZW5kc3RyZWFtCmVuZG9iagoyMyAwIG9iago8PCAvTGVuZ3RoIDgwIC9GaWx0ZXIgL0ZsYXRlRGVj\nb2RlID4+CnN0cmVhbQp4nEWMuw3AMAhEe6ZgBH4mZp8olbN/GyBK3HBPunu4OhIyU95hhocEngws\nhlPxBpmjYDW4RlKNneyjsG5fdYHmelOr9fcHKk92dnE9zcsZ9AplbmRzdHJlYW0KZW5kb2JqCjI0\nIDAgb2JqCjw8IC9MZW5ndGggNDUgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicMzK3\nUDBQsDQBEoYWJgrmZgYKKYZclhBWLhdMLAfMAtGWcAoingYAn30MtQplbmRzdHJlYW0KZW5kb2Jq\nCjI1IDAgb2JqCjw8IC9MZW5ndGggNjggL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnic\nMzK3UDBQsDQBEoYWJgrmZgYKKYZcQL6piblCLhdIDMTKAbMMgLQlnIKIW0I0QZSCWBClZiZmEEk4\nAyKXBgDJtBXlCmVuZHN0cmVhbQplbmRvYmoKMjYgMCBvYmoKPDwgL0xlbmd0aCAzMDQgL0ZpbHRl\nciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicPZI7ksMwDEN7nYIXyIz4k+TzZCeV9/7tPjLJVoBJ\niQAoL3WZsqY8IGkmCf/R4eFiO+V32J7NzMC1RC8TyynPoSvE3EX5spmNurI6xarDMJ1b9Kici4ZN\nk5rnKksZtwuew7WJ55Z9xA83NKgHdY1Lwg3d1WhZCs1wdf87vUfZdzU8F5tU6tQXjxdRFeb5IU+i\nh+lK4nw8KCFcezBGFhLkU9FAjrNcrfJeQvYOtxqywkFqSeezJzzYdXpPLm4XzRAPZLlU+E5R7O3Q\nM77sSgk9ErbhWO59O5qx6RqbOOx+70bWyoyuaCF+yFcn6yVg3FMmRRJkTrZYbovVnu6hKKZzhnMZ\nIOrZioZS5mJXq38MO28sL9ksyJTMCzJGp02eOHjIfo2a9HmV53j9AWzzczsKZW5kc3RyZWFtCmVu\nZG9iagoyNyAwIG9iago8PCAvTGVuZ3RoIDI1NSAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJl\nYW0KeJxFkUuSAyAIRPeegiOA/OQ8mZpVcv/tNJhMNnaXqP2ESiOmEiznFHkw/cjyzWS26bUcq52N\nAooiFMzkKvRYgdWdKeLMtUS19bEyctzpHYPiDeeunFSyuFHGOqo6FTim58r6qu78uCzKviOHMgVs\n1jkONnDltmGME6PNVneH+0SQp5Opo+J2kGz4g5PGvsrVFbhONvvqJRgHgn6hCUzyTaB1hkDj5il6\ncgn28XG780Cwt7wJpGwI5MgQjA5Bu06uf3Hr/N7/OsOd59oMV4538TtMa7vjLzHJirmARe4U1PM9\nF63rDB3vyZljctN9Q+dcsMvdQabP/B/r9w9QimaICmVuZHN0cmVhbQplbmRvYmoKMjggMCBvYmoK\nPDwgL0xlbmd0aCAyMzYgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicTVBLbkQhDNtz\nilzgSSQhAc5D1VXn/tuxw1TtKoYYf0gP6bJVHutTYnWJ7PKlTZfKMnkVqOVP2/9RDAJu/9DIQbS3\njJ1i5hLWxcIkPOU0Ixsn1ywfjztPG2aFxsSN450uGWCfFgE1W5XNgTltOjdAupAat6qz3mRQDCLq\nQs0Hky6cp9GXiDmeqGBKdya1kBtcPtWhA3FavQq5Y4uTb8QcWaHAYdBMcdZfAdaoybJZyCBJhiHO\nfaN7lAqNqMp5KxXCD5OhEfWG1aAGlbmFoqnlkvwd2gIwBbaMdekMSoGqAMHfKqd9vwEkjV1TCmVu\nZHN0cmVhbQplbmRvYmoKMjkgMCBvYmoKPDwgL0xlbmd0aCAyNDggL0ZpbHRlciAvRmxhdGVEZWNv\nZGUgPj4Kc3RyZWFtCnicLVE5kgNBCMvnFXpCc9PvscuR9//pCsoBg4ZDIDotcVDGTxCWK97yyFW0\n4e+ZGMF3waHfynUbFjkQFUjSGFRNqF28Hr0HdhxmAvOkNSyDGesDP2MKN3pxeEzG2e11GTUEe9dr\nT2ZQMisXccnEBVN12MiZw0+mjAvtXM8NyLkR1mUYpJuVxoyEI00hUkih6iapM0GQBKOrUaONHMV+\n6csjnWFVI2oM+1xL29dzE84aNDsWqzw5pUdXnMvJxQsrB/28zcBFVBqrPBAScL/bQ/2c7OQ33tK5\ns8X0+F5zsrwwFVjx5rUbkE21+Dcv4vg94+v5/AOopVsWCmVuZHN0cmVhbQplbmRvYmoKMzAgMCBv\nYmoKPDwgL0xlbmd0aCAyNDUgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicRVC7jUMx\nDOs9BRcIYP0se553SJXbvz1KRnCFIVo/kloSmIjASwyxlG/iR0ZBPQu/F4XiM8TPF4VBzoSkQJz1\nGRCZeIbaRm7odnDOvMMzjDkCF8VacKbTmfZc2OScBycQzm2U8YxCuklUFXFUn3FM8aqyz43XgaW1\nbLPTkewhjYRLSSUml35TKv+0KVsq6NpFE7BI5IGTTTThLD9DkmLMoJRR9zC1jvRxspFHddDJ2Zw5\nLZnZ7qftTHwPWCaZUeUpnecyPiep81xOfe6zHdHkoqVV+5z93pGW8iK126HV6VclUZmN1aeQuDz/\njJ/x/gOOoFk+CmVuZHN0cmVhbQplbmRvYmoKMTUgMCBvYmoKPDwgL1N1YnR5cGUgL1R5cGUzIC9C\nYXNlRm9udCAvRGVqYVZ1U2FucyAvTmFtZSAvRGVqYVZ1U2FucyAvRmlyc3RDaGFyIDAKL1R5cGUg\nL0ZvbnQgL0NoYXJQcm9jcyAxNiAwIFIgL0ZvbnRCQm94IFsgLTEwMjEgLTQ2MyAxNzk0IDEyMzMg\nXQovRW5jb2RpbmcgPDwKL0RpZmZlcmVuY2VzIFsgNDggL3plcm8gL29uZSAvdHdvIC90aHJlZSA5\nNyAvYSAxMDEgL2UgMTA1IC9pIDEwOCAvbCAvbSAvbiAvbyAvcCAxMTUgL3MKXQovVHlwZSAvRW5j\nb2RpbmcgPj4KL0ZvbnREZXNjcmlwdG9yIDE0IDAgUiAvTGFzdENoYXIgMjU1IC9Gb250TWF0cml4\nIFsgMC4wMDEgMCAwIDAuMDAxIDAgMCBdCi9XaWR0aHMgMTMgMCBSID4+CmVuZG9iagoxNCAwIG9i\nago8PCAvU3RlbVYgMCAvTWF4V2lkdGggMTM0MiAvRm9udEJCb3ggWyAtMTAyMSAtNDYzIDE3OTQg\nMTIzMyBdCi9Gb250TmFtZSAvRGVqYVZ1U2FucyAvWEhlaWdodCAwIC9GbGFncyAzMiAvQ2FwSGVp\nZ2h0IDAgL0FzY2VudCA5MjkKL0l0YWxpY0FuZ2xlIDAgL0Rlc2NlbnQgLTIzNiAvVHlwZSAvRm9u\ndERlc2NyaXB0b3IgPj4KZW5kb2JqCjEzIDAgb2JqClsgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAg\nNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2\nMDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCAzMTggNDAxIDQ2\nMCA4MzggNjM2Cjk1MCA3ODAgMjc1IDM5MCAzOTAgNTAwIDgzOCAzMTggMzYxIDMxOCAzMzcgNjM2\nIDYzNiA2MzYgNjM2IDYzNiA2MzYgNjM2IDYzNgo2MzYgNjM2IDMzNyAzMzcgODM4IDgzOCA4Mzgg\nNTMxIDEwMDAgNjg0IDY4NiA2OTggNzcwIDYzMiA1NzUgNzc1IDc1MiAyOTUKMjk1IDY1NiA1NTcg\nODYzIDc0OCA3ODcgNjAzIDc4NyA2OTUgNjM1IDYxMSA3MzIgNjg0IDk4OSA2ODUgNjExIDY4NSAz\nOTAgMzM3CjM5MCA4MzggNTAwIDUwMCA2MTMgNjM1IDU1MCA2MzUgNjE1IDM1MiA2MzUgNjM0IDI3\nOCAyNzggNTc5IDI3OCA5NzQgNjM0IDYxMgo2MzUgNjM1IDQxMSA1MjEgMzkyIDYzNCA1OTIgODE4\nIDU5MiA1OTIgNTI1IDYzNiAzMzcgNjM2IDgzOCA2MDAgNjM2IDYwMCAzMTgKMzUyIDUxOCAxMDAw\nIDUwMCA1MDAgNTAwIDEzNDIgNjM1IDQwMCAxMDcwIDYwMCA2ODUgNjAwIDYwMCAzMTggMzE4IDUx\nOCA1MTgKNTkwIDUwMCAxMDAwIDUwMCAxMDAwIDUyMSA0MDAgMTAyMyA2MDAgNTI1IDYxMSAzMTgg\nNDAxIDYzNiA2MzYgNjM2IDYzNiAzMzcKNTAwIDUwMCAxMDAwIDQ3MSA2MTIgODM4IDM2MSAxMDAw\nIDUwMCA1MDAgODM4IDQwMSA0MDEgNTAwIDYzNiA2MzYgMzE4IDUwMAo0MDEgNDcxIDYxMiA5Njkg\nOTY5IDk2OSA1MzEgNjg0IDY4NCA2ODQgNjg0IDY4NCA2ODQgOTc0IDY5OCA2MzIgNjMyIDYzMiA2\nMzIKMjk1IDI5NSAyOTUgMjk1IDc3NSA3NDggNzg3IDc4NyA3ODcgNzg3IDc4NyA4MzggNzg3IDcz\nMiA3MzIgNzMyIDczMiA2MTEgNjA1CjYzMCA2MTMgNjEzIDYxMyA2MTMgNjEzIDYxMyA5ODIgNTUw\nIDYxNSA2MTUgNjE1IDYxNSAyNzggMjc4IDI3OCAyNzggNjEyIDYzNAo2MTIgNjEyIDYxMiA2MTIg\nNjEyIDgzOCA2MTIgNjM0IDYzNCA2MzQgNjM0IDU5MiA2MzUgNTkyIF0KZW5kb2JqCjE2IDAgb2Jq\nCjw8IC9zIDE4IDAgUiAvbiAxOSAwIFIgL3plcm8gMjAgMCBSIC9vIDIxIDAgUiAvdGhyZWUgMjIg\nMCBSIC9vbmUgMjMgMCBSCi9sIDI0IDAgUiAvaSAyNSAwIFIgL2EgMjYgMCBSIC9lIDMwIDAgUiAv\ncCAyOCAwIFIgL3R3byAyOSAwIFIgL20gMjcgMCBSID4+CmVuZG9iagozIDAgb2JqCjw8IC9GMSAx\nNSAwIFIgPj4KZW5kb2JqCjQgMCBvYmoKPDwgL0EyIDw8IC9jYSAxIC9DQSAxIC9UeXBlIC9FeHRH\nU3RhdGUgPj4KL0ExIDw8IC9jYSAxIC9DQSAwIC9UeXBlIC9FeHRHU3RhdGUgPj4gPj4KZW5kb2Jq\nCjUgMCBvYmoKPDwgPj4KZW5kb2JqCjYgMCBvYmoKPDwgPj4KZW5kb2JqCjcgMCBvYmoKPDwgL0Rl\namFWdVNhbnMtbWludXMgMTcgMCBSIC9NMCAxMiAwIFIgPj4KZW5kb2JqCjEyIDAgb2JqCjw8IC9T\ndWJ0eXBlIC9Gb3JtCi9CQm94IFsgLTIuNzM2MDY3OTc3NSAtMi43MzYwNjc5Nzc1IDIuNzM2MDY3\nOTc3NSAyLjczNjA2Nzk3NzUgXSAvTGVuZ3RoIDEzOQovRmlsdGVyIC9GbGF0ZURlY29kZSAvVHlw\nZSAvWE9iamVjdCA+PgpzdHJlYW0KeJxtkDEOwzAIRXdO4Qt8C+wEOWvGXCNLVSn3X5tW6Y8js1j4\nA/8Blt6iaZPzQcmlunpLh2iel6pWOtGyuTXzr6Sqk5dTmptZXRIY7cIs2EEP0JeS/lr+nztNxOVB\nQofqAFd55M9wl4CP0QQRC+NIGOfGYy8EiyO4D8JDIrg4QhK6FV8iq3wAhGdYiwplbmRzdHJlYW0K\nZW5kb2JqCjIgMCBvYmoKPDwgL0NvdW50IDEgL0tpZHMgWyAxMCAwIFIgXSAvVHlwZSAvUGFnZXMg\nPj4KZW5kb2JqCjMxIDAgb2JqCjw8IC9Qcm9kdWNlciAobWF0cGxvdGxpYiBwZGYgYmFja2VuZCkK\nL0NyZWF0b3IgKG1hdHBsb3RsaWIgMi4wLjAsIGh0dHA6Ly9tYXRwbG90bGliLm9yZykKL0NyZWF0\naW9uRGF0ZSAoRDoyMDE3MDMxNzEwNTI1MyswMicwMCcpID4+CmVuZG9iagp4cmVmCjAgMzIKMDAw\nMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDE2IDAwMDAwIG4gCjAwMDAwMTQxNDMgMDAwMDAgbiAK\nMDAwMDAxMzYwNyAwMDAwMCBuIAowMDAwMDEzNjM5IDAwMDAwIG4gCjAwMDAwMTM3MzggMDAwMDAg\nbiAKMDAwMDAxMzc1OSAwMDAwMCBuIAowMDAwMDEzNzgwIDAwMDAwIG4gCjAwMDAwMDAwNjUgMDAw\nMDAgbiAKMDAwMDAwMDM5OCAwMDAwMCBuIAowMDAwMDAwMjA4IDAwMDAwIG4gCjAwMDAwMDc5NTMg\nMDAwMDAgbiAKMDAwMDAxMzgzNyAwMDAwMCBuIAowMDAwMDEyMzkxIDAwMDAwIG4gCjAwMDAwMTIx\nOTEgMDAwMDAgbiAKMDAwMDAxMTgyNiAwMDAwMCBuIAowMDAwMDEzNDQ0IDAwMDAwIG4gCjAwMDAw\nMDc5NzQgMDAwMDAgbiAKMDAwMDAwODE0NCAwMDAwMCBuIAowMDAwMDA4NTQ5IDAwMDAwIG4gCjAw\nMDAwMDg3ODMgMDAwMDAgbiAKMDAwMDAwOTA2NiAwMDAwMCBuIAowMDAwMDA5MzUzIDAwMDAwIG4g\nCjAwMDAwMDk3NjQgMDAwMDAgbiAKMDAwMDAwOTkxNiAwMDAwMCBuIAowMDAwMDEwMDMzIDAwMDAw\nIG4gCjAwMDAwMTAxNzMgMDAwMDAgbiAKMDAwMDAxMDU1MCAwMDAwMCBuIAowMDAwMDEwODc4IDAw\nMDAwIG4gCjAwMDAwMTExODcgMDAwMDAgbiAKMDAwMDAxMTUwOCAwMDAwMCBuIAowMDAwMDE0MjAz\nIDAwMDAwIG4gCnRyYWlsZXIKPDwgL1Jvb3QgMSAwIFIgL0luZm8gMzEgMCBSIC9TaXplIDMyID4+\nCnN0YXJ0eHJlZgoxNDM1MQolJUVPRgo=\n", - "image/png": "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\nQmCC\n", + "application/pdf": "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IDYzNiA2MzYgNjM2IDYzNiA2MzYgNjM2IDYzNiA2MzYKNjM2IDYzNiAzMzcgMzM3IDgzOCA4MzggODM4IDUzMSAxMDAwIDY4NCA2ODYgNjk4IDc3MCA2MzIgNTc1IDc3NSA3NTIgMjk1CjI5NSA2NTYgNTU3IDg2MyA3NDggNzg3IDYwMyA3ODcgNjk1IDYzNSA2MTEgNzMyIDY4NCA5ODkgNjg1IDYxMSA2ODUgMzkwIDMzNwozOTAgODM4IDUwMCA1MDAgNjEzIDYzNSA1NTAgNjM1IDYxNSAzNTIgNjM1IDYzNCAyNzggMjc4IDU3OSAyNzggOTc0IDYzNCA2MTIKNjM1IDYzNSA0MTEgNTIxIDM5MiA2MzQgNTkyIDgxOCA1OTIgNTkyIDUyNSA2MzYgMzM3IDYzNiA4MzggNjAwIDYzNiA2MDAgMzE4CjM1MiA1MTggMTAwMCA1MDAgNTAwIDUwMCAxMzQyIDYzNSA0MDAgMTA3MCA2MDAgNjg1IDYwMCA2MDAgMzE4IDMxOCA1MTggNTE4CjU5MCA1MDAgMTAwMCA1MDAgMTAwMCA1MjEgNDAwIDEwMjMgNjAwIDUyNSA2MTEgMzE4IDQwMSA2MzYgNjM2IDYzNiA2MzYgMzM3CjUwMCA1MDAgMTAwMCA0NzEgNjEyIDgzOCAzNjEgMTAwMCA1MDAgNTAwIDgzOCA0MDEgNDAxIDUwMCA2MzYgNjM2IDMxOCA1MDAKNDAxIDQ3MSA2MTIgOTY5IDk2OSA5NjkgNTMxIDY4NCA2ODQgNjg0IDY4NCA2ODQgNjg0IDk3NCA2OTggNjMyIDYzMiA2MzIgNjMyCjI5NSAyOTUgMjk1IDI5NSA3NzUgNzQ4IDc4NyA3ODcgNzg3IDc4NyA3ODcgODM4IDc4NyA3MzIgNzMyIDczMiA3MzIgNjExIDYwNQo2MzAgNjEzIDYxMyA2MTMgNjEzIDYxMyA2MTMgOTgyIDU1MCA2MTUgNjE1IDYxNSA2MTUgMjc4IDI3OCAyNzggMjc4IDYxMiA2MzQKNjEyIDYxMiA2MTIgNjEyIDYxMiA4MzggNjEyIDYzNCA2MzQgNjM0IDYzNCA1OTIgNjM1IDU5MiBdCmVuZG9iagoxNyAwIG9iago8PCAvYSAxOCAwIFIgL2UgMTkgMCBSIC9pIDIwIDAgUiAvbCAyMSAwIFIgL20gMjIgMCBSIC9uIDI0IDAgUiAvbyAyNSAwIFIKL29uZSAyNiAwIFIgL3AgMjcgMCBSIC9zIDI4IDAgUiAvdGhyZWUgMjkgMCBSIC90d28gMzAgMCBSIC96ZXJvIDMxIDAgUiA+PgplbmRvYmoKMyAwIG9iago8PCAvRjEgMTYgMCBSID4+CmVuZG9iago0IDAgb2JqCjw8IC9BMSA8PCAvQ0EgMCAvVHlwZSAvRXh0R1N0YXRlIC9jYSAxID4+Ci9BMiA8PCAvQ0EgMSAvVHlwZSAvRXh0R1N0YXRlIC9jYSAxID4+ID4+CmVuZG9iago1IDAgb2JqCjw8ID4+CmVuZG9iago2IDAgb2JqCjw8ID4+CmVuZG9iago3IDAgb2JqCjw8IC9GMS1EZWphVnVTYW5zLW1pbnVzIDIzIDAgUiAvTTAgMTMgMCBSID4+CmVuZG9iagoxMyAwIG9iago8PCAvQkJveCBbIC03LjIzNjA2Nzk3NzUgLTcuMjM2MDY3OTc3NSA3LjIzNjA2Nzk3NzUgNy4yMzYwNjc5Nzc1IF0KL0ZpbHRlciAvRmxhdGVEZWNvZGUgL0xlbmd0aCAxMzkgL1N1YnR5cGUgL0Zvcm0gL1R5cGUgL1hPYmplY3QgPj4Kc3RyZWFtCnicbZAxDsMwCEV3TuELfAvsBDlrxlwjS1Up91+bVumPI7NY+AP/AZbeommT80HJpbp6S4donpeqVjrRsrk186+kqpOXU5qbWV0SGO3CLNhBD9CXkv5a/p87TcTlQUKH6gBXeeTPcJeAj9EEEQvjSBjnxmMvBIsjuA/CQyK4OEISuhVfIqt8AIRnWIsKZW5kc3RyZWFtCmVuZG9iagoyIDAgb2JqCjw8IC9Db3VudCAxIC9LaWRzIFsgMTEgMCBSIF0gL1R5cGUgL1BhZ2VzID4+CmVuZG9iagozMiAwIG9iago8PCAvQ3JlYXRpb25EYXRlIChEOjIwMjIwNDI2MTAyOTA0LTA0JzAwJykKL0NyZWF0b3IgKE1hdHBsb3RsaWIgdjMuNS4xLCBodHRwczovL21hdHBsb3RsaWIub3JnKQovUHJvZHVjZXIgKE1hdHBsb3RsaWIgcGRmIGJhY2tlbmQgdjMuNS4xKSA+PgplbmRvYmoKeHJlZgowIDMzCjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAwMDAxNiAwMDAwMCBuIAowMDAwMDE0MTUzIDAwMDAwIG4gCjAwMDAwMTM2MTQgMDAwMDAgbiAKMDAwMDAxMzY0NiAwMDAwMCBuIAowMDAwMDEzNzQ1IDAwMDAwIG4gCjAwMDAwMTM3NjYgMDAwMDAgbiAKMDAwMDAxMzc4NyAwMDAwMCBuIAowMDAwMDAwMDY1IDAwMDAwIG4gCjAwMDAwMDAzNDMgMDAwMDAgbiAKMDAwMDAwNzg5OCAwMDAwMCBuIAowMDAwMDAwMjA4IDAwMDAwIG4gCjAwMDAwMDc4NzcgMDAwMDAgbiAKMDAwMDAxMzg0NyAwMDAwMCBuIAowMDAwMDEyMzk4IDAwMDAwIG4gCjAwMDAwMTIxOTEgMDAwMDAgbiAKMDAwMDAxMTgxMiAwMDAwMCBuIAowMDAwMDEzNDUxIDAwMDAwIG4gCjAwMDAwMDc5MTggMDAwMDAgbiAKMDAwMDAwODI5OCAwMDAwMCBuIAowMDAwMDA4NjIwIDAwMDAwIG4gCjAwMDAwMDg3NjQgMDAwMDAgbiAKMDAwMDAwODg4MyAwMDAwMCBuIAowMDAwMDA5MjE0IDAwMDAwIG4gCjAwMDAwMDkzODYgMDAwMDAgbiAKMDAwMDAwOTYyMiAwMDAwMCBuIAowMDAwMDA5OTEzIDAwMDAwIG4gCjAwMDAwMTAwNjggMDAwMDAgbiAKMDAwMDAxMDM4MCAwMDAwMCBuIAowMDAwMDEwNzg3IDAwMDAwIG4gCjAwMDAwMTEyMDAgMDAwMDAgbiAKMDAwMDAxMTUyNCAwMDAwMCBuIAowMDAwMDE0MjEzIDAwMDAwIG4gCnRyYWlsZXIKPDwgL0luZm8gMzIgMCBSIC9Sb290IDEgMCBSIC9TaXplIDMzID4+CnN0YXJ0eHJlZgoxNDM3MAolJUVPRgo=\n", + "image/png": "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\n", "text/plain": [ - "" + "
" ] }, - "metadata": {}, + "metadata": { + "needs_background": "light" + }, "output_type": "display_data" } ], @@ -127,30 +13064,21 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "This functionality can also be used in FVA by using the `loopless=True` argument to avoid getting high flux ranges for reactions that essentially only can reach high fluxes if they are allowed to participate in loops (see the simulation notebook) leading to much narrower flux ranges." ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Loopless model" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Cobrapy also includes the \"classical\" loopless formulation by [Schellenberger et. al.](https://dx.doi.org/10.1016%2Fj.bpj.2010.12.3707) implemented in `cobra.flux_analysis.add_loopless` modify the model with additional mixed-integer constraints that make thermodynamically infeasible loops impossible. This is much slower than the strategy provided above and should only be used if one of the two following cases applies:\n", "\n", @@ -164,21 +13092,20 @@ "cell_type": "code", "execution_count": 5, "metadata": { - "collapsed": false, - "deletable": true, - "editable": true, "scrolled": true }, "outputs": [ { "data": { - "application/pdf": "JVBERi0xLjQKJazcIKu6CjEgMCBvYmoKPDwgL1BhZ2VzIDIgMCBSIC9UeXBlIC9DYXRhbG9nID4+\nCmVuZG9iago4IDAgb2JqCjw8IC9TaGFkaW5nIDYgMCBSIC9Qcm9jU2V0IFsgL1BERiAvVGV4dCAv\nSW1hZ2VCIC9JbWFnZUMgL0ltYWdlSSBdCi9Gb250IDMgMCBSIC9QYXR0ZXJuIDUgMCBSIC9YT2Jq\nZWN0IDcgMCBSIC9FeHRHU3RhdGUgNCAwIFIgPj4KZW5kb2JqCjEwIDAgb2JqCjw8IC9SZXNvdXJj\nZXMgOCAwIFIgL1BhcmVudCAyIDAgUiAvTWVkaWFCb3ggWyAwIDAgNjMxLjE1OTM3NSAyNzkuNDg4\nNzUgXQovR3JvdXAgPDwgL0NTIC9EZXZpY2VSR0IgL1MgL1RyYW5zcGFyZW5jeSAvVHlwZSAvR3Jv\ndXAgPj4gL0Fubm90cyBbIF0KL0NvbnRlbnRzIDkgMCBSIC9UeXBlIC9QYWdlID4+CmVuZG9iago5\nIDAgb2JqCjw8IC9MZW5ndGggMTEgMCBSIC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4\nnNVXu25dNxDs+RUs7cIM98HHllbipEqh4AIJEBgu5ESGEAWwinx/ZnlzD3mOrptALlxJZ7XkzuwO\nhxTFh/A5Sk6UK5fIknqj3kosvSSLrJoqx6c/4q/x75hT652lsCnho/QsxlSqBf/L5SM+3X85M+4y\nf/lplxm+nPl0HwJzSTpgVk3dMnWKj4i2VDL3uoaZLRWSbrGW1FioObeczKpyrC1xLi2XeBdYOGnr\nhtU91QEFmZKEyFRjy6macd3FODUr3iRfPsNenRVN27ZsNVmWQmvx1pP0mnWs3mA2S7324jAnn44W\n5EF/Up8xX47i2arsUymx9UrrnoRfqea+r074ECk7nOTVcyl14bPEVupLeOvStuXSza34ru8bzGVC\nk886yudTvwufQrgJt/Fbka4AXS4DZibgbDK0K+BGZcx6iQsUQNVVwRn9piwgJYyGqguIsyYyttFG\ncf7sWkNnU21F0TwPWh2i5NwwByzcBw0AJbfLDpc4OQYD5mVbEu96ox0EKkma8JDRApdq6qW0AXcy\nI4fQm2872zCDvgMglDH3NRlaMnWFrPvi71pdTHsM+LDuulvxkmMYAl2YLcFdG9b41rO57dLdCWE3\niQl3ndpktg74ihq+OU0ru+cc7ViZUz/asTJ+PdixcoUBHO1YIaZ2sGN13R3seI0tnrSGL/Y1t5w2\nN4uvhjhhTutc+EyPndRXO1YooB7tWKHdcrBjda09s2OFcuvBjpW8+t6O19hKfQlvXdq2XLq5Fd/1\nfYO5TGjyWUf5fOr/Q7oRoowP8ff4Hj8/+jfudxzSBumVhddjIKvAS+eCVceWfy1RzyUFSUS36gji\nWIHqMfVKFLMytfO2L8JD0Etcb1h1dgjOEJC7vdtYxX1vkXpPTZ2qg+5JTYQ0wkxwysg6wn7vCZyv\njzF3qfWSDM8jRD25YzjiyWbwGRbMz4lZzpj+C9EZE6+1CSTcAERr83MOZlpw0Cx2xdOm4BWEimcV\nmoFwt4SSOHgO2y8Z0DVvCZQGKPWSbq17HOmE3c5hPA7EfZWiSWJiFXspOizA1dpBZVzUT+xBDjO6\nSkdh2tTqQXu73CvRVb0vQqTimpFnx6X0iurHgjO6glPNCZo50NvlXolePS9nhPfh5hS/+xFXYImn\nP4P7WB30jFLWan4lnj6GV+9++/D2dTw9xHen8DngSopvcsQqoaQDDynuWGnqC+4esWvIuIDwAHEA\n2GHWePWPbxRgalmUcMU7sDc4dW6/M9nfqiOdRjrq3q6VpePKb1+3Ml+vjEdIGfnq5MtXKCyz8G48\nWsUrjvlgpninX+bzw88fvr/MZ7fk/BI7l1EA76aXNW+vLoCr+f9CzoHhI7iBtgU3VxcoLgH7j9Oh\nwgbpNvwL2RPvwAplbmRzdHJlYW0KZW5kb2JqCjExIDAgb2JqCjEwMzcKZW5kb2JqCjE2IDAgb2Jq\nCjw8IC9MZW5ndGggODggL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicLY2xDcAwCAR7\nT8EI4AeM94lSxfu3wdgNfzq9Hg8jJnAeN6XRJz3SHEWric+ir8GY1CLJ0K9zxCVlJYxyucK7pVEJ\nBUE2CfwYrugz/8aZuSvvD5G5G2EKZW5kc3RyZWFtCmVuZG9iagoxNyAwIG9iago8PCAvTGVuZ3Ro\nIDc5IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4nE3Nuw3AIAwE0J4pPALg/z5RqrB/\nGxsiQmM/6U46wQ4V3OKwGGh3uFrxpVGYfeqZEpJQcz1EWDMlOoSkX/rLMMOY2Mi277dW7hfeGxwZ\nCmVuZHN0cmVhbQplbmRvYmoKMTggMCBvYmoKPDwgL0xlbmd0aCA4NyAvRmlsdGVyIC9GbGF0ZURl\nY29kZSA+PgpzdHJlYW0KeJw9jrsRwDAIQ3umYATzCYZ9cqmc/duAP2nQQzpOuAk2DM/R7cLOgTdB\n7kUvsC5vgAohiyQZ+fbOxaJWmcWvpkXqhDRJnDdR6E6LSucD4/QOeD66dR16CmVuZHN0cmVhbQpl\nbmRvYmoKMTkgMCBvYmoKPDwgL0xlbmd0aCAyMzIgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3Ry\nZWFtCnicNVE7cgUxCOt9Cl0gM+Zvn2czr0ru30awk2ZhAQkJ5z3YiMSXGNId5YpvWZ1mGX4ni7z4\nWSmcvBdRgVRFWCHt4FnOaobBcyNT4HImPsvMJ9NixwKqiTjOjpxmMAgxjetoOR1mmgc9IdcHI27s\nNMtVDGm9W6rX91r+U0X5yLqb5dYpm1qpW/SMPYnLzuupLe0Lo47ipiDS4WOH9yBfxJzFRSfSzX4z\n5bCSNASnBfAjMZTq2eE1wsTPjARP2dPpfZSG1z5our53L+jIzYRM5RbKSMWTlcaYMVS/Ec0k9f0/\n0LM+f5owVEcKZW5kc3RyZWFtCmVuZG9iagoyMCAwIG9iago8PCAvTGVuZ3RoIDUyIC9GaWx0ZXIg\nL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4nDM1MFAwUNC1VNA1MjZVMDUEsg3NTBVSDLng7FwIEySf\nwwVTCWGBpHMQKnO40gBUlw8dCmVuZHN0cmVhbQplbmRvYmoKMjEgMCBvYmoKPDwgL0xlbmd0aCA4\nOCAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJlYW0KeJw1jLsNwDAIRHumuBH4OID3iVKR/dsQ\nWy64e9IT5znAyD4PR+jELWRD4aZ4STmhPlE0Wm86tkhzv7xkMxcV/TPcfYXt5oBkNEnkIdHlcuVZ\nKXo+l9obfgplbmRzdHJlYW0KZW5kb2JqCjIyIDAgb2JqCjw8IC9MZW5ndGggMzM4IC9GaWx0ZXIg\nL0ZsYXRlRGVjb2RlID4+CnN0cmVhbQp4nDVSOa7dQAzrfQpdIIB2zZznBal+7t+GlF8KQ7RWipqO\nFpVp+WUhVS2TLr/tSW2JG/L3yQqJE5JXJdqlDJFQ+TyFVL9ny7y+1pwRIEuVCpOTksclC/4Ml94u\nHOdjaz+PI3c9emBVjIQSAcsUE6NrWTq7w5qN/DymAT/iEXKuWLccYxVIDbpx2hXvQ/N5yBogZpiW\nigpdVokWfkHxoEetffdYVFgg0e0cSXCMjVCRgHaB2kgMObMWu6gv+lmUmAl07Ysi7qLAEknMnGJd\nOvoPPnQsqL8248uvjkr6SCtrTNp3o0lpzCKTrpdFbzdvfT24QPMuyn9ezSBBU9YoaXzQqp1jKJoZ\nZYV3HJoMNMcch8wTPIczEpT0fSh+X0smuiiRPw4NoX9fHqOMnAZvAXPRn7aKAxfx2WGvHGCF0sWa\n5H1AKhN6YPr/1/h5/vwDHLaAVAplbmRzdHJlYW0KZW5kb2JqCjIzIDAgb2JqCjw8IC9MZW5ndGgg\nODAgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicRYy7DcAwCER7pmAEfiZmnyiVs38b\nIErccE+6e7g6EjJT3mGGhwSeDCyGU/EGmaNgNbhGUo2d7KOwbl91geZ6U6v19wcqT3Z2cT3Nyxn0\nCmVuZHN0cmVhbQplbmRvYmoKMjQgMCBvYmoKPDwgL0xlbmd0aCA3MiAvRmlsdGVyIC9GbGF0ZURl\nY29kZSA+PgpzdHJlYW0KeJw1jLERwDAIA3um0Ag2WGDvk0tF9m9DfE4DLx0Pl6LBWg26giNwdan8\n0SNduSlFl2POguFxql9IMUY9qCPj3sdPuV9wFhJ9CmVuZHN0cmVhbQplbmRvYmoKMjUgMCBvYmoK\nPDwgL0xlbmd0aCAxNjAgL0ZpbHRlciAvRmxhdGVEZWNvZGUgPj4Kc3RyZWFtCnicPZBLEsMgDEP3\nnEJHwPh/nnS6Su6/rQ2dbLAYhPTAfWIioxYngq/EhwalwyTwbBWEezDZEXKE5ARNhrKDJHENDQal\nwqZjme/JpnXSSqy80X7ZdzRmnXSKLUWHdiH/5/Ui3KPgGusZPA9gMcjaSqXsmTBaZaau8qjotR/T\n4T0PRKvF5fUGrvDaRzepKCpL6v5EdzTY/pG3+x7fH5llOCQKZW5kc3RyZWFtCmVuZG9iagoyNiAw\nIG9iago8PCAvTGVuZ3RoIDI0OCAvRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJlYW0KeJwtUTmS\nA0EIy+cVekJz0++xy5H3/+kKygGDhkMgOi1xUMZPEJYr3vLIVbTh75kYwXfBod/KdRsWORAVSNIY\nVE2oXbwevQd2HGYC86Q1LIMZ6wM/Ywo3enF4TMbZ7XUZNQR712tPZlAyKxdxycQFU3XYyJnDT6aM\nC+1czw3IuRHWZRikm5XGjIQjTSFSSKHqJqkzQZAEo6tRo40cxX7pyyOdYVUjagz7XEvb13MTzho0\nOxarPDmlR1ecy8nFCysH/bzNwEVUGqs8EBJwv9tD/Zzs5Dfe0rmzxfT4XnOyvDAVWPHmtRuQTbX4\nNy/i+D3j6/n8A6ilWxYKZW5kc3RyZWFtCmVuZG9iagoyNyAwIG9iago8PCAvTGVuZ3RoIDI1OSAv\nRmlsdGVyIC9GbGF0ZURlY29kZSA+PgpzdHJlYW0KeJw9UklywzAMu/sVfAJ3Se9Jpyfn/9cC9NSX\nEGOKAAimd4vK2fhpK1l+5McuO0sit3wHbZP7iqoHpG6CzCXHJVeIWcrnSpBYtJSZWJ+pDsrPNahV\n+MJPzExMhyQRS8hJPYqwfl4H96B+vaTzW2T8o2OD0luSTAWdGu6Vo5TYsFSfGuQeNN2UVp+ZdmUH\nLI03ZKUmdfr10+MHSzClLxLRQYjEn+RyhywLKQfxdq7eQHhXuyDVUysPO0Saj5HeUgWrOTMBS0bT\nDiNgbdaYIFUCvEVrCLQW4vKFTisiPjk3dDBNVZ6FyLBS4Vh7z2gNF7qGvNJwepJx//kfvCve1+8f\n2vNmZAplbmRzdHJlYW0KZW5kb2JqCjE0IDAgb2JqCjw8IC9TdWJ0eXBlIC9UeXBlMyAvQmFzZUZv\nbnQgL0RlamFWdVNhbnMgL05hbWUgL0RlamFWdVNhbnMgL0ZpcnN0Q2hhciAwCi9UeXBlIC9Gb250\nIC9DaGFyUHJvY3MgMTUgMCBSIC9Gb250QkJveCBbIC0xMDIxIC00NjMgMTc5NCAxMjMzIF0KL0Vu\nY29kaW5nIDw8Ci9EaWZmZXJlbmNlcyBbIDQ5IC9vbmUgL3R3byAvdGhyZWUgNjUgL0EgL0IgL0Mg\nL0QgL0UgNzcgL00gODggL1ggOTUgL3VuZGVyc2NvcmUgMTE4IC92Cl0KL1R5cGUgL0VuY29kaW5n\nID4+Ci9Gb250RGVzY3JpcHRvciAxMyAwIFIgL0xhc3RDaGFyIDI1NSAvRm9udE1hdHJpeCBbIDAu\nMDAxIDAgMCAwLjAwMSAwIDAgXQovV2lkdGhzIDEyIDAgUiA+PgplbmRvYmoKMTMgMCBvYmoKPDwg\nL1N0ZW1WIDAgL01heFdpZHRoIDEzNDIgL0ZvbnRCQm94IFsgLTEwMjEgLTQ2MyAxNzk0IDEyMzMg\nXQovRm9udE5hbWUgL0RlamFWdVNhbnMgL1hIZWlnaHQgMCAvRmxhZ3MgMzIgL0NhcEhlaWdodCAw\nIC9Bc2NlbnQgOTI5Ci9JdGFsaWNBbmdsZSAwIC9EZXNjZW50IC0yMzYgL1R5cGUgL0ZvbnREZXNj\ncmlwdG9yID4+CmVuZG9iagoxMiAwIG9iagpbIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2\nMDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwCjYwMCA2MDAgNjAwIDYw\nMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgMzE4IDQwMSA0NjAgODM4\nIDYzNgo5NTAgNzgwIDI3NSAzOTAgMzkwIDUwMCA4MzggMzE4IDM2MSAzMTggMzM3IDYzNiA2MzYg\nNjM2IDYzNiA2MzYgNjM2IDYzNiA2MzYKNjM2IDYzNiAzMzcgMzM3IDgzOCA4MzggODM4IDUzMSAx\nMDAwIDY4NCA2ODYgNjk4IDc3MCA2MzIgNTc1IDc3NSA3NTIgMjk1CjI5NSA2NTYgNTU3IDg2MyA3\nNDggNzg3IDYwMyA3ODcgNjk1IDYzNSA2MTEgNzMyIDY4NCA5ODkgNjg1IDYxMSA2ODUgMzkwIDMz\nNwozOTAgODM4IDUwMCA1MDAgNjEzIDYzNSA1NTAgNjM1IDYxNSAzNTIgNjM1IDYzNCAyNzggMjc4\nIDU3OSAyNzggOTc0IDYzNCA2MTIKNjM1IDYzNSA0MTEgNTIxIDM5MiA2MzQgNTkyIDgxOCA1OTIg\nNTkyIDUyNSA2MzYgMzM3IDYzNiA4MzggNjAwIDYzNiA2MDAgMzE4CjM1MiA1MTggMTAwMCA1MDAg\nNTAwIDUwMCAxMzQyIDYzNSA0MDAgMTA3MCA2MDAgNjg1IDYwMCA2MDAgMzE4IDMxOCA1MTggNTE4\nCjU5MCA1MDAgMTAwMCA1MDAgMTAwMCA1MjEgNDAwIDEwMjMgNjAwIDUyNSA2MTEgMzE4IDQwMSA2\nMzYgNjM2IDYzNiA2MzYgMzM3CjUwMCA1MDAgMTAwMCA0NzEgNjEyIDgzOCAzNjEgMTAwMCA1MDAg\nNTAwIDgzOCA0MDEgNDAxIDUwMCA2MzYgNjM2IDMxOCA1MDAKNDAxIDQ3MSA2MTIgOTY5IDk2OSA5\nNjkgNTMxIDY4NCA2ODQgNjg0IDY4NCA2ODQgNjg0IDk3NCA2OTggNjMyIDYzMiA2MzIgNjMyCjI5\nNSAyOTUgMjk1IDI5NSA3NzUgNzQ4IDc4NyA3ODcgNzg3IDc4NyA3ODcgODM4IDc4NyA3MzIgNzMy\nIDczMiA3MzIgNjExIDYwNQo2MzAgNjEzIDYxMyA2MTMgNjEzIDYxMyA2MTMgOTgyIDU1MCA2MTUg\nNjE1IDYxNSA2MTUgMjc4IDI3OCAyNzggMjc4IDYxMiA2MzQKNjEyIDYxMiA2MTIgNjEyIDYxMiA4\nMzggNjEyIDYzNCA2MzQgNjM0IDYzNCA1OTIgNjM1IDU5MiBdCmVuZG9iagoxNSAwIG9iago8PCAv\nWCAxNiAwIFIgL0UgMTcgMCBSIC9NIDE4IDAgUiAvdW5kZXJzY29yZSAyMCAwIFIgL0MgMTkgMCBS\nIC9BIDIxIDAgUgovdiAyNCAwIFIgL3RocmVlIDIyIDAgUiAvRCAyNSAwIFIgL29uZSAyMyAwIFIg\nL3R3byAyNiAwIFIgL0IgMjcgMCBSID4+CmVuZG9iagozIDAgb2JqCjw8IC9GMSAxNCAwIFIgPj4K\nZW5kb2JqCjQgMCBvYmoKPDwgPj4KZW5kb2JqCjUgMCBvYmoKPDwgPj4KZW5kb2JqCjYgMCBvYmoK\nPDwgPj4KZW5kb2JqCjcgMCBvYmoKPDwgPj4KZW5kb2JqCjIgMCBvYmoKPDwgL0NvdW50IDEgL0tp\nZHMgWyAxMCAwIFIgXSAvVHlwZSAvUGFnZXMgPj4KZW5kb2JqCjI4IDAgb2JqCjw8IC9Qcm9kdWNl\nciAobWF0cGxvdGxpYiBwZGYgYmFja2VuZCkKL0NyZWF0b3IgKG1hdHBsb3RsaWIgMi4wLjAsIGh0\ndHA6Ly9tYXRwbG90bGliLm9yZykKL0NyZWF0aW9uRGF0ZSAoRDoyMDE3MDMxNzEwNTI1NCswMicw\nMCcpID4+CmVuZG9iagp4cmVmCjAgMjkKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDAwMDE2IDAw\nMDAwIG4gCjAwMDAwMDYwNzYgMDAwMDAgbiAKMDAwMDAwNTk2MCAwMDAwMCBuIAowMDAwMDA1OTky\nIDAwMDAwIG4gCjAwMDAwMDYwMTMgMDAwMDAgbiAKMDAwMDAwNjAzNCAwMDAwMCBuIAowMDAwMDA2\nMDU1IDAwMDAwIG4gCjAwMDAwMDAwNjUgMDAwMDAgbiAKMDAwMDAwMDM5OCAwMDAwMCBuIAowMDAw\nMDAwMjA4IDAwMDAwIG4gCjAwMDAwMDE1MTAgMDAwMDAgbiAKMDAwMDAwNDc0OCAwMDAwMCBuIAow\nMDAwMDA0NTQ4IDAwMDAwIG4gCjAwMDAwMDQxODMgMDAwMDAgbiAKMDAwMDAwNTgwMSAwMDAwMCBu\nIAowMDAwMDAxNTMxIDAwMDAwIG4gCjAwMDAwMDE2OTEgMDAwMDAgbiAKMDAwMDAwMTg0MiAwMDAw\nMCBuIAowMDAwMDAyMDAxIDAwMDAwIG4gCjAwMDAwMDIzMDYgMDAwMDAgbiAKMDAwMDAwMjQzMCAw\nMDAwMCBuIAowMDAwMDAyNTkwIDAwMDAwIG4gCjAwMDAwMDMwMDEgMDAwMDAgbiAKMDAwMDAwMzE1\nMyAwMDAwMCBuIAowMDAwMDAzMjk3IDAwMDAwIG4gCjAwMDAwMDM1MzAgMDAwMDAgbiAKMDAwMDAw\nMzg1MSAwMDAwMCBuIAowMDAwMDA2MTM2IDAwMDAwIG4gCnRyYWlsZXIKPDwgL1Jvb3QgMSAwIFIg\nL0luZm8gMjggMCBSIC9TaXplIDI5ID4+CnN0YXJ0eHJlZgo2Mjg0CiUlRU9GCg==\n", - "image/png": "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\n/H+ieuKtL2xjbwAAAABJRU5ErkJggg==\n", + "application/pdf": "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YXIgMjU1IC9OYW1lIC9CTVFRRFYrRGVqYVZ1U2FucwovU3VidHlwZSAvVHlwZTMgL1R5cGUgL0ZvbnQgL1dpZHRocyAxMyAwIFIgPj4KZW5kb2JqCjE0IDAgb2JqCjw8IC9Bc2NlbnQgOTI5IC9DYXBIZWlnaHQgMCAvRGVzY2VudCAtMjM2IC9GbGFncyAzMgovRm9udEJCb3ggWyAtMTAyMSAtNDYzIDE3OTQgMTIzMyBdIC9Gb250TmFtZSAvQk1RUURWK0RlamFWdVNhbnMKL0l0YWxpY0FuZ2xlIDAgL01heFdpZHRoIDEzNDIgL1N0ZW1WIDAgL1R5cGUgL0ZvbnREZXNjcmlwdG9yIC9YSGVpZ2h0IDAgPj4KZW5kb2JqCjEzIDAgb2JqClsgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAKNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCA2MDAgNjAwIDYwMCAzMTggNDAxIDQ2MCA4MzggNjM2Cjk1MCA3ODAgMjc1IDM5MCAzOTAgNTAwIDgzOCAzMTggMzYxIDMxOCAzMzcgNjM2IDYzNiA2MzYgNjM2IDYzNiA2MzYgNjM2IDYzNgo2MzYgNjM2IDMzNyAzMzcgODM4IDgzOCA4MzggNTMxIDEwMDAgNjg0IDY4NiA2OTggNzcwIDYzMiA1NzUgNzc1IDc1MiAyOTUKMjk1IDY1NiA1NTcgODYzIDc0OCA3ODcgNjAzIDc4NyA2OTUgNjM1IDYxMSA3MzIgNjg0IDk4OSA2ODUgNjExIDY4NSAzOTAgMzM3CjM5MCA4MzggNTAwIDUwMCA2MTMgNjM1IDU1MCA2MzUgNjE1IDM1MiA2MzUgNjM0IDI3OCAyNzggNTc5IDI3OCA5NzQgNjM0IDYxMgo2MzUgNjM1IDQxMSA1MjEgMzkyIDYzNCA1OTIgODE4IDU5MiA1OTIgNTI1IDYzNiAzMzcgNjM2IDgzOCA2MDAgNjM2IDYwMCAzMTgKMzUyIDUxOCAxMDAwIDUwMCA1MDAgNTAwIDEzNDIgNjM1IDQwMCAxMDcwIDYwMCA2ODUgNjAwIDYwMCAzMTggMzE4IDUxOCA1MTgKNTkwIDUwMCAxMDAwIDUwMCAxMDAwIDUyMSA0MDAgMTAyMyA2MDAgNTI1IDYxMSAzMTggNDAxIDYzNiA2MzYgNjM2IDYzNiAzMzcKNTAwIDUwMCAxMDAwIDQ3MSA2MTIgODM4IDM2MSAxMDAwIDUwMCA1MDAgODM4IDQwMSA0MDEgNTAwIDYzNiA2MzYgMzE4IDUwMAo0MDEgNDcxIDYxMiA5NjkgOTY5IDk2OSA1MzEgNjg0IDY4NCA2ODQgNjg0IDY4NCA2ODQgOTc0IDY5OCA2MzIgNjMyIDYzMiA2MzIKMjk1IDI5NSAyOTUgMjk1IDc3NSA3NDggNzg3IDc4NyA3ODcgNzg3IDc4NyA4MzggNzg3IDczMiA3MzIgNzMyIDczMiA2MTEgNjA1CjYzMCA2MTMgNjEzIDYxMyA2MTMgNjEzIDYxMyA5ODIgNTUwIDYxNSA2MTUgNjE1IDYxNSAyNzggMjc4IDI3OCAyNzggNjEyIDYzNAo2MTIgNjEyIDYxMiA2MTIgNjEyIDgzOCA2MTIgNjM0IDYzNCA2MzQgNjM0IDU5MiA2MzUgNTkyIF0KZW5kb2JqCjE2IDAgb2JqCjw8IC9BIDE3IDAgUiAvQiAxOCAwIFIgL0MgMTkgMCBSIC9EIDIwIDAgUiAvRSAyMSAwIFIgL00gMjIgMCBSIC9YIDIzIDAgUgovb25lIDI0IDAgUiAvdGhyZWUgMjUgMCBSIC90d28gMjYgMCBSIC91bmRlcnNjb3JlIDI3IDAgUiAvdiAyOCAwIFIgPj4KZW5kb2JqCjMgMCBvYmoKPDwgL0YxIDE1IDAgUiA+PgplbmRvYmoKNCAwIG9iago8PCA+PgplbmRvYmoKNSAwIG9iago8PCA+PgplbmRvYmoKNiAwIG9iago8PCA+PgplbmRvYmoKNyAwIG9iago8PCA+PgplbmRvYmoKMiAwIG9iago8PCAvQ291bnQgMSAvS2lkcyBbIDExIDAgUiBdIC9UeXBlIC9QYWdlcyA+PgplbmRvYmoKMjkgMCBvYmoKPDwgL0NyZWF0aW9uRGF0ZSAoRDoyMDIyMDQyNjEwMjkxNC0wNCcwMCcpCi9DcmVhdG9yIChNYXRwbG90bGliIHYzLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZykKL1Byb2R1Y2VyIChNYXRwbG90bGliIHBkZiBiYWNrZW5kIHYzLjUuMSkgPj4KZW5kb2JqCnhyZWYKMCAzMAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAwMTYgMDAwMDAgbiAKMDAwMDAwNjEyMCAwMDAwMCBuIAowMDAwMDA2MDA0IDAwMDAwIG4gCjAwMDAwMDYwMzYgMDAwMDAgbiAKMDAwMDAwNjA1NyAwMDAwMCBuIAowMDAwMDA2MDc4IDAwMDAwIG4gCjAwMDAwMDYwOTkgMDAwMDAgbiAKMDAwMDAwMDA2NSAwMDAwMCBuIAowMDAwMDAwMzM1IDAwMDAwIG4gCjAwMDAwMDE0OTkgMDAwMDAgbiAKMDAwMDAwMDIwOCAwMDAwMCBuIAowMDAwMDAxNDc4IDAwMDAwIG4gCjAwMDAwMDQ3OTIgMDAwMDAgbiAKMDAwMDAwNDU4NSAwMDAwMCBuIAowMDAwMDA0MjA2IDAwMDAwIG4gCjAwMDAwMDU4NDUgMDAwMDAgbiAKMDAwMDAwMTUxOSAwMDAwMCBuIAowMDAwMDAxNjgyIDAwMDAwIG4gCjAwMDAwMDIwMTkgMDAwMDAgbiAKMDAwMDAwMjMyNyAwMDAwMCBuIAowMDAwMDAyNTY0IDAwMDAwIG4gCjAwMDAwMDI3MTcgMDAwMDAgbiAKMDAwMDAwMjg3OSAwMDAwMCBuIAowMDAwMDAzMDQxIDAwMDAwIG4gCjAwMDAwMDMxOTYgMDAwMDAgbiAKMDAwMDAwMzYwOSAwMDAwMCBuIAowMDAwMDAzOTMzIDAwMDAwIG4gCjAwMDAwMDQwNTkgMDAwMDAgbiAKMDAwMDAwNjE4MCAwMDAwMCBuIAp0cmFpbGVyCjw8IC9JbmZvIDI5IDAgUiAvUm9vdCAxIDAgUiAvU2l6ZSAzMCA+PgpzdGFydHhyZWYKNjMzNwolJUVPRgo=\n", + "image/png": "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\n", "text/plain": [ - "" + "
" ] }, - "metadata": {}, + "metadata": { + "needs_background": "light" + }, "output_type": "display_data" } ], @@ -189,11 +13116,7 @@ { "cell_type": "code", "execution_count": 6, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [], "source": [ "model = Model()\n", @@ -212,10 +13135,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "While this model contains a loop, a flux state exists which has no flux through reaction v$_3$, and is identified by loopless FBA." ] @@ -223,11 +13143,7 @@ { "cell_type": "code", "execution_count": 7, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "name": "stdout", @@ -248,10 +13164,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "If there is no forced flux through a loopless reaction, parsimonious FBA will also have no flux through the loop." ] @@ -259,11 +13172,7 @@ { "cell_type": "code", "execution_count": 8, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "name": "stdout", @@ -282,10 +13191,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "However, if flux is forced through v$_3$, then there is no longer a feasible loopless solution, but the parsimonious solution will still exist." ] @@ -293,24 +13199,14 @@ { "cell_type": "code", "execution_count": 9, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "model is infeasible\n" - ] - }, { "name": "stderr", "output_type": "stream", "text": [ - "cobra/util/solver.py:398 \u001b[1;31mUserWarning\u001b[0m: solver status is 'infeasible'\n" + "/Users/uridavidakavia/PycharmProjects/cobrapy/src/cobra/util/solver.py:554: UserWarning: Solver status is 'infeasible'.\n", + " warn(f\"Solver status is '{status}'.\", UserWarning)\n" ] } ], @@ -327,11 +13223,7 @@ { "cell_type": "code", "execution_count": 10, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "name": "stdout", @@ -350,20 +13242,14 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Method" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "`loopless_solution` is based on a given reference flux distribution. It will look for a new flux distribution with the following requirements:\n", "\n", @@ -394,7 +13280,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -408,9 +13294,9 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.2" + "version": "3.7.1" } }, "nbformat": 4, - "nbformat_minor": 0 + "nbformat_minor": 1 } diff --git a/documentation_builder/media.ipynb b/documentation_builder/media.ipynb index 2c83c892a..ceeef1087 100644 --- a/documentation_builder/media.ipynb +++ b/documentation_builder/media.ipynb @@ -18,6 +18,15 @@ "execution_count": 1, "metadata": {}, "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + }, { "data": { "text/plain": [ @@ -36,9 +45,9 @@ } ], "source": [ - "from cobra.test import create_test_model\n", + "from cobra.io import load_model\n", "\n", - "model = create_test_model(\"textbook\")\n", + "model = load_model(\"textbook\")\n", "model.medium" ] }, @@ -211,7 +220,7 @@ } ], "source": [ - "model = create_test_model(\"textbook\")\n", + "model = load_model(\"textbook\")\n", "\n", "with model:\n", " medium = model.medium\n", @@ -282,9 +291,9 @@ { "data": { "text/plain": [ - "EX_glc__D_e 10.000000\n", - "EX_nh4_e 1.042503\n", - "EX_pi_e 0.703318\n", + "EX_glc__D_e 10.00000\n", + "EX_nh4_e 0.54528\n", + "EX_pi_e 0.36787\n", "dtype: float64" ] }, @@ -334,79 +343,107 @@ " 1\n", " 2\n", " 3\n", + " 4\n", + " 5\n", " \n", " \n", " \n", " \n", " EX_fru_e\n", " 0.000000\n", - " 521.357767\n", + " 308.82944\n", + " 0.00000\n", + " 31.58596\n", " 0.000000\n", " 0.000000\n", " \n", " \n", " EX_glc__D_e\n", " 0.000000\n", + " 0.00000\n", + " 308.82944\n", + " 0.00000\n", + " 31.157104\n", " 0.000000\n", - " 0.000000\n", - " 519.750758\n", " \n", " \n", " EX_gln__L_e\n", " 0.000000\n", - " 40.698058\n", - " 18.848678\n", + " 0.00000\n", + " 0.00000\n", + " 2.18112\n", " 0.000000\n", + " 18.848678\n", " \n", " \n", " EX_glu__L_e\n", - " 348.101944\n", - " 0.000000\n", + " 277.588056\n", + " 6.10840\n", + " 6.10840\n", + " 0.00000\n", " 0.000000\n", " 0.000000\n", " \n", " \n", " EX_mal__L_e\n", " 0.000000\n", + " 0.00000\n", + " 0.00000\n", + " 0.00000\n", " 0.000000\n", " 1000.000000\n", - " 0.000000\n", " \n", " \n", " EX_nh4_e\n", " 0.000000\n", + " 0.00000\n", + " 0.00000\n", + " 0.00000\n", + " 4.362240\n", " 0.000000\n", - " 0.000000\n", - " 81.026921\n", " \n", " \n", " EX_o2_e\n", " 500.000000\n", - " 0.000000\n", + " 0.00000\n", + " 0.00000\n", + " 0.00000\n", " 0.000000\n", " 0.000000\n", " \n", " \n", " EX_pi_e\n", - " 66.431529\n", - " 54.913419\n", + " 46.944976\n", + " 2.94296\n", + " 2.94296\n", + " 2.94296\n", + " 2.942960\n", " 12.583458\n", - " 54.664344\n", " \n", " \n", "\n", "" ], "text/plain": [ - " 0 1 2 3\n", - "EX_fru_e 0.000000 521.357767 0.000000 0.000000\n", - "EX_glc__D_e 0.000000 0.000000 0.000000 519.750758\n", - "EX_gln__L_e 0.000000 40.698058 18.848678 0.000000\n", - "EX_glu__L_e 348.101944 0.000000 0.000000 0.000000\n", - "EX_mal__L_e 0.000000 0.000000 1000.000000 0.000000\n", - "EX_nh4_e 0.000000 0.000000 0.000000 81.026921\n", - "EX_o2_e 500.000000 0.000000 0.000000 0.000000\n", - "EX_pi_e 66.431529 54.913419 12.583458 54.664344" + " 0 1 2 3 4 \\\n", + "EX_fru_e 0.000000 308.82944 0.00000 31.58596 0.000000 \n", + "EX_glc__D_e 0.000000 0.00000 308.82944 0.00000 31.157104 \n", + "EX_gln__L_e 0.000000 0.00000 0.00000 2.18112 0.000000 \n", + "EX_glu__L_e 277.588056 6.10840 6.10840 0.00000 0.000000 \n", + "EX_mal__L_e 0.000000 0.00000 0.00000 0.00000 0.000000 \n", + "EX_nh4_e 0.000000 0.00000 0.00000 0.00000 4.362240 \n", + "EX_o2_e 500.000000 0.00000 0.00000 0.00000 0.000000 \n", + "EX_pi_e 46.944976 2.94296 2.94296 2.94296 2.942960 \n", + "\n", + " 5 \n", + "EX_fru_e 0.000000 \n", + "EX_glc__D_e 0.000000 \n", + "EX_gln__L_e 18.848678 \n", + "EX_glu__L_e 0.000000 \n", + "EX_mal__L_e 1000.000000 \n", + "EX_nh4_e 0.000000 \n", + "EX_o2_e 0.000000 \n", + "EX_pi_e 12.583458 " ] }, "execution_count": 9, @@ -444,11 +481,11 @@ { "data": { "text/plain": [ - "[,\n", - " ,\n", - " ,\n", - " ,\n", - " ]" + "[,\n", + " ,\n", + " ,\n", + " ,\n", + " ]" ] }, "execution_count": 10, @@ -457,7 +494,7 @@ } ], "source": [ - "ecoli = create_test_model(\"ecoli\")\n", + "ecoli = load_model(\"iJO1366\")\n", "ecoli.exchanges[0:5]" ] }, @@ -476,12 +513,12 @@ { "data": { "text/plain": [ - "[,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ]" + "[,\n", + " ,\n", + " ,\n", + " ,\n", + " ,\n", + " ]" ] }, "execution_count": 11, @@ -535,16 +572,16 @@ { "data": { "text/plain": [ - "[,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ,\n", - " ]" + "[,\n", + " ,\n", + " ,\n", + " ,\n", + " ,\n", + " ,\n", + " ,\n", + " ,\n", + " ,\n", + " ]" ] }, "execution_count": 13, @@ -555,11 +592,18 @@ "source": [ "ecoli.boundary[0:10]" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -573,7 +617,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/phenotype_phase_plane.ipynb b/documentation_builder/phenotype_phase_plane.ipynb index 406bb87e9..c9291d3fd 100644 --- a/documentation_builder/phenotype_phase_plane.ipynb +++ b/documentation_builder/phenotype_phase_plane.ipynb @@ -20,12 +20,22 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "import cobra.test\n", + "from cobra.io import load_model\n", "from cobra.flux_analysis import production_envelope\n", "\n", - "model = cobra.test.create_test_model(\"textbook\")" + "model = load_model(\"textbook\")" ] }, { @@ -71,12 +81,12 @@ " \n", " \n", " carbon_source\n", - " carbon_yield_maximum\n", + " flux_minimum\n", " carbon_yield_minimum\n", + " mass_yield_minimum\n", " flux_maximum\n", - " flux_minimum\n", + " carbon_yield_maximum\n", " mass_yield_maximum\n", - " mass_yield_minimum\n", " EX_glc__D_e\n", " EX_o2_e\n", " \n", @@ -85,11 +95,11 @@ " \n", " 0\n", " EX_glc__D_e\n", - " 1.442300e-13\n", " 0.0\n", - " 0.000000\n", " 0.0\n", " NaN\n", + " 0.000000\n", + " 5.692701e-14\n", " NaN\n", " -10.0\n", " -60.000000\n", @@ -97,11 +107,11 @@ " \n", " 1\n", " EX_glc__D_e\n", - " 1.310050e+00\n", " 0.0\n", - " 0.072244\n", " 0.0\n", " NaN\n", + " 0.072244\n", + " 1.310050e+00\n", " NaN\n", " -10.0\n", " -56.842105\n", @@ -109,11 +119,11 @@ " \n", " 2\n", " EX_glc__D_e\n", - " 2.620100e+00\n", " 0.0\n", - " 0.144488\n", " 0.0\n", " NaN\n", + " 0.144488\n", + " 2.620100e+00\n", " NaN\n", " -10.0\n", " -53.684211\n", @@ -121,11 +131,11 @@ " \n", " 3\n", " EX_glc__D_e\n", - " 3.930150e+00\n", " 0.0\n", - " 0.216732\n", " 0.0\n", " NaN\n", + " 0.216732\n", + " 3.930150e+00\n", " NaN\n", " -10.0\n", " -50.526316\n", @@ -133,11 +143,11 @@ " \n", " 4\n", " EX_glc__D_e\n", - " 5.240200e+00\n", " 0.0\n", - " 0.288975\n", " 0.0\n", " NaN\n", + " 0.288975\n", + " 5.240200e+00\n", " NaN\n", " -10.0\n", " -47.368421\n", @@ -147,19 +157,19 @@ "" ], "text/plain": [ - " carbon_source carbon_yield_maximum carbon_yield_minimum flux_maximum \\\n", - "0 EX_glc__D_e 1.442300e-13 0.0 0.000000 \n", - "1 EX_glc__D_e 1.310050e+00 0.0 0.072244 \n", - "2 EX_glc__D_e 2.620100e+00 0.0 0.144488 \n", - "3 EX_glc__D_e 3.930150e+00 0.0 0.216732 \n", - "4 EX_glc__D_e 5.240200e+00 0.0 0.288975 \n", + " carbon_source flux_minimum carbon_yield_minimum mass_yield_minimum \\\n", + "0 EX_glc__D_e 0.0 0.0 NaN \n", + "1 EX_glc__D_e 0.0 0.0 NaN \n", + "2 EX_glc__D_e 0.0 0.0 NaN \n", + "3 EX_glc__D_e 0.0 0.0 NaN \n", + "4 EX_glc__D_e 0.0 0.0 NaN \n", "\n", - " flux_minimum mass_yield_maximum mass_yield_minimum EX_glc__D_e \\\n", - "0 0.0 NaN NaN -10.0 \n", - "1 0.0 NaN NaN -10.0 \n", - "2 0.0 NaN NaN -10.0 \n", - "3 0.0 NaN NaN -10.0 \n", - "4 0.0 NaN NaN -10.0 \n", + " flux_maximum carbon_yield_maximum mass_yield_maximum EX_glc__D_e \\\n", + "0 0.000000 5.692701e-14 NaN -10.0 \n", + "1 0.072244 1.310050e+00 NaN -10.0 \n", + "2 0.144488 2.620100e+00 NaN -10.0 \n", + "3 0.216732 3.930150e+00 NaN -10.0 \n", + "4 0.288975 5.240200e+00 NaN -10.0 \n", "\n", " EX_o2_e \n", "0 -60.000000 \n", @@ -222,12 +232,12 @@ " \n", " \n", " carbon_source\n", - " carbon_yield_maximum\n", + " flux_minimum\n", " carbon_yield_minimum\n", + " mass_yield_minimum\n", " flux_maximum\n", - " flux_minimum\n", + " carbon_yield_maximum\n", " mass_yield_maximum\n", - " mass_yield_minimum\n", " EX_o2_e\n", " \n", " \n", @@ -235,56 +245,56 @@ " \n", " 0\n", " EX_glc__D_e\n", - " 2.385536e-15\n", " 0.0\n", - " 0.000000\n", " 0.0\n", - " 2.345496e-15\n", " 0.0\n", + " 0.000000\n", + " 0.000000\n", + " 0.000000\n", " -60.000000\n", " \n", " \n", " 1\n", " EX_glc__D_e\n", - " 5.263158e-02\n", " 0.0\n", - " 1.578947\n", " 0.0\n", - " 5.174819e-02\n", " 0.0\n", + " 1.578947\n", + " 0.052632\n", + " 0.051748\n", " -56.842105\n", " \n", " \n", " 2\n", " EX_glc__D_e\n", - " 1.052632e-01\n", " 0.0\n", - " 3.157895\n", " 0.0\n", - " 1.034964e-01\n", " 0.0\n", + " 3.157895\n", + " 0.105263\n", + " 0.103496\n", " -53.684211\n", " \n", " \n", " 3\n", " EX_glc__D_e\n", - " 1.578947e-01\n", " 0.0\n", - " 4.736842\n", " 0.0\n", - " 1.552446e-01\n", " 0.0\n", + " 4.736842\n", + " 0.157895\n", + " 0.155245\n", " -50.526316\n", " \n", " \n", " 4\n", " EX_glc__D_e\n", - " 2.105263e-01\n", " 0.0\n", - " 6.315789\n", " 0.0\n", - " 2.069927e-01\n", " 0.0\n", + " 6.315789\n", + " 0.210526\n", + " 0.206993\n", " -47.368421\n", " \n", " \n", @@ -292,19 +302,19 @@ "" ], "text/plain": [ - " carbon_source carbon_yield_maximum carbon_yield_minimum flux_maximum \\\n", - "0 EX_glc__D_e 2.385536e-15 0.0 0.000000 \n", - "1 EX_glc__D_e 5.263158e-02 0.0 1.578947 \n", - "2 EX_glc__D_e 1.052632e-01 0.0 3.157895 \n", - "3 EX_glc__D_e 1.578947e-01 0.0 4.736842 \n", - "4 EX_glc__D_e 2.105263e-01 0.0 6.315789 \n", + " carbon_source flux_minimum carbon_yield_minimum mass_yield_minimum \\\n", + "0 EX_glc__D_e 0.0 0.0 0.0 \n", + "1 EX_glc__D_e 0.0 0.0 0.0 \n", + "2 EX_glc__D_e 0.0 0.0 0.0 \n", + "3 EX_glc__D_e 0.0 0.0 0.0 \n", + "4 EX_glc__D_e 0.0 0.0 0.0 \n", "\n", - " flux_minimum mass_yield_maximum mass_yield_minimum EX_o2_e \n", - "0 0.0 2.345496e-15 0.0 -60.000000 \n", - "1 0.0 5.174819e-02 0.0 -56.842105 \n", - "2 0.0 1.034964e-01 0.0 -53.684211 \n", - "3 0.0 1.552446e-01 0.0 -50.526316 \n", - "4 0.0 2.069927e-01 0.0 -47.368421 " + " flux_maximum carbon_yield_maximum mass_yield_maximum EX_o2_e \n", + "0 0.000000 0.000000 0.000000 -60.000000 \n", + "1 1.578947 0.052632 0.051748 -56.842105 \n", + "2 3.157895 0.105263 0.103496 -53.684211 \n", + "3 4.736842 0.157895 0.155245 -50.526316 \n", + "4 6.315789 0.210526 0.206993 -47.368421 " ] }, "execution_count": 5, @@ -332,12 +342,14 @@ "outputs": [ { "data": { - "image/png": "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\nTkSuQmCC\n", + "image/png": "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\n", "text/plain": [ - "" + "
" ] }, - "metadata": {}, + "metadata": { + "needs_background": "light" + }, "output_type": "display_data" } ], @@ -356,7 +368,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -370,7 +382,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.3" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/sampling.ipynb b/documentation_builder/sampling.ipynb index dadc07048..07705f680 100644 --- a/documentation_builder/sampling.ipynb +++ b/documentation_builder/sampling.ipynb @@ -26,6 +26,15 @@ "execution_count": 1, "metadata": {}, "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + }, { "data": { "text/html": [ @@ -72,124 +81,124 @@ " \n", " \n", " \n", - " 0\n", - " -2.060626\n", - " -0.766231\n", - " -1.746726\n", - " 6.136642\n", - " 6.136642\n", - " -1.746726\n", - " 13.915541\n", - " 2.174506\n", - " -0.242290\n", - " -1.294395\n", + " 0\n", + " -0.771296\n", + " -0.431093\n", + " -2.284246\n", + " 6.735302\n", + " 6.735302\n", + " -2.284246\n", + " 2.273930\n", + " 3.942050\n", + " -1.589360\n", + " -0.340203\n", " ...\n", - " -6.117270\n", - " 33.457990\n", - " 34.319917\n", - " 704.483302\n", - " -2.174506\n", - " 6.109618\n", - " 0.230408\n", - " 6.109618\n", - " 6.106540\n", - " 3.122076\n", + " -2.314416\n", + " 6.997002\n", + " 8.082133\n", + " 335.977726\n", + " -3.942050\n", + " 2.152983\n", + " 12.850348\n", + " 2.152983\n", + " 2.088065\n", + " 7.542984\n", " \n", " \n", - " 1\n", - " -1.518217\n", - " -1.265778\n", - " -0.253608\n", - " 9.081331\n", - " 9.081331\n", - " -0.253608\n", - " 7.194475\n", - " 5.979050\n", - " -0.225992\n", - " -0.252439\n", + " 1\n", + " -2.089680\n", + " -1.099843\n", + " -0.386453\n", + " 10.477790\n", + " 10.477790\n", + " -0.386453\n", + " 3.396770\n", + " 3.163168\n", + " -1.592767\n", + " -0.989837\n", " ...\n", - " -5.072733\n", - " 39.902893\n", - " 40.343192\n", - " 718.488475\n", - " -5.979050\n", - " 4.991843\n", - " 0.137019\n", - " 4.991843\n", - " 4.959315\n", - " 4.172389\n", + " -1.756359\n", + " 3.093051\n", + " 3.415053\n", + " 540.804734\n", + " -3.163168\n", + " 1.657479\n", + " 56.649368\n", + " 1.657479\n", + " 1.617715\n", + " 8.029587\n", " \n", " \n", - " 2\n", - " -3.790368\n", - " -1.292543\n", - " -0.457502\n", - " 9.340755\n", - " 9.340755\n", - " -0.457502\n", - " 23.435794\n", - " 1.652395\n", - " -0.333891\n", - " -2.497825\n", + " 2\n", + " -1.108346\n", + " -0.126460\n", + " -1.198639\n", + " 5.057819\n", + " 5.057819\n", + " -1.198639\n", + " 7.154043\n", + " 0.313155\n", + " -0.227554\n", + " -0.981886\n", " ...\n", - " -0.674220\n", - " 0.153276\n", - " 1.506968\n", - " 844.889698\n", - " -1.652395\n", - " 0.673601\n", - " 9.198001\n", - " 0.673601\n", - " 0.673352\n", - " 7.770955\n", + " -4.491355\n", + " 7.873466\n", + " 8.606818\n", + " 558.331088\n", + " -0.313155\n", + " 4.295540\n", + " 12.141283\n", + " 4.295540\n", + " 4.216795\n", + " 5.181243\n", " \n", " \n", - " 3\n", - " -5.173189\n", - " -4.511308\n", - " -2.333962\n", - " 7.364836\n", - " 7.364836\n", - " -2.333962\n", - " 11.725401\n", - " 2.504044\n", - " -0.051420\n", - " -0.661881\n", + " 3\n", + " -1.239111\n", + " -0.334024\n", + " -1.284023\n", + " 12.035499\n", + " 12.035499\n", + " -1.284023\n", + " 19.790232\n", + " 1.359155\n", + " -0.007846\n", + " -0.905088\n", " ...\n", - " -0.681200\n", - " 7.506732\n", - " 9.110446\n", - " 885.755585\n", - " -2.504044\n", - " 0.656561\n", - " 7.514520\n", - " 0.656561\n", - " 0.646653\n", - " 8.450394\n", + " -2.063827\n", + " 9.002800\n", + " 10.772472\n", + " 647.037371\n", + " -1.359155\n", + " 2.016495\n", + " 26.609381\n", + " 2.016495\n", + " 1.997461\n", + " 7.712080\n", " \n", " \n", - " 4\n", - " -6.787036\n", - " -5.645414\n", - " -1.521566\n", - " 6.373250\n", - " 6.373250\n", - " -1.521566\n", - " 4.823373\n", - " 3.452123\n", - " -0.126943\n", - " -1.141621\n", + " 4\n", + " -1.943290\n", + " -1.571257\n", + " -0.842072\n", + " 11.035900\n", + " 11.035900\n", + " -0.842072\n", + " 15.963163\n", + " 0.288986\n", + " -0.861444\n", + " -0.372033\n", " ...\n", - " -0.510598\n", - " 9.307459\n", - " 10.941500\n", - " 749.854462\n", - " -3.452123\n", - " 0.474878\n", - " 6.235982\n", - " 0.474878\n", - " 0.460514\n", - " 8.908012\n", + " -1.468256\n", + " 7.188997\n", + " 8.085781\n", + " 368.039875\n", + " -0.288986\n", + " 1.465663\n", + " 5.730886\n", + " 1.465663\n", + " 1.464620\n", + " 8.298285\n", " \n", " \n", "\n", @@ -197,26 +206,26 @@ "" ], "text/plain": [ - " ACALD ACALDt ACKr ACONTa ACONTb ACt2r ADK1 \\\n", - "0 -2.060626 -0.766231 -1.746726 6.136642 6.136642 -1.746726 13.915541 \n", - "1 -1.518217 -1.265778 -0.253608 9.081331 9.081331 -0.253608 7.194475 \n", - "2 -3.790368 -1.292543 -0.457502 9.340755 9.340755 -0.457502 23.435794 \n", - "3 -5.173189 -4.511308 -2.333962 7.364836 7.364836 -2.333962 11.725401 \n", - "4 -6.787036 -5.645414 -1.521566 6.373250 6.373250 -1.521566 4.823373 \n", + " ACALD ACALDt ACKr ACONTa ACONTb ACt2r ADK1 \\\n", + "0 -0.771296 -0.431093 -2.284246 6.735302 6.735302 -2.284246 2.273930 \n", + "1 -2.089680 -1.099843 -0.386453 10.477790 10.477790 -0.386453 3.396770 \n", + "2 -1.108346 -0.126460 -1.198639 5.057819 5.057819 -1.198639 7.154043 \n", + "3 -1.239111 -0.334024 -1.284023 12.035499 12.035499 -1.284023 19.790232 \n", + "4 -1.943290 -1.571257 -0.842072 11.035900 11.035900 -0.842072 15.963163 \n", "\n", - " AKGDH AKGt2r ALCD2x ... RPI SUCCt2_2 SUCCt3 \\\n", - "0 2.174506 -0.242290 -1.294395 ... -6.117270 33.457990 34.319917 \n", - "1 5.979050 -0.225992 -0.252439 ... -5.072733 39.902893 40.343192 \n", - "2 1.652395 -0.333891 -2.497825 ... -0.674220 0.153276 1.506968 \n", - "3 2.504044 -0.051420 -0.661881 ... -0.681200 7.506732 9.110446 \n", - "4 3.452123 -0.126943 -1.141621 ... -0.510598 9.307459 10.941500 \n", + " AKGDH AKGt2r ALCD2x ... RPI SUCCt2_2 SUCCt3 \\\n", + "0 3.942050 -1.589360 -0.340203 ... -2.314416 6.997002 8.082133 \n", + "1 3.163168 -1.592767 -0.989837 ... -1.756359 3.093051 3.415053 \n", + "2 0.313155 -0.227554 -0.981886 ... -4.491355 7.873466 8.606818 \n", + "3 1.359155 -0.007846 -0.905088 ... -2.063827 9.002800 10.772472 \n", + "4 0.288986 -0.861444 -0.372033 ... -1.468256 7.188997 8.085781 \n", "\n", - " SUCDi SUCOAS TALA THD2 TKT1 TKT2 TPI \n", - "0 704.483302 -2.174506 6.109618 0.230408 6.109618 6.106540 3.122076 \n", - "1 718.488475 -5.979050 4.991843 0.137019 4.991843 4.959315 4.172389 \n", - "2 844.889698 -1.652395 0.673601 9.198001 0.673601 0.673352 7.770955 \n", - "3 885.755585 -2.504044 0.656561 7.514520 0.656561 0.646653 8.450394 \n", - "4 749.854462 -3.452123 0.474878 6.235982 0.474878 0.460514 8.908012 \n", + " SUCDi SUCOAS TALA THD2 TKT1 TKT2 TPI \n", + "0 335.977726 -3.942050 2.152983 12.850348 2.152983 2.088065 7.542984 \n", + "1 540.804734 -3.163168 1.657479 56.649368 1.657479 1.617715 8.029587 \n", + "2 558.331088 -0.313155 4.295540 12.141283 4.295540 4.216795 5.181243 \n", + "3 647.037371 -1.359155 2.016495 26.609381 2.016495 1.997461 7.712080 \n", + "4 368.039875 -0.288986 1.465663 5.730886 1.465663 1.464620 8.298285 \n", "\n", "[5 rows x 95 columns]" ] @@ -227,10 +236,10 @@ } ], "source": [ - "from cobra.test import create_test_model\n", + "from cobra.io import load_model\n", "from cobra.sampling import sample\n", "\n", - "model = create_test_model(\"textbook\")\n", + "model = load_model(\"textbook\")\n", "s = sample(model, 100)\n", "s.head()" ] @@ -252,11 +261,11 @@ "output_type": "stream", "text": [ "One process:\n", - "CPU times: user 19.7 s, sys: 918 ms, total: 20.6 s\n", - "Wall time: 16.1 s\n", + "CPU times: user 9.8 s, sys: 333 ms, total: 10.1 s\n", + "Wall time: 9.21 s\n", "Two processes:\n", - "CPU times: user 1.31 s, sys: 154 ms, total: 1.46 s\n", - "Wall time: 8.76 s\n" + "CPU times: user 186 ms, sys: 41.2 ms, total: 227 ms\n", + "Wall time: 5.26 s\n" ] } ], @@ -501,7 +510,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Usually 14.50% +- 2.16% grow...\n" + "Usually 6.30% +- 1.49% grow...\n" ] } ], @@ -551,16 +560,16 @@ "name": "stdout", "output_type": "stream", "text": [ - "0 0.124471\n", - "1 0.151331\n", - "2 0.108145\n", - "3 0.144076\n", - "4 0.110480\n", - "5 0.109024\n", - "6 0.111399\n", - "7 0.139682\n", - "8 0.103511\n", - "9 0.116880\n", + "0 0.106248\n", + "1 0.116061\n", + "2 0.113978\n", + "3 0.179056\n", + "4 0.117057\n", + "5 0.111005\n", + "6 0.182250\n", + "7 0.114853\n", + "8 0.128597\n", + "9 0.160970\n", "Name: Biomass_Ecoli_core, dtype: float64\n" ] } @@ -581,7 +590,7 @@ "metadata": { "anaconda-cloud": {}, "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -595,7 +604,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.7" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/simulating.ipynb b/documentation_builder/simulating.ipynb index c9b8dc22f..6abdfe9cf 100644 --- a/documentation_builder/simulating.ipynb +++ b/documentation_builder/simulating.ipynb @@ -18,10 +18,20 @@ "cell_type": "code", "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scaling...\n", + " A: min|aij| = 1.000e+00 max|aij| = 1.000e+00 ratio = 1.000e+00\n", + "Problem data seem to be well scaled\n" + ] + } + ], "source": [ - "import cobra.test\n", - "model = cobra.test.create_test_model(\"textbook\")" + "from cobra.io import load_model\n", + "model = load_model(\"textbook\")" ] }, { @@ -40,7 +50,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "\n" + "\n" ] } ], @@ -104,8 +114,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 590 µs, sys: 642 µs, total: 1.23 ms\n", - "Wall time: 1.24 ms\n" + "CPU times: user 1.45 ms, sys: 8 µs, total: 1.46 ms\n", + "Wall time: 1.47 ms\n" ] }, { @@ -133,8 +143,8 @@ "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 85 µs, sys: 91 µs, total: 176 µs\n", - "Wall time: 180 µs\n" + "CPU times: user 86 µs, sys: 0 ns, total: 86 µs\n", + "Wall time: 88.9 µs\n" ] }, { @@ -251,7 +261,7 @@ "" ], "text/plain": [ - "" + "" ] }, "execution_count": 6, @@ -339,7 +349,7 @@ "" ], "text/plain": [ - "" + "" ] }, "execution_count": 7, @@ -439,7 +449,7 @@ "" ], "text/plain": [ - "" + "" ] }, "execution_count": 8, @@ -489,7 +499,7 @@ { "data": { "text/plain": [ - "{: 1.0}" + "{: 1.0}" ] }, "execution_count": 10, @@ -517,7 +527,7 @@ { "data": { "text/plain": [ - "{: 1.0}" + "{: 1.0}" ] }, "execution_count": 11, @@ -658,7 +668,7 @@ " \n", " \n", " AKGt2r\n", - " -1.586328e-14\n", + " -1.451321e-14\n", " 0.000000e+00\n", " \n", " \n", @@ -680,7 +690,7 @@ "ACt2r -4.012477e-14 0.000000e+00\n", "ADK1 0.000000e+00 1.705303e-13\n", "AKGDH 2.000000e+01 2.000000e+01\n", - "AKGt2r -1.586328e-14 0.000000e+00\n", + "AKGt2r -1.451321e-14 0.000000e+00\n", "ALCD2x -2.273737e-14 0.000000e+00" ] }, @@ -953,7 +963,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -1116,10 +1126,10 @@ "" ], "text/plain": [ - "" + "" ] }, - "execution_count": 18, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -1138,7 +1148,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 18, "metadata": {}, "outputs": [ { @@ -1241,10 +1251,10 @@ "" ], "text/plain": [ - "" + "" ] }, - "execution_count": 19, + "execution_count": 18, "metadata": {}, "output_type": "execute_result" } @@ -1276,7 +1286,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ @@ -1296,7 +1306,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 20, "metadata": {}, "outputs": [ { @@ -1305,7 +1315,7 @@ "8.881784197001252e-16" ] }, - "execution_count": 21, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -1317,7 +1327,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 21, "metadata": {}, "outputs": [ { @@ -1326,7 +1336,7 @@ "True" ] }, - "execution_count": 22, + "execution_count": 21, "metadata": {}, "output_type": "execute_result" } @@ -1355,7 +1365,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 22, "metadata": {}, "outputs": [ { @@ -1445,10 +1455,10 @@ "" ], "text/plain": [ - "" + "" ] }, - "execution_count": 23, + "execution_count": 22, "metadata": {}, "output_type": "execute_result" } @@ -1457,11 +1467,18 @@ "geometric_fba_sol = cobra.flux_analysis.geometric_fba(model)\n", "geometric_fba_sol" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -1475,7 +1492,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.5" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/documentation_builder/solvers.ipynb b/documentation_builder/solvers.ipynb index d2bc82211..f2e37115f 100644 --- a/documentation_builder/solvers.ipynb +++ b/documentation_builder/solvers.ipynb @@ -9,10 +9,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "A constraint-based reconstruction and analysis model for biological systems is actually just an application of a class of discrete optimization problems typically solved with [linear, mixed integer](https://en.wikipedia.org/wiki/Linear_programming) or [quadratic programming](https://en.wikipedia.org/wiki/Quadratic_programming) techniques. Cobrapy does not implement any algorithm to find solutions to such problems but rather creates a biologically motivated abstraction to these techniques to make it easier to think of how metabolic systems work without paying much attention to how that formulates to an optimization problem.\n", "\n", @@ -24,25 +21,17 @@ { "cell_type": "code", "execution_count": 1, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [], "source": [ - "import cobra.test\n", - "model = cobra.test.create_test_model('textbook')" + "from cobra.io import load_model\n", + "model = load_model('textbook')" ] }, { "cell_type": "code", "execution_count": 2, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [], "source": [ "model.solver = 'glpk'\n", @@ -52,10 +41,7 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "For information on how to configure and tune the solver, please see the [documentation for optlang project](http://optlang.readthedocs.io) and note that `model.solver` is simply an optlang object of class `Model`." ] @@ -63,11 +49,7 @@ { "cell_type": "code", "execution_count": 3, - "metadata": { - "collapsed": false, - "deletable": true, - "editable": true - }, + "metadata": {}, "outputs": [ { "data": { @@ -86,20 +68,14 @@ }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "## Internal solver interfaces" ] }, { "cell_type": "markdown", - "metadata": { - "deletable": true, - "editable": true - }, + "metadata": {}, "source": [ "Cobrapy also contains its own solver interfaces but these are now deprecated and will be removed completely in the near future. For documentation of how to use these, please refer to [older documentation](http://cobrapy.readthedocs.io/en/0.5.11/)." ] @@ -107,7 +83,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -121,7 +97,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.2" + "version": "3.7.1" } }, "nbformat": 4, diff --git a/release-notes/next-release.md b/release-notes/next-release.md index 0f1931f6d..ec2f3203b 100644 --- a/release-notes/next-release.md +++ b/release-notes/next-release.md @@ -22,6 +22,9 @@ fail more comprehensibly. ## Other +Moved tests to a different directory, from `src/cobra/test` +to `tests` + Added two tests for GPR fixes test_gpr_wrong_input() test_gpr_that_needs_two_replacements() diff --git a/setup.cfg b/setup.cfg index cfca70ef0..560467d06 100644 --- a/setup.cfg +++ b/setup.cfg @@ -79,8 +79,8 @@ where = src [options.package_data] cobra = - io/*.json - test/data/* + data/* + io/*.json [options.extras_require] array = diff --git a/src/cobra/core/dictlist.py b/src/cobra/core/dictlist.py index 6a862f9ab..b4a41f0e2 100644 --- a/src/cobra/core/dictlist.py +++ b/src/cobra/core/dictlist.py @@ -134,8 +134,8 @@ def query( Examples -------- - >>> import cobra.test - >>> model = cobra.test.create_test_model('textbook') + >>> from cobra.io import load_model + >>> model = load_model('textbook') >>> model.reactions.query(lambda x: x.boundary) >>> import re >>> regex = re.compile('^g', flags=re.IGNORECASE) diff --git a/src/cobra/core/metabolite.py b/src/cobra/core/metabolite.py index 2376f6945..6b3d31dc9 100644 --- a/src/cobra/core/metabolite.py +++ b/src/cobra/core/metabolite.py @@ -240,9 +240,8 @@ def shadow_price(self) -> float: Examples -------- - >>> import cobra - >>> import cobra.test - >>> model = cobra.test.create_test_model("textbook") + >>> from cobra.io import load_model + >>> model = load_model("textbook") >>> solution = model.optimize() >>> model.metabolites.glc__D_e.shadow_price -0.09166474637510488 diff --git a/src/cobra/core/model.py b/src/cobra/core/model.py index e6160209a..5abf5acaf 100644 --- a/src/cobra/core/model.py +++ b/src/cobra/core/model.py @@ -126,10 +126,9 @@ def solver(self): Examples -------- - >>> import cobra.test - >>> model = cobra.test.create_test_model("textbook") - >>> new = model.problem.Constraint(model.objective.expression, - >>> lb=0.99) + >>> from cobra.io import load_model + >>> model = load_model("textbook") + >>> new = model.problem.Constraint(model.objective.expression, lb=0.99) >>> model.solver.add(new) """ return self._solver @@ -217,9 +216,10 @@ def compartments(self, value): Examples -------- - >>> import cobra.test - >>> model = cobra.test.create_test_model("textbook") + >>> from cobra.io import load_model + >>> model = load_model("textbook") >>> model.compartments = {'c': 'the cytosol'} + >>> model.compartments {'c': 'the cytosol', 'e': 'extracellular'} """ self._compartments.update(value) @@ -580,8 +580,8 @@ def add_boundary( Examples -------- - >>> import cobra.test - >>> model = cobra.test.create_test_model("textbook") + >>> from cobra.io load_model + >>> model = load_model("textbook") >>> demand = model.add_boundary(model.metabolites.atp_c, type="demand") >>> demand.id 'DM_atp_c' diff --git a/src/cobra/core/reaction.py b/src/cobra/core/reaction.py index 4620f16ad..4da43208f 100644 --- a/src/cobra/core/reaction.py +++ b/src/cobra/core/reaction.py @@ -485,8 +485,8 @@ def flux(self) -> float: Examples -------- - >>> import cobra.test - >>> model = cobra.test.create_test_model("textbook") + >>> from cobra.io import load_model + >>> model = load_model("textbook") >>> solution = model.optimize() >>> model.reactions.PFK.flux 7.477381962160283 @@ -542,8 +542,8 @@ def reduced_cost(self) -> float: Examples -------- - >>> import cobra.test - >>> model = cobra.test.create_test_model("textbook") + >>> from cobra.io import load_model + >>> model = load_model("textbook") >>> solution = model.optimize() >>> model.reactions.PFK.reduced_cost -8.673617379884035e-18 diff --git a/src/cobra/test/data/iJO1366.xml.gz b/src/cobra/data/iJO1366.xml.gz similarity index 100% rename from src/cobra/test/data/iJO1366.xml.gz rename to src/cobra/data/iJO1366.xml.gz diff --git a/src/cobra/data/iYS1720.xml.gz b/src/cobra/data/iYS1720.xml.gz new file mode 100644 index 000000000..82b618ba2 Binary files /dev/null and b/src/cobra/data/iYS1720.xml.gz differ diff --git a/src/cobra/test/test_manipulation/__init__.py b/src/cobra/data/init.py similarity index 100% rename from src/cobra/test/test_manipulation/__init__.py rename to src/cobra/data/init.py diff --git a/src/cobra/test/data/mini.json b/src/cobra/data/mini.json similarity index 100% rename from src/cobra/test/data/mini.json rename to src/cobra/data/mini.json diff --git a/src/cobra/data/mini.mat b/src/cobra/data/mini.mat new file mode 100644 index 000000000..a470f0f50 Binary files /dev/null and b/src/cobra/data/mini.mat differ diff --git a/src/cobra/test/data/mini.pickle b/src/cobra/data/mini.pickle similarity index 100% rename from src/cobra/test/data/mini.pickle rename to src/cobra/data/mini.pickle diff --git a/src/cobra/test/data/mini.yml b/src/cobra/data/mini.yml similarity index 100% rename from src/cobra/test/data/mini.yml rename to src/cobra/data/mini.yml diff --git a/src/cobra/data/mini_cobra.xml b/src/cobra/data/mini_cobra.xml new file mode 100644 index 000000000..5f2e7b547 --- /dev/null +++ b/src/cobra/data/mini_cobra.xml @@ -0,0 +1,1418 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/cobra/test/data/textbook.xml.gz b/src/cobra/data/textbook.xml.gz similarity index 100% rename from src/cobra/test/data/textbook.xml.gz rename to src/cobra/data/textbook.xml.gz diff --git a/src/cobra/flux_analysis/gapfilling.py b/src/cobra/flux_analysis/gapfilling.py index c2a169c25..3012f6d74 100644 --- a/src/cobra/flux_analysis/gapfilling.py +++ b/src/cobra/flux_analysis/gapfilling.py @@ -385,10 +385,10 @@ def gapfill( Examples -------- - >>> import cobra.test as ct + >>> from cobra.io import load_model >>> from cobra import Model >>> from cobra.flux_analysis import gapfill - >>> model = ct.create_test_model("salmonella") + >>> model = load_model("iYS1720") >>> universal = Model("universal") >>> universal.add_reactions([model.reactions.GF6PTA.copy()]) >>> model.remove_reactions([model.reactions.GF6PTA]) diff --git a/src/cobra/flux_analysis/phenotype_phase_plane.py b/src/cobra/flux_analysis/phenotype_phase_plane.py index d3beca9ae..51aeed661 100644 --- a/src/cobra/flux_analysis/phenotype_phase_plane.py +++ b/src/cobra/flux_analysis/phenotype_phase_plane.py @@ -81,9 +81,9 @@ def production_envelope( Examples -------- - >>> import cobra.test + >>> import cobra.io >>> from cobra.flux_analysis import production_envelope - >>> model = cobra.test.create_test_model("textbook") + >>> model = cobra.io.load_model("textbook") >>> production_envelope(model, ["EX_glc__D_e", "EX_o2_e"]) carbon_source flux_minimum carbon_yield_minimum mass_yield_minimum ... 0 EX_glc__D_e 0.0 0.0 NaN ... diff --git a/src/cobra/io/json.py b/src/cobra/io/json.py index d281b6f70..8fec5191d 100644 --- a/src/cobra/io/json.py +++ b/src/cobra/io/json.py @@ -1,6 +1,6 @@ """Provide functions for I/O in JSON format.""" - -from typing import TYPE_CHECKING, Any +from pathlib import Path +from typing import TYPE_CHECKING, Any, Union from .dict import model_from_dict, model_to_dict @@ -69,7 +69,7 @@ def from_json(document: str) -> "Model": def save_json_model( model: "Model", - filename: str, + filename: Union[str, Path], sort: bool = False, pretty: bool = False, **kwargs: Any @@ -118,14 +118,14 @@ def save_json_model( } dump_opts.update(**kwargs) - if isinstance(filename, str): + if isinstance(filename, (str, Path)): with open(filename, "w") as file_handle: json.dump(obj, file_handle, **dump_opts) else: json.dump(obj, filename, **dump_opts) -def load_json_model(filename: str) -> "Model": +def load_json_model(filename: Union[str, Path]) -> "Model": """Load a cobra model from a file in JSON format. Parameters @@ -144,7 +144,7 @@ def load_json_model(filename: str) -> "Model": from_json : Load from a JSON string. """ - if isinstance(filename, str): + if isinstance(filename, (str, Path)): with open(filename, "r") as file_handle: return model_from_dict(json.load(file_handle)) else: diff --git a/src/cobra/io/web/cobrapy_repository.py b/src/cobra/io/web/cobrapy_repository.py new file mode 100644 index 000000000..0cb92a223 --- /dev/null +++ b/src/cobra/io/web/cobrapy_repository.py @@ -0,0 +1,57 @@ +"""Provide functions for loading metabolic models from local package data.""" + + +import importlib_resources + +import cobra.data + +from .abstract_model_repository import AbstractModelRepository + + +class Cobrapy(AbstractModelRepository): + """ + Define a concrete implementation of the cobrapy (local package) repository. + + Attributes + ---------- + name : str + The name of the Cobrapy repository. + """ + + name: str = "Cobrapy" + + def __init__( + self, + **kwargs, + ) -> None: + """ + Initialize a local Cobrapy repository interface. + + Other Parameters + ---------------- + kwargs + Passed to the parent constructor in order to enable multiple inheritance. + + """ + super().__init__(url="file:////", **kwargs) + + def get_sbml(self, model_id: str) -> bytes: + """ + Attempt to open an SBML document from the local repository. + + Parameters + ---------- + model_id : str + The identifier of the desired metabolic model. This is typically repository + specific. + + Returns + ------- + bytes + A gzip-compressed, UTF-8 encoded SBML document. + """ + return ( + importlib_resources.files("cobra.data") + .joinpath(f"{model_id}.xml.gz") + .read_bytes() + ) diff --git a/src/cobra/io/web/load.py b/src/cobra/io/web/load.py index 4bf69c0d1..d734fec4c 100644 --- a/src/cobra/io/web/load.py +++ b/src/cobra/io/web/load.py @@ -14,6 +14,7 @@ from .abstract_model_repository import AbstractModelRepository from .bigg_models_repository import BiGGModels from .biomodels_repository import BioModels +from .cobrapy_repository import Cobrapy if TYPE_CHECKING: @@ -26,7 +27,11 @@ def load_model( model_id: str, - repositories: Iterable[AbstractModelRepository] = (BiGGModels(), BioModels()), + repositories: Iterable[AbstractModelRepository] = ( + Cobrapy(), + BiGGModels(), + BioModels(), + ), cache: bool = True, ) -> "Model": """ @@ -150,6 +155,11 @@ def _fetch_model( ) try: return repository.get_sbml(model_id=model_id) + except (FileNotFoundError, OSError): + logger.debug( + f"Model '{model_id} not found in the local " + f"repository {repository.name}.'" + ) except httpx.HTTPStatusError as error: if error.response.status_code == 404: logger.debug( diff --git a/src/cobra/io/yaml.py b/src/cobra/io/yaml.py index 69e875804..0d6b874d0 100644 --- a/src/cobra/io/yaml.py +++ b/src/cobra/io/yaml.py @@ -1,7 +1,8 @@ """Provide functions for I/O in YAML format.""" import io -from typing import TYPE_CHECKING, Any, Dict, Optional +from pathlib import Path +from typing import TYPE_CHECKING, Any, Dict, Optional, Union from ruamel.yaml.compat import StringIO from ruamel.yaml.main import YAML @@ -139,7 +140,7 @@ def save_yaml_model( yaml.dump(obj, filename, **kwargs) -def load_yaml_model(filename: str) -> "Model": +def load_yaml_model(filename: Union[str, Path]) -> "Model": """Load a cobra model from a file in YAML format. Parameters @@ -158,7 +159,7 @@ def load_yaml_model(filename: str) -> "Model": from_yaml : Load from a string. """ - if isinstance(filename, str): + if isinstance(filename, (str, Path)): with io.open(filename, "r") as file_handle: return model_from_dict(yaml.load(file_handle)) else: diff --git a/src/cobra/test/__init__.py b/src/cobra/test/__init__.py deleted file mode 100644 index a3247c446..000000000 --- a/src/cobra/test/__init__.py +++ /dev/null @@ -1,59 +0,0 @@ -# -*- coding: utf-8 -*- - -from __future__ import absolute_import - -from os.path import abspath, dirname, join - -from cobra.io import read_sbml_model - -try: - import pytest - import pytest_benchmark -except ImportError: - pytest = None -try: - from cPickle import load as _load -except ImportError: - from pickle import load as _load - -cobra_directory = abspath(join(dirname(abspath(__file__)), "..")) -cobra_location = abspath(join(cobra_directory, "..")) -data_dir = join(cobra_directory, "test", "data", "") - - -def create_test_model(model_name="salmonella"): - """Returns a cobra model for testing - - model_name: str - One of 'ecoli', 'textbook', or 'salmonella', or the - path to a pickled cobra.Model - - """ - if model_name == "ecoli": - ecoli_sbml = join(data_dir, "iJO1366.xml.gz") - return read_sbml_model(ecoli_sbml) - elif model_name == "textbook": - textbook_sbml = join(data_dir, "textbook.xml.gz") - return read_sbml_model(textbook_sbml) - elif model_name == "mini": - mini_sbml = join(data_dir, "mini_fbc2.xml") - return read_sbml_model(mini_sbml) - elif model_name == "salmonella": - salmonella_pickle = join(data_dir, "salmonella.pickle") - model_name = salmonella_pickle - with open(model_name, "rb") as infile: - return _load(infile) - - -def test_all(args=None): - """alias for running all unit-tests on installed cobra""" - if pytest: - args = args if args else [] - - return pytest.main( - ["--pyargs", "cobra", "--benchmark-skip", "-v", "-rs"] + args - ) - else: - raise ImportError( - "missing package pytest and pytest_benchmark" " required for testing" - ) diff --git a/src/cobra/test/test_io/conftest.py b/src/cobra/test/test_io/conftest.py deleted file mode 100644 index aeb9b38d3..000000000 --- a/src/cobra/test/test_io/conftest.py +++ /dev/null @@ -1,110 +0,0 @@ -# -*- coding: utf-8 -*- - -"""Contains module level fixtures and utility functions.""" - -from __future__ import absolute_import - -from os.path import join -from pickle import load - -import pytest -from optlang.interface import OPTIMAL - - -@pytest.fixture(scope="module") -def mini_model(data_directory): - """Fixture for mini model.""" - with open(join(data_directory, "mini.pickle"), "rb") as infile: - return load(infile) - - -def compare_models(model_1, model_2): - """Compare two models (only for testing purposes).""" - assert len(model_1.reactions) == len(model_2.reactions) - assert len(model_1.metabolites) == len(model_2.metabolites) - assert len(model_1.genes) == len(model_2.genes) - assert model_1.objective.direction == model_2.objective.direction - - # check Reaction attributes - for attr in ( - "id", - "name", - "lower_bound", - "upper_bound", - "objective_coefficient", - "gene_reaction_rule", - ): - assert getattr(model_1.reactions[0], attr) == getattr( - model_2.reactions[0], attr - ) - assert getattr(model_1.reactions[5], attr) == getattr( - model_2.reactions[5], attr - ) - assert getattr(model_1.reactions[-1], attr) == getattr( - model_2.reactions[-1], attr - ) - - # check Metabolite attributes - for attr in ("id", "name", "compartment", "formula", "charge"): - assert getattr(model_1.metabolites[0], attr) == getattr( - model_2.metabolites[0], attr - ) - assert getattr(model_1.metabolites[5], attr) == getattr( - model_2.metabolites[5], attr - ) - assert getattr(model_1.metabolites[-1], attr) == getattr( - model_2.metabolites[-1], attr - ) - assert len(model_1.reactions[0].metabolites) == len( - model_2.reactions[0].metabolites - ) - # TODO: either relax gene attribute checking or fix models for testing. - # check Gene attributes - # for attr in ("id", "name"): - # assert getattr(model_1.genes[0], attr) == getattr(model_2.genes[0], - # attr) - # assert getattr(model_1.genes[10], attr) == getattr(model_2.genes[10], - # attr) - # assert getattr(model_1.genes[-1], attr) == getattr(model_2.genes[-1], - # attr) - - assert len(model_1.reactions[8].metabolites) == len( - model_2.reactions[8].metabolites - ) - assert len(model_1.reactions[-1].metabolites) == len( - model_2.reactions[-1].metabolites - ) - assert len(model_1.genes) == len(model_2.genes) - - # ensure they have the same solution max - solution_1 = model_1.optimize() - solution_2 = model_2.optimize() - if solution_1.status == OPTIMAL and solution_2.status == OPTIMAL: - assert abs( - solution_1.objective_value - solution_2.objective_value - ) == pytest.approx(0.0) - else: - assert solution_1.status == solution_2.status - - # ensure the references are correct - # metabolite -> model reference - assert model_1.metabolites[0]._model is model_1 - assert model_2.metabolites[0]._model is model_2 - - # reaction -> model reference - assert model_1.reactions[0]._model is model_1 - assert model_2.reactions[0]._model is model_2 - - # gene -> model reference - if len(model_1.genes): - assert model_1.genes[0]._model is model_1 - assert model_2.genes[0]._model is model_2 - - # extra comparisons - # assert model_1.compartments == model_2.compartments - # assert dict(model_1.metabolites[4].annotation) == dict( - # model_2.metabolites[4].annotation) - # assert dict(model_1.reactions[4].annotation) == dict( - # model_2.reactions[4].annotation) - # assert dict(model_1.genes[5].annotation) == dict( - # model_2.genes[5].annotation) diff --git a/src/cobra/test/test_io/test_pickle.py b/src/cobra/test/test_io/test_pickle.py deleted file mode 100644 index 56e1c5e59..000000000 --- a/src/cobra/test/test_io/test_pickle.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- coding: utf-8 -*- - -"""Test data storage and recovery using pickle.""" - -from __future__ import absolute_import - -from os.path import join -from pickle import dump, load - -import pytest - -from cobra.test.test_io.conftest import compare_models - - -try: - import cPickle - - cload = cPickle.load - cdump = cPickle.dump -except ImportError: - cload = None - cdump = None - - -@pytest.mark.parametrize("load_function", [load, cload]) -def test_read_pickle(data_directory, mini_model, load_function): - """Test the reading of model from pickle.""" - if load_function is None: - pytest.skip() - - with open(join(data_directory, "mini.pickle"), "rb") as infile: - pickle_model = load_function(infile) - - assert compare_models(mini_model, pickle_model) is None - - -@pytest.mark.parametrize("dump_function", [dump, cdump]) -def test_write_pickle(tmpdir, mini_model, dump_function): - """Test the writing of model to pickle.""" - if dump_function is None: - pytest.skip() - - output_file = tmpdir.join("mini.pickle") - with open(str(output_file), "wb") as outfile: - dump_function(mini_model, outfile) - - assert output_file.check() diff --git a/src/cobra/test/conftest.py b/tests/conftest.py similarity index 70% rename from src/cobra/test/conftest.py rename to tests/conftest.py index c8d51bade..f5c37545b 100644 --- a/src/cobra/test/conftest.py +++ b/tests/conftest.py @@ -1,30 +1,46 @@ """Define global fixtures.""" from os.path import join - -import pytest +from pathlib import Path +from pickle import load as _load from cobra import Metabolite, Model, Reaction -from cobra.test import create_test_model, data_dir +from cobra.io import read_sbml_model from cobra.util import solver as sutil try: - from cPickle import load as _load + import pytest + import pytest_benchmark except ImportError: - from pickle import load as _load - - -def pytest_addoption(parser): - try: - parser.addoption("--run-slow", action="store_true", help="run slow tests") - parser.addoption( - "--run-non-deterministic", - action="store_true", - help="run tests that sometimes (rarely) fail", - ) - except ValueError: - pass + pytest = None + + +data_dir = Path(__file__).parent / "data" + + +def create_test_model(model_name="salmonella") -> Model: + """Return a cobra model for testing. + + model_name: str + One of 'ecoli', 'textbook', or 'salmonella', or the + path to a pickled cobra.Model + + """ + if model_name == "ecoli": + ecoli_sbml = str(data_dir / "iJO1366.xml.gz") + return read_sbml_model(ecoli_sbml) + elif model_name == "textbook": + textbook_sbml = join(data_dir, "textbook.xml.gz") + return read_sbml_model(textbook_sbml) + elif model_name == "mini": + mini_sbml = join(data_dir, "mini_fbc2.xml") + return read_sbml_model(mini_sbml) + elif model_name == "salmonella": + salmonella_pickle = join(data_dir, "salmonella.pickle") + model_name = salmonella_pickle + with open(model_name, "rb") as infile: + return _load(infile) @pytest.fixture(scope="session") diff --git a/src/cobra/test/data/AntCore.mat b/tests/data/AntCore.mat similarity index 100% rename from src/cobra/test/data/AntCore.mat rename to tests/data/AntCore.mat diff --git a/src/cobra/test/data/Ec_iAF1260_flux1.mat b/tests/data/Ec_iAF1260_flux1.mat similarity index 100% rename from src/cobra/test/data/Ec_iAF1260_flux1.mat rename to tests/data/Ec_iAF1260_flux1.mat diff --git a/src/cobra/test/data/JSON_with_inf_bounds.json b/tests/data/JSON_with_inf_bounds.json similarity index 100% rename from src/cobra/test/data/JSON_with_inf_bounds.json rename to tests/data/JSON_with_inf_bounds.json diff --git a/src/cobra/test/data/annotation.xml b/tests/data/annotation.xml similarity index 100% rename from src/cobra/test/data/annotation.xml rename to tests/data/annotation.xml diff --git a/src/cobra/test/data/cardiac_mit_glcuptake_atpmax.mat b/tests/data/cardiac_mit_glcuptake_atpmax.mat similarity index 100% rename from src/cobra/test/data/cardiac_mit_glcuptake_atpmax.mat rename to tests/data/cardiac_mit_glcuptake_atpmax.mat diff --git a/src/cobra/test/data/compartments.mat b/tests/data/compartments.mat similarity index 100% rename from src/cobra/test/data/compartments.mat rename to tests/data/compartments.mat diff --git a/src/cobra/test/data/e_coli_core.xml b/tests/data/e_coli_core.xml similarity index 100% rename from src/cobra/test/data/e_coli_core.xml rename to tests/data/e_coli_core.xml diff --git a/src/cobra/test/data/example_notes.xml b/tests/data/example_notes.xml similarity index 100% rename from src/cobra/test/data/example_notes.xml rename to tests/data/example_notes.xml diff --git a/src/cobra/test/data/fbc_ex1.xml b/tests/data/fbc_ex1.xml similarity index 100% rename from src/cobra/test/data/fbc_ex1.xml rename to tests/data/fbc_ex1.xml diff --git a/src/cobra/test/data/fbc_ex2.xml b/tests/data/fbc_ex2.xml similarity index 100% rename from src/cobra/test/data/fbc_ex2.xml rename to tests/data/fbc_ex2.xml diff --git a/src/cobra/test/data/iJO1366.pickle b/tests/data/iJO1366.pickle similarity index 100% rename from src/cobra/test/data/iJO1366.pickle rename to tests/data/iJO1366.pickle diff --git a/tests/data/iJO1366.xml.gz b/tests/data/iJO1366.xml.gz new file mode 100644 index 000000000..a65b366c7 Binary files /dev/null and b/tests/data/iJO1366.xml.gz differ diff --git a/src/cobra/test/data/invalid0.xml b/tests/data/invalid0.xml similarity index 100% rename from src/cobra/test/data/invalid0.xml rename to tests/data/invalid0.xml diff --git a/src/cobra/test/data/invalid1.xml b/tests/data/invalid1.xml similarity index 100% rename from src/cobra/test/data/invalid1.xml rename to tests/data/invalid1.xml diff --git a/src/cobra/test/data/invalid2.xml b/tests/data/invalid2.xml similarity index 100% rename from src/cobra/test/data/invalid2.xml rename to tests/data/invalid2.xml diff --git a/src/cobra/test/data/invalid_annotation_format.json b/tests/data/invalid_annotation_format.json similarity index 100% rename from src/cobra/test/data/invalid_annotation_format.json rename to tests/data/invalid_annotation_format.json diff --git a/tests/data/mini.json b/tests/data/mini.json new file mode 100644 index 000000000..658bd26c1 --- /dev/null +++ b/tests/data/mini.json @@ -0,0 +1,1394 @@ +{ + "compartments": { + "c": "cytosol", + "e": "extracellular" + }, + "genes": [ + { + "id": "b0755", + "name": "gpmA" + }, + { + "id": "b0875", + "name": "aqpZ" + }, + { + "id": "b1101", + "name": "ptsG" + }, + { + "id": "b1380", + "name": "ldhA" + }, + { + "id": "b1621", + "name": "malX" + }, + { + "annotation": { + "ncbigi": [ + "GI:1208453", + "GI:1652654" + ] + }, + "id": "b1676", + "name": "pykF" + }, + { + "id": "b1723", + "name": "pfkB" + }, + { + "id": "b1773", + "name": "ydjI" + }, + { + "id": "b1779", + "name": "gapA" + }, + { + "id": "b1817", + "name": "manX" + }, + { + "id": "b1818", + "name": "manY" + }, + { + "id": "b1819", + "name": "manZ" + }, + { + "id": "b1854", + "name": "pykA" + }, + { + "id": "b2097", + "name": "fbaB" + }, + { + "id": "b2133", + "name": "dld" + }, + { + "id": "b2415", + "name": "ptsH" + }, + { + "id": "b2416", + "name": "ptsI" + }, + { + "id": "b2417", + "name": "crr" + }, + { + "annotation": { + "ncbigi": "GI:1653839" + }, + "id": "b2779", + "name": "eno" + }, + { + "id": "b2925", + "name": "fbaA" + }, + { + "annotation": { + "ncbigi": "GI:1653609" + }, + "id": "b2926", + "name": "pgk" + }, + { + "id": "b2987", + "name": "pitB" + }, + { + "id": "b3493", + "name": "pitA" + }, + { + "id": "b3612", + "name": "gpmM" + }, + { + "annotation": { + "ncbigi": [ + "GI:1006614", + "GI:1651919" + ] + }, + "id": "b3916", + "name": "pfkA" + }, + { + "id": "b3919", + "name": "tpiA" + }, + { + "annotation": { + "ncbigi": "GI:1653253" + }, + "id": "b4025", + "name": "pgi" + }, + { + "id": "b4395", + "name": "ytjC" + }, + { + "id": "s0001", + "name": "G_s0001" + } + ], + "id": "mini_textbook", + "metabolites": [ + { + "annotation": { + "bigg.metabolite": "13dpg", + "biocyc": "DPG", + "chebi": [ + "CHEBI:16001", + "CHEBI:1658", + "CHEBI:20189", + "CHEBI:57604", + "CHEBI:11881" + ], + "hmdb": "HMDB01270", + "kegg.compound": "C00236", + "pubchem.substance": "3535", + "reactome": "REACT_29800", + "seed.compound": "cpd00203", + "unipathway.compound": "UPC00236" + }, + "charge": -4, + "compartment": "c", + "formula": "C3H4O10P2", + "id": "13dpg_c", + "name": "3-Phospho-D-glyceroyl phosphate" + }, + { + "annotation": { + "bigg.metabolite": "2pg", + "biocyc": "2-PG", + "chebi": [ + "CHEBI:1267", + "CHEBI:58289", + "CHEBI:17835", + "CHEBI:21028", + "CHEBI:11651", + "CHEBI:12986", + "CHEBI:24344", + "CHEBI:39868" + ], + "hmdb": [ + "HMDB03391", + "HMDB00362" + ], + "kegg.compound": "C00631", + "pubchem.substance": "3904", + "reactome": "REACT_30485", + "seed.compound": "cpd00482", + "unipathway.compound": "UPC00631" + }, + "charge": -3, + "compartment": "c", + "formula": "C3H4O7P", + "id": "2pg_c", + "name": "D-Glycerate 2-phosphate" + }, + { + "annotation": { + "bigg.metabolite": "3pg", + "biocyc": "G3P", + "chebi": [ + "CHEBI:40016", + "CHEBI:58272", + "CHEBI:57998", + "CHEBI:11879", + "CHEBI:1657", + "CHEBI:1659", + "CHEBI:17050", + "CHEBI:21029", + "CHEBI:11882", + "CHEBI:11880", + "CHEBI:12987", + "CHEBI:17794", + "CHEBI:24345" + ], + "hmdb": "HMDB00807", + "kegg.compound": [ + "C00197", + "C00597" + ], + "pubchem.substance": "3497", + "reactome": "REACT_29728", + "seed.compound": "cpd00169", + "unipathway.compound": [ + "UPC00597", + "UPC00197" + ] + }, + "charge": -3, + "compartment": "c", + "formula": "C3H4O7P", + "id": "3pg_c", + "name": "3-Phospho-D-glycerate" + }, + { + "annotation": { + "bigg.metabolite": "adp", + "biocyc": [ + "ADP", + "ADP-GROUP" + ], + "cas": [ + "58-64-0" + ], + "chebi": [ + "CHEBI:13222", + "CHEBI:16761", + "CHEBI:2342", + "CHEBI:22244", + "CHEBI:40553", + "CHEBI:456216" + ], + "hmdb": "HMDB01341", + "kegg.compound": "C00008", + "kegg.glycan": "G11113", + "pubchem.substance": "3310", + "reactome": [ + "REACT_190072", + "REACT_481002", + "REACT_211606", + "REACT_429160", + "REACT_29370", + "REACT_196180", + "REACT_113581", + "REACT_113582", + "REACT_114564", + "REACT_114565", + "REACT_429153" + ], + "seed.compound": "cpd00008", + "unipathway.compound": "UPC00008" + }, + "charge": -3, + "compartment": "c", + "formula": "C10H12N5O10P2", + "id": "adp_c", + "name": "ADP" + }, + { + "annotation": { + "bigg.metabolite": "atp", + "biocyc": "ATP", + "cas": [ + "56-65-5" + ], + "chebi": [ + "CHEBI:40938", + "CHEBI:15422", + "CHEBI:57299", + "CHEBI:13236", + "CHEBI:10789", + "CHEBI:30616", + "CHEBI:22249", + "CHEBI:10841", + "CHEBI:2359" + ], + "hmdb": "HMDB00538", + "kegg.compound": "C00002", + "kegg.drug": "D08646", + "pubchem.substance": "3304", + "reactome": [ + "REACT_190078", + "REACT_113592", + "REACT_113593", + "REACT_114570", + "REACT_29358", + "REACT_389573", + "REACT_139836", + "REACT_211579" + ], + "seed.compound": "cpd00002", + "unipathway.compound": "UPC00002" + }, + "charge": -4, + "compartment": "c", + "formula": "C10H12N5O13P3", + "id": "atp_c", + "name": "ATP" + }, + { + "annotation": { + "bigg.metabolite": "dhap", + "biocyc": "DIHYDROXY-ACETONE-PHOSPHATE", + "cas": [ + "57-04-5" + ], + "chebi": [ + "CHEBI:14341", + "CHEBI:57642", + "CHEBI:14342", + "CHEBI:16108", + "CHEBI:5454", + "CHEBI:24355", + "CHEBI:39571" + ], + "hmdb": [ + "HMDB01473", + "HMDB11735" + ], + "kegg.compound": "C00111", + "pubchem.substance": "3411", + "reactome": [ + "REACT_188451", + "REACT_75970", + "REACT_390404" + ], + "seed.compound": "cpd00095", + "unipathway.compound": "UPC00111" + }, + "charge": -2, + "compartment": "c", + "formula": "C3H5O6P", + "id": "dhap_c", + "name": "Dihydroxyacetone phosphate" + }, + { + "annotation": { + "bigg.metabolite": "f6p", + "biocyc": "FRUCTOSE-6P", + "cas": [ + "643-13-0" + ], + "chebi": [ + "CHEBI:57634", + "CHEBI:12352", + "CHEBI:45804", + "CHEBI:61527", + "CHEBI:61553", + "CHEBI:10375", + "CHEBI:16084", + "CHEBI:42378", + "CHEBI:22768" + ], + "hmdb": "HMDB03971", + "kegg.compound": [ + "C05345", + "C00085" + ], + "pubchem.substance": "3385", + "seed.compound": "cpd00072", + "unipathway.compound": [ + "UPC05345", + "UPC00085" + ] + }, + "charge": -2, + "compartment": "c", + "formula": "C6H11O9P", + "id": "f6p_c", + "name": "D-Fructose 6-phosphate" + }, + { + "annotation": { + "bigg.metabolite": "fdp", + "biocyc": "FRUCTOSE-16-DIPHOSPHATE", + "cas": [ + "488-69-7" + ], + "chebi": [ + "CHEBI:32968", + "CHEBI:49299", + "CHEBI:42553", + "CHEBI:32966", + "CHEBI:37736", + "CHEBI:28013", + "CHEBI:32967", + "CHEBI:41014", + "CHEBI:22767", + "CHEBI:10374", + "CHEBI:40595", + "CHEBI:40591" + ], + "kegg.compound": [ + "C05378", + "C00354" + ], + "pubchem.substance": "3647", + "seed.compound": "cpd00290", + "unipathway.compound": "UPC00354" + }, + "charge": -4, + "compartment": "c", + "formula": "C6H10O12P2", + "id": "fdp_c", + "name": "D-Fructose 1,6-bisphosphate" + }, + { + "annotation": { + "bigg.metabolite": "g3p", + "cas": [ + "142-10-9" + ], + "chebi": [ + "CHEBI:17138", + "CHEBI:14333", + "CHEBI:5446", + "CHEBI:58027" + ], + "hmdb": "HMDB01112", + "kegg.compound": [ + "C00661", + "C00118" + ], + "pubchem.substance": "3930", + "seed.compound": "cpd00102", + "unipathway.compound": [ + "UPC00661", + "UPC00118" + ] + }, + "charge": -2, + "compartment": "c", + "formula": "C3H5O6P", + "id": "g3p_c", + "name": "Glyceraldehyde 3-phosphate" + }, + { + "annotation": { + "bigg.metabolite": "g6p", + "biocyc": [ + "D-glucose-6-phosphate", + "GLC-6-P" + ], + "cas": [ + "56-73-5" + ], + "chebi": [ + "CHEBI:10399", + "CHEBI:22797", + "CHEBI:41041", + "CHEBI:17719", + "CHEBI:4170", + "CHEBI:61548", + "CHEBI:58247", + "CHEBI:12375" + ], + "hmdb": [ + "HMDB03498", + "HMDB06793", + "HMDB01401", + "HMDB01549" + ], + "kegg.compound": [ + "C00092", + "C01172" + ], + "pubchem.substance": "3392", + "reactome": "REACT_1629756", + "seed.compound": "cpd00079", + "unipathway.compound": "UPC00092" + }, + "charge": -2, + "compartment": "c", + "formula": "C6H11O9P", + "id": "g6p_c", + "name": "D-Glucose 6-phosphate" + }, + { + "annotation": { + "bigg.metabolite": "glc__D", + "cas": [ + "50-99-7" + ], + "kegg.compound": "C00031", + "pubchem.substance": "3333" + }, + "charge": 0, + "compartment": "e", + "formula": "C6H12O6", + "id": "glc__D_e", + "name": "D-Glucose" + }, + { + "annotation": { + "bigg.metabolite": "h2o", + "biocyc": [ + "WATER", + "OH", + "OXONIUM" + ], + "cas": [ + "7732-18-5" + ], + "chebi": [ + "CHEBI:15377", + "CHEBI:13365", + "CHEBI:41979", + "CHEBI:16234", + "CHEBI:36385", + "CHEBI:42857", + "CHEBI:27313", + "CHEBI:44819", + "CHEBI:29373", + "CHEBI:10743", + "CHEBI:5594", + "CHEBI:29356", + "CHEBI:53442", + "CHEBI:29375", + "CHEBI:29374", + "CHEBI:13419", + "CHEBI:43228", + "CHEBI:44292", + "CHEBI:13352", + "CHEBI:41981", + "CHEBI:29412", + "CHEBI:42043", + "CHEBI:33811", + "CHEBI:33813", + "CHEBI:35511", + "CHEBI:5585", + "CHEBI:44641", + "CHEBI:44701" + ], + "hmdb": [ + "HMDB01039", + "HMDB02111" + ], + "kegg.compound": [ + "C01328", + "C00001", + "C18714", + "C18712" + ], + "kegg.drug": [ + "D00001", + "D06322", + "D03703" + ], + "pubchem.substance": "3303", + "reactome": [ + "REACT_947593", + "REACT_189422", + "REACT_141343", + "REACT_113518", + "REACT_1605715", + "REACT_109276", + "REACT_113521", + "REACT_113519", + "REACT_2022884", + "REACT_351603", + "REACT_29356" + ], + "seed.compound": [ + "cpd15275", + "cpd00001" + ], + "unipathway.compound": [ + "UPC00001", + "UPC01328" + ] + }, + "charge": 0, + "compartment": "c", + "formula": "H2O", + "id": "h2o_c", + "name": "H2O" + }, + { + "annotation": { + "bigg.metabolite": "h2o", + "biocyc": [ + "WATER", + "OH", + "OXONIUM" + ], + "cas": [ + "7732-18-5" + ], + "chebi": [ + "CHEBI:15377", + "CHEBI:13365", + "CHEBI:41979", + "CHEBI:16234", + "CHEBI:36385", + "CHEBI:42857", + "CHEBI:27313", + "CHEBI:44819", + "CHEBI:29373", + "CHEBI:10743", + "CHEBI:5594", + "CHEBI:29356", + "CHEBI:53442", + "CHEBI:29375", + "CHEBI:29374", + "CHEBI:13419", + "CHEBI:43228", + "CHEBI:44292", + "CHEBI:13352", + "CHEBI:41981", + "CHEBI:29412", + "CHEBI:42043", + "CHEBI:33811", + "CHEBI:33813", + "CHEBI:35511", + "CHEBI:5585", + "CHEBI:44641", + "CHEBI:44701" + ], + "hmdb": [ + "HMDB01039", + "HMDB02111" + ], + "kegg.compound": [ + "C01328", + "C00001", + "C18714", + "C18712" + ], + "kegg.drug": [ + "D00001", + "D06322", + "D03703" + ], + "pubchem.substance": "3303", + "reactome": [ + "REACT_947593", + "REACT_189422", + "REACT_141343", + "REACT_113518", + "REACT_1605715", + "REACT_109276", + "REACT_113521", + "REACT_113519", + "REACT_2022884", + "REACT_351603", + "REACT_29356" + ], + "seed.compound": [ + "cpd15275", + "cpd00001" + ], + "unipathway.compound": [ + "UPC00001", + "UPC01328" + ] + }, + "charge": 0, + "compartment": "e", + "formula": "H2O", + "id": "h2o_e", + "name": "H2O" + }, + { + "annotation": { + "bigg.metabolite": "h", + "biocyc": "PROTON", + "cas": [ + "12408-02-5" + ], + "chebi": [ + "CHEBI:24636", + "CHEBI:15378", + "CHEBI:10744", + "CHEBI:13357", + "CHEBI:5584" + ], + "kegg.compound": "C00080", + "pubchem.substance": "3380", + "reactome": [ + "REACT_194688", + "REACT_425978", + "REACT_193465", + "REACT_374900", + "REACT_74722", + "REACT_425999", + "REACT_428040", + "REACT_163953", + "REACT_372511", + "REACT_2000349", + "REACT_70106", + "REACT_1470067", + "REACT_113529", + "REACT_425969", + "REACT_428548", + "REACT_156540", + "REACT_1614597", + "REACT_351626", + "REACT_427899" + ], + "seed.compound": "cpd00067", + "unipathway.compound": "UPC00080" + }, + "charge": 1, + "compartment": "c", + "formula": "H", + "id": "h_c", + "name": "H+" + }, + { + "annotation": { + "bigg.metabolite": "h", + "biocyc": "PROTON", + "cas": [ + "12408-02-5" + ], + "chebi": [ + "CHEBI:24636", + "CHEBI:15378", + "CHEBI:10744", + "CHEBI:13357", + "CHEBI:5584" + ], + "kegg.compound": "C00080", + "pubchem.substance": "3380", + "reactome": [ + "REACT_194688", + "REACT_425978", + "REACT_193465", + "REACT_374900", + "REACT_74722", + "REACT_425999", + "REACT_428040", + "REACT_163953", + "REACT_372511", + "REACT_2000349", + "REACT_70106", + "REACT_1470067", + "REACT_113529", + "REACT_425969", + "REACT_428548", + "REACT_156540", + "REACT_1614597", + "REACT_351626", + "REACT_427899" + ], + "seed.compound": "cpd00067", + "unipathway.compound": "UPC00080" + }, + "charge": 1, + "compartment": "e", + "formula": "H", + "id": "h_e", + "name": "H+" + }, + { + "annotation": { + "bigg.metabolite": "lac__D", + "biocyc": "META:D-LACTATE", + "chebi": [ + "CHEBI:11001", + "CHEBI:16004", + "CHEBI:18684", + "CHEBI:341", + "CHEBI:42105", + "CHEBI:42111", + "CHEBI:43701" + ], + "hmdb": [ + "HMDB00171", + "HMDB01311" + ], + "kegg.compound": "C00256", + "metanetx.chemical": "MNXM285", + "seed.compound": "cpd00221" + }, + "charge": -1, + "compartment": "c", + "formula": "C3H5O3", + "id": "lac__D_c", + "name": "D-Lactate" + }, + { + "annotation": { + "bigg.metabolite": "lac__D", + "biocyc": "META:D-LACTATE", + "chebi": [ + "CHEBI:11001", + "CHEBI:16004", + "CHEBI:18684", + "CHEBI:341", + "CHEBI:42105", + "CHEBI:42111", + "CHEBI:43701" + ], + "hmdb": [ + "HMDB00171", + "HMDB01311" + ], + "kegg.compound": "C00256", + "metanetx.chemical": "MNXM285", + "seed.compound": "cpd00221" + }, + "charge": -1, + "compartment": "e", + "formula": "C3H5O3", + "id": "lac__D_e", + "name": "D-Lactate" + }, + { + "annotation": { + "bigg.metabolite": "nad", + "biocyc": "NAD", + "cas": [ + "53-84-9" + ], + "chebi": [ + "CHEBI:21901", + "CHEBI:7422", + "CHEBI:44214", + "CHEBI:15846", + "CHEBI:13394", + "CHEBI:13393", + "CHEBI:44215", + "CHEBI:13389", + "CHEBI:57540", + "CHEBI:44281" + ], + "hmdb": "HMDB00902", + "kegg.compound": "C00003", + "kegg.drug": "D00002", + "pubchem.substance": "3305", + "reactome": [ + "REACT_192307", + "REACT_29360", + "REACT_427523", + "REACT_194653", + "REACT_113526" + ], + "seed.compound": "cpd00003", + "unipathway.compound": "UPC00003" + }, + "charge": -1, + "compartment": "c", + "formula": "C21H26N7O14P2", + "id": "nad_c", + "name": "Nicotinamide adenine dinucleotide" + }, + { + "annotation": { + "bigg.metabolite": "nadh", + "biocyc": "NADH", + "cas": [ + "58-68-4" + ], + "chebi": [ + "CHEBI:13395", + "CHEBI:21902", + "CHEBI:16908", + "CHEBI:7423", + "CHEBI:44216", + "CHEBI:57945", + "CHEBI:13396" + ], + "hmdb": "HMDB01487", + "kegg.compound": "C00004", + "pubchem.substance": "3306", + "reactome": [ + "REACT_192305", + "REACT_73473", + "REACT_194697", + "REACT_29362" + ], + "seed.compound": "cpd00004", + "unipathway.compound": "UPC00004" + }, + "charge": -2, + "compartment": "c", + "formula": "C21H27N7O14P2", + "id": "nadh_c", + "name": "Nicotinamide adenine dinucleotide - reduced" + }, + { + "annotation": { + "bigg.metabolite": "pep", + "biocyc": "PHOSPHO-ENOL-PYRUVATE", + "cas": [ + "138-08-9" + ], + "chebi": [ + "CHEBI:44897", + "CHEBI:44894", + "CHEBI:14812", + "CHEBI:8147", + "CHEBI:26055", + "CHEBI:26054", + "CHEBI:58702", + "CHEBI:18021" + ], + "hmdb": "HMDB00263", + "kegg.compound": "C00074", + "pubchem.substance": "3374", + "reactome": [ + "REACT_29492", + "REACT_372364" + ], + "seed.compound": "cpd00061", + "unipathway.compound": "UPC00074" + }, + "charge": -3, + "compartment": "c", + "formula": "C3H2O6P", + "id": "pep_c", + "name": "Phosphoenolpyruvate" + }, + { + "annotation": { + "bigg.metabolite": "pi", + "biocyc": [ + "Pi", + "PHOSPHATE-GROUP", + "CPD0-1421" + ], + "cas": [ + "14265-44-2" + ], + "chebi": [ + "CHEBI:37583", + "CHEBI:7793", + "CHEBI:37585", + "CHEBI:34683", + "CHEBI:14791", + "CHEBI:34855", + "CHEBI:29137", + "CHEBI:29139", + "CHEBI:63036", + "CHEBI:26020", + "CHEBI:39739", + "CHEBI:32597", + "CHEBI:32596", + "CHEBI:43474", + "CHEBI:63051", + "CHEBI:43470", + "CHEBI:9679", + "CHEBI:35433", + "CHEBI:4496", + "CHEBI:45024", + "CHEBI:18367", + "CHEBI:26078", + "CHEBI:39745", + "CHEBI:24838" + ], + "hmdb": "HMDB02142", + "kegg.compound": [ + "C13556", + "C13558", + "C00009" + ], + "kegg.drug": "D05467", + "pubchem.substance": "3311", + "reactome": [ + "REACT_947590", + "REACT_109277", + "REACT_113548", + "REACT_2255331", + "REACT_29372", + "REACT_113550", + "REACT_113551" + ], + "seed.compound": [ + "cpd09464", + "cpd09463", + "cpd00009" + ], + "unipathway.compound": "UPC00009" + }, + "charge": -2, + "compartment": "c", + "formula": "HO4P", + "id": "pi_c", + "name": "Phosphate" + }, + { + "annotation": { + "bigg.metabolite": "pi", + "biocyc": [ + "Pi", + "PHOSPHATE-GROUP", + "CPD0-1421" + ], + "cas": [ + "14265-44-2" + ], + "chebi": [ + "CHEBI:37583", + "CHEBI:7793", + "CHEBI:37585", + "CHEBI:34683", + "CHEBI:14791", + "CHEBI:34855", + "CHEBI:29137", + "CHEBI:29139", + "CHEBI:63036", + "CHEBI:26020", + "CHEBI:39739", + "CHEBI:32597", + "CHEBI:32596", + "CHEBI:43474", + "CHEBI:63051", + "CHEBI:43470", + "CHEBI:9679", + "CHEBI:35433", + "CHEBI:4496", + "CHEBI:45024", + "CHEBI:18367", + "CHEBI:26078", + "CHEBI:39745", + "CHEBI:24838" + ], + "hmdb": "HMDB02142", + "kegg.compound": [ + "C13556", + "C13558", + "C00009" + ], + "kegg.drug": "D05467", + "pubchem.substance": "3311", + "reactome": [ + "REACT_947590", + "REACT_109277", + "REACT_113548", + "REACT_2255331", + "REACT_29372", + "REACT_113550", + "REACT_113551" + ], + "seed.compound": [ + "cpd09464", + "cpd09463", + "cpd00009" + ], + "unipathway.compound": "UPC00009" + }, + "charge": -2, + "compartment": "e", + "formula": "HO4P", + "id": "pi_e", + "name": "Phosphate" + }, + { + "annotation": { + "bigg.metabolite": "pyr", + "biocyc": "PYRUVATE", + "cas": [ + "127-17-3" + ], + "chebi": [ + "CHEBI:15361", + "CHEBI:14987", + "CHEBI:8685", + "CHEBI:32816", + "CHEBI:45253", + "CHEBI:26466", + "CHEBI:26462" + ], + "hmdb": "HMDB00243", + "kegg.compound": "C00022", + "lipidmaps": "LMFA01060077", + "pubchem.substance": "3324", + "reactome": [ + "REACT_113557", + "REACT_389680", + "REACT_29398" + ], + "seed.compound": "cpd00020", + "unipathway.compound": "UPC00022" + }, + "charge": -1, + "compartment": "c", + "formula": "C3H3O3", + "id": "pyr_c", + "name": "Pyruvate" + } + ], + "reactions": [ + { + "annotation": { + "bigg.reaction": "ATPM" + }, + "gene_reaction_rule": "", + "id": "ATPM", + "lower_bound": 8.39, + "metabolites": { + "adp_c": 1.0, + "atp_c": -1.0, + "h2o_c": -1.0, + "h_c": 1.0, + "pi_c": 1.0 + }, + "name": "ATP maintenance requirement", + "objective_coefficient": 1.0, + "upper_bound": 1000.0 + }, + { + "gene_reaction_rule": "", + "id": "D_LACt2", + "lower_bound": -1000.0, + "metabolites": {}, + "name": "", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "ENO" + }, + "gene_reaction_rule": "b2779", + "id": "ENO", + "lower_bound": -1000.0, + "metabolites": { + "2pg_c": -1.0, + "h2o_c": 1.0, + "pep_c": 1.0 + }, + "name": "enolase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "glc", + "sbo": "SBO:0000627" + }, + "gene_reaction_rule": "", + "id": "EX_glc__D_e", + "lower_bound": -10.0, + "metabolites": { + "glc__D_e": -1.0 + }, + "name": "D-Glucose exchange", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "h", + "sbo": "SBO:0000627" + }, + "gene_reaction_rule": "", + "id": "EX_h_e", + "lower_bound": -1000.0, + "metabolites": { + "h_e": -1.0 + }, + "name": "H+ exchange", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "lac__D", + "sbo": "SBO:0000627" + }, + "gene_reaction_rule": "", + "id": "EX_lac__D_e", + "lower_bound": 0.0, + "metabolites": { + "lac__D_e": -1.0 + }, + "name": "D-lactate exchange", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "FBA" + }, + "gene_reaction_rule": "b1773 or b2097 or b2925", + "id": "FBA", + "lower_bound": -1000.0, + "metabolites": { + "dhap_c": 1.0, + "fdp_c": -1.0, + "g3p_c": 1.0 + }, + "name": "fructose-bisphosphate aldolase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "GAPD" + }, + "gene_reaction_rule": "b1779", + "id": "GAPD", + "lower_bound": -1000.0, + "metabolites": { + "13dpg_c": 1.0, + "g3p_c": -1.0, + "h_c": 1.0, + "nad_c": -1.0, + "nadh_c": 1.0, + "pi_c": -1.0 + }, + "name": "glyceraldehyde-3-phosphate dehydrogenase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "GLCpts" + }, + "gene_reaction_rule": "(b2415 and b2417 and b1101 and b2416) or (b2415 and b2417 and b1621 and b2416) or (b2415 and b1818 and b1817 and b1819 and b2416)", + "id": "GLCpts", + "lower_bound": 0.0, + "metabolites": { + "g6p_c": 1.0, + "glc__D_e": -1.0, + "pep_c": -1.0, + "pyr_c": 1.0 + }, + "name": "D-glucose transport via PEP:Pyr PTS", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "H2Ot" + }, + "gene_reaction_rule": "b0875 or s0001", + "id": "H2Ot", + "lower_bound": -1000.0, + "metabolites": { + "h2o_c": 1.0, + "h2o_e": -1.0 + }, + "name": "R H2O transport via - diffusion", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "LDH_D", + "biocyc": "META:DLACTDEHYDROGNAD-RXN", + "ec-code": "1.1.1.28", + "kegg.reaction": "R00704", + "metanetx.reaction": "MNXR101037", + "rhea": [ + "16369", + "16370", + "16371", + "16372" + ], + "sbo": "SBO:0000375" + }, + "gene_reaction_rule": "b2133 or b1380", + "id": "LDH_D", + "lower_bound": -1000.0, + "metabolites": { + "h_c": 1.0, + "lac__D_c": -1.0, + "nad_c": -1.0, + "nadh_c": 1.0, + "pyr_c": 1.0 + }, + "name": "D-lactate dehydrogenase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "PFK" + }, + "gene_reaction_rule": "b3916 or b1723", + "id": "PFK", + "lower_bound": 0.0, + "metabolites": { + "adp_c": 1.0, + "atp_c": -1.0, + "f6p_c": -1.0, + "fdp_c": 1.0, + "h_c": 1.0 + }, + "name": "phosphofructokinase", + "objective_coefficient": 1.0, + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "PGI" + }, + "gene_reaction_rule": "b4025", + "id": "PGI", + "lower_bound": -1000.0, + "metabolites": { + "f6p_c": 1.0, + "g6p_c": -1.0 + }, + "name": "glucose-6-phosphate isomerase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "PGK" + }, + "gene_reaction_rule": "b2926", + "id": "PGK", + "lower_bound": -1000.0, + "metabolites": { + "13dpg_c": 1.0, + "3pg_c": -1.0, + "adp_c": 1.0, + "atp_c": -1.0 + }, + "name": "phosphoglycerate kinase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "PGM" + }, + "gene_reaction_rule": "b4395 or b3612 or b0755", + "id": "PGM", + "lower_bound": -1000.0, + "metabolites": { + "2pg_c": -1.0, + "3pg_c": 1.0 + }, + "name": "phosphoglycerate mutase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "PIt2r" + }, + "gene_reaction_rule": "b2987 or b3493", + "id": "PIt2r", + "lower_bound": -1000.0, + "metabolites": { + "h_c": 1.0, + "h_e": -1.0, + "pi_c": 1.0, + "pi_e": -1.0 + }, + "name": "R phosphate reversible transport via - symport", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "PYK" + }, + "gene_reaction_rule": "b1854 or b1676", + "id": "PYK", + "lower_bound": 0.0, + "metabolites": { + "adp_c": -1.0, + "atp_c": 1.0, + "h_c": -1.0, + "pep_c": -1.0, + "pyr_c": 1.0 + }, + "name": "pyruvate kinase", + "upper_bound": 1000.0 + }, + { + "annotation": { + "bigg.reaction": "TPI" + }, + "gene_reaction_rule": "b3919", + "id": "TPI", + "lower_bound": -1000.0, + "metabolites": { + "dhap_c": -1.0, + "g3p_c": 1.0 + }, + "name": "triose-phosphate isomerase", + "upper_bound": 1000.0 + } + ], + "version": "1" +} \ No newline at end of file diff --git a/src/cobra/test/data/mini.mat b/tests/data/mini.mat similarity index 100% rename from src/cobra/test/data/mini.mat rename to tests/data/mini.mat diff --git a/tests/data/mini.pickle b/tests/data/mini.pickle new file mode 100644 index 000000000..135ce225e Binary files /dev/null and b/tests/data/mini.pickle differ diff --git a/tests/data/mini.yml b/tests/data/mini.yml new file mode 100644 index 000000000..e5e9e3b05 --- /dev/null +++ b/tests/data/mini.yml @@ -0,0 +1,1169 @@ +!!omap +- metabolites: + - !!omap + - id: 13dpg_c + - name: 3-Phospho-D-glyceroyl phosphate + - compartment: c + - charge: -4 + - formula: C3H4O10P2 + - annotation: !!omap + - bigg.metabolite: 13dpg + - biocyc: DPG + - chebi: + - CHEBI:16001 + - CHEBI:1658 + - CHEBI:20189 + - CHEBI:57604 + - CHEBI:11881 + - hmdb: HMDB01270 + - kegg.compound: C00236 + - pubchem.substance: '3535' + - reactome: REACT_29800 + - seed.compound: cpd00203 + - unipathway.compound: UPC00236 + - !!omap + - id: 2pg_c + - name: D-Glycerate 2-phosphate + - compartment: c + - charge: -3 + - formula: C3H4O7P + - annotation: !!omap + - bigg.metabolite: 2pg + - biocyc: 2-PG + - chebi: + - CHEBI:1267 + - CHEBI:58289 + - CHEBI:17835 + - CHEBI:21028 + - CHEBI:11651 + - CHEBI:12986 + - CHEBI:24344 + - CHEBI:39868 + - hmdb: + - HMDB03391 + - HMDB00362 + - kegg.compound: C00631 + - pubchem.substance: '3904' + - reactome: REACT_30485 + - seed.compound: cpd00482 + - unipathway.compound: UPC00631 + - !!omap + - id: 3pg_c + - name: 3-Phospho-D-glycerate + - compartment: c + - charge: -3 + - formula: C3H4O7P + - annotation: !!omap + - bigg.metabolite: 3pg + - biocyc: G3P + - chebi: + - CHEBI:40016 + - CHEBI:58272 + - CHEBI:57998 + - CHEBI:11879 + - CHEBI:1657 + - CHEBI:1659 + - CHEBI:17050 + - CHEBI:21029 + - CHEBI:11882 + - CHEBI:11880 + - CHEBI:12987 + - CHEBI:17794 + - CHEBI:24345 + - hmdb: HMDB00807 + - kegg.compound: + - C00197 + - C00597 + - pubchem.substance: '3497' + - reactome: REACT_29728 + - seed.compound: cpd00169 + - unipathway.compound: + - UPC00597 + - UPC00197 + - !!omap + - id: adp_c + - name: ADP + - compartment: c + - charge: -3 + - formula: C10H12N5O10P2 + - annotation: !!omap + - bigg.metabolite: adp + - biocyc: + - ADP + - ADP-GROUP + - cas: + - 58-64-0 + - chebi: + - CHEBI:13222 + - CHEBI:16761 + - CHEBI:2342 + - CHEBI:22244 + - CHEBI:40553 + - CHEBI:456216 + - hmdb: HMDB01341 + - kegg.compound: C00008 + - kegg.glycan: G11113 + - pubchem.substance: '3310' + - reactome: + - REACT_190072 + - REACT_481002 + - REACT_211606 + - REACT_429160 + - REACT_29370 + - REACT_196180 + - REACT_113581 + - REACT_113582 + - REACT_114564 + - REACT_114565 + - REACT_429153 + - seed.compound: cpd00008 + - unipathway.compound: UPC00008 + - !!omap + - id: atp_c + - name: ATP + - compartment: c + - charge: -4 + - formula: C10H12N5O13P3 + - annotation: !!omap + - bigg.metabolite: atp + - biocyc: ATP + - cas: + - 56-65-5 + - chebi: + - CHEBI:40938 + - CHEBI:15422 + - CHEBI:57299 + - CHEBI:13236 + - CHEBI:10789 + - CHEBI:30616 + - CHEBI:22249 + - CHEBI:10841 + - CHEBI:2359 + - hmdb: HMDB00538 + - kegg.compound: C00002 + - kegg.drug: D08646 + - pubchem.substance: '3304' + - reactome: + - REACT_190078 + - REACT_113592 + - REACT_113593 + - REACT_114570 + - REACT_29358 + - REACT_389573 + - REACT_139836 + - REACT_211579 + - seed.compound: cpd00002 + - unipathway.compound: UPC00002 + - !!omap + - id: dhap_c + - name: Dihydroxyacetone phosphate + - compartment: c + - charge: -2 + - formula: C3H5O6P + - annotation: !!omap + - bigg.metabolite: dhap + - biocyc: DIHYDROXY-ACETONE-PHOSPHATE + - cas: + - 57-04-5 + - chebi: + - CHEBI:14341 + - CHEBI:57642 + - CHEBI:14342 + - CHEBI:16108 + - CHEBI:5454 + - CHEBI:24355 + - CHEBI:39571 + - hmdb: + - HMDB01473 + - HMDB11735 + - kegg.compound: C00111 + - pubchem.substance: '3411' + - reactome: + - REACT_188451 + - REACT_75970 + - REACT_390404 + - seed.compound: cpd00095 + - unipathway.compound: UPC00111 + - !!omap + - id: f6p_c + - name: D-Fructose 6-phosphate + - compartment: c + - charge: -2 + - formula: C6H11O9P + - annotation: !!omap + - bigg.metabolite: f6p + - biocyc: FRUCTOSE-6P + - cas: + - 643-13-0 + - chebi: + - CHEBI:57634 + - CHEBI:12352 + - CHEBI:45804 + - CHEBI:61527 + - CHEBI:61553 + - CHEBI:10375 + - CHEBI:16084 + - CHEBI:42378 + - CHEBI:22768 + - hmdb: HMDB03971 + - kegg.compound: + - C05345 + - C00085 + - pubchem.substance: '3385' + - seed.compound: cpd00072 + - unipathway.compound: + - UPC05345 + - UPC00085 + - !!omap + - id: fdp_c + - name: D-Fructose 1,6-bisphosphate + - compartment: c + - charge: -4 + - formula: C6H10O12P2 + - annotation: !!omap + - bigg.metabolite: fdp + - biocyc: FRUCTOSE-16-DIPHOSPHATE + - cas: + - 488-69-7 + - chebi: + - CHEBI:32968 + - CHEBI:49299 + - CHEBI:42553 + - CHEBI:32966 + - CHEBI:37736 + - CHEBI:28013 + - CHEBI:32967 + - CHEBI:41014 + - CHEBI:22767 + - CHEBI:10374 + - CHEBI:40595 + - CHEBI:40591 + - kegg.compound: + - C05378 + - C00354 + - pubchem.substance: '3647' + - seed.compound: cpd00290 + - unipathway.compound: UPC00354 + - !!omap + - id: g3p_c + - name: Glyceraldehyde 3-phosphate + - compartment: c + - charge: -2 + - formula: C3H5O6P + - annotation: !!omap + - bigg.metabolite: g3p + - cas: + - 142-10-9 + - chebi: + - CHEBI:17138 + - CHEBI:14333 + - CHEBI:5446 + - CHEBI:58027 + - hmdb: HMDB01112 + - kegg.compound: + - C00661 + - C00118 + - pubchem.substance: '3930' + - seed.compound: cpd00102 + - unipathway.compound: + - UPC00661 + - UPC00118 + - !!omap + - id: g6p_c + - name: D-Glucose 6-phosphate + - compartment: c + - charge: -2 + - formula: C6H11O9P + - annotation: !!omap + - bigg.metabolite: g6p + - biocyc: + - D-glucose-6-phosphate + - GLC-6-P + - cas: + - 56-73-5 + - chebi: + - CHEBI:10399 + - CHEBI:22797 + - CHEBI:41041 + - CHEBI:17719 + - CHEBI:4170 + - CHEBI:61548 + - CHEBI:58247 + - CHEBI:12375 + - hmdb: + - HMDB03498 + - HMDB06793 + - HMDB01401 + - HMDB01549 + - kegg.compound: + - C00092 + - C01172 + - pubchem.substance: '3392' + - reactome: REACT_1629756 + - seed.compound: cpd00079 + - unipathway.compound: UPC00092 + - !!omap + - id: glc__D_e + - name: D-Glucose + - compartment: e + - charge: 0 + - formula: C6H12O6 + - annotation: !!omap + - bigg.metabolite: glc__D + - cas: + - 50-99-7 + - kegg.compound: C00031 + - pubchem.substance: '3333' + - !!omap + - id: h2o_c + - name: H2O + - compartment: c + - charge: 0 + - formula: H2O + - annotation: !!omap + - bigg.metabolite: h2o + - biocyc: + - WATER + - OH + - OXONIUM + - cas: + - 7732-18-5 + - chebi: + - CHEBI:15377 + - CHEBI:13365 + - CHEBI:41979 + - CHEBI:16234 + - CHEBI:36385 + - CHEBI:42857 + - CHEBI:27313 + - CHEBI:44819 + - CHEBI:29373 + - CHEBI:10743 + - CHEBI:5594 + - CHEBI:29356 + - CHEBI:53442 + - CHEBI:29375 + - CHEBI:29374 + - CHEBI:13419 + - CHEBI:43228 + - CHEBI:44292 + - CHEBI:13352 + - CHEBI:41981 + - CHEBI:29412 + - CHEBI:42043 + - CHEBI:33811 + - CHEBI:33813 + - CHEBI:35511 + - CHEBI:5585 + - CHEBI:44641 + - CHEBI:44701 + - hmdb: + - HMDB01039 + - HMDB02111 + - kegg.compound: + - C01328 + - C00001 + - C18714 + - C18712 + - kegg.drug: + - D00001 + - D06322 + - D03703 + - pubchem.substance: '3303' + - reactome: + - REACT_947593 + - REACT_189422 + - REACT_141343 + - REACT_113518 + - REACT_1605715 + - REACT_109276 + - REACT_113521 + - REACT_113519 + - REACT_2022884 + - REACT_351603 + - REACT_29356 + - seed.compound: + - cpd15275 + - cpd00001 + - unipathway.compound: + - UPC00001 + - UPC01328 + - !!omap + - id: h2o_e + - name: H2O + - compartment: e + - charge: 0 + - formula: H2O + - annotation: !!omap + - bigg.metabolite: h2o + - biocyc: + - WATER + - OH + - OXONIUM + - cas: + - 7732-18-5 + - chebi: + - CHEBI:15377 + - CHEBI:13365 + - CHEBI:41979 + - CHEBI:16234 + - CHEBI:36385 + - CHEBI:42857 + - CHEBI:27313 + - CHEBI:44819 + - CHEBI:29373 + - CHEBI:10743 + - CHEBI:5594 + - CHEBI:29356 + - CHEBI:53442 + - CHEBI:29375 + - CHEBI:29374 + - CHEBI:13419 + - CHEBI:43228 + - CHEBI:44292 + - CHEBI:13352 + - CHEBI:41981 + - CHEBI:29412 + - CHEBI:42043 + - CHEBI:33811 + - CHEBI:33813 + - CHEBI:35511 + - CHEBI:5585 + - CHEBI:44641 + - CHEBI:44701 + - hmdb: + - HMDB01039 + - HMDB02111 + - kegg.compound: + - C01328 + - C00001 + - C18714 + - C18712 + - kegg.drug: + - D00001 + - D06322 + - D03703 + - pubchem.substance: '3303' + - reactome: + - REACT_947593 + - REACT_189422 + - REACT_141343 + - REACT_113518 + - REACT_1605715 + - REACT_109276 + - REACT_113521 + - REACT_113519 + - REACT_2022884 + - REACT_351603 + - REACT_29356 + - seed.compound: + - cpd15275 + - cpd00001 + - unipathway.compound: + - UPC00001 + - UPC01328 + - !!omap + - id: h_c + - name: H+ + - compartment: c + - charge: 1 + - formula: H + - annotation: !!omap + - bigg.metabolite: h + - biocyc: PROTON + - cas: + - 12408-02-5 + - chebi: + - CHEBI:24636 + - CHEBI:15378 + - CHEBI:10744 + - CHEBI:13357 + - CHEBI:5584 + - kegg.compound: C00080 + - pubchem.substance: '3380' + - reactome: + - REACT_194688 + - REACT_425978 + - REACT_193465 + - REACT_374900 + - REACT_74722 + - REACT_425999 + - REACT_428040 + - REACT_163953 + - REACT_372511 + - REACT_2000349 + - REACT_70106 + - REACT_1470067 + - REACT_113529 + - REACT_425969 + - REACT_428548 + - REACT_156540 + - REACT_1614597 + - REACT_351626 + - REACT_427899 + - seed.compound: cpd00067 + - unipathway.compound: UPC00080 + - !!omap + - id: h_e + - name: H+ + - compartment: e + - charge: 1 + - formula: H + - annotation: !!omap + - bigg.metabolite: h + - biocyc: PROTON + - cas: + - 12408-02-5 + - chebi: + - CHEBI:24636 + - CHEBI:15378 + - CHEBI:10744 + - CHEBI:13357 + - CHEBI:5584 + - kegg.compound: C00080 + - pubchem.substance: '3380' + - reactome: + - REACT_194688 + - REACT_425978 + - REACT_193465 + - REACT_374900 + - REACT_74722 + - REACT_425999 + - REACT_428040 + - REACT_163953 + - REACT_372511 + - REACT_2000349 + - REACT_70106 + - REACT_1470067 + - REACT_113529 + - REACT_425969 + - REACT_428548 + - REACT_156540 + - REACT_1614597 + - REACT_351626 + - REACT_427899 + - seed.compound: cpd00067 + - unipathway.compound: UPC00080 + - !!omap + - id: lac__D_c + - name: D-Lactate + - compartment: c + - charge: -1 + - formula: C3H5O3 + - annotation: !!omap + - bigg.metabolite: lac__D + - biocyc: META:D-LACTATE + - chebi: + - CHEBI:11001 + - CHEBI:16004 + - CHEBI:18684 + - CHEBI:341 + - CHEBI:42105 + - CHEBI:42111 + - CHEBI:43701 + - hmdb: + - HMDB00171 + - HMDB01311 + - kegg.compound: C00256 + - metanetx.chemical: MNXM285 + - seed.compound: cpd00221 + - !!omap + - id: lac__D_e + - name: D-Lactate + - compartment: e + - charge: -1 + - formula: C3H5O3 + - annotation: !!omap + - bigg.metabolite: lac__D + - biocyc: META:D-LACTATE + - chebi: + - CHEBI:11001 + - CHEBI:16004 + - CHEBI:18684 + - CHEBI:341 + - CHEBI:42105 + - CHEBI:42111 + - CHEBI:43701 + - hmdb: + - HMDB00171 + - HMDB01311 + - kegg.compound: C00256 + - metanetx.chemical: MNXM285 + - seed.compound: cpd00221 + - !!omap + - id: nad_c + - name: Nicotinamide adenine dinucleotide + - compartment: c + - charge: -1 + - formula: C21H26N7O14P2 + - annotation: !!omap + - bigg.metabolite: nad + - biocyc: NAD + - cas: + - 53-84-9 + - chebi: + - CHEBI:21901 + - CHEBI:7422 + - CHEBI:44214 + - CHEBI:15846 + - CHEBI:13394 + - CHEBI:13393 + - CHEBI:44215 + - CHEBI:13389 + - CHEBI:57540 + - CHEBI:44281 + - hmdb: HMDB00902 + - kegg.compound: C00003 + - kegg.drug: D00002 + - pubchem.substance: '3305' + - reactome: + - REACT_192307 + - REACT_29360 + - REACT_427523 + - REACT_194653 + - REACT_113526 + - seed.compound: cpd00003 + - unipathway.compound: UPC00003 + - !!omap + - id: nadh_c + - name: Nicotinamide adenine dinucleotide - reduced + - compartment: c + - charge: -2 + - formula: C21H27N7O14P2 + - annotation: !!omap + - bigg.metabolite: nadh + - biocyc: NADH + - cas: + - 58-68-4 + - chebi: + - CHEBI:13395 + - CHEBI:21902 + - CHEBI:16908 + - CHEBI:7423 + - CHEBI:44216 + - CHEBI:57945 + - CHEBI:13396 + - hmdb: HMDB01487 + - kegg.compound: C00004 + - pubchem.substance: '3306' + - reactome: + - REACT_192305 + - REACT_73473 + - REACT_194697 + - REACT_29362 + - seed.compound: cpd00004 + - unipathway.compound: UPC00004 + - !!omap + - id: pep_c + - name: Phosphoenolpyruvate + - compartment: c + - charge: -3 + - formula: C3H2O6P + - annotation: !!omap + - bigg.metabolite: pep + - biocyc: PHOSPHO-ENOL-PYRUVATE + - cas: + - 138-08-9 + - chebi: + - CHEBI:44897 + - CHEBI:44894 + - CHEBI:14812 + - CHEBI:8147 + - CHEBI:26055 + - CHEBI:26054 + - CHEBI:58702 + - CHEBI:18021 + - hmdb: HMDB00263 + - kegg.compound: C00074 + - pubchem.substance: '3374' + - reactome: + - REACT_29492 + - REACT_372364 + - seed.compound: cpd00061 + - unipathway.compound: UPC00074 + - !!omap + - id: pi_c + - name: Phosphate + - compartment: c + - charge: -2 + - formula: HO4P + - annotation: !!omap + - bigg.metabolite: pi + - biocyc: + - Pi + - PHOSPHATE-GROUP + - CPD0-1421 + - cas: + - 14265-44-2 + - chebi: + - CHEBI:37583 + - CHEBI:7793 + - CHEBI:37585 + - CHEBI:34683 + - CHEBI:14791 + - CHEBI:34855 + - CHEBI:29137 + - CHEBI:29139 + - CHEBI:63036 + - CHEBI:26020 + - CHEBI:39739 + - CHEBI:32597 + - CHEBI:32596 + - CHEBI:43474 + - CHEBI:63051 + - CHEBI:43470 + - CHEBI:9679 + - CHEBI:35433 + - CHEBI:4496 + - CHEBI:45024 + - CHEBI:18367 + - CHEBI:26078 + - CHEBI:39745 + - CHEBI:24838 + - hmdb: HMDB02142 + - kegg.compound: + - C13556 + - C13558 + - C00009 + - kegg.drug: D05467 + - pubchem.substance: '3311' + - reactome: + - REACT_947590 + - REACT_109277 + - REACT_113548 + - REACT_2255331 + - REACT_29372 + - REACT_113550 + - REACT_113551 + - seed.compound: + - cpd09464 + - cpd09463 + - cpd00009 + - unipathway.compound: UPC00009 + - !!omap + - id: pi_e + - name: Phosphate + - compartment: e + - charge: -2 + - formula: HO4P + - annotation: !!omap + - bigg.metabolite: pi + - biocyc: + - Pi + - PHOSPHATE-GROUP + - CPD0-1421 + - cas: + - 14265-44-2 + - chebi: + - CHEBI:37583 + - CHEBI:7793 + - CHEBI:37585 + - CHEBI:34683 + - CHEBI:14791 + - CHEBI:34855 + - CHEBI:29137 + - CHEBI:29139 + - CHEBI:63036 + - CHEBI:26020 + - CHEBI:39739 + - CHEBI:32597 + - CHEBI:32596 + - CHEBI:43474 + - CHEBI:63051 + - CHEBI:43470 + - CHEBI:9679 + - CHEBI:35433 + - CHEBI:4496 + - CHEBI:45024 + - CHEBI:18367 + - CHEBI:26078 + - CHEBI:39745 + - CHEBI:24838 + - hmdb: HMDB02142 + - kegg.compound: + - C13556 + - C13558 + - C00009 + - kegg.drug: D05467 + - pubchem.substance: '3311' + - reactome: + - REACT_947590 + - REACT_109277 + - REACT_113548 + - REACT_2255331 + - REACT_29372 + - REACT_113550 + - REACT_113551 + - seed.compound: + - cpd09464 + - cpd09463 + - cpd00009 + - unipathway.compound: UPC00009 + - !!omap + - id: pyr_c + - name: Pyruvate + - compartment: c + - charge: -1 + - formula: C3H3O3 + - annotation: !!omap + - bigg.metabolite: pyr + - biocyc: PYRUVATE + - cas: + - 127-17-3 + - chebi: + - CHEBI:15361 + - CHEBI:14987 + - CHEBI:8685 + - CHEBI:32816 + - CHEBI:45253 + - CHEBI:26466 + - CHEBI:26462 + - hmdb: HMDB00243 + - kegg.compound: C00022 + - lipidmaps: LMFA01060077 + - pubchem.substance: '3324' + - reactome: + - REACT_113557 + - REACT_389680 + - REACT_29398 + - seed.compound: cpd00020 + - unipathway.compound: UPC00022 +- reactions: + - !!omap + - id: ATPM + - name: ATP maintenance requirement + - metabolites: !!omap + - adp_c: 1.0 + - atp_c: -1.0 + - h2o_c: -1.0 + - h_c: 1.0 + - pi_c: 1.0 + - lower_bound: 8.39 + - upper_bound: 1000.0 + - gene_reaction_rule: '' + - objective_coefficient: 1.0 + - annotation: !!omap + - bigg.reaction: ATPM + - !!omap + - id: D_LACt2 + - name: '' + - metabolites: !!omap [] + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: '' + - !!omap + - id: ENO + - name: enolase + - metabolites: !!omap + - 2pg_c: -1.0 + - h2o_c: 1.0 + - pep_c: 1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b2779 + - annotation: !!omap + - bigg.reaction: ENO + - !!omap + - id: EX_glc__D_e + - name: D-Glucose exchange + - metabolites: !!omap + - glc__D_e: -1.0 + - lower_bound: -10.0 + - upper_bound: 1000.0 + - gene_reaction_rule: '' + - annotation: !!omap + - bigg.reaction: glc + - sbo: SBO:0000627 + - !!omap + - id: EX_h_e + - name: H+ exchange + - metabolites: !!omap + - h_e: -1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: '' + - annotation: !!omap + - bigg.reaction: h + - sbo: SBO:0000627 + - !!omap + - id: EX_lac__D_e + - name: D-lactate exchange + - metabolites: !!omap + - lac__D_e: -1.0 + - lower_bound: 0.0 + - upper_bound: 1000.0 + - gene_reaction_rule: '' + - annotation: !!omap + - bigg.reaction: lac__D + - sbo: SBO:0000627 + - !!omap + - id: FBA + - name: fructose-bisphosphate aldolase + - metabolites: !!omap + - dhap_c: 1.0 + - fdp_c: -1.0 + - g3p_c: 1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b1773 or b2097 or b2925 + - annotation: !!omap + - bigg.reaction: FBA + - !!omap + - id: GAPD + - name: glyceraldehyde-3-phosphate dehydrogenase + - metabolites: !!omap + - 13dpg_c: 1.0 + - g3p_c: -1.0 + - h_c: 1.0 + - nad_c: -1.0 + - nadh_c: 1.0 + - pi_c: -1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b1779 + - annotation: !!omap + - bigg.reaction: GAPD + - !!omap + - id: GLCpts + - name: D-glucose transport via PEP:Pyr PTS + - metabolites: !!omap + - g6p_c: 1.0 + - glc__D_e: -1.0 + - pep_c: -1.0 + - pyr_c: 1.0 + - lower_bound: 0.0 + - upper_bound: 1000.0 + - gene_reaction_rule: (b2415 and b2417 and b1101 and b2416) or (b2415 and b2417 + and b1621 and b2416) or (b2415 and b1818 and b1817 and b1819 and b2416) + - annotation: !!omap + - bigg.reaction: GLCpts + - !!omap + - id: H2Ot + - name: R H2O transport via - diffusion + - metabolites: !!omap + - h2o_c: 1.0 + - h2o_e: -1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b0875 or s0001 + - annotation: !!omap + - bigg.reaction: H2Ot + - !!omap + - id: LDH_D + - name: D-lactate dehydrogenase + - metabolites: !!omap + - h_c: 1.0 + - lac__D_c: -1.0 + - nad_c: -1.0 + - nadh_c: 1.0 + - pyr_c: 1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b2133 or b1380 + - annotation: !!omap + - bigg.reaction: LDH_D + - biocyc: META:DLACTDEHYDROGNAD-RXN + - ec-code: 1.1.1.28 + - kegg.reaction: R00704 + - metanetx.reaction: MNXR101037 + - rhea: + - '16369' + - '16370' + - '16371' + - '16372' + - sbo: SBO:0000375 + - !!omap + - id: PFK + - name: phosphofructokinase + - metabolites: !!omap + - adp_c: 1.0 + - atp_c: -1.0 + - f6p_c: -1.0 + - fdp_c: 1.0 + - h_c: 1.0 + - lower_bound: 0.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b3916 or b1723 + - objective_coefficient: 1.0 + - annotation: !!omap + - bigg.reaction: PFK + - !!omap + - id: PGI + - name: glucose-6-phosphate isomerase + - metabolites: !!omap + - f6p_c: 1.0 + - g6p_c: -1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b4025 + - annotation: !!omap + - bigg.reaction: PGI + - !!omap + - id: PGK + - name: phosphoglycerate kinase + - metabolites: !!omap + - 13dpg_c: 1.0 + - 3pg_c: -1.0 + - adp_c: 1.0 + - atp_c: -1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b2926 + - annotation: !!omap + - bigg.reaction: PGK + - !!omap + - id: PGM + - name: phosphoglycerate mutase + - metabolites: !!omap + - 2pg_c: -1.0 + - 3pg_c: 1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b4395 or b3612 or b0755 + - annotation: !!omap + - bigg.reaction: PGM + - !!omap + - id: PIt2r + - name: R phosphate reversible transport via - symport + - metabolites: !!omap + - h_c: 1.0 + - h_e: -1.0 + - pi_c: 1.0 + - pi_e: -1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b2987 or b3493 + - annotation: !!omap + - bigg.reaction: PIt2r + - !!omap + - id: PYK + - name: pyruvate kinase + - metabolites: !!omap + - adp_c: -1.0 + - atp_c: 1.0 + - h_c: -1.0 + - pep_c: -1.0 + - pyr_c: 1.0 + - lower_bound: 0.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b1854 or b1676 + - annotation: !!omap + - bigg.reaction: PYK + - !!omap + - id: TPI + - name: triose-phosphate isomerase + - metabolites: !!omap + - dhap_c: -1.0 + - g3p_c: 1.0 + - lower_bound: -1000.0 + - upper_bound: 1000.0 + - gene_reaction_rule: b3919 + - annotation: !!omap + - bigg.reaction: TPI +- genes: + - !!omap + - id: b0755 + - name: gpmA + - !!omap + - id: b0875 + - name: aqpZ + - !!omap + - id: b1101 + - name: ptsG + - !!omap + - id: b1380 + - name: ldhA + - !!omap + - id: b1621 + - name: malX + - !!omap + - id: b1676 + - name: pykF + - annotation: !!omap + - ncbigi: + - GI:1208453 + - GI:1652654 + - !!omap + - id: b1723 + - name: pfkB + - !!omap + - id: b1773 + - name: ydjI + - !!omap + - id: b1779 + - name: gapA + - !!omap + - id: b1817 + - name: manX + - !!omap + - id: b1818 + - name: manY + - !!omap + - id: b1819 + - name: manZ + - !!omap + - id: b1854 + - name: pykA + - !!omap + - id: b2097 + - name: fbaB + - !!omap + - id: b2133 + - name: dld + - !!omap + - id: b2415 + - name: ptsH + - !!omap + - id: b2416 + - name: ptsI + - !!omap + - id: b2417 + - name: crr + - !!omap + - id: b2779 + - name: eno + - annotation: !!omap + - ncbigi: GI:1653839 + - !!omap + - id: b2925 + - name: fbaA + - !!omap + - id: b2926 + - name: pgk + - annotation: !!omap + - ncbigi: GI:1653609 + - !!omap + - id: b2987 + - name: pitB + - !!omap + - id: b3493 + - name: pitA + - !!omap + - id: b3612 + - name: gpmM + - !!omap + - id: b3916 + - name: pfkA + - annotation: !!omap + - ncbigi: + - GI:1006614 + - GI:1651919 + - !!omap + - id: b3919 + - name: tpiA + - !!omap + - id: b4025 + - name: pgi + - annotation: !!omap + - ncbigi: GI:1653253 + - !!omap + - id: b4395 + - name: ytjC + - !!omap + - id: s0001 + - name: G_s0001 +- id: mini_textbook +- compartments: !!omap + - c: cytosol + - e: extracellular +- version: '1.2' diff --git a/src/cobra/test/data/mini_cobra.xml b/tests/data/mini_cobra.xml similarity index 100% rename from src/cobra/test/data/mini_cobra.xml rename to tests/data/mini_cobra.xml diff --git a/src/cobra/test/data/mini_fbc1.xml b/tests/data/mini_fbc1.xml similarity index 100% rename from src/cobra/test/data/mini_fbc1.xml rename to tests/data/mini_fbc1.xml diff --git a/src/cobra/test/data/mini_fbc2.xml b/tests/data/mini_fbc2.xml similarity index 100% rename from src/cobra/test/data/mini_fbc2.xml rename to tests/data/mini_fbc2.xml diff --git a/src/cobra/test/data/mini_fbc2.xml.bz2 b/tests/data/mini_fbc2.xml.bz2 similarity index 100% rename from src/cobra/test/data/mini_fbc2.xml.bz2 rename to tests/data/mini_fbc2.xml.bz2 diff --git a/src/cobra/test/data/mini_fbc2.xml.gz b/tests/data/mini_fbc2.xml.gz similarity index 100% rename from src/cobra/test/data/mini_fbc2.xml.gz rename to tests/data/mini_fbc2.xml.gz diff --git a/src/cobra/test/data/mini_wrong_key_caps.mat b/tests/data/mini_wrong_key_caps.mat similarity index 100% rename from src/cobra/test/data/mini_wrong_key_caps.mat rename to tests/data/mini_wrong_key_caps.mat diff --git a/src/cobra/test/data/raven.mat b/tests/data/raven.mat similarity index 100% rename from src/cobra/test/data/raven.mat rename to tests/data/raven.mat diff --git a/src/cobra/test/data/raven.pickle b/tests/data/raven.pickle similarity index 100% rename from src/cobra/test/data/raven.pickle rename to tests/data/raven.pickle diff --git a/src/cobra/test/data/salmonella.genes b/tests/data/salmonella.genes similarity index 100% rename from src/cobra/test/data/salmonella.genes rename to tests/data/salmonella.genes diff --git a/src/cobra/test/data/salmonella.media b/tests/data/salmonella.media similarity index 100% rename from src/cobra/test/data/salmonella.media rename to tests/data/salmonella.media diff --git a/src/cobra/test/data/salmonella.pickle b/tests/data/salmonella.pickle similarity index 100% rename from src/cobra/test/data/salmonella.pickle rename to tests/data/salmonella.pickle diff --git a/src/cobra/test/data/salmonella.xml b/tests/data/salmonella.xml similarity index 100% rename from src/cobra/test/data/salmonella.xml rename to tests/data/salmonella.xml diff --git a/tests/data/textbook.xml.gz b/tests/data/textbook.xml.gz new file mode 100644 index 000000000..a5d1fbc51 Binary files /dev/null and b/tests/data/textbook.xml.gz differ diff --git a/src/cobra/test/data/textbook_fva.json b/tests/data/textbook_fva.json similarity index 100% rename from src/cobra/test/data/textbook_fva.json rename to tests/data/textbook_fva.json diff --git a/src/cobra/test/data/textbook_pfba_fva.json b/tests/data/textbook_pfba_fva.json similarity index 100% rename from src/cobra/test/data/textbook_pfba_fva.json rename to tests/data/textbook_pfba_fva.json diff --git a/src/cobra/test/data/textbook_solution.pickle b/tests/data/textbook_solution.pickle similarity index 100% rename from src/cobra/test/data/textbook_solution.pickle rename to tests/data/textbook_solution.pickle diff --git a/src/cobra/test/data/update_pickles.py b/tests/data/update_pickles.py similarity index 100% rename from src/cobra/test/data/update_pickles.py rename to tests/data/update_pickles.py diff --git a/src/cobra/test/data/valid_annotation_format.json b/tests/data/valid_annotation_format.json similarity index 100% rename from src/cobra/test/data/valid_annotation_format.json rename to tests/data/valid_annotation_format.json diff --git a/src/cobra/test/data/valid_annotation_output.xml b/tests/data/valid_annotation_output.xml similarity index 100% rename from src/cobra/test/data/valid_annotation_output.xml rename to tests/data/valid_annotation_output.xml diff --git a/src/cobra/test/data/validation.xml b/tests/data/validation.xml similarity index 100% rename from src/cobra/test/data/validation.xml rename to tests/data/validation.xml diff --git a/src/cobra/test/test_core/conftest.py b/tests/test_core/conftest.py similarity index 100% rename from src/cobra/test/test_core/conftest.py rename to tests/test_core/conftest.py diff --git a/src/cobra/test/test_core/test_configuration.py b/tests/test_core/test_configuration.py similarity index 100% rename from src/cobra/test/test_core/test_configuration.py rename to tests/test_core/test_configuration.py diff --git a/src/cobra/test/test_core/test_core_reaction.py b/tests/test_core/test_core_reaction.py similarity index 100% rename from src/cobra/test/test_core/test_core_reaction.py rename to tests/test_core/test_core_reaction.py diff --git a/src/cobra/test/test_core/test_dictlist.py b/tests/test_core/test_dictlist.py similarity index 100% rename from src/cobra/test/test_core/test_dictlist.py rename to tests/test_core/test_dictlist.py diff --git a/src/cobra/test/test_core/test_gene.py b/tests/test_core/test_gene.py similarity index 100% rename from src/cobra/test/test_core/test_gene.py rename to tests/test_core/test_gene.py diff --git a/src/cobra/test/test_core/test_gpr.py b/tests/test_core/test_gpr.py similarity index 100% rename from src/cobra/test/test_core/test_gpr.py rename to tests/test_core/test_gpr.py diff --git a/src/cobra/test/test_core/test_group.py b/tests/test_core/test_group.py similarity index 100% rename from src/cobra/test/test_core/test_group.py rename to tests/test_core/test_group.py diff --git a/src/cobra/test/test_core/test_metabolite.py b/tests/test_core/test_metabolite.py similarity index 100% rename from src/cobra/test/test_core/test_metabolite.py rename to tests/test_core/test_metabolite.py diff --git a/src/cobra/test/test_core/test_model.py b/tests/test_core/test_model.py similarity index 100% rename from src/cobra/test/test_core/test_model.py rename to tests/test_core/test_model.py diff --git a/src/cobra/test/test_core/test_solution.py b/tests/test_core/test_solution.py similarity index 100% rename from src/cobra/test/test_core/test_solution.py rename to tests/test_core/test_solution.py diff --git a/src/cobra/test/test_flux_analysis/conftest.py b/tests/test_flux_analysis/conftest.py similarity index 100% rename from src/cobra/test/test_flux_analysis/conftest.py rename to tests/test_flux_analysis/conftest.py diff --git a/src/cobra/test/test_flux_analysis/test_deletion.py b/tests/test_flux_analysis/test_deletion.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_deletion.py rename to tests/test_flux_analysis/test_deletion.py diff --git a/src/cobra/test/test_flux_analysis/test_fastcc.py b/tests/test_flux_analysis/test_fastcc.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_fastcc.py rename to tests/test_flux_analysis/test_fastcc.py diff --git a/src/cobra/test/test_flux_analysis/test_gapfilling.py b/tests/test_flux_analysis/test_gapfilling.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_gapfilling.py rename to tests/test_flux_analysis/test_gapfilling.py diff --git a/src/cobra/test/test_flux_analysis/test_geometric.py b/tests/test_flux_analysis/test_geometric.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_geometric.py rename to tests/test_flux_analysis/test_geometric.py diff --git a/src/cobra/test/test_flux_analysis/test_helpers.py b/tests/test_flux_analysis/test_helpers.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_helpers.py rename to tests/test_flux_analysis/test_helpers.py diff --git a/src/cobra/test/test_flux_analysis/test_loopless.py b/tests/test_flux_analysis/test_loopless.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_loopless.py rename to tests/test_flux_analysis/test_loopless.py diff --git a/src/cobra/test/test_flux_analysis/test_moma.py b/tests/test_flux_analysis/test_moma.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_moma.py rename to tests/test_flux_analysis/test_moma.py diff --git a/src/cobra/test/test_flux_analysis/test_parsimonious.py b/tests/test_flux_analysis/test_parsimonious.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_parsimonious.py rename to tests/test_flux_analysis/test_parsimonious.py diff --git a/src/cobra/test/test_flux_analysis/test_phenotype_phase_plane.py b/tests/test_flux_analysis/test_phenotype_phase_plane.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_phenotype_phase_plane.py rename to tests/test_flux_analysis/test_phenotype_phase_plane.py diff --git a/src/cobra/test/test_flux_analysis/test_reaction.py b/tests/test_flux_analysis/test_reaction.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_reaction.py rename to tests/test_flux_analysis/test_reaction.py diff --git a/src/cobra/test/test_flux_analysis/test_room.py b/tests/test_flux_analysis/test_room.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_room.py rename to tests/test_flux_analysis/test_room.py diff --git a/src/cobra/test/test_flux_analysis/test_variability.py b/tests/test_flux_analysis/test_variability.py similarity index 100% rename from src/cobra/test/test_flux_analysis/test_variability.py rename to tests/test_flux_analysis/test_variability.py diff --git a/tests/test_io/conftest.py b/tests/test_io/conftest.py new file mode 100644 index 000000000..5fc4be2d1 --- /dev/null +++ b/tests/test_io/conftest.py @@ -0,0 +1,136 @@ +"""Contains module level fixtures and utility functions.""" + +from pathlib import Path +from pickle import load +from typing import Callable + +import pytest +from optlang.interface import OPTIMAL + +from cobra import Model + + +@pytest.fixture(scope="module") +def mini_model(data_directory: Path) -> Model: + """Fixture for mini model.""" + with (data_directory / "mini.pickle").open(mode="rb") as infile: + return load(infile) + + +@pytest.fixture +def compare_models() -> Callable: + """Compare models as a fixture. + + Returns + ------- + _compare_models: Callable + A function that will assert that the models are identical. + + """ + + def _compare_models(model_1: Model, model_2: Model) -> None: + """Compare two models (only for testing purposes). + + Parameters + ---------- + model_1: Model + First model to compare. + + model_2: Model + Second model to compare. + + This function does not return anything, and does a series of asserts on the + two models. If the models are not identical, the asserts, and the test that + called them will fail. + + """ + assert len(model_1.reactions) == len(model_2.reactions) + assert len(model_1.metabolites) == len(model_2.metabolites) + assert len(model_1.genes) == len(model_2.genes) + assert model_1.objective.direction == model_2.objective.direction + + # check Reaction attributes + for attr in ( + "id", + "name", + "lower_bound", + "upper_bound", + "objective_coefficient", + "gene_reaction_rule", + ): + assert getattr(model_1.reactions[0], attr) == getattr( + model_2.reactions[0], attr + ) + assert getattr(model_1.reactions[5], attr) == getattr( + model_2.reactions[5], attr + ) + assert getattr(model_1.reactions[-1], attr) == getattr( + model_2.reactions[-1], attr + ) + + # check Metabolite attributes + for attr in ("id", "name", "compartment", "formula", "charge"): + assert getattr(model_1.metabolites[0], attr) == getattr( + model_2.metabolites[0], attr + ) + assert getattr(model_1.metabolites[5], attr) == getattr( + model_2.metabolites[5], attr + ) + assert getattr(model_1.metabolites[-1], attr) == getattr( + model_2.metabolites[-1], attr + ) + assert len(model_1.reactions[0].metabolites) == len( + model_2.reactions[0].metabolites + ) + # TODO: either relax gene attribute checking or fix models for testing. + # check Gene attributes + # for attr in ("id", "name"): + # assert getattr(model_1.genes[0], attr) == getattr(model_2.genes[0], + # attr) + # assert getattr(model_1.genes[10], attr) == getattr(model_2.genes[10], + # attr) + # assert getattr(model_1.genes[-1], attr) == getattr(model_2.genes[-1], + # attr) + + assert len(model_1.reactions[8].metabolites) == len( + model_2.reactions[8].metabolites + ) + assert len(model_1.reactions[-1].metabolites) == len( + model_2.reactions[-1].metabolites + ) + assert len(model_1.genes) == len(model_2.genes) + + # ensure they have the same solution max + solution_1 = model_1.optimize() + solution_2 = model_2.optimize() + if solution_1.status == OPTIMAL and solution_2.status == OPTIMAL: + assert abs( + solution_1.objective_value - solution_2.objective_value + ) == pytest.approx(0.0) + else: + assert solution_1.status == solution_2.status + + # ensure the references are correct + # metabolite -> model reference + assert model_1.metabolites[0]._model is model_1 + assert model_2.metabolites[0]._model is model_2 + + # reaction -> model reference + assert model_1.reactions[0]._model is model_1 + assert model_2.reactions[0]._model is model_2 + + # gene -> model reference + if model_1.genes: + assert model_1.genes[0]._model is model_1 + assert model_2.genes[0]._model is model_2 + + # extra comparisons + # assert model_1.compartments == model_2.compartments + # assert dict(model_1.metabolites[4].annotation) == dict( + # model_2.metabolites[4].annotation) + # assert dict(model_1.reactions[4].annotation) == dict( + # model_2.reactions[4].annotation) + # assert dict(model_1.genes[5].annotation) == dict( + # model_2.genes[5].annotation) + + return _compare_models diff --git a/src/cobra/test/test_io/test_annotation.py b/tests/test_io/test_annotation.py similarity index 100% rename from src/cobra/test/test_io/test_annotation.py rename to tests/test_io/test_annotation.py diff --git a/src/cobra/test/test_io/test_annotation_format.py b/tests/test_io/test_annotation_format.py similarity index 98% rename from src/cobra/test/test_io/test_annotation_format.py rename to tests/test_io/test_annotation_format.py index 6e87a2fd3..74b49bdcf 100644 --- a/src/cobra/test/test_io/test_annotation_format.py +++ b/tests/test_io/test_annotation_format.py @@ -21,7 +21,7 @@ def test_load_json_model_valid(data_directory, tmp_path): def test_load_json_model_invalid(data_directory): - """Test that loading an invalid annotation from JSON raises TypeError""" + """Test that loading an invalid annotation from JSON raises TypeError.""" path = join(data_directory, "invalid_annotation_format.json") with pytest.raises(TypeError): model = load_json_model(path) diff --git a/src/cobra/test/test_io/test_io_order.py b/tests/test_io/test_io_order.py similarity index 94% rename from src/cobra/test/test_io/test_io_order.py rename to tests/test_io/test_io_order.py index 82bcc7c07..5703736ce 100644 --- a/src/cobra/test/test_io/test_io_order.py +++ b/tests/test_io/test_io_order.py @@ -17,8 +17,8 @@ @pytest.fixture(scope="module") -def tmp_path(tmpdir_factory): - return str(tmpdir_factory.mktemp("model_order")) +def tmp_path_order(tmp_path_factory): + return str(tmp_path_factory.mktemp("model_order")) @pytest.fixture(scope="module") @@ -86,10 +86,10 @@ def get_ids(iterable): ("load_yaml_model", "save_yaml_model", ".yml"), ], ) -def test_io_order(attribute, read, write, ext, template, tmp_path): +def test_io_order(attribute, read, write, ext, template, tmp_path_order): read = getattr(cio, read) write = getattr(cio, write) - filename = join(tmp_path, "template" + ext) + filename = join(tmp_path_order, "template" + ext) write(template, filename) model = read(filename) model_elements = get_ids(getattr(model, attribute)) diff --git a/src/cobra/test/test_io/test_json.py b/tests/test_io/test_json.py similarity index 65% rename from src/cobra/test/test_io/test_json.py rename to tests/test_io/test_json.py index 983b45b9a..866a8f5b1 100644 --- a/src/cobra/test/test_io/test_json.py +++ b/tests/test_io/test_json.py @@ -2,64 +2,66 @@ import json from os.path import join -from typing import Any, Dict, Union +from pathlib import Path +from typing import Any, Callable, Dict, Union import pytest -from importlib_resources import open_text +from importlib_resources import files from cobra import Model from cobra import io as cio -from cobra.test.test_io.conftest import compare_models @pytest.fixture(scope="module") def json_schema_v1() -> Dict[str, Union[str, bool, Any]]: """Fixture for cobra JSON-schema.""" - with open_text(cio, "schema_v1.json") as handle: + with files(cio).joinpath("schema_v1.json").open("r") as handle: schema_v1 = json.load(handle) return schema_v1 def test_validate_json( - data_directory: str, json_schema_v1: Dict[str, Union[str, bool, Any]] + data_directory: Path, json_schema_v1: Dict[str, Union[str, bool, Any]] ) -> None: """Validate file according to JSON-schema.""" jsonschema = pytest.importorskip("jsonschema") - with open(join(data_directory, "mini.json"), "r", encoding="utf-8") as infile: + with open(data_directory.joinpath("mini.json"), "r", encoding="utf-8") as infile: loaded = json.load(infile) assert jsonschema.validate(loaded, json_schema_v1) is None -def test_load_json_model(data_directory: str, mini_model: Model) -> None: +def test_load_json_model( + compare_models: Callable, data_directory: Path, mini_model: Model +) -> None: """Test the reading of JSON model.""" - json_model = cio.load_json_model(join(data_directory, "mini.json")) + json_model = cio.load_json_model(data_directory / "mini.json") assert compare_models(mini_model, json_model) is None def test_save_json_model( - tmpdir: str, + tmp_path: Path, mini_model: Model, json_schema_v1: Dict[str, Union[str, bool, Any]], ) -> None: """Test the writing of JSON model.""" jsonschema = pytest.importorskip("jsonschema") - output_file = tmpdir.join("mini.json") - cio.save_json_model(mini_model, output_file.strpath, pretty=True) + output_file = tmp_path.joinpath("mini.json") + cio.save_json_model(mini_model, output_file, pretty=True) # validate against JSONSchema with open(str(output_file), "r") as infile: loaded = json.load(infile) assert jsonschema.validate(loaded, json_schema_v1) is None -def test_reaction_bounds_json(data_directory: str, tmp_path: str) -> None: +def test_reaction_bounds_json(data_directory: Path, tmp_path: Path) -> None: """Test reading and writing of model with inf bounds in JSON.""" # Path to XML file with INF bounds path_to_xml_inf_file = join(data_directory, "fbc_ex1.xml") model_xml_inf = cio.read_sbml_model(path_to_xml_inf_file) - path_to_output = join(str(tmp_path), "fbc_ex1_json.json") + path_to_output = tmp_path.joinpath("fbc_ex1_json.json") # Saving model with inf bounds in json form without error cio.save_json_model(model_xml_inf, path_to_output) # Path to JSON file with INF bounds - path_to_JSON_inf_file = join(data_directory, "JSON_with_inf_bounds.json") + path_to_JSON_inf_file = data_directory.joinpath("JSON_with_inf_bounds.json") model_json_inf = cio.load_json_model(path_to_JSON_inf_file) assert model_json_inf.reactions[0].upper_bound == float("inf") diff --git a/src/cobra/test/test_io/test_mat.py b/tests/test_io/test_mat.py similarity index 88% rename from src/cobra/test/test_io/test_mat.py rename to tests/test_io/test_mat.py index 462af4e46..b6d7594e5 100644 --- a/src/cobra/test/test_io/test_mat.py +++ b/tests/test_io/test_mat.py @@ -1,13 +1,13 @@ """Test functionalities of I/O in MATLAB (.mat) format.""" from os.path import join +from pathlib import Path from pickle import load -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, Callable import pytest from cobra import io -from cobra.test.test_io.conftest import compare_models try: @@ -17,7 +17,6 @@ if TYPE_CHECKING: - import py.path from cobra import Model @@ -37,7 +36,10 @@ def raven_model(data_directory: str) -> "Model": # "raven.mat")]) # TODO: wait for pytest.fixture_request() to get approved def test_load_matlab_model( - data_directory: str, mini_model: "Model", raven_model: "Model" + compare_models: Callable, + data_directory: Path, + mini_model: "Model", + raven_model: "Model", ) -> None: """Test the reading of MAT model.""" mini_mat_model = io.load_matlab_model(join(data_directory, "mini.mat")) @@ -55,24 +57,24 @@ def test_load_matlab_model( # "raven.mat")]) # TODO: wait for pytest.fixture_request() to get approved def test_save_matlab_model( - tmpdir: "py.path.local", mini_model: "Model", raven_model: "Model" + tmp_path: Path, mini_model: "Model", raven_model: "Model" ) -> None: """Test the writing of MAT model.""" - mini_output_file = tmpdir.join("mini.mat") - raven_output_file = tmpdir.join("raven.mat") + mini_output_file = tmp_path.joinpath("mini.mat") + raven_output_file = tmp_path.joinpath("raven.mat") # scipy.io.savemat() doesn't support anything other than # str or file-stream object, hence the str conversion io.save_matlab_model(mini_model, str(mini_output_file)) io.save_matlab_model(raven_model, str(raven_output_file)) - assert mini_output_file.check() - assert raven_output_file.check() + assert mini_output_file.exists() + assert raven_output_file.exists() @pytest.mark.skipif(scipy is None, reason="scipy unavailable") -def test_large_bounds(tmpdir: "py.path.local", model: "Model") -> None: +def test_large_bounds(tmp_path: Path, model: "Model") -> None: """Verify that mat bounds don't get broken by the config defaults.""" model.reactions[0].bounds = -1e6, 1e6 - filepath = str(tmpdir.join("model.mat")) + filepath = str(tmp_path.joinpath("model.mat")) io.save_matlab_model(model, filepath) read = io.load_matlab_model(filepath) assert read.reactions[0].bounds == (-1e6, 1e6) @@ -80,13 +82,13 @@ def test_large_bounds(tmpdir: "py.path.local", model: "Model") -> None: @pytest.mark.skipif(scipy is None, reason="scipy unavailable") def test_read_rewrite_matlab_model( - tmpdir: "py.path.local", data_directory: str + compare_models: Callable, tmp_path: Path, data_directory: Path ) -> None: """Verify that rewritten matlab model is identical to original.""" mini_mat_model = io.load_matlab_model(join(data_directory, "mini.mat")) raven_mat_model = io.load_matlab_model(join(data_directory, "raven.mat")) - mini_output_file = tmpdir.join("mini.mat") - raven_output_file = tmpdir.join("raven.mat") + mini_output_file = tmp_path.joinpath("mini.mat") + raven_output_file = tmp_path.joinpath("raven.mat") # scipy.io.savemat() doesn't support anything other than # str or file-stream object, hence the str conversion io.save_matlab_model(mini_mat_model, str(mini_output_file)) @@ -153,12 +155,15 @@ def _fix_xml_annotation_to_identifiers(model: "Model") -> None: # "valid_annotation_output.xml" has reaction annotations in a metabolite, so they would # be thrown out by matlab def test_compare_xml_to_written_matlab_model( - data_directory: str, tmpdir: "py.path.local", xml_file: str + compare_models: Callable, + data_directory: Path, + tmp_path: Path, + xml_file: str, ) -> None: """Verify that xml rewritten as mat file is written and read correctly.""" xml_model = io.read_sbml_model(join(data_directory, xml_file)) _fix_xml_annotation_to_identifiers(xml_model) - mat_output_file = tmpdir.join(xml_file.replace(".xml", ".mat")) + mat_output_file = tmp_path.joinpath(xml_file.replace(".xml", ".mat")) io.save_matlab_model( xml_model, str(mat_output_file) ) # lac__D_e_boundary confuses the reading of matlab @@ -181,9 +186,9 @@ def test_fail_on_problematic_compartments(data_directory: str) -> None: @pytest.mark.skipif(scipy is None, reason="scipy unavailable") def test_mat_model_with_long_compartment_ids( - data_directory: str, tmpdir: "py.path.local" + compare_models: Callable, data_directory: Path, tmp_path: Path ) -> None: - """Test that long compartment IDs like "luSI" are correctly loaded""" + """Test that long compartment IDs like "luSI" are correctly loaded.""" model_compartments = io.load_matlab_model(join(data_directory, "compartments.mat")) assert model_compartments.compartments == { "csf": "csf", @@ -204,27 +209,29 @@ def test_mat_model_with_long_compartment_ids( "kegg.compound": ["C00031"], "pubchem.substance": ["3333"], } - output_file = tmpdir.join("compartments.mat") + output_file = tmp_path.joinpath("compartments.mat") io.save_matlab_model(model_compartments, str(output_file)) model_compartments_reloaded = io.load_matlab_model(str(output_file)) assert compare_models(model_compartments, model_compartments_reloaded) is None @pytest.mark.skipif(scipy is None, reason="scipy unavailable") -def test_mat_model_with_no_genes(data_directory: str, tmpdir: "py.path.local") -> None: +def test_mat_model_with_no_genes( + compare_models: Callable, data_directory: Path, tmp_path: Path +) -> None: """Test that a model with no genes is loaded and reloaded correctly.""" model_no_genes = io.load_matlab_model( join(data_directory, "cardiac_mit_glcuptake_atpmax.mat") ) assert not len(model_no_genes.genes) - output_file = tmpdir.join("cardiac_mit_glcuptake_atpmax.mat") + output_file = tmp_path.joinpath("cardiac_mit_glcuptake_atpmax.mat") io.save_matlab_model(model_no_genes, str(output_file)) model_no_genes_reloaded = io.load_matlab_model(str(output_file)) assert compare_models(model_no_genes, model_no_genes_reloaded) is None @pytest.mark.skipif(scipy is None, reason="scipy unavailable") -def test_mat_model_wrong_caps(data_directory: str) -> None: +def test_mat_model_wrong_caps(compare_models: Callable, data_directory: Path) -> None: """Check that wrong capitalization in matlab field names is processed correctly. See https://gist.github.com/akaviaLab/3dcb0eed6563a9d3d1e07198337300ac to create it diff --git a/src/cobra/test/test_io/test_notes.py b/tests/test_io/test_notes.py similarity index 95% rename from src/cobra/test/test_io/test_notes.py rename to tests/test_io/test_notes.py index a0b99040e..a1fbf0b2c 100644 --- a/src/cobra/test/test_io/test_notes.py +++ b/tests/test_io/test_notes.py @@ -5,7 +5,7 @@ def test_notes(tmp_path): - """Testing if model notes are written in SBML""" + """Testing if model notes are written in SBML.""" path_to_file = join(str(tmp_path), "model_notes.xml") # making a minimal cobra model to test notes diff --git a/tests/test_io/test_pickle.py b/tests/test_io/test_pickle.py new file mode 100644 index 000000000..3a0901fcb --- /dev/null +++ b/tests/test_io/test_pickle.py @@ -0,0 +1,39 @@ +"""Test data storage and recovery using pickle.""" + +from pathlib import Path +from pickle import dump, load +from typing import Callable + +import pytest + +from cobra import Model + + +@pytest.mark.parametrize("load_function", [load]) +def test_read_pickle( + compare_models: Callable, + data_directory: Path, + mini_model: Model, + load_function: Callable, +): + """Test the reading of model from pickle.""" + if load_function is None: + pytest.skip() + + with open(data_directory.joinpath("mini.pickle"), "rb") as infile: + pickle_model = load_function(infile) + + assert compare_models(mini_model, pickle_model) is None + + +@pytest.mark.parametrize("dump_function", [dump]) +def test_write_pickle(tmp_path: Path, mini_model: Model, dump_function: Callable): + """Test the writing of model to pickle.""" + if dump_function is None: + pytest.skip() + + output_file = tmp_path.joinpath("mini.pickle") + with open(str(output_file), "wb") as outfile: + dump_function(mini_model, outfile) + + assert output_file.exists() diff --git a/src/cobra/test/test_io/test_sbml.py b/tests/test_io/test_sbml.py similarity index 97% rename from src/cobra/test/test_io/test_sbml.py rename to tests/test_io/test_sbml.py index f7bb6631a..776c3dcb8 100644 --- a/src/cobra/test/test_io/test_sbml.py +++ b/tests/test_io/test_sbml.py @@ -3,6 +3,7 @@ from collections import namedtuple from os import unlink from os.path import join, split +from pathlib import Path from pickle import load from tempfile import gettempdir from typing import List, Tuple @@ -276,14 +277,14 @@ def io_trial( return request.param.name, reference_model, test_model, reread_model -def test_filehandle(data_directory: str, tmp_path: str) -> None: +def test_filehandle(data_directory: str, tmp_path: Path) -> None: """Test reading and writing to file handle. Parameters ---------- data_directory: str Directory where the data is. - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ with open(join(data_directory, "mini_fbc2.xml"), "r") as f_in: @@ -318,12 +319,12 @@ def test_from_sbml_string(data_directory: str) -> None: @pytest.mark.skip(reason="Model history currently not written") -def test_model_history(tmp_path: str) -> None: +def test_model_history(tmp_path: Path) -> None: """Testing reading and writing of ModelHistory. Parameters ---------- - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ model = Model("test") @@ -354,14 +355,14 @@ def test_model_history(tmp_path: str) -> None: assert c["email"] == "muster@university.com" -def test_groups(data_directory: str, tmp_path: str) -> None: +def test_groups(data_directory: str, tmp_path: Path) -> None: """Testing reading and writing of groups. Parameters ---------- data_directory: str Directory where the data is. - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ sbml_path = join(data_directory, "e_coli_core.xml") @@ -455,14 +456,14 @@ def test_validation_warnings(data_directory: str) -> None: assert "No objective in listOfObjectives" in errors["COBRA_WARNING"] -def test_infinity_bounds(data_directory: str, tmp_path: str) -> None: +def test_infinity_bounds(data_directory: str, tmp_path: Path) -> None: """Test infinity bound example. Parameters ---------- data_directory: str Directory where the data is. - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ sbml_path = join(data_directory, "fbc_ex1.xml") @@ -512,14 +513,14 @@ def test_boundary_conditions(data_directory: str) -> None: assert sol1.objective_value == sol2.objective_value -def test_gprs(data_directory: str, tmp_path: str) -> None: +def test_gprs(data_directory: str, tmp_path: Path) -> None: """Test that GPRs are written and read correctly. Parameters ---------- data_directory: str Directory where the data is. - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ model1 = read_sbml_model(join(data_directory, "iJO1366.xml.gz")) @@ -574,14 +575,14 @@ def test_identifiers_annotation() -> None: assert data is None -def test_smbl_with_notes(data_directory: str, tmp_path: str) -> None: +def test_smbl_with_notes(data_directory: str, tmp_path: Path) -> None: """Test that NOTES in the RECON 2.2 style are written and read correctly. Parameters ---------- data_directory: str Directory where the data is. - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ sbml_path = join(data_directory, "example_notes.xml") @@ -689,14 +690,14 @@ def test_smbl_with_notes(data_directory: str, tmp_path: str) -> None: ) -def test_stable_gprs(data_directory: str, tmp_path: str) -> None: +def test_stable_gprs(data_directory: str, tmp_path: Path) -> None: """Test that GPRs are written correctly after manual changes. Parameters ---------- data_directory: str Directory where the data is. - tmp_path: str + tmp_path: Path Directory to use for temporary data. """ mini = read_sbml_model(join(data_directory, "mini_fbc2.xml")) diff --git a/src/cobra/test/test_io/test_web/test_load.py b/tests/test_io/test_web/test_load.py similarity index 95% rename from src/cobra/test/test_io/test_web/test_load.py rename to tests/test_io/test_web/test_load.py index 3f91d72bb..abfb4b809 100644 --- a/src/cobra/test/test_io/test_web/test_load.py +++ b/tests/test_io/test_web/test_load.py @@ -71,3 +71,8 @@ def test_cache(monkeypatch, tmp_path, bigg_models, biomodels): biomodels.get_sbml.assert_not_called() assert len(cached_model.metabolites) == len(remote_model.metabolites) assert len(cached_model.reactions) == len(remote_model.reactions) + + +def test_local_load(model, compare_models): + model_local = load_model("textbook") + compare_models(model, model_local) diff --git a/src/cobra/test/test_io/test_yaml.py b/tests/test_io/test_yaml.py similarity index 58% rename from src/cobra/test/test_io/test_yaml.py rename to tests/test_io/test_yaml.py index a440281ea..4bb2e593e 100644 --- a/src/cobra/test/test_io/test_yaml.py +++ b/tests/test_io/test_yaml.py @@ -1,31 +1,33 @@ """Test functionalities of I/O in YAML format.""" import json -from os.path import join +from pathlib import Path +from typing import Callable import pytest from ruamel.yaml import YAML from cobra import Model from cobra import io as cio -from cobra.test.test_io.conftest import compare_models -def test_load_yaml_model(data_directory: str, mini_model: Model) -> None: +def test_load_yaml_model( + compare_models: Callable, data_directory: Path, mini_model: Model +) -> None: """Test the reading of YAML model.""" - yaml_model = cio.load_yaml_model(join(data_directory, "mini.yml")) + yaml_model = cio.load_yaml_model(data_directory.joinpath("mini.yml")) assert compare_models(mini_model, yaml_model) is None @pytest.mark.xfail(reason="schema outdated") -def test_save_yaml_model(tmpdir: str, mini_model: Model) -> None: +def test_save_yaml_model(tmp_path: Path, mini_model: Model) -> None: """Test the writing of YAML model.""" jsonschema = pytest.importorskip("jsonschema") - output_file = tmpdir.join("mini.yml") - cio.save_yaml_model(mini_model, output_file.strpath, sort=True) + output_file = tmp_path.joinpath("mini.yml") + cio.save_yaml_model(mini_model, str(output_file), sort=True) # validate against JSONSchema yaml = YAML(typ="unsafe") - with open(output_file.strpath, "r") as infile: + with open(output_file, "r") as infile: yaml_to_dict = yaml.load(infile) dict_to_json = json.dumps(yaml_to_dict) loaded = json.loads(dict_to_json) diff --git a/src/cobra/test/test_manipulation/test_annotate.py b/tests/test_manipulation/test_annotate.py similarity index 100% rename from src/cobra/test/test_manipulation/test_annotate.py rename to tests/test_manipulation/test_annotate.py diff --git a/src/cobra/test/test_manipulation/test_delete.py b/tests/test_manipulation/test_delete.py similarity index 100% rename from src/cobra/test/test_manipulation/test_delete.py rename to tests/test_manipulation/test_delete.py diff --git a/src/cobra/test/test_manipulation/test_modify.py b/tests/test_manipulation/test_modify.py similarity index 100% rename from src/cobra/test/test_manipulation/test_modify.py rename to tests/test_manipulation/test_modify.py diff --git a/src/cobra/test/test_manipulation/test_validate.py b/tests/test_manipulation/test_validate.py similarity index 91% rename from src/cobra/test/test_manipulation/test_validate.py rename to tests/test_manipulation/test_validate.py index e09eafb26..587647e29 100644 --- a/src/cobra/test/test_manipulation/test_validate.py +++ b/tests/test_manipulation/test_validate.py @@ -3,7 +3,10 @@ import pytest from cobra.core import Metabolite, Model, Reaction -from cobra.manipulation import check_mass_balance, check_metabolite_compartment_formula +from cobra.manipulation import ( + check_mass_balance, + check_metabolite_compartment_formula, +) def test_validate_mass_balance(model: Model) -> None: diff --git a/src/cobra/test/test_medium/test_boundary_types.py b/tests/test_medium/test_boundary_types.py similarity index 100% rename from src/cobra/test/test_medium/test_boundary_types.py rename to tests/test_medium/test_boundary_types.py diff --git a/src/cobra/test/test_medium/test_minimal_medium.py b/tests/test_medium/test_minimal_medium.py similarity index 100% rename from src/cobra/test/test_medium/test_minimal_medium.py rename to tests/test_medium/test_minimal_medium.py diff --git a/src/cobra/test/test_sampling/conftest.py b/tests/test_sampling/conftest.py similarity index 100% rename from src/cobra/test/test_sampling/conftest.py rename to tests/test_sampling/conftest.py diff --git a/src/cobra/test/test_sampling/test_achr.py b/tests/test_sampling/test_achr.py similarity index 100% rename from src/cobra/test/test_sampling/test_achr.py rename to tests/test_sampling/test_achr.py diff --git a/src/cobra/test/test_sampling/test_optgp.py b/tests/test_sampling/test_optgp.py similarity index 100% rename from src/cobra/test/test_sampling/test_optgp.py rename to tests/test_sampling/test_optgp.py diff --git a/src/cobra/test/test_sampling/test_sampling.py b/tests/test_sampling/test_sampling.py similarity index 100% rename from src/cobra/test/test_sampling/test_sampling.py rename to tests/test_sampling/test_sampling.py diff --git a/src/cobra/test/test_summary/test_metabolite_summary.py b/tests/test_summary/test_metabolite_summary.py similarity index 100% rename from src/cobra/test/test_summary/test_metabolite_summary.py rename to tests/test_summary/test_metabolite_summary.py diff --git a/src/cobra/test/test_summary/test_model_summary.py b/tests/test_summary/test_model_summary.py similarity index 100% rename from src/cobra/test/test_summary/test_model_summary.py rename to tests/test_summary/test_model_summary.py diff --git a/src/cobra/test/test_summary/test_reaction_summary.py b/tests/test_summary/test_reaction_summary.py similarity index 100% rename from src/cobra/test/test_summary/test_reaction_summary.py rename to tests/test_summary/test_reaction_summary.py diff --git a/src/cobra/test/test_util/test_array.py b/tests/test_util/test_array.py similarity index 100% rename from src/cobra/test/test_util/test_array.py rename to tests/test_util/test_array.py diff --git a/src/cobra/test/test_util/test_context.py b/tests/test_util/test_context.py similarity index 100% rename from src/cobra/test/test_util/test_context.py rename to tests/test_util/test_context.py diff --git a/src/cobra/test/test_util/test_process_pool.py b/tests/test_util/test_process_pool.py similarity index 100% rename from src/cobra/test/test_util/test_process_pool.py rename to tests/test_util/test_process_pool.py diff --git a/src/cobra/test/test_util/test_solver.py b/tests/test_util/test_solver.py similarity index 100% rename from src/cobra/test/test_util/test_solver.py rename to tests/test_util/test_solver.py diff --git a/src/cobra/test/test_util/test_util.py b/tests/test_util/test_util.py similarity index 100% rename from src/cobra/test/test_util/test_util.py rename to tests/test_util/test_util.py diff --git a/tox.ini b/tox.ini index 871aff7c0..dc978e5ef 100644 --- a/tox.ini +++ b/tox.ini @@ -82,7 +82,7 @@ commands= [pytest] testpaths = - src/cobra/test + tests markers = raises @@ -94,16 +94,12 @@ source = [coverage:run] branch = true parallel = true -omit = - */cobra/test/* [coverage:report] exclude_lines = # Have to re-enable the standard pragma pragma: no cover precision = 2 -omit = - */cobra/test/* [isort] skip = __init__.py