diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 35 |
1 files changed, 13 insertions, 22 deletions
@@ -29,26 +29,22 @@ <span id='remaining-iterations'>--</span> more times: <ol> - <li id='clone-nucleotide' class='step'> - <button id='clone' disabled=''>Clone</button> the genome to - start mutating it. - </li> - <li id='roll-for-nucleotide' class='step'> Roll to find the nucleotide to mutate. + </li> + + <li id='nucleotide-select' class='step'> + Depending on the roll: + <ul> <li>If the roll is between 1 through 18, inclusive, select that nucleotide.</li> - <li>Otherwise, skip mutation and clone the genome - again.</li> + <li>Otherwise, skip mutation and + <button class='clone' disabled=''>clone</button> the + genome again.</li> </ul> </li> - <li id='nucleotide-select' class='step'> - Select the <span id='select-number'>rolled</span> - nucleotide in the sequence. - </li> - <li id='roll-for-mutation' class='step'> Roll to see what kind of mutation to perform. </li> @@ -76,12 +72,12 @@ <li id='mark-as-lethal'> Depending on the change to the codon: <ul> - <li>If the mutation caused a change in the amino acid being - coded, mark this mutation as <em>lethal</em>, and start - over with the genome from the previous iteration.</li> + <li>If the mutation caused a change in the amino acid + being coded, then <button id='kill' disabled=''>kill</button> it and + start again with the previous generation.</li> - <li>Otherwise, mark the mutation as <em>non-lethal</em>, - and continue with this new genome.</li> + <li>Otherwise, <button id='clone' disabled=''>clone</button> this + genome for the next generation.</li> </ul> </li> </ol> @@ -130,11 +126,6 @@ </ul> </div> - <div id='lethality-selector' class='hidden'> - <button id='lethal'>Lethal</button> - <button id='non-lethal'>Non-lethal</button> - </div> - <script src='main.mjs' type='module'></script> </body> </html> |