-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (79 loc) · 4.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Calculate for ELISA</title>
</head>
<body>
<header class="p-3 bg-dark text-white">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<!-- <a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-white text-decoration-none">
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg>
</a> -->
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<li><a href="#" class="nav-link px-2 text-secondary">Calculate for ELISA</a></li>
<!-- <li><a href="#" class="nav-link px-2 text-white">Features</a></li>
<li><a href="#" class="nav-link px-2 text-white">Pricing</a></li>
<li><a href="#" class="nav-link px-2 text-white">FAQs</a></li>
<li><a href="#" class="nav-link px-2 text-white">About</a></li> -->
</ul>
<!-- <form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3">
<input type="search" class="form-control form-control-dark" placeholder="Search..." aria-label="Search">
</form> -->
<div class="text-end" id="filename"></div>
<!-- <div class="text-end">
<button type="button" class="btn btn-outline-light me-2">Login</button>
<button type="button" class="btn btn-warning">Sign-up</button>
</div> -->
</div>
</div>
</header>
<div class="container" id="drophere">
<div class="row">
<div class="md-12" style="margin-top: 15px;">
<div>
<p>A test system for biolab work at Haukeland University Hospital. Please upload your data files by drag & drop.</p>
</div>
<div>
<div class="form-group">
<label for="replicationThreshold">Replication threshold for cell control</label>
<input type="float" class="form-control" id="replicationThreshold" aria-describedby="replicationThresholdHelp" placeholder="Enter replication threshold (0.14)" value="0.14">
<small id="replicationThresholdHelp" class="form-text text-muted">The base replication threshold is 0.14. For cell control measures we will compute the mean of all values below this threshold.</small>
</div>
</div>
<div id="message"></div>
<div id="setup"> </div>
<div id="res" style="height: 425px;"></div>
<div id="out" style="display: inline-flex; flex-flow: row wrap;"></div>
<div id="canvas" style="height: 500px; border: 1px solid gray; border-radius: 3px;"></div>
<hr>
<h4>Data for all plates</h4>
<div id="master-table"></div>
<button class="btn btn-primary" id="download-table" title="Download table data as csv">Download</button>
<hr>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!--<script src="js/jquery-3.2.1.min.js"></script> -->
<script src="js/amd_core-1.0.1.min.js"></script>
<!-- <script src="js/amd_ww-2.0.0.min.js"></script>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/amd_cf_worker-1.2.1.min.js"></script>
<script src="js/amd_cf-2.0.0.min.js"></script> -->
<script src="js/popper.min.js"></script>
<!-- <script src="js/bootstrap.min.js"></script> -->
<script src="js/colorbrewer.js"></script>
<script src="js/xlsx.full.min.js"></script>
<script src="js/docx4js.js"></script>
<script type="module" src="js/vizes/plotOnePlate.js"></script>
<script type="module" src="js/all.js"></script>
</body>
</html>