User:Jessica Perez/CloningWorkflow: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(Replacing page with '==Planning== Before you start any cloning in the lab you first do the following: #Decide what parts you need #Design primers #Draw up your expected plasmid. This can be done in...')
No edit summary
Line 13: Line 13:
<html>
<html>
<canvas id="myCanvas" width="1000" height="1000"
<canvas id="myCanvas" width="1000" height="1000"
style="border:12px solid #00000;">
style="border:12px solid #000000;">
</canvas>
</canvas>
<script>
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.arc(95,50,40,0,2*Math.PI);
ctx.stroke();
</script>
</html>
</html>

Revision as of 14:54, 3 August 2013

Planning

Before you start any cloning in the lab you first do the following:

  1. Decide what parts you need
  2. Design primers
  3. Draw up your expected plasmid. This can be done in Word or freely avalible DNA editor software such as <html>

<body> <a href="http://biologylabs.utah.edu/jorgensen/wayned/ape/"> APE</a> </body> </html>.

Source of DNA

<html> <canvas id="myCanvas" width="1000" height="1000" style="border:12px solid #000000;"> </canvas> <script> var c=document.getElementById("myCanvas"); var ctx=c.getContext("2d"); ctx.beginPath(); ctx.arc(95,50,40,0,2*Math.PI); ctx.stroke(); </script> </html>