-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cm-DRA_R.html
2073 lines (1992 loc) · 99 KB
/
Cm-DRA_R.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
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
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cm-DRA_R - Optic Lobe Connectome</title>
<link rel="stylesheet" href="styles/chota.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Center the main content and add maximum width */
body > .container {
max-width: 1400px; /* or any other max-width you prefer */
margin-left: auto;
margin-right: auto;
padding-left: 1rem; /* This adds some padding within the container */
padding-right: 1rem; /* This adds some padding within the container */
}
body {
font-family: Arial, sans-serif;
}
.gallery_video, .threeD_view {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
overflow: hidden; /* Add this line to prevent iframe overflow issues */
}
.gallery_video iframe, .threeD_view iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.counter{
font-size:80%;
}
col.is-center .header_1 {
margin-bottom: 0px !important;
}
.main-group-nt-pred{
font-weight: 500;
font-size: 1.2em;
padding: 0;
margin-top: 0;
margin-bottom: 10px;
}
.pad-left{
padding-left: 20px;
}
/* Apply a border under the entire header row */
.row thead tr {
border-bottom: 2px solid #000; /* Adjust color as needed */
}
/* Ensure no border under td elements and the first th in the body rows */
.row tbody th, .row tbody td {
border-bottom: none;
}
/* Apply increased padding to header cells in the <thead> */
.layer-stats-table thead th {
padding: 10px; /* More padding for the header cells */
}
/* Apply standard padding to all cells and row headers in the <tbody> */
.layer-stats-table tbody th,
.layer-stats-table tbody td {
padding: 3px; /* Less padding for body cells and row headers */
}
.card p {
margin-bottom: 5px;
}
.ame-stats tbody th, .cb-stats tbody th, .me-stats tbody th {
color: transparent;
}
.text-center td, .text-center thead th{
text-align:center;
}
.text-left td, .text-left thead th{
text-align:left;
}
.connectivity-table tbody tr th, .connectivity-table thead th.blank.level0{
display: none;
}
.connectivity-table {
padding-left: 10px;
text-align:left;
}
.connectivity-table tr th, .connectivity-table td {
padding-left: 0px; /* Adjust the left padding to create space on the left side of each cell */
padding-right: 20px; /* Adjust the right padding to create space on the right side of each cell */
}
/* Remove or reduce padding for the first th and td of each row */
.connectivity-table tr th:first-child, .connectivity-table td:first-child {
padding-left: 0px; /* Less padding on the left side for the first column */
padding-right: 10px; /* You can also adjust this if needed */
}
.nav-right a:link {
color: #007bff; /* Blue color for links */
text-decoration: none; /* Optional: removes underline from links */
}
.nav-right a:visited {
color: #0056b3; /* Darker blue color for visited links */
}
.nav-right a:hover {
color: #0056b3; /* Darker blue color on hover */
text-decoration: underline; /* Optional: adds underline on hover */
}
.nav-right a:active {
color: #004299; /* Even darker blue color when the link is clicked */
}
.connectivity-link:hover {
color: green; /* Lighter or different color on hover */
text-decoration: underline; /* Optional: adds underline on hover */
}
.non-functional-link {
color: grey; /* Non-functional link color */
cursor: default;
text-decoration: none;
}
@media (max-width: 1400px) {
.connectivity-table {
font-size: 90%; /* Slightly smaller font size */
width: 100%;
}
/* Reduce padding for cells to save space */
.connectivity-table td, .connectivity-table th {
padding: 4px;
}
}
@media (max-width: 1200px) {
.connectivity-table {
font-size: 70%; /* Slightly smaller font size */
width: 100%;
}
/* Reduce padding for cells to save space */
.connectivity-table td, .connectivity-table th {
padding: 3px;
}
}
@media (max-width: 1000px) {
.connectivity-table {
font-size: 50%; /* Slightly smaller font size */
width: 100%;
}
/* Reduce padding for cells to save space */
.connectivity-table td, .connectivity-table th {
padding: 2px;
}
}
@media (max-width: 800px) {
.connectivity-table {
font-size: 20%; /* Slightly smaller font size */
width: 100%;
}
/* Reduce padding for cells to save space */
.connectivity-table td, .connectivity-table th {
padding: 1px;
}
}
@media (max-width: 700px) {
.connectivity-table {
font-size: 10%; /* Even smaller font size */
width: 100%;
}
/* Further reduce padding */
.connectivity-table td, .connectivity-table th {
padding: 0px;
}
.row > [class^="col-"] {
width: 100%;
display: block;
}
}
@media (max-width: 600px) {
.connectivity-table {
font-size: 50%; /* Just one table on top of each other */
width: 100%;
}
/* Minimal padding */
.connectivity-table td, .connectivity-table th {
padding: 1px;
}
/* Adjust or hide more columns as needed */
.connectivity-table .more-columns {
display: none;
}
}
a.txt_OL_intrinsic, span.txt_OL_intrinsic{color:#029e73}
a.txt_OL_connecting, span.txt_OL_connecting{color:#D55E00}
a.txt_VPN, span.txt_VPN{color:#0173b2}
a.txt_VCN, span.txt_VCN{color:#de8f05}
a.txt_other, span.txt_other{color:#cc78bc}
.txt_hemisphere{color:#888; font-size:80%}
.connectivity-table table td{padding-top:.3rem; padding-bottom:.1rem;}
.connectivity-table table th{vertical-align:bottom;}
.connectivity-table table tr:nth-child(2n) td {
background-color: #f8f8f8;
}
.connectivity-table .col2, .connectivity-table .col3, .connectivity-table .col4, .connectivity-table .col5{text-align:right;}
.hover_group:hover {
opacity: 1;
}
</style>
</head>
<body>
<div class="container">
<nav class="nav">
<div class="nav-right">
<a href="index.html">Home</a>
<a href="cell_types.html">Cell Types</a>
<a href="webpages_glossary.html">Glossary</a>
<a href="https://www.youtube.com/@ReiserLab">YouTube</a>
<a href="https://neuprint.janelia.org/?dataset=optic-lobe:v1.0">neuPrint</a>
</div>
</nav>
<header class="row">
<div class="col is-center">
<h1> <a href="https://neuprint.janelia.org/results?dataset=optic-lobe:v1.0&qt=findneurons&qr[0][code]=fn&qr[0][ds]=optic-lobe:v1.0&qr[0][pm][dataset]=optic-lobe:v1.0&qr[0][pm][all_segments]=false&qr[0][pm][enable_contains]=true&qr[0][visProps][rowsPerPage]=50&tab=0&qr[0][pm][neuron_name]=Cm-DRA" class="txt_OL_intrinsic">Cm-DRA <span class="txt_hemisphere" title="Cell body in right hemisphere">(R)</span></a>, <span class="counter">n=3 cell(s)</span></h1>
</div>
</header>
<div class="row">
<div class="col is-center">
<div class="main-group-nt-pred">
Main group: <span class="txt_OL_intrinsic">Optic Lobe Intrinsic Neurons</span>;
Neurotransmitter consensus prediction: ACh
</div>
</div>
</div>
<div class="row">
<div class="col">
<h2 class="pad-left">Mean synapse counts per layer</h2>
</div>
</div>
<div class="row">
<div class="col-2 text-center pad-left layer-stats-table"><style type="text/css">
#T_534a3 th {
text-align: center;
background-color: rgba(142, 189, 120, 0.3);
}
#T_534a3 td {
text-align: center;
background-color: rgba(142, 189, 120, 0.3);
}
</style>
<table id="T_534a3">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_534a3_level0_col0" class="col_heading level0 col0" >LA</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_534a3_level0_row0" class="row_heading level0 row0" >Post</th>
<td id="T_534a3_row0_col0" class="data row0 col0" >-</td>
</tr>
<tr>
<th id="T_534a3_level0_row1" class="row_heading level0 row1" >Pre</th>
<td id="T_534a3_row1_col0" class="data row1 col0" >-</td>
</tr>
</tbody>
</table>
</div>
<div class="col-8 me-stats text-center layer-stats-table"><style type="text/css">
#T_d6d83 th {
text-align: center;
background-color: rgba(94, 24, 77, 0.3);
}
#T_d6d83 td {
text-align: center;
background-color: rgba(94, 24, 77, 0.3);
}
</style>
<table id="T_d6d83">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_d6d83_level0_col0" class="col_heading level0 col0" >M1</th>
<th id="T_d6d83_level0_col1" class="col_heading level0 col1" >M2</th>
<th id="T_d6d83_level0_col2" class="col_heading level0 col2" >M3</th>
<th id="T_d6d83_level0_col3" class="col_heading level0 col3" >M4</th>
<th id="T_d6d83_level0_col4" class="col_heading level0 col4" >M5</th>
<th id="T_d6d83_level0_col5" class="col_heading level0 col5" >M6</th>
<th id="T_d6d83_level0_col6" class="col_heading level0 col6" >M7</th>
<th id="T_d6d83_level0_col7" class="col_heading level0 col7" >M8</th>
<th id="T_d6d83_level0_col8" class="col_heading level0 col8" >M9</th>
<th id="T_d6d83_level0_col9" class="col_heading level0 col9" >M10</th>
<th id="T_d6d83_level0_col10" class="col_heading level0 col10" >Total</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_d6d83_level0_row0" class="row_heading level0 row0" >0</th>
<td id="T_d6d83_row0_col0" class="data row0 col0" >-</td>
<td id="T_d6d83_row0_col1" class="data row0 col1" >-</td>
<td id="T_d6d83_row0_col2" class="data row0 col2" >-</td>
<td id="T_d6d83_row0_col3" class="data row0 col3" >-</td>
<td id="T_d6d83_row0_col4" class="data row0 col4" >6.0</td>
<td id="T_d6d83_row0_col5" class="data row0 col5" >628.0</td>
<td id="T_d6d83_row0_col6" class="data row0 col6" >275.0</td>
<td id="T_d6d83_row0_col7" class="data row0 col7" >1.0</td>
<td id="T_d6d83_row0_col8" class="data row0 col8" >-</td>
<td id="T_d6d83_row0_col9" class="data row0 col9" >-</td>
<td id="T_d6d83_row0_col10" class="data row0 col10" >910.0</td>
</tr>
<tr>
<th id="T_d6d83_level0_row1" class="row_heading level0 row1" >1</th>
<td id="T_d6d83_row1_col0" class="data row1 col0" >-</td>
<td id="T_d6d83_row1_col1" class="data row1 col1" >-</td>
<td id="T_d6d83_row1_col2" class="data row1 col2" >-</td>
<td id="T_d6d83_row1_col3" class="data row1 col3" >-</td>
<td id="T_d6d83_row1_col4" class="data row1 col4" >6.0</td>
<td id="T_d6d83_row1_col5" class="data row1 col5" >222.3</td>
<td id="T_d6d83_row1_col6" class="data row1 col6" >79.3</td>
<td id="T_d6d83_row1_col7" class="data row1 col7" >-</td>
<td id="T_d6d83_row1_col8" class="data row1 col8" >-</td>
<td id="T_d6d83_row1_col9" class="data row1 col9" >-</td>
<td id="T_d6d83_row1_col10" class="data row1 col10" >307.7</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-8 text-center pad-left layer-stats-table"><style type="text/css">
#T_dc565 th {
text-align: center;
background-color: rgba(187, 74, 95, 0.3);
}
#T_dc565 td {
text-align: center;
background-color: rgba(187, 74, 95, 0.3);
}
</style>
<table id="T_dc565">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_dc565_level0_col0" class="col_heading level0 col0" >LO1</th>
<th id="T_dc565_level0_col1" class="col_heading level0 col1" >LO2</th>
<th id="T_dc565_level0_col2" class="col_heading level0 col2" >LO3</th>
<th id="T_dc565_level0_col3" class="col_heading level0 col3" >LO4</th>
<th id="T_dc565_level0_col4" class="col_heading level0 col4" >LO5a</th>
<th id="T_dc565_level0_col5" class="col_heading level0 col5" >LO5b</th>
<th id="T_dc565_level0_col6" class="col_heading level0 col6" >LO6</th>
<th id="T_dc565_level0_col7" class="col_heading level0 col7" >Total</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_dc565_level0_row0" class="row_heading level0 row0" >Post</th>
<td id="T_dc565_row0_col0" class="data row0 col0" >-</td>
<td id="T_dc565_row0_col1" class="data row0 col1" >-</td>
<td id="T_dc565_row0_col2" class="data row0 col2" >-</td>
<td id="T_dc565_row0_col3" class="data row0 col3" >-</td>
<td id="T_dc565_row0_col4" class="data row0 col4" >-</td>
<td id="T_dc565_row0_col5" class="data row0 col5" >-</td>
<td id="T_dc565_row0_col6" class="data row0 col6" >-</td>
<td id="T_dc565_row0_col7" class="data row0 col7" >-</td>
</tr>
<tr>
<th id="T_dc565_level0_row1" class="row_heading level0 row1" >Pre</th>
<td id="T_dc565_row1_col0" class="data row1 col0" >-</td>
<td id="T_dc565_row1_col1" class="data row1 col1" >-</td>
<td id="T_dc565_row1_col2" class="data row1 col2" >-</td>
<td id="T_dc565_row1_col3" class="data row1 col3" >-</td>
<td id="T_dc565_row1_col4" class="data row1 col4" >-</td>
<td id="T_dc565_row1_col5" class="data row1 col5" >-</td>
<td id="T_dc565_row1_col6" class="data row1 col6" >-</td>
<td id="T_dc565_row1_col7" class="data row1 col7" >-</td>
</tr>
</tbody>
</table>
</div>
<div class="ame-stats col-2 text-center layer-stats-table"><style type="text/css">
#T_10be6 th {
text-align: center;
background-color: rgba(89, 143, 207, 0.3);
}
#T_10be6 td {
text-align: center;
background-color: rgba(89, 143, 207, 0.3);
}
</style>
<table id="T_10be6">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_10be6_level0_col0" class="col_heading level0 col0" >AME</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_10be6_level0_row0" class="row_heading level0 row0" >0</th>
<td id="T_10be6_row0_col0" class="data row0 col0" >-</td>
</tr>
<tr>
<th id="T_10be6_level0_row1" class="row_heading level0 row1" >1</th>
<td id="T_10be6_row1_col0" class="data row1 col0" >0.3</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-8 text-center pad-left layer-stats-table"><style type="text/css">
#T_fbba2 th {
text-align: center;
background-color: rgba(241, 110, 101, 0.3);
}
#T_fbba2 td {
text-align: center;
background-color: rgba(241, 110, 101, 0.3);
}
</style>
<table id="T_fbba2">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_fbba2_level0_col0" class="col_heading level0 col0" >LOP1</th>
<th id="T_fbba2_level0_col1" class="col_heading level0 col1" >LOP2</th>
<th id="T_fbba2_level0_col2" class="col_heading level0 col2" >LOP3</th>
<th id="T_fbba2_level0_col3" class="col_heading level0 col3" >LOP4</th>
<th id="T_fbba2_level0_col4" class="col_heading level0 col4" >Total</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_fbba2_level0_row0" class="row_heading level0 row0" >Post</th>
<td id="T_fbba2_row0_col0" class="data row0 col0" >-</td>
<td id="T_fbba2_row0_col1" class="data row0 col1" >-</td>
<td id="T_fbba2_row0_col2" class="data row0 col2" >-</td>
<td id="T_fbba2_row0_col3" class="data row0 col3" >-</td>
<td id="T_fbba2_row0_col4" class="data row0 col4" >-</td>
</tr>
<tr>
<th id="T_fbba2_level0_row1" class="row_heading level0 row1" >Pre</th>
<td id="T_fbba2_row1_col0" class="data row1 col0" >-</td>
<td id="T_fbba2_row1_col1" class="data row1 col1" >-</td>
<td id="T_fbba2_row1_col2" class="data row1 col2" >-</td>
<td id="T_fbba2_row1_col3" class="data row1 col3" >-</td>
<td id="T_fbba2_row1_col4" class="data row1 col4" >-</td>
</tr>
</tbody>
</table>
</div>
<div class="cb-stats col-2 text-center layer-stats-table"><style type="text/css">
#T_3547f th {
text-align: center;
background-color: rgba(0, 0, 0, 0.3);
}
#T_3547f td {
text-align: center;
background-color: rgba(0, 0, 0, 0.3);
}
</style>
<table id="T_3547f">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_3547f_level0_col0" class="col_heading level0 col0" >central brain</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_3547f_level0_row0" class="row_heading level0 row0" >0</th>
<td id="T_3547f_row0_col0" class="data row0 col0" >-</td>
</tr>
<tr>
<th id="T_3547f_level0_row1" class="row_heading level0 row1" >1</th>
<td id="T_3547f_row1_col0" class="data row1 col0" >-</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col">
<h2 class="pad-left">Neuron visualizations</h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="threeD_view">
<iframe scrolling="no" frameborder="0" src="img/dynamic/Cm-DRA_R.html"></iframe>
</div>
</div>
<div class="col">
<div class="gallery_video">
<iframe frameborder="0" style="margin-left:0px; padding:0px;border:0px solid white;" allowfullscreen src="https://www.youtube.com/embed/Lhi_Z6oZlh4?autoplay=1&rel=0&color=white"></iframe>
</div>
</div>
</div>
<div class="row">
<div class="col">
<h2 id="CoverageHeader">Population spatial coverage</h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="card">
<header><h4 style="color: #5E184D;"><a href="scatterplots/scatterplots-ME.html">Medulla</a></h4></header>
<p>Number of post synapses: 2730</p>
<p>Number of pre synapses: 923</p>
<p>Number of output connections: 3788</p>
<p>Coverage factor: 2.0</p>
<p>Columnar completeness: 0.32</p>
<p>Area completeness: 0.33</p>
<p>Cell size (columns): 189</p>
</div>
</div>
<div class="col">
<div class="card">
<header><h4 style="color: #BB4A5F;"><a href="scatterplots/scatterplots-LO.html">Lobula</a></h4></header>
<p>Number of post synapses: 0</p>
<p>Number of pre synapses: 0</p>
<p>Number of output connections: 0</p>
<p>Coverage factor: 0</p>
<p>Columnar completeness: 0</p>
<p>Area completeness: 0</p>
<p>Cell size (columns): 0</p>
</div>
</div>
<div class="col">
<div class="card">
<header><h4 style="color: #F16E65;"><a href="scatterplots/scatterplots-LOP.html">Lobula Plate</a></h4></header>
<p>Number of post synapses: 0</p>
<p>Number of pre synapses: 0</p>
<p>Number of output connections: 0</p>
<p>Coverage factor: 0</p>
<p>Columnar completeness: 0</p>
<p>Area completeness: 0</p>
<p>Cell size (columns): 0</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<figure>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2934 793" preserveAspectRatio="xMinYMin meet">
<image width="2834" height="793" xlink:href="img/Cm-DRA_R_syn.png" />
<g class="hover_group" opacity="0.0">
<a xlink:href="scatterplots/scatterplots-LOP.html">
<circle opacity="0.2" style="fill:#ffffff" cx="2225" cy="395" r="375" />
</a>
</g>
<g class="hover_group" opacity="0.0">
<a xlink:href="scatterplots/scatterplots-LO.html">
<circle opacity="0.2" style="fill:#ffffff" cx="1325" cy="395" r="375" />
</a>
</g>
<g class="hover_group" opacity="0.0">
<a xlink:href="scatterplots/scatterplots-ME.html">
<circle opacity="0.2" style="fill:#ffffff" cx="395" cy="395" r="375" />
</a>
</g>
</svg>
</figure>
</div>
</div>
<div class="row">
<div class="col">
<figure>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 2934 793" preserveAspectRatio="xMinYMin meet">
<image width="2834" height="793" xlink:href="img/Cm-DRA_R_cell.png" />
<g class="hover_group" opacity="0">
<a xlink:href="scatterplots/scatterplots-LOP.html">
<circle opacity="0.2" style="fill:#ffffff" cx="2225" cy="395" r="375" />
</a>
</g>
<g class="hover_group" opacity="0">
<a xlink:href="scatterplots/scatterplots-LO.html">
<circle opacity="0.2" style="fill:#ffffff" cx="1325" cy="395" r="375" />
</a>
</g>
<g class="hover_group" opacity="0">
<a xlink:href="scatterplots/scatterplots-ME.html">
<circle opacity="0.2" style="fill:#ffffff" cx="395" cy="395" r="375" />
</a>
</g>
</figure>
</div>
</div>
<div class="row">
<div class="col">
<h2 id="OL-Connectivity-Header">Optic Lobe Connectivity</h2>
<div class="row">
<div class="col-5 connectivity-table">
<h3>Inputs</h4>
<style type="text/css">
#T_3f09e td.col-1 {
font-weight: bold;
}
#T_3f09e td.col-1 {
font-weight: bold;
}
#T_3f09e_row0_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 33.7%, transparent 33.7%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row0_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 34.3%, transparent 34.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row1_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 14.4%, transparent 14.4%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row1_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 49.1%, transparent 49.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row2_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 12.3%, transparent 12.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row2_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 61.6%, transparent 61.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row3_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 5.2%, transparent 5.2%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row3_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 66.8%, transparent 66.8%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row4_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 4.2%, transparent 4.2%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row4_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 71.1%, transparent 71.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row5_col4, #T_3f09e_row6_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 3.9%, transparent 3.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row5_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 75.1%, transparent 75.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row6_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 79.1%, transparent 79.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row7_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 3.1%, transparent 3.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row7_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 82.3%, transparent 82.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row8_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 2.9%, transparent 2.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row8_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 85.3%, transparent 85.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row9_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 2.3%, transparent 2.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row9_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 87.6%, transparent 87.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row10_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 1.9%, transparent 1.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row10_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 89.6%, transparent 89.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row11_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 1.3%, transparent 1.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row11_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 90.9%, transparent 90.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row12_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 1.1%, transparent 1.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row12_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 92.0%, transparent 92.0%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row13_col4, #T_3f09e_row14_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 0.8%, transparent 0.8%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row13_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 92.8%, transparent 92.8%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row14_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 93.6%, transparent 93.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row15_col4, #T_3f09e_row16_col4, #T_3f09e_row17_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 0.5%, transparent 0.5%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row15_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 94.1%, transparent 94.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row16_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 94.6%, transparent 94.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row17_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 95.1%, transparent 95.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row18_col4, #T_3f09e_row19_col4, #T_3f09e_row20_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 0.4%, transparent 0.4%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row18_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 95.6%, transparent 95.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row19_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 96.0%, transparent 96.0%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row20_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 96.4%, transparent 96.4%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row21_col4, #T_3f09e_row22_col4, #T_3f09e_row23_col4, #T_3f09e_row24_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 0.3%, transparent 0.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row21_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 96.7%, transparent 96.7%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row22_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 97.0%, transparent 97.0%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row23_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 97.2%, transparent 97.2%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row24_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 97.5%, transparent 97.5%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row25_col4, #T_3f09e_row26_col4, #T_3f09e_row27_col4, #T_3f09e_row28_col4, #T_3f09e_row29_col4, #T_3f09e_row30_col4, #T_3f09e_row31_col4, #T_3f09e_row32_col4, #T_3f09e_row33_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 0.2%, transparent 0.2%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row25_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 97.7%, transparent 97.7%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row26_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 97.9%, transparent 97.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row27_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 98.1%, transparent 98.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row28_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 98.3%, transparent 98.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row29_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 98.5%, transparent 98.5%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row30_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 98.6%, transparent 98.6%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row31_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 98.8%, transparent 98.8%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row32_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 98.9%, transparent 98.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row33_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.1%, transparent 99.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row34_col4, #T_3f09e_row35_col4, #T_3f09e_row36_col4, #T_3f09e_row37_col4, #T_3f09e_row38_col4, #T_3f09e_row39_col4, #T_3f09e_row40_col4, #T_3f09e_row41_col4 {
width: 10em;
background: linear-gradient(90deg, #fee395 0.1%, transparent 0.1%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row34_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.2%, transparent 99.2%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row35_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.3%, transparent 99.3%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row36_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.4%, transparent 99.4%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row37_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.5%, transparent 99.5%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row38_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.7%, transparent 99.7%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row39_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.8%, transparent 99.8%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row40_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 99.9%, transparent 99.9%) no-repeat center;
background-size: 100% 95.0%;
}
#T_3f09e_row41_col5 {
width: 10em;
background: linear-gradient(90deg, #fed76a 100.0%, transparent 100.0%) no-repeat center;
background-size: 100% 95.0%;
}
</style>
<table id="T_3f09e">
<thead>
<tr>
<th class="blank level0" > </th>
<th id="T_3f09e_level0_col0" class="col_heading level0 col0" >instance</th>
<th id="T_3f09e_level0_col1" class="col_heading level0 col1" >NT</th>
<th id="T_3f09e_level0_col2" class="col_heading level0 col2" >total connections</th>
<th id="T_3f09e_level0_col3" class="col_heading level0 col3" >connections /#Cm-DRA <span class="txt_hemisphere" title="Cell body in right hemisphere">(R)</span></th>
<th id="T_3f09e_level0_col4" class="col_heading level0 col4" >%</th>
<th id="T_3f09e_level0_col5" class="col_heading level0 col5" >% cumu.</th>
</tr>
</thead>
<tbody>
<tr>
<th id="T_3f09e_level0_row0" class="row_heading level0 row0" >0</th>
<td id="T_3f09e_row0_col0" class="data row0 col0" ><a href="Dm-DRA1_R.html" class="connectivity-link txt_OL_intrinsic">Dm-DRA1 <span class="txt_hemisphere" title="Cell body in right hemisphere">(R)</span></a></td>
<td id="T_3f09e_row0_col1" class="data row0 col1" >Glu</td>
<td id="T_3f09e_row0_col2" class="data row0 col2" >890</td>
<td id="T_3f09e_row0_col3" class="data row0 col3" >296.7</td>
<td id="T_3f09e_row0_col4" class="data row0 col4" >33.7%</td>
<td id="T_3f09e_row0_col5" class="data row0 col5" >33.7%</td>
</tr>
<tr>
<th id="T_3f09e_level0_row1" class="row_heading level0 row1" >1</th>
<td id="T_3f09e_row1_col0" class="data row1 col0" ><a href="MeTu2a_R.html" class="connectivity-link txt_VPN">MeTu2a <span class="txt_hemisphere" title="Cell body in right hemisphere">(R)</span></a></td>
<td id="T_3f09e_row1_col1" class="data row1 col1" >ACh</td>
<td id="T_3f09e_row1_col2" class="data row1 col2" >381</td>
<td id="T_3f09e_row1_col3" class="data row1 col3" >127.0</td>
<td id="T_3f09e_row1_col4" class="data row1 col4" >14.4%</td>
<td id="T_3f09e_row1_col5" class="data row1 col5" >48.2%</td>
</tr>
<tr>