-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (51 loc) · 1.34 KB
/
index.html
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
<html>
<head>
<title>CUTECodons</title>
<meta charset="utf-8">
<link rel="icon" type="image/png" href="/icons/chassidex.png" />
<link rel="stylesheet" type="text/css" href="styles/main.css">
<script src="/scripts/readfasta.js"></script>
<script src="/scripts/cutecodons.js"></script>
<script src="/scripts/main.js"></script>
</head>
<body onload="init()" onhashchange="goto()">
<div id="header">
<span>CUTE: Codon Usage Table Easy</span>
<a href="https://chassidex.org">
<img src="/icons/chassidex-text.png">
</a>
</div>
<div id="content">
<div id="start">
<p>
CUTE is a program that can be used to generate Codon Usage Tables from
protein coding sequences
</p>
<p>
<a href="/#pasteseq">Click to Start</a>
</p>
</div>
<div id="pasteseq">
<p>
Paste FASTA formatted DNA/RNA sequences below and click on Generate
<br><br>
<textarea id="fastainput"></textarea>
</p>
<p>
<a onclick="analysePasteSeq()">Generate</a>
</p>
</div>
<div id="result">
<p id="outputArea"></p>
<p>
<a href='/#start'>Back to home page</a>
</p>
</div>
</div>
<div id="footer">
<a href="https://github.com/ChassiDex/cutecodons">
<img src="/icons/github.png">
View Code
</a>
</div>
</body>