Team:TU-Munich/Results/AutoAnnotator
From 2013.igem.org
(Difference between revisions)
ChristopherW (Talk | contribs) |
|||
(45 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
+ | {{Team:TU-Munich/TUM13_Menu}} | ||
+ | {{Team:TU-Munich/TUM13_Style}} | ||
+ | |||
+ | <div id="wikicontent-container"> | ||
+ | <div id="wikicontent"> | ||
+ | <!-- Start des Inhalts --> | ||
+ | |||
+ | ==Use the AutoAnnotator to create your own Protein-Data table== | ||
+ | |||
<html> | <html> | ||
- | < | + | <script type="text/javascript" src="https://2013.igem.org/Team:TU-Munich/events.js?action=raw&ctype=text/js"></script> |
- | + | <script type="text/javascript" src="https://2013.igem.org/Team:TU-Munich/AjaxExtension.js?action=raw&ctype=text/js"></script> | |
- | <script type="text/javascript" src=" | + | <script type="text/javascript" src="https://2013.igem.org/Team:TU-Munich/md5_pajhome.js?action=raw&ctype=text/js"></script> |
- | <script | + | <script type="text/javascript" src="https://2013.igem.org/Team:TU-Munich/Flot.js?action=raw&ctype=text/js"></script> |
- | <script | + | |
- | < | + | <!-- IMPORTANT: DON'T REMOVE THIS LINE, OTHERWISE NOT SUPPORTED FOR IE BEFORE 9 --> |
- | </ | + | <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="https://2013.igem.org/Team:TU-Munich/excanvas.js?action=raw&ctype=text/js"></script><![endif]--> |
+ | |||
+ | <script language="JavaScript" src="https://2013.igem.org/Team:TU-Munich/AnnotatorCode.js?action=raw&ctype=text/js"></script> | ||
- | |||
<p id="Command"> | <p id="Command"> | ||
- | Enter a BioBrick number | + | Enter a BioBrick number (e.g. K801060) or a nucleotide sequence below! |
- | + | ||
</p> | </p> | ||
- | <input type="text" id="EnteredBioBrick"> Enter BioBrick number or DNA sequence! | + | <p><input type="text" id="EnteredBioBrick"> Enter BioBrick number or DNA sequence!</p> |
- | < | + | <p><input type="button" onclick="get_sequence()" id="CreateTableButton" value="Click here to create table"></p> |
- | <input type="button" onclick="get_sequence()" value="Click here to create table"> | + | |
<p id="htmlExplanation"></p> | <p id="htmlExplanation"></p> | ||
<p id="htmlTable"></p> | <p id="htmlTable"></p> | ||
- | + | ||
<p id="wikiExplanation"></p> | <p id="wikiExplanation"></p> | ||
- | < | + | <textarea readonly id="wikiTable" style="width:100%; display: none;" rows="4"></textarea> |
+ | <script> | ||
+ | // make pressing enter inside the text box, start the algorithm | ||
+ | $('#EnteredBioBrick').keyup(function(event) { | ||
+ | if (event.which == 13){ | ||
+ | // remove cursor from text box, so handling alerts with enter is possible | ||
+ | $('#EnteredBioBrick').blur(); | ||
+ | // automatically click the button | ||
+ | $('#CreateTableButton').click(); | ||
+ | } | ||
+ | }) | ||
+ | // prevent default action of pressing enter | ||
+ | $('#EnteredBioBrick').keydown(function(event) { | ||
+ | if (event.which == 13) { | ||
+ | event.preventDefault(); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | |||
+ | $(document).ready(function(){ | ||
+ | if ($.urlParam('annotator')) { | ||
+ | $('#EnteredBioBrick')[0].value = $.urlParam('annotator'); | ||
+ | $('#CreateTableButton').click(); | ||
+ | } | ||
+ | }); | ||
+ | </script> | ||
<br> | <br> | ||
- | <a href="https://2013.igem.org/Team:TU-Munich/Results/Software">Description and References</a> | + | <a href="https://2013.igem.org/Team:TU-Munich/Results/Software">Read the Autoannotator Description and References</a> |
+ | |||
+ | |||
+ | |||
<br> | <br> | ||
- | < | + | <br> |
+ | <style> | ||
+ | #HCB_comment_box textarea { | ||
+ | |||
+ | } | ||
+ | |||
+ | /* the entire html comment box container. applies to everything */ | ||
+ | #HCB_comment_box { | ||
+ | background: #FFFFFF; | ||
+ | border: 1px solid #000000; | ||
+ | padding: 10px; | ||
+ | } | ||
+ | |||
+ | #HCB_comment_box p.error { | ||
+ | border: 4px solid #f88; | ||
+ | background-color: #fee; | ||
+ | color: #800; | ||
+ | } | ||
+ | |||
+ | #HCB_comment_box textarea, #HCB_comment_box input.text { | ||
+ | border: 1px solid #ddd; | ||
+ | border-left: 1px solid #ccc; | ||
+ | border-top: 1px solid #ccc; | ||
+ | background: url(bg.png) repeat-x; | ||
+ | } | ||
+ | |||
+ | #HCB_comment_box .hcb-wrapper-half { | ||
+ | display:block; | ||
+ | width:50%; | ||
+ | float:left; | ||
+ | margin-bottom:0.5em; | ||
+ | } | ||
+ | #HCB_comment_box .hcb-wrapper { | ||
+ | clear:both; | ||
+ | margin:0.5em 0em; | ||
+ | } | ||
+ | #HCB_comment_box input.text { | ||
+ | display:block; | ||
+ | width:97%; | ||
+ | |||
+ | } | ||
+ | /* the submit button */ | ||
+ | #HCB_comment_box input.submit { | ||
+ | margin:0 7px 3px 0; | ||
+ | background-color:#f5f5f5; | ||
+ | border:1px solid #ccc; | ||
+ | border-top:1px solid #ddd; | ||
+ | border-left:1px solid #ddd; | ||
+ | font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif; | ||
+ | font-size:100%; | ||
+ | line-height:130%; | ||
+ | text-decoration:none; | ||
+ | font-weight:bold; | ||
+ | color:#565656; | ||
+ | cursor:pointer; | ||
+ | width:auto; | ||
+ | overflow:visible; | ||
+ | padding:4px 10px 3px 7px; /* IE6 */ | ||
+ | } | ||
+ | #HCB_comment_box input.submit:hover{ | ||
+ | background-color:#dff4ff; | ||
+ | border:1px solid #c2e1ef; | ||
+ | color:#336699; | ||
+ | } | ||
+ | |||
+ | #HCB_comment_box span.home-desc { | ||
+ | opacity:0.4; | ||
+ | } | ||
+ | |||
+ | /* the individual comment display containers */ | ||
+ | #HCB_comment_box div.comment { | ||
+ | border-top:1px solid #eee; | ||
+ | margin-bottom:0.5em; | ||
+ | } | ||
+ | |||
+ | /* the moderator message */ | ||
+ | .hcb-mod b{ | ||
+ | color:darkblue; | ||
+ | } | ||
+ | /* next, prev, ok and x link style */ | ||
+ | .hcb-link { | ||
+ | color:blue; | ||
+ | text-decoration:underline; | ||
+ | } | ||
+ | </style> | ||
+ | |||
<!-- begin htmlcommentbox.com --> | <!-- begin htmlcommentbox.com --> | ||
- | <div id="HCB_comment_box"><a href="http://www.htmlcommentbox.com">Comment | + | <div id="HCB_comment_box"><a href="http://www.htmlcommentbox.com">HTML Comment Box</a> is loading comments...</div> |
- | <link rel="stylesheet" type="text/css" href="//www.htmlcommentbox.com/static/skins/ | + | <link rel="stylesheet" type="text/css" href="//www.htmlcommentbox.com/static/skins/simple/skin.css" /> |
- | <script type="text/javascript" id="hcb"> /*<!--*/ if(!window.hcb_user){hcb_user={};} (function(){var s=document.createElement("script"), l=(""+window.location || hcb_user.PAGE), h="//www.htmlcommentbox.com";s.setAttribute("type","text/javascript");s.setAttribute("src", h+"/jread?page="+encodeURIComponent(l).replace("+","%2B")+"&mod=%241%24wq1rdBcg%24VTeE.Hl0XmEL4ZJAGwbrX%2F"+"&opts= | + | <script type="text/javascript" id="hcb"> /*<!--*/ if(!window.hcb_user){hcb_user={};} (function(){var s=document.createElement("script"), l=(""+window.location || hcb_user.PAGE), h="//www.htmlcommentbox.com";s.setAttribute("type","text/javascript");s.setAttribute("src", h+"/jread?page="+encodeURIComponent(l).replace("+","%2B")+"&mod=%241%24wq1rdBcg%24VTeE.Hl0XmEL4ZJAGwbrX%2F"+"&opts=17294&num=10");if (typeof s!="undefined") document.getElementsByTagName("head")[0].appendChild(s);})(); /*-->*/ </script> |
<!-- end htmlcommentbox.com --> | <!-- end htmlcommentbox.com --> | ||
- | |||
</html> | </html> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | <html><center><div id="clustermap"> | ||
+ | <a href="http://www2.clustrmaps.com/user/6eb10e56e" id="clustrMapsLink"><img src="http://www2.clustrmaps.com/stats/maps-no_clusters/2013.igem.org-Team-TU-Munich-Results-AutoAnnotator-thumb.jpg" style="border:0px;" alt="Locations of visitors to this page" title="Locations of visitors to this page" id="clustrMapsImg" onerror="this.onerror=null; this.src='http://clustrmaps.com/images/clustrmaps-back-soon.jpg'; document.getElementById('clustrMapsLink').href='http://clustrmaps.com';" width="150" /></a> | ||
+ | </div></center></html> | ||
+ | |||
+ | <!-- Ende des Inhalts --> | ||
+ | </div> | ||
+ | </div> | ||
+ | |||
+ | {{Team:TU-Munich/TUM13_Footer}} |
Latest revision as of 14:44, 28 September 2013
Use the AutoAnnotator to create your own Protein-Data table
Enter a BioBrick number (e.g. K801060) or a nucleotide sequence below!
Enter BioBrick number or DNA sequence!
Read the Autoannotator Description and References
HTML Comment Box is loading comments...
AutoAnnotator:
Follow us:
Address:
iGEM Team TU-Munich
Emil-Erlenmeyer-Forum 5
85354 Freising, Germany
Email: igem@wzw.tum.de
Phone: +49 8161 71-4351