forked from schustischuster/DevSeqPlant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethods.html
More file actions
560 lines (447 loc) · 27.5 KB
/
methods.html
File metadata and controls
560 lines (447 loc) · 27.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
<!-- **************************************************************************
DevSeqPlant methods.html by CS
Site aes based on index.php from 20231017
MySQL Database Version Used: 8.0.33
PHP Version Used: 8.2.8 Zend Engine v4.2.8
Python Version Used: Python 3.8.10
Apache Server Version Used: 2.4.41 (Ubuntu)
************************************************************************** -->
<!-- ***********************************************************************
Setting up HTML "Head/Style" options
Run javascript for controling radio button, checkbox, select & text fields
************************************************************************ -->
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html"; charset="utf-8"/>
<meta charset="utf-8">
<meta name="viewport" content="width=1024, user-scalable=yes">
<meta name="Description" content="DevSeq plant web application: Plant comparative transcriptomics, plant gene expression evolution, expression atlas, isoforms, lncRNAs and circRNAs">
<head>
<title>DevSeq | Methods</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="author" content="Christoph Schuster">
<!-- ***********************************************************************
Loading css style sheets
************************************************************************ -->
<!-- Link to DevSeq css stylesheet-->
<link href="https://www.devseqplant.org/css/devseq/devseq_latest_20_01.css" rel="stylesheet" />
<!-- Link to bootstrap bundle css stylesheet and grid css-->
<link href="https://www.devseqplant.org/css/bootstrap/bootstrap_bundle_latest_less_970px.min.css" rel="stylesheet" />
<link href="https://www.devseqplant.org/css/bootstrap/bootstrap-grid_cs.min.css" rel="stylesheet" />
<!-- Link to font awesome css stylesheet-->
<link href="https://www.devseqplant.org/css/fa/font-awesome_partial_bundle_cs.css" rel="stylesheet" />
<!-- ***********************************************************************
Loading javascript vizualisation libraries for generating plots
************************************************************************ -->
<!-- Load jQuery from google CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<!-- If CDN is down, load jQuery from local -->
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='https://www.devseqplant.org/js/jquery/jquery-3.3.1.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<!-- Load bootstrap, jQuery, FileSaver.js, Blob.js and css2pdf -->
<script src="https://www.devseqplant.org/js/bootstrap/bootstrap_bundle_latest.min.js" defer></script>
<script src="https://www.devseqplant.org/js/filesaver/FileSaver.js" defer></script>
<script src="https://www.devseqplant.org/js/blob/Blob.js" defer></script>
</head>
<!-- ******************************************************************* -->
<!-- ***********************************************************************
HTML Body starts: wrapper = 1st level div
************************************************************************ -->
<!-- ******************************************************************* -->
<body>
<!-- Wrap all page content here -->
<div id="wrap">
<!-- **************************************************************** -->
<!-- ********************************************************************
Navbar: 2nd level div
********************************************************************* -->
<!-- **************************************************************** -->
<nav class="navbar navbar-inverse" id="top-menu" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="index.php"><span>Dev<b>Seq</b></span></a>
</div>
<!-- End of Navbar Brand -->
<!-- Collapse navigation -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="nav navbar-nav centered-navbar">
<!-- Begin of Mega Menu -->
<li class="dropdown mega-dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Data Analysis <span class="caret"></span></a>
<div class="dropdown-menu mega-dropdown-menu">
<!-- Navbar Mega-Menu Content -->
<div class="Mega_menu_Content">
<!-- Navbar Mega-Menu Content -->
<div class = "row masterrow">
<!-- Begin Single Species Content -->
<div class = "col-xs-9">
<div class="Single_Species_Atlas">
<div class="SlSpExAt">
<div class="SlSpExAtFt">
Single Species Stranded Total RNA-Seq Expression Atlas
</div>
</div>
<div class="SlSpExAtCnt">
<div class = "row">
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Arabidopsis_thaliana" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Arabidopsis thaliana</i></span><br>
<span style="color:#7e8690">Col-0</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/ATH_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Arabidopsis_lyrata" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Arabidopsis lyrata</i></span><br>
<span style="color:#7e8690">MN47</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/AL_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Brachypodium_distachyon" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Brachypodium distachyon</i></span><br>
<span style="color:#7e8690">Bd21-3</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/BD_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Capsella_rubella" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Capsella rubella</i></span><br>
<span style="color:#7e8690">Mt.Gargano</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/CR_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Eutrema_salsugineum" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Eutrema salsugineum</i></span><br>
<span style="color:#7e8690">Shandong</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/ES_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Medicago_truncatula" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Medicago truncatula</i></span><br>
<span style="color:#7e8690">A17</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/MT_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col">
<div class="MMSwrap">
<a href="index.php" data-select="Tarenaya_hassleriana" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f"><i>Tarenaya hassleriana</i></span><br>
<span style="color:#7e8690">ES1100</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<img src="img/TH_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div><!-- End Single Species Content -->
<div class = "col-xs-3">
<div class="Integrative_Transcriptome_Analysis">
<div class="IntTransA">
<div class="SlSpExAtFt">
Integrative Transcriptome Analysis
</div>
</div>
<div class="SlSpExAtIc">
<div class = "row">
<div class="col-xs-4">
<div class="MMCwrap">
<a href="development.html" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f">1-1 ortholog expression</span><br>
<span style="color:white">Spacer</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<div class="MMinfoicn"><img src="img/icons8-info_fin2.svg" class="MMinfoiimg" title="1-1 ortholog expression | Orthology Inference: BLAST best reciprocal hit">
</div>
<img src="img/1-1_orthologs_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class = "col-xs-4">
<div class="MMCwrap">
<a href="development.html" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f">Coding sense/<br>cis‑NAT pairs</span><br>
<span style="color:white">Spacer</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<div class="MMinfoicn"><img src="img/icons8-info_fin2.svg" class="MMinfoiimg" title="Expression of protein-coding sense/natural antisense transcript (cis-NAT) pairs">
</div>
<img src="img/cis_NAT_pairs_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
<div class="col-xs-4">
<div class="MMCwrap">
<a href="development.html" class="menuspec" style="text-decoration: none">
<div class="UpperSpcClass">
<div class="SlSpExAtTxt">
<span style="color:#1b1d1f">DevSeq-At<br>GenExpress</span><br>
<span style="color:white">Spacer</span><br>
<span style="color:white">___________</span>
</div>
<div class="SlSpExAtImg">
<div class="MMinfoicn"><img src="img/icons8-info_fin2.svg" class="MMinfoiimg" title="Comparative analysis of DevSeq RNA-Seq and AtGenExpress genome array Arabidopsis thaliana gene expression data">
</div>
<img src="img/DevSeq_ATGE_tin.jpg" class="img-responsive" alt="" style="border-radius:7px">
</div>
</div>
</a>
</div>
</div>
</div>
<div class="col-xs-12">
<div class="MMwrap">
</div>
</div>
</div>
</div>
</div><!-- End Comparative Transcriptome Content -->
</div><!-- Close bootstrap "row" -->
<!-- footerinner -->
<div class = "Mega_Menu_Lowerspacer">
<!-- parent -->
<div class = "Mega_Menu_LowerspacerTxt">
<!-- child num1 -->
<div class="childmmf MMnum1"><a href="index.php" title="Go to Home" ><font color="#717577">DevSeq</font></a><font color="#717577"> /</font> Data Analysis
</div>
<!-- child num3 -->
<div class="childmmf MMnum2">
<div class = "MMchild2lnk">
<font color="#0d0e0f">More information on:   </font>
<div class='hreflinks15'><a class='hreflinks13'><span>
<a class='hreflinks13' href="methods.html" title="Go to Data Analysis Methods">Data Analysis Methods</a>
<svg class="fa_external_link" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z"/></svg>
</span></a></div>
   
