Skip to content
Snippets Groups Projects
Commit 9eadf133 authored by Arjan Kohli's avatar Arjan Kohli
Browse files

Update modeling.html

parent e1bf1bd1
No related branches found
No related tags found
No related merge requests found
Pipeline #358957 passed
......@@ -47,7 +47,12 @@
</select>
<br><br>
Age: <input type="number" name="Age">
Age:
<select name="Age">
{% for age in range(45, 71) %}
<option value="{{ age }}">{{ age }}</option>
{% endfor %}
</select>
<br><br>
Language:
......@@ -167,7 +172,7 @@
const formData = {
Race: document.querySelector('select[name="Race"]').value,
MenoStatus: document.querySelector('select[name="MenoStatus"]').value,
Age: parseFloat(document.querySelector('input[name="Age"]').value), // Parse as float
Age: parseFloat(document.querySelector('select[name="Age"]').value), // Parse as float
Language: document.querySelector('select[name="Language"]').value,
INSURAN10: parseFloat(document.querySelector('select[name="data.INSURAN10"]').value),
NOTAFFR10: parseFloat(document.querySelector('select[name="data.NOTAFFR10"]').value),
......@@ -207,18 +212,17 @@
<p</p></p>
<h2>Therapy Access Likelihood Predictions:</h2>
<br>
<p id="Estr110_prediction">Estrogen 110</p>
<p id="EstrInjec110_prediction">Estrogen Injection 110</p>
<p id="EstrProgComb110_prediction">Estrogen Progesterone Combination 110</p>
<p id="OtherHormone1_prediction">Other Hormone Treatment</p>
<br>
<h3>Key:</h3>
<p>Estr110 represents Estrogen pills (such as Premarin, Estrace, Ogen, etc).</p>
<p>EstrInjec110 is Estrogen treatment by injection or patch (such as Estraderm).</p>
<p>EstrProgComb110 is Combination estrogen/progestin treatment (such as Premphase or Prempro).</p>
<p>OtherHormone1 represents miscelleneous other menopause treatments.</p>
<br>
<p id="Estr110_prediction">Estrogen 110</p>
<p id="EstrInjec110_prediction">Estrogen Injection 110</p>
<p id="EstrProgComb110_prediction">Estrogen Progesterone Combination 110</p>
<p id="OtherHormone1_prediction">Other Hormone Treatment</p>
<br>
<hr>
<h2>Flux Balance Analysis</h2>
<br>
<p>In addition to the prior model, our dry lab team also implemented a computational project utilizing flux balance analysis to explore the metabolic model of our recombinant E. Coli to optimize for the production of Daidzein and Equol by running knockout analyses to channel flux towards our target pathway.</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment