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 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:mrs="http://mrs.cmbi.ru.nl/mrs-web/ml"
xml:lang="en" lang="en">
<head>
<title>M6</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Maarten L. Hekkelman" />
<meta name="generator" content="Japi" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/mrs-style.css" />
<link rel="stylesheet" type="text/css" href="css/msa.css" />
<script src="scripts/jquery/jquery.js" type="text/javascript">
</script>
<script src="scripts/mrs.js" type="text/javascript">
</script>
<script src="scripts/msa.js" type="text/javascript">
</script>
</head>
<body>
<mrs:include file="header.html" />
<div id="main">
<form id="alignForm" method="POST" action="#" onsubmit="submitAlignJob(); return false;" class="align_form">
<fieldset>
<p>Enter two or more protein sequences in <em>FastA</em> format</p>
<textarea name="input" rows="5" cols="72">${input}</textarea>
<div><input type="submit" name="Align" value="Align" class="submit" style="float:right;"/></div>
</fieldset>
</form>
<div id="waiting" style="display:none;">
<img src="images/wait20.gif" />
</div>
<div id="result" style="display:none; margin-top: 10px;">
<div class="nav">
<ul>
<li>
<!-- <input type="button" onclick="toggleClustalColors();" value="Hide colours" class="submit" />-->
<a href="#" id="msa_show_hide_button" onclick="toggleClustalColors();">hide colours</a>
</li>
<li>
<!-- <input type="button" onclick="toggleClustalWrap();" value="Show unwrapped" class="submit" />-->
<a href="#" id="msa_wrap_button" onclick="toggleClustalWrap();">show unwrapped</a>
</li>
</ul>
</div>
<div class='msa' id='alignment'>
<div id='wrapped' />
<div id='unwrapped' style='display:none;' />
</div>
</div>
</div>
</body>
</html>
|