<div class='hreflinks15'><a class='hreflinks13'><span>
<a class='hreflinks13' href="datasets.html" title="Go to Datasets">Datasets</a>
<svg class="fa_external_link" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z"/></svg>
</span></a></div>
</div>
</div>
</div><!-- Close "Mega_Menu_LowerspacerTxt" -->
</div><!-- Close "Mega_Menu_Lowerspacer" -->
</div><!-- Close "Mega_menu_Content" -->
<!-- footerborder -->
<div class = "Mega_Menu_Borderspacer">
</div>
</div><!-- End of "mega-dropdown-menu" -->
</li><!-- End of "mega-dropdown active" -->
<li><a href="datasets.html"><span>Datasets</span></a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<!-- Define right navbar links here -->
<li ><a href="https://github.com/schustischuster" target="_blank" rel="noopener" title="DevSeq on GitHub" class="fa_github_class"><span class = 'hreflinks6'><svg class="fa fa-github" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 496 512"><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg></span></a></li>
<li class="active"><a href="methods.html" title="Methods" class="fa_ellipsis_class"><span class = 'hreflinks6'><svg class="fa fa-pencil-square-o" xmlns="http://www.w3.org/2000/svg" height="0.95em" viewBox="0 0 512 512"><path d="M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z"/></svg></span></a>
</li>
<li ><a href="contact.html" title="Contact" class="fa_envelope_class"><span class = 'hreflinks6'><svg class="fa fa-envelope icon" xmlns="http://www.w3.org/2000/svg" height="1.1em" viewBox="4 -10 512 512"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg><svg class="fa fa-envelope-open icon" xmlns="http://www.w3.org/2000/svg" height="1.1em" viewBox="4 -10 512 512"><path d="M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5v13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1V200.5c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2V456c0 4.4-3.6 8-8 8H56c-4.4 0-8-3.6-8-8V276.2zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5V456c0 30.9 25.1 56 56 56H456c30.9 0 56-25.1 56-56V200.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z"/></svg><span></span></a></li>
<li ><a href="about.html"><div id="aboutaes"><span class = 'hreflinks9'>About</span></div></a></li>
</ul>
</div><!-- End of Collapse Navigation -->
</div>
</nav>
<!-- End of Navbar -->
<!-- JavaScipt for MegaMenü dropdown slide -->
<script type="text/javascript">
$(document).ready(function(){
$(".dropdown").click(
function() {
$('.dropdown-menu', this).not('.in .dropdown-menu').stop(true,true).slideToggle(200, "swing");
$(this).toggleClass('open');
}
);
});
</script>
<!-- JavaScipt for writing Mega Menu selected link data (species) to local storage -->
<script type="text/javascript">
$(document).ready(function(){
$('a[href="index.php"]').click(
function () {
var SpeciesToStore = $(this).data('select');
localStorage.setItem("storelinkInput", SpeciesToStore);
});
});
</script>
<!-- ***************************************************************** -->
<!-- *********************************************************************
Start controlplot container here: 2nd level div
********************************************************************** -->
<!-- ***************************************************************** -->
<div id="controlplot_container">
<div style = "margin:0 auto!important; padding-top: 100px; width: 50%;">
<p style = "font-size: 20px; text-align: center; margin-top: 0px!important;"> This page is under development. </p>
<p style = "text-align: center;"><a href="index.php" style = "font-size: 16px;" ><font color="#333399">Back to Home</font></a></p>
</div>
</div><!--/close controlplot_container-->
<!-- *************************************** -->
<!-- *******************************************
Closing wrap 1st level div and define footer
******************************************** -->
<!-- *************************************** -->
</div><!--/close wrap-->
</div><!--/closing div to make footer stay on bottom of page-->
<div class="footer">
<div class="footerinner">
<div class="parent">
<div class="child num1"><a href="index.php"><font color="#333399">Home</font></a>  ·  <a href="about.html"><font color="#333399">About DevSeq</font></a>  ·  <a href="contact.html"><font color="#333399">Contact</font></a>
</div>
<div class="child num3"><font color="#333399">v1 - June 2024</font>  ·  <a href="#"><font color="#333399">Back to top<span class="fa fa-chevron-up"><svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 512 512"><path d="M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z"/></svg></span></a>
</div>
</div>
</div>
</div>
<!-- ***********************************************************************
Loading custom JavaScript scripts
************************************************************************ -->
<!-- JSON to CSV Converter -->
<script type="text/javascript">
function ConvertToCSV(objArray) {
var array = typeof objArray != 'object' ? JSON.parse(objArray) : objArray;
var str = '';
for (var i = 0; i < array.length; i++) {
var line = '';
for (var index in array[i]) {
if (line != '') line += ','
line += array[i][index];
}
str += line + '\r\n';
}
return str;
}
function download_csv_function() {
// Read in JSON data and transform to CSV
$(document).ready(function () {
// Read in json data
var items = <?php
if ((($_POST['filter5'] == "0" || $_POST['filter5'] == "2") && $_POST['filter6'] != "1") || (($_POST['filter5'] == "0" || $_POST['filter5'] == "2") && $_POST['filter6'] == "1" && $count == 1)) {
echo $jsonoutcsv;
} else if (($_POST['filter5'] == "1" && $_POST['filter6'] != "1") || ($_POST['filter5'] == "1" && $_POST['filter6'] == "1" && $count == 1)) {
echo $jsonoutcsvlog;
} else if ($_POST['filter6'] == "1" && $count > 1) {
echo $jsonoutclustcsv;
}
?>;
// Convert JSON object into JSON string
var jsonObject = JSON.stringify(items);
// Convert JSON to CSV & Display CSV on screen
var csvstring = ConvertToCSV(jsonObject);
// FileSaver.js: open download dialog and save file as csv
saveTextAs(csvstring, "devseq_data.csv");
})
};
</script>
<!-- Keep navbar link marked after page loaded -->
<script type="text/javascript">
$(function(){
$('#navContainer a').click(function () {
$('#navContainer a').removeClass('active');
$(this).addClass('active');
});
});
</script>
<!-- Set font color for select box -->
<script type="text/javascript">
$(document).ready(function() {
$('select').change(function() {
$(this).blur();
})
})
</script>
<!-- Font awesome search icon submit function -->
<script type="text/javascript">
function SbnFunction() {
document.getElementById("devseqform").submit();
}
</script>
<!-- Bootstrap - rotate dropdown caret -->
<script type="text/javascript">
$(document).ready(function() {
$('.dropdown').on('hidden.bs.dropdown', function(e) {
$(this).find('.caret').toggleClass('rotate-180');
});
$('.dropdown').on('shown.bs.dropdown', function(e) {
$(this).find('.caret').toggleClass('rotate-180');
});
});
</script>
</body>
</html>