Template:Team:UC Berkeley/Notebook/BX calculator
From 2008.igem.org
(Difference between revisions)
Line 6: | Line 6: | ||
p {color: blue} | p {color: blue} | ||
</style> | </style> | ||
- | < | + | <script type="text/javascript"> |
+ | function disp_calcs() | ||
+ | { | ||
+ | num_rxns = numRxns.value; | ||
+ | if (num_rxns < 29) | ||
+ | { | ||
+ | num_rxns = num_rxns + 1; | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | num_rxns = num_rxns + 2; | ||
+ | } | ||
+ | document.write(num_rxns); | ||
+ | } | ||
+ | </script> | ||
</head> | </head> | ||
<body> | <body> | ||
- | < | + | <div style="text-align: center;font-family: times;font-size: 16pt"> |
Bing's PCR/Digestion Master Mix Calculator | Bing's PCR/Digestion Master Mix Calculator | ||
- | </ | + | </div> |
+ | |||
+ | <form action=""> | ||
+ | <select name="rxn_type"> | ||
+ | <option value="regPCR">Regular PCR</option> | ||
+ | <option value="wobblePCR">Wobble PCR</option> | ||
+ | <option value="digestion">Digestion</option> | ||
+ | <option value="ligation">Ligation</option> | ||
+ | </select> | ||
+ | </form> | ||
+ | |||
+ | <form> | ||
+ | Number of reactions: | ||
+ | <input type="text" name="numRxns"> | ||
+ | </form> | ||
+ | |||
+ | <input type="button" onclick="disp_calcs()" value="Calculate" /> | ||
+ | |||
</body> | </body> | ||
</html> | </html> |
Revision as of 06:49, 13 June 2008
Bing's PCR/Digestion Master Mix Calculator