Added features in the downloadable to mark DNA start boxes, to convert from Standard DNA notation(Single letter codon Expressions) to codons, an RNA converter, and the ability to convert code added to the js version to vb version using some REGEX. The JS version has its own converter:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | <body bgcolor = "#303030 "> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"> </script> <style> #sideBar { vertical-align:top;} #contentArea { vertical-align:top;} </style> <table> <tr> <td id="sideBar"> </td> <td id="contentArea"> <textarea name="texty" id="field_id_29" rows="40" cols="100" style="color: #0086f7; background-color: black;font-weight: bold; font-family: source code pro; font-size:11; "></textarea> <script> $("#field_id_29").bind("keyup", function() { var text = $(this).val(); text = text.replace("text = text.replace","buildbox.text=Replace(buildbox.text,") $(this).val(text); }); $("#field_id_29").bind("keyup", function() { var text = $(this).val(); text = text.replace("var text = $(this).val();","") $(this).val(text); }); $("#field_id_29").bind("keyup", function() { var text = $(this).val(); text = text.replace("});","") $(this).val(text); }); </script> </td> </body> |
Which I created using Jquery
No comments:
Post a Comment