Skip to content

Commit aead808

Browse files
authored
Merge pull request #66 from BrainAnnex/dev
beta 36
2 parents 7992007 + 265982a commit aead808

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+101
-101
lines changed

experiments/reactions_single_compartment/cascade_2_a.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"\n",
1616
"**Background**: please see experiments `cascade_1` and `mystery_reaction_1`\n",
1717
"\n",
18-
"LAST REVISED: June 14, 2024 (using v. 1.0 beta33)"
18+
"LAST REVISED: June 23, 2024 (using v. 1.0 beta36)"
1919
]
2020
},
2121
{
@@ -47,8 +47,8 @@
4747
"source": [
4848
"from experiments.get_notebook_info import get_notebook_basename\n",
4949
"\n",
50-
"from src.modules.reactions.uniform_compartment import UniformCompartment\n",
51-
"from src.modules.visualization.plotly_helper import PlotlyHelper"
50+
"from life123 import UniformCompartment\n",
51+
"from life123.visualization.plotly_helper import PlotlyHelper"
5252
]
5353
},
5454
{

experiments/reactions_single_compartment/cascade_2_a.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424
# **Background**: please see experiments `cascade_1` and `mystery_reaction_1`
2525
#
26-
# LAST REVISED: June 23, 2024 (using v. 1.0 beta34.1)
26+
# LAST REVISED: June 23, 2024 (using v. 1.0 beta36)
2727

2828
# %%
2929
import set_path # Importing this module will add the project's home directory to sys.path

experiments/reactions_single_compartment/cascade_2_b.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"\n",
1515
"**Background**: please see experiment `cascade_2_a` \n",
1616
"\n",
17-
"LAST REVISED: June 14, 2024 (using v. 1.0 beta33)"
17+
"LAST REVISED: June 23, 2024 (using v. 1.0 beta36)"
1818
]
1919
},
2020
{
@@ -46,8 +46,8 @@
4646
"source": [
4747
"from experiments.get_notebook_info import get_notebook_basename\n",
4848
"\n",
49-
"from src.modules.reactions.uniform_compartment import UniformCompartment\n",
50-
"from src.modules.visualization.plotly_helper import PlotlyHelper"
49+
"from life123 import UniformCompartment\n",
50+
"from life123.visualization.plotly_helper import PlotlyHelper"
5151
]
5252
},
5353
{

experiments/reactions_single_compartment/cascade_2_b.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#
2323
# **Background**: please see experiment `cascade_2_a`
2424
#
25-
# LAST REVISED: June 23, 2024 (using v. 1.0 beta34.1)
25+
# LAST REVISED: June 23, 2024 (using v. 1.0 beta36)
2626

2727
# %%
2828
import set_path # Importing this module will add the project's home directory to sys.path

experiments/reactions_single_compartment/cascade_2_c.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"\n",
1515
"**Background**: please see experiment `cascade_2_b` \n",
1616
"\n",
17-
"LAST REVISED: June 14, 2024 (using v. 1.0 beta33)"
17+
"LAST REVISED: June 23, 2024 (using v. 1.0 beta36)"
1818
]
1919
},
2020
{
@@ -46,8 +46,8 @@
4646
"source": [
4747
"from experiments.get_notebook_info import get_notebook_basename\n",
4848
"\n",
49-
"from src.modules.reactions.uniform_compartment import UniformCompartment\n",
50-
"from src.modules.visualization.plotly_helper import PlotlyHelper"
49+
"from life123 import UniformCompartment\n",
50+
"from life123.visualization.plotly_helper import PlotlyHelper"
5151
]
5252
},
5353
{

experiments/reactions_single_compartment/cascade_2_c.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#
2323
# **Background**: please see experiment `cascade_2_b`
2424
#
25-
# LAST REVISED: June 23, 2024 (using v. 1.0 beta34.1)
25+
# LAST REVISED: June 23, 2024 (using v. 1.0 beta36)
2626

2727
# %%
2828
import set_path # Importing this module will add the project's home directory to sys.path

experiments/reactions_single_compartment/cycles_1.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"\n",
1414
"All 1st-order kinetics. \n",
1515
"\n",
16-
"LAST REVISED: June 10, 2024 (using v. 1.0 beta33)"
16+
"LAST REVISED: June 23, 2024 (using v. 1.0 beta36)"
1717
]
1818
},
1919
{
@@ -45,11 +45,11 @@
4545
"source": [
4646
"from experiments.get_notebook_info import get_notebook_basename\n",
4747
"\n",
48-
"from src.modules.chemicals.chem_data import ChemData\n",
49-
"from src.modules.reactions.uniform_compartment import UniformCompartment\n",
50-
"from src.modules.numerical.numerical import Numerical as num\n",
48+
"from life123 import ChemData\n",
49+
"from life123 import UniformCompartment\n",
50+
"from life123 import Numerical as num\n",
5151
"\n",
52-
"from src.modules.visualization.graphic_log import GraphicLog"
52+
"from life123 import GraphicLog"
5353
]
5454
},
5555
{

experiments/reactions_single_compartment/cycles_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#
2323
# All 1st-order kinetics.
2424
#
25-
# LAST REVISED: June 23, 2024 (using v. 1.0 beta34.1)
25+
# LAST REVISED: June 23, 2024 (using v. 1.0 beta36)
2626

2727
# %%
2828
import set_path # Importing this module will add the project's home directory to sys.path

experiments/reactions_single_compartment/down_regulate_1.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"\n",
1919
"All reactions are 1st order, mostly forward. Taken to equilibrium.\n",
2020
"\n",
21-
"LAST REVISED: June 12, 2024 (using v. 1.0 beta33)"
21+
"LAST REVISED: June 23, 2024 (using v. 1.0 beta36)"
2222
]
2323
},
2424
{
@@ -69,11 +69,11 @@
6969
"source": [
7070
"from experiments.get_notebook_info import get_notebook_basename\n",
7171
"\n",
72-
"from src.modules.chemicals.chem_data import ChemData as chem\n",
73-
"from src.modules.reactions.uniform_compartment import UniformCompartment\n",
72+
"from life123 import ChemData as chem\n",
73+
"from life123 import UniformCompartment\n",
7474
"\n",
7575
"import plotly.express as px\n",
76-
"from src.modules.visualization.graphic_log import GraphicLog"
76+
"from life123 import GraphicLog"
7777
]
7878
},
7979
{

experiments/reactions_single_compartment/down_regulate_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#
2727
# All reactions are 1st order, mostly forward. Taken to equilibrium.
2828
#
29-
# LAST REVISED: June 23, 2024 (using v. 1.0 beta34.1)
29+
# LAST REVISED: June 23, 2024 (using v. 1.0 beta36)
3030

3131
# %% [markdown]
3232
# ## Bathtub analogy:

0 commit comments

Comments
 (0)