-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab-programmes.html
More file actions
681 lines (611 loc) · 20.5 KB
/
lab-programmes.html
File metadata and controls
681 lines (611 loc) · 20.5 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dr Ash Otter - Lab Programmes</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/ui/virus-cursor.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Shared Microbe Animation -->
<script src="assets/js/microbe-animation.js"></script>
<style>
/* Base styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Roboto Mono', monospace;
overflow-x: hidden;
position: relative;
background: #f5f5f5;
}
.background-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
/* Container for page content */
.page-container {
position: relative;
min-height: 100vh;
z-index: 10;
padding-top: 100px;
}
/* Floating Navigation Buttons */
.nav-container {
position: fixed;
top: 20px;
left: 20px;
z-index: 100;
display: flex;
gap: 10px;
}
.nav-links {
display: flex;
gap: 10px;
}
.nav-btn {
background: rgba(255, 255, 255, 0.95);
border: 1px solid #333;
color: #333;
padding: 10px 20px;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
backdrop-filter: blur(10px);
}
.nav-btn i {
margin-right: 8px;
}
.nav-btn:hover {
background: rgba(240, 240, 240, 0.95);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* Header section */
.header-section {
text-align: center;
padding: 40px 20px;
max-width: 800px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.95);
border: 1px solid #333;
margin-bottom: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-title {
font-size: 2.5rem;
margin-bottom: 10px;
font-weight: 700;
color: #333;
}
.page-subtitle {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
}
.page-description {
font-size: 1rem;
max-width: 800px;
margin: 0 auto;
color: #555;
}
/* Programmes grid */
.programmes-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px 60px;
position: relative;
}
.programmes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 40px;
}
/* Programme card */
.programme-card {
background-color: white;
border-radius: 12px;
overflow: hidden;
border: 1px solid #333;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}
.programme-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
/* Card header container */
.card-image-container {
position: relative;
height: 140px;
background: #f0f0f0;
overflow: visible;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 2px solid #333;
}
.card-title-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 35px 25px;
color: #333;
text-align: center;
min-height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
}
.card-title {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 5px;
}
.card-subtitle {
font-size: 0.9rem;
opacity: 0.9;
}
/* Card content */
.card-content {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.card-description {
margin-bottom: 20px;
font-size: 1rem;
color: #555;
flex-grow: 1;
line-height: 1.6;
text-align: justify;
}
.programme-features {
margin-bottom: 20px;
}
.features-title {
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 10px;
color: #333;
}
.feature-item {
font-size: 0.85rem;
margin-bottom: 6px;
padding-left: 15px;
position: relative;
line-height: 1.4;
color: #666;
}
.feature-item:before {
content: "";
position: absolute;
left: 0;
top: 8px;
width: 6px;
height: 6px;
background: #333;
border-radius: 50%;
}
.launch-btn {
background: #333;
color: white;
border: 2px solid #333;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
transition: all 0.3s ease;
align-self: flex-start;
text-decoration: none;
display: inline-flex;
align-items: center;
font-size: 0.95rem;
}
.launch-btn i {
margin-left: 8px;
}
.launch-btn:hover {
background: white;
color: #333;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Status badge */
.status-badge {
position: absolute;
top: 8px;
right: 15px;
padding: 5px 12px;
border-radius: 2px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
border: 1px solid #333;
background-color: white;
color: #333;
letter-spacing: 0.5px;
}
.status-badge.active {
background-color: #333;
color: white;
border-color: #333;
}
.status-badge.development {
background-color: #666;
color: white;
border-color: #666;
}
.status-badge.beta {
background-color: white;
color: #333;
border-color: #333;
}
/* Microbe canvas styles */
.microbe {
position: absolute;
border-radius: 50%;
filter: blur(1px);
}
.microbe-body {
width: 100%;
height: 100%;
border-radius: 50%;
position: relative;
}
.flagellum {
position: absolute;
background: rgba(255, 255, 255, 0.3);
transform-origin: left center;
}
.food-particle {
position: absolute;
border-radius: 50%;
opacity: 0.8;
transition: opacity 0.3s ease;
}
/* Modern Footer Styles */
.modern-footer {
position: relative;
z-index: 20;
padding: 1rem 0;
background-color: #222;
margin-top: 40px;
}
.footer-social-container {
display: flex;
background-color: rgba(0, 0, 0, 0.01);
justify-content: center;
align-items: center;
gap: 1rem;
}
.footer-icon {
display: flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
border-radius: 50%;
color: white;
font-size: 1.2rem;
background-color: rgba(255, 255, 255, 0.4);
transition: all 0.3s ease;
text-decoration: none;
}
.footer-icon:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Icon-specific hover colors */
.footer-icon:nth-child(1):hover { color: #1DA1F2; }
.footer-icon:nth-child(2):hover { color: #0285FF; }
.footer-icon:nth-child(3):hover { color: #0077B5; }
.footer-icon:nth-child(4):hover { color: #4285F4; }
.footer-icon:nth-child(5):hover { color: #333333; }
.footer-icon:nth-child(6):hover { color: #D44638; }
/* Easter Egg Hidden Eyes */
.easter-egg {
position: fixed;
bottom: 5px;
right: 5px;
width: 40px;
height: 20px;
cursor: pointer;
z-index: 1000;
display: flex;
justify-content: space-between;
opacity: 0;
transition: opacity 0.5s ease;
}
.easter-egg-hover-area {
position: fixed;
bottom: 0;
right: 0;
width: 80px;
height: 80px;
z-index: 999;
}
.easter-egg-hover-area:hover + .easter-egg,
.easter-egg:hover {
opacity: 1;
}
.eye {
width: 16px;
height: 16px;
background-color: white;
border-radius: 50%;
position: relative;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.eye::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 8px;
height: 8px;
background-color: #333;
border-radius: 50%;
transform: translate(-50%, -50%);
transition: all 0.2s ease;
}
.easter-egg:hover .eye::after {
animation: look-around 2s infinite alternate;
}
@keyframes look-around {
0%, 100% { transform: translate(-50%, -50%); }
25% { transform: translate(-30%, -60%); }
50% { transform: translate(-70%, -50%); }
75% { transform: translate(-50%, -30%); }
}
/* Responsive design */
@media (max-width: 768px) {
.page-title {
font-size: 2.5rem;
}
.programmes-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.card-image-container {
height: 180px;
}
.card-content {
padding: 20px;
}
}
</style>
</head>
<body data-auto-init-microbe data-microbe-obstacles=".tool-card" data-microbe-food-count="80" data-microbe-spawn-x="0.2" data-microbe-spawn-y="0.5">
<canvas class="background-canvas" id="canvas"></canvas>
<!-- Main page container -->
<div class="page-container">
<!-- Navigation -->
<div class="nav-container">
<div class="nav-links">
<a href="index.html" class="nav-btn">
<i class="fas fa-home"></i> Home
</a>
<a href="research-experience.html" class="nav-btn">
<i class="fas fa-flask"></i> Research
</a>
</div>
</div>
<!-- Header section -->
<div class="header-section">
<h1 class="page-title">Lab Programmes</h1>
<p class="page-subtitle">Assortment of random tools for the lab/bioinformatics/data analysis, all to make life a bit easier and more straightforward</p>
<p class="page-description">
See <a href="https://github.com/asherichia">Github</a> for further details.
</p>
</div>
<!-- Programmes container -->
<div class="programmes-container">
<div class="programmes-grid">
<!-- Luminex Data Extractor Programme -->
<div class="programme-card">
<div class="card-image-container">
<div class="status-badge beta">Beta</div>
<div class="card-title-overlay">
<div class="card-title">Luminex Data Extractor</div>
<div class="card-subtitle">Automated data analysis direct from CSV exports</div>
</div>
</div>
<div class="card-content">
<p class="card-description">
Standalone HTML application for processing of Luminex data CSV files and analysis relative to standards. Provides automated analyte (bead) detection, efficiency calculations on standards, interpolation, hook/low quality standards, and visual plots.
</p>
<div class="programme-features">
<div class="features-title">Key Features:</div>
<div class="feature-item">Process direct from Luminex exports</div>
<div class="feature-item">Standard curve validation through 4PL curve, with sample interpolation</div>
<div class="feature-item">Hook effect and low quality standards</div>
<div class="feature-item">Efficiency calculations and interpolation</div>
</div>
<a href="https://asherichia.github.io/LuminexDataExtractor_HTML/LuminexExtractorAnalyser.html" target="_blank" class="launch-btn">
Launch Tool <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<!-- Luminex Data Extractor Programme -->
<div class="programme-card">
<div class="card-image-container">
<div class="status-badge beta">Beta</div>
<div class="card-title-overlay">
<div class="card-title">Hamilton Parser</div>
<div class="card-subtitle">Data parsing for Hamilton</div>
</div>
</div>
<div class="card-content">
<p class="card-description">
Standalone HTML application for merging Hamilton Decapper and Hamilton liquid handling export files.
</p>
<div class="programme-features">
<div class="features-title">Key Features:</div>
<div class="feature-item">Combines multiple Hamilton export files into one unified file</div>
</div>
<a href="https://asherichia.github.io/HamiltonParser/hamilton_parser.html" target="_blank" class="launch-btn">
Launch Tool <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<!-- Alanine Scanning Programme -->
<div class="programme-card">
<div class="card-image-container">
<div class="status-badge beta">Beta</div>
<div class="card-title-overlay">
<div class="card-title">Alanine Scanning</div>
<div class="card-subtitle">Protein FASTA sequence mutagenesis tool</div>
</div>
</div>
<div class="card-content">
<p class="card-description">
Python bioinformatics tool for systematic alanine scanning mutagenesis analysis along a FASTA sequence to generate comprehensive amino acid substitution and sequences. Useful for downstream synthesis/bioinformatics structure-function studies.
</p>
<div class="programme-features">
<div class="features-title">Key Features:</div>
<div class="feature-item">FASTA sequence input</div>
<div class="feature-item">Systematic amino acid replacement, single, double and triple mutants</div>
<div class="feature-item">Replaces naturally occurring Ala with Gly</div>
<div class="feature-item">Python</div>
</div>
<a href="https://github.com/asherichia/AlanineScanning" target="_blank" class="launch-btn">
Launch Tool <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<!-- Plate barcode scan parser -->
<div class="programme-card">
<div class="card-image-container">
<div class="status-badge beta">Beta</div>
<div class="card-title-overlay">
<div class="card-title">File parser for plates</div>
<div class="card-subtitle">Tool for assigning samples to 96/384 well plate layouts</div>
</div>
</div>
<div class="card-content">
<p class="card-description">
Allows the assigning of imported sample lists (TXT or CSV) to either 96 or 384 well plate layouts. Can be used with plain lists, partially completed well locations, or fully mapped lists to produce standardised output files.
</p>
<div class="programme-features">
<div class="features-title">Key Features:</div>
<div class="feature-item">96 or 384 well layouts</div>
<div class="feature-item">Automatic well detection/assignment</div>
<div class="feature-item">Plate visualisation once assigned</div>
<div class="feature-item">HTML in browser use</div>
</div>
<a href="https://asherichia.github.io/PlateFileParser/PlateParser.html" target="_blank" class="launch-btn">
Launch Tool <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<!-- CAULDRON Programme -->
<div class="programme-card">
<div class="card-image-container">
<div class="status-badge beta">Beta</div>
<div class="card-title-overlay">
<div class="card-title">CAULDRON</div>
<div class="card-subtitle">Curve Analysis Using Luminex Data for IC50 and neutRalisatiON</div>
</div>
</div>
<div class="card-content">
<p class="card-description">
A web-based tool for analyzing neutralization assays using Luminex immunoassay data. Process dilution series to calculate IC50 values through 4-parameter logistic curve fitting.
</p>
<div class="programme-features">
<div class="features-title">Key Features:</div>
<div class="feature-item">Upload data → Configure dilutions → Run analysis → Get IC50 results</div>
<div class="feature-item">4-parameter logistic curve fitting for dose-response analysis</div>
<div class="feature-item">Neutralization assay processing with dilution series support</div>
<div class="feature-item">Streamlined workflow for IC50 calculation</div>
</div>
<a href="https://asherichia.github.io/Cauldron-Tool/LuminexInhibitionAnalyzer.html" target="_blank" class="launch-btn">
Launch Tool <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<!-- IQC Monitor Programme -->
<div class="programme-card">
<div class="card-image-container">
<div class="status-badge beta">Beta</div>
<div class="card-title-overlay">
<div class="card-title">IQC HTML tracker</div>
<div class="card-subtitle">Quality Control Dashboard</div>
</div>
</div>
<div class="card-content">
<p class="card-description">
React.js quality control monitoring dashboard for laboratory processes.
Features Levy-Jennings plots, statistical process control charts,
and real-time data visualization with TailwindCSS styling.
</p>
<div class="programme-features">
<div class="features-title">Key Features:</div>
<div class="feature-item">Real-time data monitoring</div>
<div class="feature-item">Levy-Jennings plotting</div>
<div class="feature-item">CSV data import with PapaParse</div>
<div class="feature-item">Interactive Recharts visualization</div>
</div>
<a href="iqc-monitor.html" target="_blank" class="launch-btn">
Launch Tool <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="modern-footer">
<div class="footer-social-container">
<a href="https://twitter.com/asherichia" target="_blank" class="footer-icon" aria-label="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://bsky.app/profile/asherichia.bsky.social" target="_blank" class="footer-icon" aria-label="Bluesky">
<i class="fas fa-cloud"></i>
</a>
<a href="https://www.linkedin.com/in/ashley-otter" target="_blank" class="footer-icon" aria-label="LinkedIn">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://scholar.google.co.uk/citations?hl=en&user=-ckBV9wAAAAJ" target="_blank" class="footer-icon" aria-label="Google Scholar">
<i class="fas fa-graduation-cap"></i>
</a>
<a href="https://github.com/asherichia" target="_blank" class="footer-icon" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="mailto:ashley.otter@ukhsa.gov.uk" class="footer-icon" aria-label="Email">
<i class="fas fa-envelope"></i>
</a>
</div>
</footer>
</div>
<!-- Easter Egg: Hidden Eyes -->
<div class="easter-egg-hover-area"></div>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank" class="easter-egg">
<div class="eye"></div>
<div class="eye"></div>
</a>
</body>
</html>