aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/files/elife_article.html
blob: 7aa13619dc5396c567e2fda6d9884610c3b849fa (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
<!doctype html>

<html lang="en" prefix="og: http://ogp.me/ns#">

<head>

    <meta charset="utf-8">

    <title>Parallel visual circuitry in a basal chordate | eLife</title>

    <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">

    <meta name="format-detection" content="telephone=no">

    
    <link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-touch-icon-57x57.4aeffd56.png">
    <link rel="apple-touch-icon" sizes="60x60" href="/assets/favicons/apple-touch-icon-60x60.91474092.png">
    <link rel="apple-touch-icon" sizes="72x72" href="/assets/favicons/apple-touch-icon-72x72.95fa9e7b.png">
    <link rel="apple-touch-icon" sizes="76x76" href="/assets/favicons/apple-touch-icon-76x76.a4c54393.png">
    <link rel="apple-touch-icon" sizes="114x114" href="/assets/favicons/apple-touch-icon-114x114.a8199d6e.png">
    <link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-touch-icon-120x120.efde6c5c.png">
    <link rel="apple-touch-icon" sizes="144x144" href="/assets/favicons/apple-touch-icon-144x144.457f5c5e.png">
    <link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-touch-icon-152x152.5aea1932.png">
    <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon-180x180.21337439.png">
    <link rel="icon" type="image/svg+xml" href="/assets/favicons/favicon.ee498e7d.svg">
    <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.825ee0ea.png">
    <link rel="icon" type="image/png" sizes="192x192" href="/assets/favicons/android-chrome-192x192.365fe68b.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.337f389b.png">
    <link rel="shortcut icon" href="/assets/favicons/favicon.a755add0.ico">
    <link rel="manifest" href="/assets/favicons/manifest.cff74b51.json">
    <meta name="theme-color" content="#ffffff">
    <meta name="application-name" content="eLife">

    
    
                            
        
            
                <meta name="dc.format" content="text/html">
                <meta name="dc.language" content="en">
                <meta name="dc.publisher" content="eLife Sciences Publications Limited">

                                    <meta name="dc.title" content="Parallel visual circuitry in a basal chordate">
                
                                    <meta name="dc.identifier" content="doi:10.7554/eLife.44753">
                
                                    <meta name="dc.date" content="2019-04-18">

                                            <meta name="dc.rights" content="© 2019 Kourakis et al.. This article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.">
                    
                
                
                                                                                        <meta name="dc.contributor" content="Matthew J Kourakis">
                                                                                                                            <meta name="dc.contributor" content="Cezar Borba">
                                                                                                                            <meta name="dc.contributor" content="Angela Zhang">
                                                                                                                            <meta name="dc.contributor" content="Erin Newman-Smith">
                                                                                                                            <meta name="dc.contributor" content="Priscilla Salas">
                                                                                                                            <meta name="dc.contributor" content="B Manjunath">
                                                                                                                            <meta name="dc.contributor" content="William C Smith">
                                                                                        
            
        
        <meta property="og:site_name" content="eLife">
        <meta property="og:url" content="https://elifesciences.org/articles/44753">
        <meta property="og:title" content="Parallel visual circuitry in a basal chordate">
        <meta name="twitter:site" content="@eLife">

                                                <meta property="og:description" content="The ascidian Ciona integrates visual information from two photoreceptor types through convergent excitatory and disinhibitory circuits, thereby evoking swim behaviors.">
            <meta name="description" content="The ascidian Ciona integrates visual information from two photoreceptor types through convergent excitatory and disinhibitory circuits, thereby evoking swim behaviors.">
        
                    <meta name="twitter:card" content="summary">
        
                    <meta property="og:type" content="article">
                    
        <link rel="canonical" href="/articles/44753">

        
            
            
        
    

    

    <!--[if lt IE 9]>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
    <![endif]-->

    <script>
                window.gtmDataLayer = window.gtmDataLayer || [];

                window.gtmDataLayer.push(
            {
                'articleSubjects': 'Neuroscience',
                'articleType': 'Research Article',
                'articlePublishDate': 'Apr 18, 2019'
            }
        );
        
        (function (w, d, s, l, i) {
            w[l] = w[l] || [];
            w[l].push({
                'gtm.start': new Date().getTime(), event: 'gtm.js'
            });
            var f = d.getElementsByTagName(s)[0],
                j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
            j.async = true;
            j.src =
                'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
            f.parentNode.insertBefore(j, f);
        })(window, document, 'script', 'gtmDataLayer', 'GTM-WVM8KG');
            </script>


</head>

<body>

            <noscript>
            <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WVM8KG" height="0" width="0"
                    style="display:none; visibility:hidden"></iframe>
        </noscript>
    
    <div class="global-wrapper" data-behaviour=" CookieOverlay FragmentHandler Math HypothesisLoader"
                    data-item-type="research-article"
            >

        <div class="global-inner">

                            <div class="wrapper wrapper--site-header">
                    <header class="site-header clearfix" data-behaviour="SiteHeader" id="siteHeader">
  <div class="site-header__title clearfix" role="banner">
    <div class="site-header__skip_to_content">
      <a href="#maincontent" class="site-header__skip_to_content__link button button--default">Skip to Content</a>
    </div>
    <a href="/" class="site-header__logo_link">
      <picture class="site-header__logo_link_image">
        <source srcset="/assets/patterns/img/patterns/organisms/elife-logo-full.b1283c9a.svg" type="image/svg+xml" media="(min-width: 45.625em)">
        <source srcset="/assets/patterns/img/patterns/organisms/elife-logo-symbol.6f18db13.svg" type="image/svg+xml">
        <img src="/assets/patterns/img/patterns/organisms/elife-logo-full-1x.ce3f6342.png" alt="eLife logo" class="site-header__logo_link"/>
      </picture>
      <span class="visuallyhidden" >eLife home page</span>
    </a>
  </div>
  <div class="site-header__navigation" role="navigation" aria-label="Main navigation">

      <nav class="nav-secondary">
        <ul class="nav-secondary__list clearfix">
            <li class="nav-secondary__item nav-secondary__item--first">
            
            
            
            
                  <a href="/about">
                  
                   About 
                  </a>
            
            
            </li>
            <li class="nav-secondary__item">
            
            
            
            
                  <a href="/community">
                  
                   Community 
                  </a>
            
            
            </li>
            <li class="nav-secondary__item nav-secondary__item--hide-narrow">
            
            
            
                      <a href="https://reviewer.elifesciences.org/login" class="button button--extra-small button--default"  id="submitResearchButton">Submit my research</a>
            
            
            
            </li>
            <li class="nav-secondary__item nav-secondary__item--last">
            
                
                <div class="login-control"
                
                
                     data-behaviour="LoginControl">
                
                
                        <a href="/log-in" class="button button--login" >Log in/Register<span class="visuallyhidden"> (via ORCID - An ORCID is a persistent digital identifier for researchers)</span></a>
                
                </div>
            
            
            </li>
        </ul>
      </nav>

      <nav class="nav-primary">
        <ul class="nav-primary__list clearfix">
            <li class="nav-primary__item nav-primary__item--first">
            
            
            
            
                  <a href="#mainMenu">
                      <picture class="nav-primary__menu_icon">
                    
                    
                    
                        <source srcset="/assets/patterns/img/patterns/molecules/nav-primary-menu-ic.ac4e582f.svg"
                                type="image/svg+xml" 
                                >
                    
                    
                    
                        <img srcset="/assets/patterns/img/patterns/molecules/nav-primary-menu-ic_2x.8722f6c7.png 2x, /assets/patterns/img/patterns/molecules/nav-primary-menu-ic_1x.8efd68cc.png 1x"
                           src="/assets/patterns/img/patterns/molecules/nav-primary-menu-ic_1x.8efd68cc.png"
                           
                           alt="" />
                    
                    
                      </picture>
                    
                    
                  <span class="visuallyhidden nav-primary__menu_text"> Menu </span>
                  
                  </a>
            
            
            </li>
            <li class="nav-primary__item">
            
            
            
            
                  <a href="/">
                  
                   Home 
                  </a>
            
            
            </li>
            <li class="nav-primary__item">
            
            
            
            
                  <a href="/magazine">
                  
                   Magazine 
                  </a>
            
            
            </li>
            <li class="nav-primary__item">
            
            
            
            
                  <a href="/labs">
                  
                   Innovation 
                  </a>
            
            
            </li>
            <li class="nav-primary__item nav-primary__item--last nav-primary__item--search">
            
            
            
            
                  <a href="/search" rel="search">
                      <picture class="nav-primary__search_icon">
                    
                    
                    
                        <source srcset="/assets/patterns/img/patterns/molecules/nav-primary-search-ic.350bcf38.svg"
                                type="image/svg+xml" 
                                >
                    
                    
                    
                        <img srcset="/assets/patterns/img/patterns/molecules/nav-primary-search-ic_2x.0635c16f.png 2x, /assets/patterns/img/patterns/molecules/nav-primary-search-ic_1x.8e357583.png 1x"
                           src="/assets/patterns/img/patterns/molecules/nav-primary-search-ic_1x.8e357583.png"
                           
                           alt="" />
                    
                    
                      </picture>
                    
                    
                  <span class="visuallyhidden nav-primary__menu_text"> Search the eLife site </span>
                  
                  </a>
            
            
            </li>
        </ul>
      </nav>

  </div>

    
    <div class="search-box" data-behaviour="SearchBox">
      <div class="search-box__inner">
          <form class="compact-form" id="search" action="/search" method="GET" novalidate>
            <fieldset class="compact-form__container">
              <label>
                <span class="visuallyhidden">Search by keyword or author</span>
                <input type="search" name="for" value="" placeholder="Search by keyword or author"
                  
                   class="compact-form__input"
                  
                >
              </label>
          
          
              <button type="reset" name="reset" class="compact-form__reset"><span class="visuallyhidden">Reset form</span></button>
              <button type="submit" class="compact-form__submit"><span class="visuallyhidden">Search</span></button>
            </fieldset>
          </form>
    
          <label class="search-box__search_option_label">
            <input type="checkbox" name="subjects[]" value="neuroscience" form="search">Limit my search to Neuroscience
          </label>
    
      </div>
    </div>

</header>

                </div>
            
            
            
            <main role="main" class="main" id="maincontent">

                
      <header
    class="content-header  wrapper content-header--header content-header--has-social-media-sharers  clearfix"
    data-behaviour="ContentHeader">



      <ol class="content-header__subject_list">
          <li class="content-header__subject_list_item">
            <a href="/subjects/neuroscience" class="content-header__subject_link">
              <span class="content-header__subject">Neuroscience</span>
            </a>
          </li>
      </ol>

      <ul class="content-header__icons">
        <li><a href="https://en.wikipedia.org/wiki/Open_access"
               class="content-header__icon content-header__icon--oa"><span
            class="visuallyhidden">Open access</span></a></li>
        <li><a href="https://creativecommons.org/licenses/by/4.0/"
               class="content-header__icon content-header__icon--cc"><span
            class="visuallyhidden">Copyright information</span></a></li>
      </ul>

    <a href="#downloads" class="content-header__download_link">
      <picture>
          <source srcset="/assets/patterns/img/icons/download-full.6691999e.svg" type="image/svg+xml" media="(min-width: 45.625em)">
          <source srcset="/assets/patterns/img/icons/download-full-2x.a54fbeb0.png" type="image/png" media="(min-width: 45.625em)">
          <source srcset="/assets/patterns/img/icons/download.ecfa2d98.svg" type="image/svg+xml">
          <img src="/assets/patterns/img/icons/download-full-1x.5485093b.png" class="content-header__download_icon" alt="Download icon">
      </picture>
    </a>

  <div class="content-header__body">
    <h1 class="content-header__title content-header__title--short">Parallel visual circuitry in a basal chordate</h1>


      <div class="social-media-sharers">
      
      
        <a class="social-media-sharer" href="https://facebook.com/sharer/sharer.php?u=https%3A%2F%2Fdoi.org%2F10.7554%2FeLife.44753" target="_blank" rel="noopener noreferrer" aria-label="Share on Facebook">
          <div class="social-media-sharer__icon_wrapper social-media-sharer__icon_wrapper--facebook social-media-sharer__icon_wrapper--small"><div aria-hidden="true" class="social-media-sharer__icon social-media-sharer__icon--solid">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.77 7.46H14.5v-1.9c0-.9.6-1.1 1-1.1h3V.5h-4.33C10.24.5 9.5 3.44 9.5 5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4z"/></svg>
          </div>
          </div>
        </a>
      
        <a class="social-media-sharer" href="https://twitter.com/intent/tweet/?text=Parallel%20visual%20circuitry%20in%20a%20basal%20chordate&amp;url=https%3A%2F%2Fdoi.org%2F10.7554%2FeLife.44753" target="_blank" rel="noopener noreferrer" aria-label="Tweet a link to this page">
          <div class="social-media-sharer__icon_wrapper social-media-sharer__icon_wrapper--twitter social-media-sharer__icon_wrapper--small"><div aria-hidden="true" class="social-media-sharer__icon social-media-sharer__icon--solid">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.44 4.83c-.8.37-1.5.38-2.22.02.93-.56.98-.96 1.32-2.02-.88.52-1.86.9-2.9 1.1-.82-.88-2-1.43-3.3-1.43-2.5 0-4.55 2.04-4.55 4.54 0 .36.03.7.1 1.04-3.77-.2-7.12-2-9.36-4.75-.4.67-.6 1.45-.6 2.3 0 1.56.8 2.95 2 3.77-.74-.03-1.44-.23-2.05-.57v.06c0 2.2 1.56 4.03 3.64 4.44-.67.2-1.37.2-2.06.08.58 1.8 2.26 3.12 4.25 3.16C5.78 18.1 3.37 18.74 1 18.46c2 1.3 4.4 2.04 6.97 2.04 8.35 0 12.92-6.92 12.92-12.93 0-.2 0-.4-.02-.6.9-.63 1.96-1.22 2.56-2.14z"/></svg>
          </div>
          </div>
        </a>
      
        <a class="social-media-sharer" href="mailto:?subject=Parallel%20visual%20circuitry%20in%20a%20basal%20chordate&amp;body=https%3A%2F%2Fdoi.org%2F10.7554%2FeLife.44753" target="_self" aria-label="Email a link to this page (opens up email program, if configured on this system)">
          <div class="social-media-sharer__icon_wrapper social-media-sharer__icon_wrapper--email social-media-sharer__icon_wrapper--small"><div aria-hidden="true" class="social-media-sharer__icon social-media-sharer__icon--solid">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22 4H2C.9 4 0 4.9 0 6v12c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM7.25 14.43l-3.5 2c-.08.05-.17.07-.25.07-.17 0-.34-.1-.43-.25-.14-.24-.06-.55.18-.68l3.5-2c.24-.14.55-.06.68.18.14.24.06.55-.18.68zm4.75.07c-.1 0-.2-.03-.27-.08l-8.5-5.5c-.23-.15-.3-.46-.15-.7.15-.22.46-.3.7-.14L12 13.4l8.23-5.32c.23-.15.54-.08.7.15.14.23.07.54-.16.7l-8.5 5.5c-.08.04-.17.07-.27.07zm8.93 1.75c-.1.16-.26.25-.43.25-.08 0-.17-.02-.25-.07l-3.5-2c-.24-.13-.32-.44-.18-.68s.44-.32.68-.18l3.5 2c.24.13.32.44.18.68z"/></svg>
          </div>
          </div>
        </a>
      
        <a class="social-media-sharer" href="https://reddit.com/submit/?title=Parallel%20visual%20circuitry%20in%20a%20basal%20chordate&amp;url=https%3A%2F%2Fdoi.org%2F10.7554%2FeLife.44753" target="_blank" rel="noopener noreferrer" aria-label="Share this page on Reddit">
          <div class="social-media-sharer__icon_wrapper social-media-sharer__icon_wrapper--reddit social-media-sharer__icon_wrapper--small"><div aria-hidden="true" class="social-media-sharer__icon social-media-sharer__icon--solid">
            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 11.5c0-1.65-1.35-3-3-3-.96 0-1.86.48-2.42 1.24-1.64-1-3.75-1.64-6.07-1.72.08-1.1.4-3.05 1.52-3.7.72-.4 1.73-.24 3 .5C17.2 6.3 18.46 7.5 20 7.5c1.65 0 3-1.35 3-3s-1.35-3-3-3c-1.38 0-2.54.94-2.88 2.22-1.43-.72-2.64-.8-3.6-.25-1.64.94-1.95 3.47-2 4.55-2.33.08-4.45.7-6.1 1.72C4.86 8.98 3.96 8.5 3 8.5c-1.65 0-3 1.35-3 3 0 1.32.84 2.44 2.05 2.84-.03.22-.05.44-.05.66 0 3.86 4.5 7 10 7s10-3.14 10-7c0-.22-.02-.44-.05-.66 1.2-.4 2.05-1.54 2.05-2.84zM2.3 13.37C1.5 13.07 1 12.35 1 11.5c0-1.1.9-2 2-2 .64 0 1.22.32 1.6.82-1.1.85-1.92 1.9-2.3 3.05zm3.7.13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm9.8 4.8c-1.08.63-2.42.96-3.8.96-1.4 0-2.74-.34-3.8-.95-.24-.13-.32-.44-.2-.68.15-.24.46-.32.7-.18 1.83 1.06 4.76 1.06 6.6 0 .23-.13.53-.05.67.2.14.23.06.54-.18.67zm.2-2.8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.7-2.13c-.38-1.16-1.2-2.2-2.3-3.05.38-.5.97-.82 1.6-.82 1.1 0 2 .9 2 2 0 .84-.53 1.57-1.3 1.87z"/></svg>
          </div>
          </div>
        </a>
      
      </div>

  </div>

    <div class="content-header__authors">
      <ol class="content-header__author_list" aria-label="Authors of this article">
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#x8d8d9914" data-behaviour="Popup" class="content-header__author_link">Matthew J Kourakis</a><span class="content-header__author_suffix"><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#xf3e51472" data-behaviour="Popup" class="content-header__author_link">Cezar Borba</a><span class="content-header__author_suffix"><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#xb536f34f" data-behaviour="Popup" class="content-header__author_link">Angela Zhang</a><span class="content-header__author_suffix"><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#x1d85dfc3" data-behaviour="Popup" class="content-header__author_link">Erin Newman-Smith</a><span class="content-header__author_suffix"><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#x6107dd5d" data-behaviour="Popup" class="content-header__author_link">Priscilla Salas</a><span class="content-header__author_suffix"><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#x8b937bbf" data-behaviour="Popup" class="content-header__author_link">B Manjunath</a><span class="content-header__author_suffix"><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
          <li class="content-header__author_list_item">
            <span class="content-header__author"><a href="/articles/44753#xa3814a31" data-behaviour="Popup" class="content-header__author_link">William C Smith</a><span class="content-header__author_suffix">&nbsp;<picture>
               <source srcset="/assets/patterns/img/icons/corresponding-author.d7eda27b.svg" type="image/svg+xml">
               <img src="/assets/patterns/img/icons/corresponding-author@1x.89247d49.png"
                    srcset="/assets/patterns/img/icons/corresponding-author@2x.808ab270.png 2x, /assets/patterns/img/icons/corresponding-author@1x.89247d49.png 1x"
                    alt="Is a corresponding author" class="content-header__author_icon">
            </picture><span class="content-header__author_separator" aria-hidden="true">,</span>
            </span></span>
          </li>
      </ol>

        <ol class="content-header__institution_list" aria-label="Author institutions">
            <li class="content-header__institution_list_item">
              <span class="content-header__institution">University of California, Santa Barbara, United States<span class="content-header__institution_separator" aria-hidden="true">;</span>
              </span>
            </li>
        </ol>
    </div>


    <div class="content-header__meta">
      <div class="meta">
      
          <a class="meta__type" href="/articles/research-article" >Research Article</a>
      
      
          
          <span class="date"> <time datetime="2019-04-18">Apr 18, 2019</time></span>
      </div>
    </div>


</header>





    
        <div class="wrapper">

            <div class="contextual-data">

    <ul class="contextual-data__list" aria-label="The following contains the number of views, citations and annotations in this article">

        <li class="contextual-data__item"><a href="/articles/44753#metrics">Cited 0</a></li>
        <li class="contextual-data__item"><a href="/articles/44753#metrics">Views 807</a></li>

        <li class="contextual-data__item" data-hypothesis-trigger><span class="contextual-data__item__hypothesis_opener">Annotations</span> <button class="speech-bubble speech-bubble--small "
        data-behaviour="SpeechBubble HypothesisOpener"
  
aria-live="polite">
  <span class="speech-bubble__inner"><span aria-hidden="true"><span data-visible-annotation-count></span></span><span class="visuallyhidden"> Open annotations. The current annotation count on this page is <span data-hypothesis-annotation-count>being calculated</span>.</span></span>
</button>
</li>

    </ul>

  <div class="contextual-data__cite_wrapper">
    <span class="contextual-data__cite"><span class="contextual-data__cite_label">Cite <span class="visuallyhidden"> this article</span>  as:</span> eLife 2019;8:e44753</span>
      <span class="doi">doi: <a href="https://doi.org/10.7554/eLife.44753" class="doi__link">10.7554/eLife.44753</a></span>
  </div>

</div>


        </div>

    
    
    <div data-behaviour="DelegateBehaviour" data-delegate-behaviour="Popup" data-selector=".article-section:not(#abstract) a">

        
    <div class="wrapper wrapper--content">

    <div class="grid">

                        
        
            <div class="grid__item one-whole x-large--two-twelfths">

                <div class="view-selector view-selector--has-figures" data-behaviour="ViewSelector" data-side-by-side-link="https://lens.elifesciences.org/44753">
  <ul class="view-selector__list">
    <li class="view-selector__list-item view-selector__list-item--article view-selector__list-item--active">
      <a href="/articles/44753" class="view-selector__link view-selector__link--article"><span>Article</span></a>
    </li>
      <li class="view-selector__list-item view-selector__list-item--figures">
        <a href="/articles/44753/figures" class="view-selector__link view-selector__link--figures"><span>Figures and data</span></a>
      </li>

      <li class="view-selector__list-item view-selector__list-item--jump">
        <span class="view-selector__jump_links_header">Jump to</span>
        <ul class="view-selector__jump_links">
            <li class="view-selector__jump_link_item">
              <a href="#abstract" class="view-selector__jump_link">Abstract</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#s1" class="view-selector__jump_link">Introduction</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#s2" class="view-selector__jump_link">Results</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#s3" class="view-selector__jump_link">Discussion</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#s4" class="view-selector__jump_link">Materials and methods</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#references" class="view-selector__jump_link">References</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#SA1" class="view-selector__jump_link">Decision letter</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#SA2" class="view-selector__jump_link">Author response</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#info" class="view-selector__jump_link">Article and author information</a>
            </li>
            <li class="view-selector__jump_link_item">
              <a href="#metrics" class="view-selector__jump_link">Metrics</a>
            </li>
        </ul>
      </li>

  </ul>
</div>

            </div>

        
        <div class="content-container grid__item one-whole

                            large--eight-twelfths x-large--seven-twelfths
                                        grid-column">

            
            
                
                
                    <section
    class="article-section article-section--first"
   id="abstract"
  data-behaviour="ArticleSection"
  
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Abstract</h2>
  </header>

  <div class="article-section__body">


  </div>

</section>


                
                    <section
    class="article-section "
   id="s2"
  data-behaviour="ArticleSection"
  data-initial-state="closed"
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Results</h2>
  </header>

  <div class="article-section__body">
      <section
    class="article-section "
   id="s2-1"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Glutamatergic and GABAergic photoreceptors</h3>
  </header>

  <div class="article-section__body">




  </div>

</section>
<section
    class="article-section "
   id="s2-2"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Posterior brain vesicle relay neurons are mixed VGAT- and VACHT-expressing</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Sensory input from the photoreceptors, antenna cells, coronet cells, bipolar tail neurons and a subset of peripheral neurons is directed to a cluster of ~30 RNs in the pBV. These RNs in turn extend axons through the neck to the MG. Among this cluster are the six prRNs and eight pr-AMG RNs (<a href="#fig1">Figure 1</a>; (<a href="#bib43">Ryan et al., 2016</a>)). Previous in situ hybridization studies identified VGAT- and VACHT-expressing neurons in the appropriate place in the BV to be RNs (<a href="#bib56">Yoshida et al., 2004</a>). Moreover, these neurons project axons posteriorly to the MG, a defining characteristic of the pBV RNs. BV neurons expressing other major NTs, including glutamate, dopamine, and serotonin, are neither in the correct brain region to be RNs, nor do they project from the BV to the MG ([<a href="#bib20">Horie et al., 2008b</a>; <a href="#bib31">Moret et al., 2005</a>; <a href="#bib39">Pennati et al., 2007</a>], and our observations). By HCR in situ we observed that the pBV RNs cluster in two distinct groups along the anterior/posterior axis, with the anterior cluster expressing VACHT, and the posterior group expressing VGAT (<a href="#fig3">Figure 3a</a>). We observed an average of 16 (±1.6, n = 9 larvae) VGAT-positive neurons and 11 (±1, n = 8 larvae) VACHT-positive neurons.</p>
    <div
        id="fig3"
        class="asset-viewer-inline asset-viewer-inline-- "
        data-variant=""
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="fig3"
        data-asset-viewer-uri="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/1500,/0/default.jpg"
        data-asset-viewer-width="1500"
        data-asset-viewer-height="1109"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Figure 3</span> with 1 supplement <a href="/articles/44753/figures#fig3" class="asset-viewer-inline__header_link">see all</a>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9paWlmLmVsaWZlc2NpZW5jZXMub3JnL2xheDo0NDc1MyUyRmVsaWZlLTQ0NzUzLWZpZzMtdjIudGlmL2Z1bGwvZnVsbC8wL2RlZmF1bHQuanBn/elife-44753-fig3-v2.jpg?_hash=poB6zI7Tss9wKOFGYwhd40WSG4X9%2B4%2FgYw9ffJwpELo%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/1500,/0/default.jpg" class="asset-viewer-inline__open_link" target="_blank" rel="noopener noreferrer"><span class="visuallyhidden">Open asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/1500,/0/default.jpg" class="captioned-asset__link" target="_blank" rel="noopener noreferrer">
              <picture class="captioned-asset__picture">
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/1234,/0/default.webp 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/617,/0/default.webp 1x"
                      type="image/webp"
                      >
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/1234,/0/default.jpg 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/617,/0/default.jpg 1x"
                      type="image/jpeg"
                      >
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig3-v2.tif/full/617,/0/default.jpg"
                       
                       alt=""
                       class="captioned-asset__image"
                  >
              </picture>
              </a>
          
          
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">Neurotransmitter use in the relay neurons.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">(<b>a</b>) In situ hybridization of VGAT and VACHT to the relay neurons in the brain vesicle. Also visible is the anterior tip of the motor ganglion. Nuclei are shown as spheres. (<b>b</b>) Confusion matrix for relay neuron registration. (<b>c</b>) Confusion matrix for relay neurons grouped by type. (<b>d</b>) Heat map of neurotransmitter predictions from cell registration of relay neurons, with scale showing color by proportion of iterations predicting either VGAT or VACHT. Abbreviations: ant., anterior; post., posterior; dor., dorsal; vent., ventral; MG, motor ganglion; pr-AMG RN, photoreceptor ascending motor ganglion relay neuron; prRN, photoreceptor relay neuron; AntRN, antenna cell relay neuron; PBRN, photoreceptor-bipolar tail neuron relay neuron; PCRN, photoreceptor-coronet relay neuron; PNRN, peripheral relay neuron; VGAT, vesicular GABA transporter; VACHT, vesicular acetylcholine transporter.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.007" class="doi__link">https://doi.org/10.7554/eLife.44753.007</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
<p class="paragraph">Unlike the ocellus, the pBV RN cluster does not have obvious anatomical features, although the various classes of RNs are clustered, with, for example, the antenna cell RNs (AntRN) being posterior to the photoreceptor RNs (<a href="/articles/44753/figures#fig3s1">Figure 3—figure supplement 1</a>; <a href="#bib43">Ryan et al., 2016</a>). However, given the diversity of RN types in the pBV it is unlikely that the expression domains of VGAT and VACHT precisely correspond to the clusters of RN classes. In order to make predictions of NT use in the RNs we used the same registration approach as with the photoreceptors (n = 7 VGAT/VACHT double in situ datasets, <a href="/articles/44753/figures#fig3s1">Figure 3—figure supplement 1</a>). The confusion matrix for the RNs shows a lower level of convergence than for the PR-Is, suggesting that the cellular anatomy of the RN cluster is less structured than the ocellus (<a href="#fig3">Figure 3b</a>; <a href="/articles/44753/figures#fig3s1">Figure 3—figure supplement 1</a>). However, the confusion matrix also shows that the RNs are most often confused for other RNs of the same class (white boxes in <a href="#fig3">Figure 3b</a>). This is most evident when the registration is performed not with single cells, but with pooled RNs of each class (<a href="#fig3">Figure 3c</a>), and is presumably a reflection of the clustering of RN classes in the pBV. Thus we can have higher confidence in the NT use by RN class than we can have in individual neuron identities. For example, the connectome shows the AntRNs are clustered at the rear of the BV (<a href="/articles/44753/figures#fig3s1">Figure 3—figure supplement 1</a>; (<a href="#bib43">Ryan et al., 2016</a>)), as are the VGAT expressing neurons (<a href="#fig3">Figure 3a</a>; <a href="/articles/44753/figures#fig3s1">Figure 3—figure supplement 1</a>). Accordingly, the registration predicts that eight of the ten AntRNs are VGAT positive (<a href="#fig3">Figure 3c</a>). For the present study, which focuses on the visuomotor pathway, the registration predicts that five of the eight pr-AMG RNs are VGAT expressing, two are VACHT expressing, and one (pr-AMG RN 157) cannot be resolved (no dual VGAT/VACHT expression was observed in the <i>in situs</i>). On the other hand, the registration predicts that the six prRNs are evenly mixed between VGAT and VACHT expression. These predictions provide starting points for experimental validation detailed below.</p>




  </div>

</section>
<section
    class="article-section "
   id="s2-3"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">The motor ganglion contains a mixture of cholinergic and GABAergic neurons</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">The MG contains five left/right pairs of motor neurons, as well as several classes of interneurons, including six MGINs, seven AMGs, two ddNs, and two posterior MG interneurons (<a href="#bib43">Ryan et al., 2016</a>). Also described in the MG are two left/right pairs of decussating VGAT-positive neurons (<a href="#bib21">Horie et al., 2009</a>; <a href="#bib35">Nishino et al., 2010</a>). These are likely the same decussating MG neurons as described in the connectome, although the names are slightly different (<i>anterior caudal inhibitory neurons</i> (<a href="#bib21">Horie et al., 2009</a>) versus <i>ascending contralateral inhibitory neurons</i> (<a href="#bib43">Ryan et al., 2016</a>), both abbreviated as ACIN). However, the connectome reports only three ACINs, with the anterior ACIN not paired. It was speculated that this was an anomalous feature of the particular larva used for the ssEM. Supporting this, a second larva being analyzed by ssEM for connectomics shows two pairs of ACINs (K. Ryan, personal communication).</p>
<p class="paragraph">Like the ocellus, the MG has a well-defined anterior-to-posterior and dorsal-to-ventral cellular anatomy (<a href="#fig4">Figure 4a and b</a>; <a href="#bib43">Ryan et al., 2016</a>; <a href="#bib45">Ryan et al., 2018</a>). Neurotransmitter use by some MG neurons is already documented, including the motor neurons, which are cholinergic (<a href="#bib53">Takamura et al., 2010</a>; <a href="#bib52">Takamura et al., 2002</a>), and the ACINs which are glycinergic (<a href="#bib35">Nishino et al., 2010</a>). By HCR in situ hybridization we observed VGAT- and VACHT-positive neurons in the MG (<a href="#fig4">Figure 4b</a>), but no VGLUT- or TH-positive cells (data not shown). These results are consistent with previous studies (<a href="#bib20">Horie et al., 2008b</a>; <a href="#bib31">Moret et al., 2005</a>). Likewise it was reported that no serotonergic cells were present in the MG (<a href="#bib39">Pennati et al., 2007</a>). As with the RNs, the VGAT- and VACHT-expressing neurons in the MG are segregated anatomically. We also found a population of 6–7 cells between the AMGs and the MNs (asterisks in <a href="#fig4">Figure 4a</a>), that were not annotated in the connectome as neurons and that failed to label with any of our NT markers. We hypothesize that these are ependymal cells, which are abundant in the nerve cord immediately caudal to this region.</p>
    <div
        id="fig4"
        class="asset-viewer-inline asset-viewer-inline-- "
        data-variant=""
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="fig4"
        data-asset-viewer-uri="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/,1500/0/default.jpg"
        data-asset-viewer-width="1274"
        data-asset-viewer-height="1500"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Figure 4</span> with 1 supplement <a href="/articles/44753/figures#fig4" class="asset-viewer-inline__header_link">see all</a>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9paWlmLmVsaWZlc2NpZW5jZXMub3JnL2xheDo0NDc1MyUyRmVsaWZlLTQ0NzUzLWZpZzQtdjIudGlmL2Z1bGwvZnVsbC8wL2RlZmF1bHQuanBn/elife-44753-fig4-v2.jpg?_hash=ywXgEBLsOzGfI3rEs2OHLvcZSgqwkJ8EhBicEWmfAJ8%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/,1500/0/default.jpg" class="asset-viewer-inline__open_link" target="_blank" rel="noopener noreferrer"><span class="visuallyhidden">Open asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/,1500/0/default.jpg" class="captioned-asset__link" target="_blank" rel="noopener noreferrer">
              <picture class="captioned-asset__picture">
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/1234,/0/default.webp 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/617,/0/default.webp 1x"
                      type="image/webp"
                      >
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/1234,/0/default.jpg 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/617,/0/default.jpg 1x"
                      type="image/jpeg"
                      >
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig4-v2.tif/full/617,/0/default.jpg"
                       
                       alt=""
                       class="captioned-asset__image"
                  >
              </picture>
              </a>
          
          
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">Neurotransmitter use in the motor ganglion.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">(<b>a</b> and <b>b</b>) Expression of VGAT and VACHT by in situ hybridization in the motor ganglion, lateral (<b>a</b>) and dorsal (<b>b</b>) views. Asterisks indicate predicted ependymal cells. (<b>c</b>) Lateral view of VGAT expression in the AMGs. (<b>d</b>) shows same view as c, but with VACHT expression. (<b>e</b>) Diagram of neurons in the motor ganglion (derived from Figure 1 of <a href="#bib44">Ryan et al., 2017</a>). Box indicates approximate positions of panels c and d. Lateral view; anterior is to the left. (<b>f</b>) Dorsal view of VGAT expression in the AMGs. Asterisk indicates central non-VGAT expressing cell. (<b>g</b>) Three dimensional surface rendering of VGAT expressing cells in the AMGs. (<b>h</b>) Diagram of a dorsal view of the motor ganglion. AMG cells are numbered. Abbreviations: dor., dorsal; vent., ventral; ant., anterior; post., posterior; AMG, ascending motor ganglion neuron; MGIN, motor ganglion interneuron; ddN, descending decussating neurons; ACIN, ascending contralateral inhibitory neurons; MN, motor neuron; VGAT, vesicular GABA transporter; VACHT, vesicular acetylcholine transporter.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.009" class="doi__link">https://doi.org/10.7554/eLife.44753.009</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
<p class="paragraph">Because of the highly structured MG cellular anatomy, we can identify the various MG cell types in the in situ data. The anterior group of VGAT-positive cells is clustered dorsally in the MG, and correspond to AMGs (4 c, d and e; (<a href="#bib44">Ryan et al., 2017</a>)). In a dorsal view of the MG (<a href="#fig4">Figure 4f,g and h</a>) a ring of VGAT-positive cells was observed with a non-VGAT expressing cell in the center (asterisk, <a href="#fig4">Figure 4f and g</a>). The VGAT-expressing cells appear to be AMGs 1, 2, 3, 4, 6, and 7, while the central cell, which is instead positive for VACHT, appears to be AMG5. The connectome shows that AMG5 differs in its connectivity from the other AMGs. Significantly, AMG5 is the principle synaptic input for PNS neurons. It then synapses to the other AMGs, which in turn project their axons to other cells in the MG, including MGINs and MNs, as well as to the pr-AMG RNs in the BV. In the posterior of the MG we observed two pairs of VGAT-positive neurons, as described previously (<a href="#bib21">Horie et al., 2009</a>). Finally, in the ventral MG we observed a continuous block of VACHT expression that encompasses the anterior three pairs of MNs, the ddNs, and the MGINs. Similar in situ patterns were observed in most larvae (<a href="/articles/44753/figures#fig4s1">Figure 4—figure supplement 1</a>), although the positions of the ACINs were offset in several (see larvae 5 and 6 in <a href="/articles/44753/figures#fig4s1">Figure 4—figure supplement 1</a>), and one larva was observed to be missing both one motor neuron and one ACIN (larva 7in <a href="/articles/44753/figures#fig4s1">Figure 4—figure supplement 1</a>), suggesting that MG variants, such as was observed in the animal used in the connectome study, may be relatively common.</p>




  </div>

</section>
<section
    class="article-section "
   id="s2-4"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Parallel visuomotor circuits</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Our results indicate that the PR-Is, with the exception of two cells, are glutamatergic, while the PR-IIs are a mixture of GABAergic and GABA/glutamatergic. The <i>Ciona</i> genome contains a single glutamate AMPA receptor (AMPAR) (<a href="#bib36">Okamura et al., 2005</a>) that is expressed in larvae in the two antenna cells, and in a small cluster of neurons in the pBV (<a href="#bib18">Hirai et al., 2017</a>). Published results show that most of the pBV group of AMPAR-positive neurons are clustered at the ends of Arrestin-labeled photoreceptor axons, and that they extend their axons to the MG, suggesting they are photoreceptor RNs (see Figure 2B" in <a href="#bib18">Hirai et al., 2017</a>). We find that this pBV group is composed of ~6 cells (<a href="/articles/44753/figures#fig5s1">Figure 5—figure supplement 1</a>). To investigate this further, we co-expressed an pAMPAR &gt;GFP construct (<a href="#bib18">Hirai et al., 2017</a>) with pVACHT &gt;CFP and pVGAT &gt;nuclear RFP constructs. We observed coexpression of the AMPAR reporter in a subset of the VACHT-positive RNs, but never in the VGAT-expressing RNs (<a href="#fig5">Figure 5a</a>).</p>
    <div
        id="fig5"
        class="asset-viewer-inline asset-viewer-inline-- "
        data-variant=""
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="fig5"
        data-asset-viewer-uri="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/,1500/0/default.jpg"
        data-asset-viewer-width="1400"
        data-asset-viewer-height="1500"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Figure 5</span> with 1 supplement <a href="/articles/44753/figures#fig5" class="asset-viewer-inline__header_link">see all</a>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9paWlmLmVsaWZlc2NpZW5jZXMub3JnL2xheDo0NDc1MyUyRmVsaWZlLTQ0NzUzLWZpZzUtdjIudGlmL2Z1bGwvZnVsbC8wL2RlZmF1bHQuanBn/elife-44753-fig5-v2.jpg?_hash=0aDXVHgnozrp0Q80t8%2FT5K718EzJQmgreXzfYFK9oAQ%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/,1500/0/default.jpg" class="asset-viewer-inline__open_link" target="_blank" rel="noopener noreferrer"><span class="visuallyhidden">Open asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/,1500/0/default.jpg" class="captioned-asset__link" target="_blank" rel="noopener noreferrer">
              <picture class="captioned-asset__picture">
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/1234,/0/default.webp 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/617,/0/default.webp 1x"
                      type="image/webp"
                      >
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/1234,/0/default.jpg 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/617,/0/default.jpg 1x"
                      type="image/jpeg"
                      >
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig5-v2.tif/full/617,/0/default.jpg"
                       
                       alt=""
                       class="captioned-asset__image"
                  >
              </picture>
              </a>
          
          
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">AMPA receptors in negative phototaxis.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">(<b>a</b>) Coexpression of an AMPA-receptor and VACHT expression constructs in the relay neurons (white asterisks). The main panel shows the merge while smaller panels at right show single channels. (<b>b</b>) Negative phototaxis assay in control larvae. Yellow arrow indicates direction of 505 nm light. By 60 min (m) the majority of the larvae have swum to the side of the dish away from the light (red arrow). (<b>c</b>) Perampanel-treated larvae do not show negative phototaxis. (<b>d</b>) Quantification of negative phototaxis in control and perampanel-treated larvae. Points indicate the averages from three independent assays, ±standard deviation. Y-axis represents the percentage of larvae found on the side away from the light source (distal third). Abbreviations: VGAT, vesicular GABA transporter; VACHT, vesicular acetylcholine transporter.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.011" class="doi__link">https://doi.org/10.7554/eLife.44753.011</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
<p class="paragraph">To assess the function of the AMPAR-positive cells in <i>Ciona</i> visuomotor behaviors we used the non-competitive AMPAR antagonist perampanel (<a href="#bib17">Hanada et al., 2011</a>). For the assay, larvae were treated at 25 hr post fertilization (hpf) with perampanel in sea water and compared to vehicle-treated control larvae for both negative phototaxis and response to light dimming. The negative phototaxis assay consisted of placing the larvae in a 10 cm petri dish of sea water with a 505 nm LED lamp placed to one side (described by us previously <a href="#bib46">Salas et al., 2018</a>). Images were collected at 1 min intervals over 5 hr to assess for taxis (<a href="#video1">Video 1</a>). <a href="#fig5">Figure 5b and c</a> show representative frames from the time-lapse capture at the start and at 60 min for control and perampanel-treated larvae, respectively. In the control sample the larvae at 60 min were observed to cluster at the side of the petri dish away from the light (distal side; red arrows in <a href="#fig5">Figure 5b</a>). By contrast no taxis was observed in the perampanel treated larvae (<a href="#fig5">Figure 5c</a>). Combined results from three independent assays (n = 129–365 larvae per group) are shown in <a href="#fig5">Figure 5d</a> and presented as the percent of larvae found on distal third of the petri dish. For control larvae ~ 70% swam to the distal third within 1 hr, while the perampanel-treated larvae remained evenly distributed across the dish.</p>
    <div
        id="video1"
        class="asset-viewer-inline asset-viewer-inline--video "
        data-variant="video"
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="video1"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Video 1</span>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9zdGF0aWMtbW92aWUtdXNhLmdsZW5jb2Vzb2Z0d2FyZS5jb20vbXA0LzEwLjc1NTQvODg2Lzc3MWIyN2VkMjZmNzI1MTEwOGJkMzViODQyY2U1OTYzZTYzNDExOTkvZWxpZmUtNDQ3NTMtdmlkZW8xLm1wNA==/elife-44753-video1.mp4?_hash=QotDe4lMfotdXdc%2BUKEblblnp1b0B6bupqA3BcEJbnU%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
          
          
              <video controls="controls" poster="https://iiif.elifesciences.org/lax:44753%2Felife-44753-video1.jpg/full/639,/0/default.jpg" preload="metadata">
              
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-video1.jpg/full/639,/0/default.jpg" alt="posterframe for video" />
              
                <p>This video cannot be played in place because your browser does support HTML5 video. You may still download the video for offline viewing.</p>
              
                  <source src="https://static-movie-usa.glencoesoftware.com/mp4/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video1.mp4" type='video/mp4; codecs=&quot;avc1.42E01E, mp4a.40.2&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/mp4/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video1.mp4">Download as MPEG-4</a>
                  
                  </div>
                  <source src="https://static-movie-usa.glencoesoftware.com/webm/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video1.webm" type='video/webm; codecs=&quot;vp8.0, vorbis&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/webm/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video1.webm">Download as WebM</a>
                  
                  </div>
                  <source src="https://static-movie-usa.glencoesoftware.com/ogv/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video1.ogv" type='video/ogg; codecs=&quot;theora, vorbis&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/ogv/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video1.ogv">Download as Ogg</a>
                  
                  </div>
              
              </video>
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">Negative phototaxis of control and perampanel-treated <i>Ciona</i> larvae in 10 cm petri dishes.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">Directional 505 nm illumination is from the left. Frames were taken at 1 per minute over five hours. In the video the 5 hr is compressed to 15 s (i.e., 1200X normal speed). Black and white tones were inverted to make the larvae more visible.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.014" class="doi__link">https://doi.org/10.7554/eLife.44753.014</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
<p class="paragraph">The inability of the perampanel-treated larvae to undergo phototaxis was not the result of an inability to swim, as seen in <a href="#video2">Video 2</a> which was taken at 8.9 fps, with and without perampanel. Moreover, we observed that perampanel treatment had no effect on the light dimming response (<a href="#video3">Video 3</a>). <a href="#fig6">Figure 6a and b</a> show 5 s projection images from <a href="#video3">Video 3</a> immediately before and after dimming. In these images swims appear as lines, and the responses in control and perampanel-treated larvae appear qualitatively similar. To quantitatively compare dimming response, control and perampanel-treated larvae were exposed to a range of dimming intensities from 2 to 60-fold and the percentage of larvae responding was measured and presented as a percentage in <a href="#fig6">Figure 6c</a> (results are from three independent assays, with 46–139 larvae per group). The percentage responding at all intensities was very similar for both groups, and pair-wise comparisons at each fold change failed to show significance. In addition, no differences were measured in the velocity or duration of swims in pair-wise comparisons of control and perampanel-treated larvae at any fold-dimming (data not shown). We conclude that there is no change in sensitivity to dimming caused by perampanel treatment, while phototaxis was completely disrupted. Finally, we also observed that the touch response was not inhibited by perampanel (data not shown), despite the presence of VGLUT-positive epidermal sensory neurons (<a href="#bib20">Horie et al., 2008b</a>). This would appear to agree with the observation that primary RNs for the PNS, the eminens cells and the AMGs do not express the AMPAR (<a href="#bib18">Hirai et al., 2017</a>; and our observations). In addition to the AMPAR, the <i>Ciona</i> genome contains several other glutamate receptors including one kainate and one NMDA (<a href="#bib36">Okamura et al., 2005</a>), although their expression has not been characterized.</p>
    <div
        id="fig6"
        class="asset-viewer-inline asset-viewer-inline-- "
        data-variant=""
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="fig6"
        data-asset-viewer-uri="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/1500,/0/default.jpg"
        data-asset-viewer-width="1500"
        data-asset-viewer-height="1124"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Figure 6</span>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9paWlmLmVsaWZlc2NpZW5jZXMub3JnL2xheDo0NDc1MyUyRmVsaWZlLTQ0NzUzLWZpZzYtdjIudGlmL2Z1bGwvZnVsbC8wL2RlZmF1bHQuanBn/elife-44753-fig6-v2.jpg?_hash=v4N145cqneQAaynzcjF%2FnAcen6AeM%2BkieeWEMRTMIFY%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/1500,/0/default.jpg" class="asset-viewer-inline__open_link" target="_blank" rel="noopener noreferrer"><span class="visuallyhidden">Open asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
              <a href="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/1500,/0/default.jpg" class="captioned-asset__link" target="_blank" rel="noopener noreferrer">
              <picture class="captioned-asset__picture">
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/1234,/0/default.webp 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/617,/0/default.webp 1x"
                      type="image/webp"
                      >
                  <source srcset="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/1234,/0/default.jpg 2x, https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/617,/0/default.jpg 1x"
                      type="image/jpeg"
                      >
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-fig6-v2.tif/full/617,/0/default.jpg"
                       
                       alt=""
                       class="captioned-asset__image"
                  >
              </picture>
              </a>
          
          
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">Perampanel does not disrupt the light dimming response.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">(<b>a</b>) Light dimming response in control larvae. Shown are 5 s (s) projections from time-lapse videos in which swims appear as lines. Left panel shows a projection 5 s before dimming, and right panel 5 s after dimming. (<b>b</b>) same as a, but larvae were perampanel-treated. (<b>c</b>) Quantification of light dimming response in control and perampanel treated larvae. Larvae were exposed to dimming of 505 nm light from 2- to 60-fold. Dimming response was scored as percent of larvae responding. Bars show averages of three independent assays ± standard deviation.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.015" class="doi__link">https://doi.org/10.7554/eLife.44753.015</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
    <div
        id="video2"
        class="asset-viewer-inline asset-viewer-inline--video "
        data-variant="video"
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="video2"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Video 2</span>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9zdGF0aWMtbW92aWUtdXNhLmdsZW5jb2Vzb2Z0d2FyZS5jb20vbXA0LzEwLjc1NTQvODg2Lzc3MWIyN2VkMjZmNzI1MTEwOGJkMzViODQyY2U1OTYzZTYzNDExOTkvZWxpZmUtNDQ3NTMtdmlkZW8yLm1wNA==/elife-44753-video2.mp4?_hash=Td7A8NTjXLYjBj4RDkmj2zYo4EbpSS%2FCisGNZPPo1Ws%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
          
          
              <video controls="controls" poster="https://iiif.elifesciences.org/lax:44753%2Felife-44753-video2.jpg/full/639,/0/default.jpg" preload="metadata">
              
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-video2.jpg/full/639,/0/default.jpg" alt="posterframe for video" />
              
                <p>This video cannot be played in place because your browser does support HTML5 video. You may still download the video for offline viewing.</p>
              
                  <source src="https://static-movie-usa.glencoesoftware.com/mp4/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video2.mp4" type='video/mp4; codecs=&quot;avc1.42E01E, mp4a.40.2&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/mp4/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video2.mp4">Download as MPEG-4</a>
                  
                  </div>
                  <source src="https://static-movie-usa.glencoesoftware.com/webm/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video2.webm" type='video/webm; codecs=&quot;vp8.0, vorbis&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/webm/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video2.webm">Download as WebM</a>
                  
                  </div>
                  <source src="https://static-movie-usa.glencoesoftware.com/ogv/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video2.ogv" type='video/ogg; codecs=&quot;theora, vorbis&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/ogv/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video2.ogv">Download as Ogg</a>
                  
                  </div>
              
              </video>
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">Swimming of control and perampanel-treated <i>Ciona</i> larvae in a directional light field.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">Larvae in 10 cm petri dishes were recorded at nine frames/second. Black and white tones were inverted to make the larvae more visible. The video plays at 5X normal speed.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.017" class="doi__link">https://doi.org/10.7554/eLife.44753.017</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
    <div
        id="video3"
        class="asset-viewer-inline asset-viewer-inline--video "
        data-variant="video"
        data-behaviour="AssetNavigation AssetViewer ToggleableCaption"
        data-selector=".caption-text__body"
        data-asset-viewer-group="video3"
    >
    
      <div class="asset-viewer-inline__header_panel">
          <div class="asset-viewer-inline__header_text">
            <span class="asset-viewer-inline__header_text__prominent">Video 3</span>
          </div>
    
    
            <div class="asset-viewer-inline__figure_access">
              <a href="https://elifesciences.org/download/aHR0cHM6Ly9zdGF0aWMtbW92aWUtdXNhLmdsZW5jb2Vzb2Z0d2FyZS5jb20vbXA0LzEwLjc1NTQvODg2Lzc3MWIyN2VkMjZmNzI1MTEwOGJkMzViODQyY2U1OTYzZTYzNDExOTkvZWxpZmUtNDQ3NTMtdmlkZW8zLm1wNA==/elife-44753-video3.mp4?_hash=GCjCBk4K%2BjkExSoFO0Wc8pv%2FhPFCkRZ84QpH%2Bavz994%3D" class="asset-viewer-inline__download_all_link" download="Download"><span class="visuallyhidden">Download asset</span></a>
            </div>
    
      </div>
    
          <figure class="captioned-asset">
          
          
          
              <video controls="controls" poster="https://iiif.elifesciences.org/lax:44753%2Felife-44753-video3.jpg/full/639,/0/default.jpg" preload="metadata">
              
                  <img src="https://iiif.elifesciences.org/lax:44753%2Felife-44753-video3.jpg/full/639,/0/default.jpg" alt="posterframe for video" />
              
                <p>This video cannot be played in place because your browser does support HTML5 video. You may still download the video for offline viewing.</p>
              
                  <source src="https://static-movie-usa.glencoesoftware.com/mp4/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video3.mp4" type='video/mp4; codecs=&quot;avc1.42E01E, mp4a.40.2&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/mp4/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video3.mp4">Download as MPEG-4</a>
                  
                  </div>
                  <source src="https://static-movie-usa.glencoesoftware.com/webm/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video3.webm" type='video/webm; codecs=&quot;vp8.0, vorbis&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/webm/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video3.webm">Download as WebM</a>
                  
                  </div>
                  <source src="https://static-movie-usa.glencoesoftware.com/ogv/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video3.ogv" type='video/ogg; codecs=&quot;theora, vorbis&quot;' class="media-source"/>
                  
                  <div>
                  
                  
                      <a class="media-source__fallback_link" href="https://static-movie-usa.glencoesoftware.com/ogv/10.7554/886/771b27ed26f7251108bd35b842ce5963e6341199/elife-44753-video3.ogv">Download as Ogg</a>
                  
                  </div>
              
              </video>
          
          
              <figcaption class="captioned-asset__caption">
          
                  <h6 class="caption-text__heading">Dimming response of control and perampanel-treated <i>Ciona</i> larvae in 10 cm petri dishes.</h6>
                
                
                <div class="caption-text__body"><p class="paragraph">Larvae were imaged for 70 s at five frames/second, with dimming of 505 nm ambient light at 10 s. Black and white tones were inverted, and thus the dimming appears as a brightening. The video plays at 5X normal speed.</p>
</div>
          
                  <span class="doi doi--asset"><a href="https://doi.org/10.7554/eLife.44753.018" class="doi__link">https://doi.org/10.7554/eLife.44753.018</a></span>
          
              </figcaption>
          
          
          
          
          </figure>
    
    
    </div>
<p class="paragraph">In summary, we are able to separate the phototaxis and dimming behaviors pharmacologically. Moreover, we can identify the VACHT/AMPAR-positive RNs as essential for an excitatory PR-I circuit that involves presynaptic glutamatergic PR-Is and postsynaptic cholinergic MGINs. The number and location of the VACHT/AMPAR-positive RNs, the circuit logic, and our behavioral observations are all consistent with these being prRNs.</p>




  </div>

</section>
<section
    class="article-section "
   id="s2-5"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">A disinhibitory circuit</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Of equal significance to our observation that navigation is inhibited by perampanel, is our observation that the dimming response, which is mediated by the PR-IIs (<a href="#bib46">Salas et al., 2018</a>), is not inhibited by perampanel (<a href="#fig6">Figure 6</a>). Our expression studies show that the PR-IIs are comprised of a mixture of VGAT- and VGAT/VGLUT-expressing photoreceptors. Although it is formally possible that PR-IIs signal exclusively via glutamate in an excitatory circuit via a non-AMPA glutamate receptor on their RNs, our observations that several of the PR-IIs are VGAT-only, as are the majority of the pr-AMG RNs, suggests an alternative disinhibitory circuitry logic. This circuit would consist of the inhibitory PR-IIs synapsing to the pr-AMG RNs to reduce their inhibition on the cholinergic MGINs.</p>
<p class="paragraph">Implicit in the disinhibitory model is an autonomous level of motor activity in larvae that could be inhibited by the GABAergic pr-AMG RNs, and that this inhibition is released upon stimulation of the GABAergic PR-IIs. We investigated this possibility by two approaches. In the first approach, we inhibited GABAergic receptors with picrotoxin (<a href="#bib37">Olsen, 2014</a>), which should inhibit signals from the GABAergic photoreceptors and the pr-AMG RNs (and most likely the AntRNs), as well as PNS relay neurons, including the eminens cells and the AMGs. The ACINs, which are essential for the central pattern generator (<a href="#bib35">Nishino et al., 2010</a>), are glycinergic and should not be inhibited by picrotoxin. In the second approach, we took advantage of a previously described <i>Ciona</i> mutant, <i>frimousse (frm)</i> (<a href="#bib10">Deschet and Smith, 2004</a>; <a href="#bib16">Hackley et al., 2013</a>). In homozygous <i>frm</i> larvae the anterior BV is transfated to epidermis due to a null mutation in a neurula stage-specific connexin gene (<a href="#bib16">Hackley et al., 2013</a>). <i>Frm</i> larvae thus lack the ocellus pigment cell and photoreceptors, as well as the otolith, although the motor ganglion appears intact (<a href="#bib10">Deschet and Smith, 2004</a>; <a href="#bib16">Hackley et al., 2013</a>).</p>
<section
    class="article-section "
   id="s2-5-1"
>


  </div>

</section>
<section
    class="article-section "
   id="s4-4"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Hybridization chain reaction (HCR) in situ</h3>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-4" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph"><i>Ciona intestinalis</i>-type B were used for in situ studies and staged to match the animals used in the connectome study (<a href="#bib43">Ryan et al., 2016</a>). Optimized HCR in situ probes for each target transcript were obtained from Molecular Technologies. For detection of GABAergic/glycinergic cells, probes were made to the vesicular GABA transporter gene; for glutamatergic cells, probes were made to the vesicular glutamate transporter for cholinergic cells, probes were made to the vesicular acetylcholine transporter. The sequences from which the HCR probe sets were chosen were assembled from scaffold reads available through the Aniseed website (aniseed.cnrs.fr), and are shown in <a href="/articles/44753/figures#supp1">Supplementary file 1</a>. The in situ protocol followed the previously published <i>Ciona in situ</i> hybridization protocol (<a href="#bib8">Corbo et al., 1997</a>) until the prehybridization step. At this point, the protocol follows the published HCR protocol (<a href="#bib7">Choi et al., 2018</a>), with the following exception: during the amplification stage, incubation with hairpins is performed for 3 days instead of 12–16 hr.</p>
<p class="paragraph">HCR in situ stained larvae were cleared with Slowfade Gold with DAPI (Invitrogen) and imaged on a Leica SP8 resonant scanning confocal microscope. Imaris v. 9.1 (Bitplane) was used to visualize embryos and assign centroids to nuclei using the ‘add new spots’ function, followed by manual correction when necessary. Nuclei were assigned using the maximum intensity projection, cropped to the area of interest. Volume rendering of in situ patterns was also done using Imaris v. 9.1.</p>




  </div>

</section>
<section
    class="article-section "
   id="s4-5"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Cell registration</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">A rotation matrix was calculated based on the 3-dimensional vectors between the anchor cells (ddN and/or antenna cells) and the center of the target cells (photoreceptors or relay neurons) using the HCR in situ (target set) and connectome cell centroids (source set). The source set was then rotated to an approximate orientation to the target set. Next, the Coherent Point Drift Algorithm was used to calculate an affine transformation matrix between the source set and the target set of cells (<a href="#bib32">Myronenko and Song, 2010</a>). This algorithm models the source set as a Gaussian Mixture Model (GMM), and the target set is treated as observations from the GMM. The transformation matrix is calculated to maximize the Maximum A Posteriori estimation that the observed point cloud is drawn from the GMM. A nearest neighbor mapping based on Euclidean distance is then used to find the closest corresponding point in the target cell set for each cell in the transformed source cell set. The implementation used was adapted from the pure Python implementation <a href="https://github.com/siavashk/pycpd">https://github.com/siavashk/pycpd</a>. The maximum number of iterations was set to 1000 and the maximum root mean squared error for convergence was set to 0.001. The code for the registration is available as supplementary material (<a href="/articles/44753/figures#scode1">Source codes 1</a>–<a href="/articles/44753/figures#scode3">3</a>).</p>
<section
    class="article-section "
   id="s4-5-1"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Confusion matrix</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-5-1" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Each dataset containing NT information was registered to every other dataset of the same type using the algorithm detailed above. The EM-registration based cell assignments of each cell in both sets is then compared to each other to see if they agree (<a href="#bib49">Stehman, 1997</a>). The confusion matrix shows the number of times a cell assignment in one dataset corresponds with each other cell assignment in another dataset.</p>




  </div>

</section>




  </div>

</section>
<section
    class="article-section "
   id="s4-6"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Behavioral assays</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">For time-lapse videos the inverted lid of a 60 mm petri dish was first coated with a thin layer of 1% agarose. Larvae were then added to the inverted lid with filtered sea water containing 0.1% BSA with streptomycin and kanamycin each at 20 μg/ml. Finally the dish was covered with a square of glass leaving no air at the top interface. Stock solutions of perampanel were dissolved in methanol and diluted to final concentrations of either 5 μm (Santa Cruz Biotech) or 15 µM (Adooq Bioscience) in filtered sea water/BSA/antibiotics. Picrotoxin (Tocris) was also diluted in methanol and used at a final concentration of 1 mM. Control samples received methanol alone.</p>
<p class="paragraph">Time-lapse images were collected using a Hamamatsu Orca-ER camera fitted on a Navitar 7000 macro zoom lens. Programmable 700 nm and 505 nm LED lamps were used to illuminate the larvae (Mightex). All light intensity readings were taken with an Extech Instruments light meter.</p>
<section
    class="article-section "
   id="s4-6-1"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Dimming-response</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-6-1" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">All larvae used were between 25 and 28 hpf (18°C). For image capture, the larvae were illuminated with the 700 nm LED lamp and the camera was fitted with a red filter to block the 505 nm light. The videos were recorded at five fps. In the assays, larvae were first recorded for 10 s with the 505 nm LED light mounted above the dish at 600 lux and then dimmed to specific values while image capture continued for another 3 min. Larvae were allowed to recover for 5 min before being assayed again.</p>




  </div>

</section>
<section
    class="article-section "
   id="s4-6-2"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Phototaxis</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-6-2" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">All larvae used were approximately 25 hpf (18°C). The 505 nm LED light was mounted to one side to the petri dish at approximately 3000 lux. Images were captured at one frame per minute for five hours, with the exception of 30 s capture session at 8.9 fps to assay swimming behavior.</p>




  </div>

</section>
<section
    class="article-section "
   id="s4-6-3"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Spontaneous Swims</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-6-3" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">All larvae used were between 26 and 28 hpf. The plates were illuminated with only a 700 nm LED light in order to record dark conditions. The videos were recorded at about 8.9 fps for one minute.</p>




  </div>

</section>




  </div>

</section>
<section
    class="article-section "
   id="s4-7"
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Behavioral data analysis</h3>
  </header>

  <div class="article-section__body">
      <section
    class="article-section "
   id="s4-7-1"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Dim-response criteria</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-7-1" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Responses to light dimming were counted if: (1) the larva was stationary at the time of the light dimming, and (2) it swam for longer than 3 s. Three seconds was determined by measuring the duration of tail flicks as previously described (<a href="#bib46">Salas et al., 2018</a>). Larvae that bumped or brushed against other larvae or the dish edges were not counted.</p>




  </div>

</section>
<section
    class="article-section "
   id="s4-7-2"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Tracking and quantification</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-7-2" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Larval swims were tracked using a custom MATLAB script named Estimators of Locomotion Iterations for Animal Experiments (ELIANE). Before uploading to ELIANE, time-lapse images were first processed with Fiji (ImageJ) by subtracting a minimum Z-projection to all the frames and then inverting black and white. ELIANE takes the processed time-lapse images and first creates a background image by averaging the pixels from all the frames. Next, it goes to the initial frame, subtracts the background image, and stores all remaining objects found in the specified region of interest (ROI) as initial objects. Then, analyzing one-by-one the initial objects, it goes frame-by-frame subtracting the background image and analyzing all objects to determine the new position of the object by comparing the Euclidean distances of it to all other objects in that frame. If the object had moved unrealistically fast (&gt;6.5 mm/s), moved outside the ROI, or did not move after a set time (1 min), the object was not analyzed. This MATLAB script can be found in the Supplemental Materials (<a href="/articles/44753/figures#scode4">Source code 4</a>).</p>
<p class="paragraph">The spontaneous swims in the <i>frimousse</i> experiment were quantified manually.</p>




  </div>

</section>
<section
    class="article-section "
   id="s4-7-3"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Sampling</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-7-3" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Assessment of larval swim parameters were performed using three independent assays. For the spontaneous swims, which were quantified manually, 25 larvae were selected randomly, starting from the center of the plate going outward, only using the ones that could be tracked for the entire minute recording session.</p>




  </div>

</section>
<section
    class="article-section "
   id="s4-7-4"
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">Tests of significance</h4>
      <a href="https://bio-protocol.org/eLIFErap44753?item=s4-7-4" class="article-section__header_link">Request a detailed protocol</a>
  </header>

  <div class="article-section__body">
      <p class="paragraph">Dimming response significance and swim frequency were calculated using the Wilcoxon rank-sum test; spontaneous swim time significance was calculated using the Student’s <i>t</i>-test; and the variance of spontaneous swimming significance was calculated using the F-test.</p>




  </div>

</section>




  </div>

</section>




  </div>

</section>


                
                    <button class="speech-bubble speech-bubble--has-placeholder"
        data-behaviour="SpeechBubble HypothesisOpener"
  
aria-live="polite">
  <span class="speech-bubble__inner"><span aria-hidden="true"><span data-visible-annotation-count>&#8220;</span></span><span class="visuallyhidden"> Open annotations. The current annotation count on this page is <span data-hypothesis-annotation-count>being calculated</span>.</span></span>
</button>


                
                    <section
    class="article-section "
   id="references"
  data-behaviour="ArticleSection"
  data-initial-state="closed"
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">References</h2>
  </header>

  <div class="article-section__body">
      
<ol class="reference-list">
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">1</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib1" id="bib1">
        
        
            <a href="https://doi.org/10.1016/j.coisb.2017.12.005" class="reference__title">Fold-change detection in biological systems</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Adler%22" class="reference__authors_link">M Adler</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:U+Alon%22" class="reference__authors_link">U Alon</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2018)</span>
        
            <div class="reference__origin"><i>Current Opinion in Systems Biology</i> <b>8</b>:81–89.</div>
        
            <span class="doi"><a href="https://doi.org/10.1016/j.coisb.2017.12.005" class="doi__link">https://doi.org/10.1016/j.coisb.2017.12.005</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Fold-change+detection+in+biological+systems&amp;author=M+Adler&amp;author=U+Alon&amp;publication_year=2018&amp;journal=Current+Opinion+in+Systems+Biology&amp;volume=8&amp;pages=pp.+81%E2%80%9389" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">2</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib2" id="bib2">
        
        
            <a href="https://doi.org/10.1038/nrg2102" class="reference__title">Network motifs: <i>theory and experimental approaches</i></a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:U+Alon%22" class="reference__authors_link">U Alon</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2007)</span>
        
            <div class="reference__origin"><i>Nature Reviews Genetics</i> <b>8</b>:450–461.</div>
        
            <span class="doi"><a href="https://doi.org/10.1038/nrg2102" class="doi__link">https://doi.org/10.1038/nrg2102</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/17510665" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Network+motifs%3A+theory+and+experimental+approaches&amp;author=U+Alon&amp;publication_year=2007&amp;journal=Nature+Reviews+Genetics&amp;volume=8&amp;pages=pp.+450%E2%80%93461&amp;pmid=17510665" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">3</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib3" id="bib3">
        
        
        
        
              <div class="reference__title">Evolution of eyes and photoreceptor cell types</div>
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:D+Arendt%22" class="reference__authors_link">D Arendt</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2003)</span>
        
            <div class="reference__origin"><i>The International Journal of Developmental Biology</i> <b>47</b>:563–571.</div>
        
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/14756332" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Evolution+of+eyes+and+photoreceptor+cell+types&amp;author=D+Arendt&amp;publication_year=2003&amp;journal=The+International+Journal+of+Developmental+Biology&amp;volume=47&amp;pages=pp.+563%E2%80%93571&amp;pmid=14756332" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">4</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib4" id="bib4">
        
        
            <a href="https://doi.org/10.1038/nn1136" class="reference__title">EXP-1 is an excitatory GABA-gated cation channel</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:AA+Beg%22" class="reference__authors_link">AA Beg</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:EM+Jorgensen%22" class="reference__authors_link">EM Jorgensen</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2003)</span>
        
            <div class="reference__origin"><i>Nature Neuroscience</i> <b>6</b>:1145–1152.</div>
        
            <span class="doi"><a href="https://doi.org/10.1038/nn1136" class="doi__link">https://doi.org/10.1038/nn1136</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/14555952" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=EXP-1+is+an+excitatory+GABA-gated+cation+channel&amp;author=AA+Beg&amp;author=EM+Jorgensen&amp;publication_year=2003&amp;journal=Nature+Neuroscience&amp;volume=6&amp;pages=pp.+1145%E2%80%931152&amp;pmid=14555952" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">5</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib5" id="bib5">
        
        
            <a href="https://doi.org/10.1111/j.1460-9568.2005.04420.x" class="reference__title">GABAergic synaptic transmission modulates swimming in the ascidian larva</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:ER+Brown%22" class="reference__authors_link">ER Brown</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:A+Nishino%22" class="reference__authors_link">A Nishino</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:Q+Bone%22" class="reference__authors_link">Q Bone</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:IA+Meinertzhagen%22" class="reference__authors_link">IA Meinertzhagen</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:Y+Okamura%22" class="reference__authors_link">Y Okamura</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2005)</span>
        
            <div class="reference__origin"><i>European Journal of Neuroscience</i> <b>22</b>:2541–2548.</div>
        
            <span class="doi"><a href="https://doi.org/10.1111/j.1460-9568.2005.04420.x" class="doi__link">https://doi.org/10.1111/j.1460-9568.2005.04420.x</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/16307596" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=GABAergic+synaptic+transmission+modulates+swimming+in+the+ascidian+larva&amp;author=ER+Brown&amp;author=A+Nishino&amp;author%5B2%5D=Q+Bone&amp;author%5B3%5D=IA+Meinertzhagen&amp;author%5B4%5D=Y+Okamura&amp;publication_year=2005&amp;journal=European+Journal+of+Neuroscience&amp;volume=22&amp;pages=pp.+2541%E2%80%932548&amp;pmid=16307596" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">49</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib49" id="bib49">
        
        
            <a href="https://doi.org/10.1016/S0034-4257(97)00083-7" class="reference__title">Selecting and interpreting measures of thematic classification accuracy</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:SV+Stehman%22" class="reference__authors_link">SV Stehman</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(1997)</span>
        
            <div class="reference__origin"><i>Remote Sensing of Environment</i> <b>62</b>:77–89.</div>
        
            <span class="doi"><a href="https://doi.org/10.1016/S0034-4257(97)00083-7" class="doi__link">https://doi.org/10.1016/S0034-4257(97)00083-7</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Selecting+and+interpreting+measures+of+thematic+classification+accuracy&amp;author=SV+Stehman&amp;publication_year=1997&amp;journal=Remote+Sensing+of+Environment&amp;volume=62&amp;pages=pp.+77%E2%80%9389" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">50</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib50" id="bib50">
        
        
            <a href="https://doi.org/10.2307/1542300" class="reference__title">Ciliary Hovering in Larval Lancelets (=Amphioxus)</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:MD+Stokes%22" class="reference__authors_link">MD Stokes</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:ND+Holland%22" class="reference__authors_link">ND Holland</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(1995)</span>
        
            <div class="reference__origin"><i>The Biological Bulletin</i> <b>188</b>:231–233.</div>
        
            <span class="doi"><a href="https://doi.org/10.2307/1542300" class="doi__link">https://doi.org/10.2307/1542300</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/29281329" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Ciliary+Hovering+in+Larval+Lancelets+%28%3DAmphioxus%29&amp;author=MD+Stokes&amp;author=ND+Holland&amp;publication_year=1995&amp;journal=The+Biological+Bulletin&amp;volume=188&amp;pages=pp.+231%E2%80%93233&amp;pmid=29281329" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">51</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib51" id="bib51">
        
        
            <a href="https://doi.org/10.1002/cne.23679" class="reference__title">A comparative examination of neural circuit and brain patterning between the lamprey and amphioxus reveals the evolutionary origin of the vertebrate visual center</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:DG+Suzuki%22" class="reference__authors_link">DG Suzuki</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:Y+Murakami%22" class="reference__authors_link">Y Murakami</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:H+Escriva%22" class="reference__authors_link">H Escriva</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:H+Wada%22" class="reference__authors_link">H Wada</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2015)</span>
        
            <div class="reference__origin"><i>Journal of Comparative Neurology</i> <b>523</b>:251–261.</div>
        
            <span class="doi"><a href="https://doi.org/10.1002/cne.23679" class="doi__link">https://doi.org/10.1002/cne.23679</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/25233869" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=A+comparative+examination+of+neural+circuit+and+brain+patterning+between+the+lamprey+and+amphioxus+reveals+the+evolutionary+origin+of+the+vertebrate+visual+center&amp;author=DG+Suzuki&amp;author=Y+Murakami&amp;author%5B2%5D=H+Escriva&amp;author%5B3%5D=H+Wada&amp;publication_year=2015&amp;journal=Journal+of+Comparative+Neurology&amp;volume=523&amp;pages=pp.+251%E2%80%93261&amp;pmid=25233869" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">52</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib52" id="bib52">
        
        
            <a href="https://doi.org/10.1007/s00427-001-0205-0" class="reference__title">Developmental expression of ascidian neurotransmitter synthesis genes. I. choline acetyltransferase and acetylcholine transporter genes</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:K+Takamura%22" class="reference__authors_link">K Takamura</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:T+Egawa%22" class="reference__authors_link">T Egawa</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:S+Ohnishi%22" class="reference__authors_link">S Ohnishi</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:T+Okada%22" class="reference__authors_link">T Okada</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:T+Fukuoka%22" class="reference__authors_link">T Fukuoka</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2002)</span>
        
            <div class="reference__origin"><i>Development Genes and Evolution</i> <b>212</b>:50–53.</div>
        
            <span class="doi"><a href="https://doi.org/10.1007/s00427-001-0205-0" class="doi__link">https://doi.org/10.1007/s00427-001-0205-0</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/11875658" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Developmental+expression+of+ascidian+neurotransmitter+synthesis+genes.+I.+choline+acetyltransferase+and+acetylcholine+transporter+genes&amp;author=K+Takamura&amp;author=T+Egawa&amp;author%5B2%5D=S+Ohnishi&amp;author%5B3%5D=T+Okada&amp;author%5B4%5D=T+Fukuoka&amp;publication_year=2002&amp;journal=Development+Genes+and+Evolution&amp;volume=212&amp;pages=pp.+50%E2%80%9353&amp;pmid=11875658" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">53</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib53" id="bib53">
        
        
            <a href="https://doi.org/10.2108/zsj.27.191" class="reference__title">Neural map of the larval central nervous system in the ascidian Ciona intestinalis</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:K+Takamura%22" class="reference__authors_link">K Takamura</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:N+Minamida%22" class="reference__authors_link">N Minamida</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:S+Okabe%22" class="reference__authors_link">S Okabe</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2010)</span>
        
            <div class="reference__origin"><i>Zoological Science</i> <b>27</b>:191–203.</div>
        
            <span class="doi"><a href="https://doi.org/10.2108/zsj.27.191" class="doi__link">https://doi.org/10.2108/zsj.27.191</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/20141424" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Neural+map+of+the+larval+central+nervous+system+in+the+ascidian+Ciona+intestinalis&amp;author=K+Takamura&amp;author=N+Minamida&amp;author%5B2%5D=S+Okabe&amp;publication_year=2010&amp;journal=Zoological+Science&amp;volume=27&amp;pages=pp.+191%E2%80%93203&amp;pmid=20141424" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">54</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib54" id="bib54">
        
        
            <a href="https://doi.org/10.1007/978-1-61779-210-6_15" class="reference__title">Ciona genetics</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:MT+Veeman%22" class="reference__authors_link">MT Veeman</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:S+Chiba%22" class="reference__authors_link">S Chiba</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:WC+Smith%22" class="reference__authors_link">WC Smith</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2011)</span>
        
            <div class="reference__origin"><i>Methods in Molecular Biology</i> <b>770</b>:401–422.</div>
        
            <span class="doi"><a href="https://doi.org/10.1007/978-1-61779-210-6_15" class="doi__link">https://doi.org/10.1007/978-1-61779-210-6_15</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/21805273" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Ciona+genetics&amp;author=MT+Veeman&amp;author=S+Chiba&amp;author%5B2%5D=WC+Smith&amp;publication_year=2011&amp;journal=Methods+in+Molecular+Biology&amp;volume=770&amp;pages=pp.+401%E2%80%93422&amp;pmid=21805273" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">55</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib55" id="bib55">
        
        
            <a href="https://doi.org/10.1073/pnas.1207580109" class="reference__title">Molecular analysis of the amphioxus frontal eye unravels the evolutionary origin of the retina and pigment cells of the vertebrate eye</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:P+Vopalensky%22" class="reference__authors_link">P Vopalensky</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:J+Pergner%22" class="reference__authors_link">J Pergner</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Liegertova%22" class="reference__authors_link">M Liegertova</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:E+Benito-Gutierrez%22" class="reference__authors_link">E Benito-Gutierrez</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:D+Arendt%22" class="reference__authors_link">D Arendt</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:Z+Kozmik%22" class="reference__authors_link">Z Kozmik</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2012)</span>
        
            <div class="reference__origin"><i>PNAS</i> <b>109</b>:15383–15388.</div>
        
            <span class="doi"><a href="https://doi.org/10.1073/pnas.1207580109" class="doi__link">https://doi.org/10.1073/pnas.1207580109</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/22949670" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Molecular+analysis+of+the+amphioxus+frontal+eye+unravels+the+evolutionary+origin+of+the+retina+and+pigment+cells+of+the+vertebrate+eye&amp;author=P+Vopalensky&amp;author=J+Pergner&amp;author%5B2%5D=M+Liegertova&amp;author%5B3%5D=E+Benito-Gutierrez&amp;author%5B4%5D=D+Arendt&amp;author%5B5%5D=Z+Kozmik&amp;publication_year=2012&amp;journal=PNAS&amp;volume=109&amp;pages=pp.+15383%E2%80%9315388&amp;pmid=22949670" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">56</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib56" id="bib56">
        
        
            <a href="https://doi.org/10.1002/gene.20032" class="reference__title">Identification of neuron-specific promoters in Ciona intestinalis</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:R+Yoshida%22" class="reference__authors_link">R Yoshida</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:D+Sakurai%22" class="reference__authors_link">D Sakurai</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:T+Horie%22" class="reference__authors_link">T Horie</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:I+Kawakami%22" class="reference__authors_link">I Kawakami</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Tsuda%22" class="reference__authors_link">M Tsuda</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:T+Kusakabe%22" class="reference__authors_link">T Kusakabe</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2004)</span>
        
            <div class="reference__origin"><i>Genesis</i> <b>39</b>:130–140.</div>
        
            <span class="doi"><a href="https://doi.org/10.1002/gene.20032" class="doi__link">https://doi.org/10.1002/gene.20032</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/15170699" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Identification+of+neuron-specific+promoters+in+Ciona+intestinalis&amp;author=R+Yoshida&amp;author=D+Sakurai&amp;author%5B2%5D=T+Horie&amp;author%5B3%5D=I+Kawakami&amp;author%5B4%5D=M+Tsuda&amp;author%5B5%5D=T+Kusakabe&amp;publication_year=2004&amp;journal=Genesis&amp;volume=39&amp;pages=pp.+130%E2%80%93140&amp;pmid=15170699" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">57</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib57" id="bib57">
        
        
            <a href="https://doi.org/10.1242/jeb.012864" class="reference__title">Shadow response in the blind cavefish Astyanax reveals conservation of a functional pineal eye</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Yoshizawa%22" class="reference__authors_link">M Yoshizawa</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:WR+Jeffery%22" class="reference__authors_link">WR Jeffery</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2008)</span>
        
            <div class="reference__origin"><i>Journal of Experimental Biology</i> <b>211</b>:292–299.</div>
        
            <span class="doi"><a href="https://doi.org/10.1242/jeb.012864" class="doi__link">https://doi.org/10.1242/jeb.012864</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/18203983" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Shadow+response+in+the+blind+cavefish+Astyanax+reveals+conservation+of+a+functional+pineal+eye&amp;author=M+Yoshizawa&amp;author=WR+Jeffery&amp;publication_year=2008&amp;journal=Journal+of+Experimental+Biology&amp;volume=211&amp;pages=pp.+292%E2%80%93299&amp;pmid=18203983" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">58</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib58" id="bib58">
        
        
            <a href="https://doi.org/10.1523/JNEUROSCI.0141-10.2010" class="reference__title">Synaptic and vesicular coexistence of VGLUT and VGAT in selected excitatory and inhibitory synapses</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:JF+Zander%22" class="reference__authors_link">JF Zander</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:A+M%C3%BCnster-Wandowski%22" class="reference__authors_link">A Münster-Wandowski</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:I+Brunk%22" class="reference__authors_link">I Brunk</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:I+Pahner%22" class="reference__authors_link">I Pahner</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:G+G%C3%B3mez-Lira%22" class="reference__authors_link">G Gómez-Lira</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:U+Heinemann%22" class="reference__authors_link">U Heinemann</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:R+Guti%C3%A9rrez%22" class="reference__authors_link">R Gutiérrez</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:G+Laube%22" class="reference__authors_link">G Laube</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:G+Ahnert-Hilger%22" class="reference__authors_link">G Ahnert-Hilger</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2010)</span>
        
            <div class="reference__origin"><i>Journal of Neuroscience</i> <b>30</b>:7634–7645.</div>
        
            <span class="doi"><a href="https://doi.org/10.1523/JNEUROSCI.0141-10.2010" class="doi__link">https://doi.org/10.1523/JNEUROSCI.0141-10.2010</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/20519538" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Synaptic+and+vesicular+coexistence+of+VGLUT+and+VGAT+in+selected+excitatory+and+inhibitory+synapses&amp;author=JF+Zander&amp;author=A+M%C3%BCnster-Wandowski&amp;author%5B2%5D=I+Brunk&amp;author%5B3%5D=I+Pahner&amp;author%5B4%5D=G+G%C3%B3mez-Lira&amp;author%5B5%5D=U+Heinemann&amp;author%5B6%5D=R+Guti%C3%A9rrez&amp;author%5B7%5D=G+Laube&amp;author%5B8%5D=G+Ahnert-Hilger&amp;publication_year=2010&amp;journal=Journal+of+Neuroscience&amp;volume=30&amp;pages=pp.+7634%E2%80%937645&amp;pmid=20519538" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">59</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib59" id="bib59">
        
        
            <a href="https://doi.org/10.1002/cne.21565" class="reference__title">Developmental expression of glutamic acid decarboxylase and of gamma-aminobutyric acid type B receptors in the ascidian Ciona intestinalis</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:G+Zega%22" class="reference__authors_link">G Zega</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Biggiogero%22" class="reference__authors_link">M Biggiogero</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:S+Groppelli%22" class="reference__authors_link">S Groppelli</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:S+Candiani%22" class="reference__authors_link">S Candiani</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:D+Oliveri%22" class="reference__authors_link">D Oliveri</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Parodi%22" class="reference__authors_link">M Parodi</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:M+Pestarino%22" class="reference__authors_link">M Pestarino</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:F+De+Bernardi%22" class="reference__authors_link">F De Bernardi</a></li>
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:R+Pennati%22" class="reference__authors_link">R Pennati</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2008)</span>
        
            <div class="reference__origin"><i>The Journal of Comparative Neurology</i> <b>506</b>:489–505.</div>
        
            <span class="doi"><a href="https://doi.org/10.1002/cne.21565" class="doi__link">https://doi.org/10.1002/cne.21565</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/18041772" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Developmental+expression+of+glutamic+acid+decarboxylase+and+of+gamma-aminobutyric+acid+type+B+receptors+in+the+ascidian+Ciona+intestinalis&amp;author=G+Zega&amp;author=M+Biggiogero&amp;author%5B2%5D=S+Groppelli&amp;author%5B3%5D=S+Candiani&amp;author%5B4%5D=D+Oliveri&amp;author%5B5%5D=M+Parodi&amp;author%5B6%5D=M+Pestarino&amp;author%5B7%5D=F+De+Bernardi&amp;author%5B8%5D=R+Pennati&amp;publication_year=2008&amp;journal=The+Journal+of+Comparative+Neurology&amp;volume=506&amp;pages=pp.+489%E2%80%93505&amp;pmid=18041772" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
    <li class="reference-list__item">
      <span class="reference-list__ordinal_number">60</span>
        <div class="reference" data-popup-label="See in references" data-popup-contents="bib60" id="bib60">
        
        
            <a href="https://doi.org/10.1007/978-981-10-7545-2_5" class="reference__title">Electroporation in ascidians: history, theory and protocols</a>
        
        
        
        
            <ol class="reference__authors_list">
                <li class="reference__author">
                  <a href="https://scholar.google.com/scholar?q=%22author:RW+Zeller%22" class="reference__authors_link">RW Zeller</a></li>
            </ol>
            <span class="reference__authors_list_suffix">(2018)</span>
        
            <div class="reference__origin"><i>Advances in Experimental Medicine and Biology</i> <b>1029</b>:37–48.</div>
        
            <span class="doi"><a href="https://doi.org/10.1007/978-981-10-7545-2_5" class="doi__link">https://doi.org/10.1007/978-981-10-7545-2_5</a></span>
        
            <ul class="reference__abstracts">
            <li class="reference__abstract"><a href="https://www.ncbi.nlm.nih.gov/pubmed/29542079" class="reference__abstract_link">PubMed</a></li>
            <li class="reference__abstract"><a href="https://scholar.google.com/scholar_lookup?title=Electroporation+in+ascidians%3A+history%2C+theory+and+protocols&amp;author=RW+Zeller&amp;publication_year=2018&amp;journal=Advances+in+Experimental+Medicine+and+Biology&amp;volume=1029&amp;pages=pp.+37%E2%80%9348&amp;pmid=29542079" class="reference__abstract_link">Google Scholar</a></li>
        
            </ul>
        </div>
    </li>
</ol>




  </div>

</section>


                
                    <section
    class="article-section "
   id="SA1"
  data-behaviour="ArticleSection"
  data-initial-state="closed"
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Decision letter</h2>
  </header>

  <div class="article-section__body">
      <div class="decision-letter-header">
    <ol class="listing-list">
        <li class="listing-list__item">
          <div class="profile-snippet">
            <div class="profile-snippet__container clearfix">
          
              <div class="profile-snippet__name">Oliver Hobert</div>
              <div class="profile-snippet__title">Reviewing Editor; Howard Hughes Medical Institute, Columbia University, United States</div>
            </div>
          </div>
        </li>
        <li class="listing-list__item">
          <div class="profile-snippet">
            <div class="profile-snippet__container clearfix">
          
              <div class="profile-snippet__name">Ronald L Calabrese</div>
              <div class="profile-snippet__title">Senior Editor; Emory University, United States</div>
            </div>
          </div>
        </li>
    </ol>
  <div class="decision-letter-header__main_text"><p class="paragraph">In the interests of transparency, eLife includes the editorial decision letter and accompanying author responses. A lightly edited version of the letter sent to the authors after peer review is shown, indicating the most substantive concerns; minor comments are not usually included.</p>
</div>
</div>
<p class="paragraph">Thank you for submitting your article "Parallel Visual Circuitry in a Basal Chordate" for consideration by <i>eLife</i>. Your article has been reviewed by Ronald Calabrese as the Senior Editor, a Reviewing Editor, Oliver Hobert, and two reviewers. The reviewers have opted to remain anonymous.</p>
<p class="paragraph">The reviewers have discussed the reviews with one another and the Reviewing Editor has drafted this decision to help you prepare a revised submission.</p>
<p class="paragraph">The reviewers – and the Reviewing Editor – agree that the manuscript reports an interesting, exciting set of findings that provide new insight into how visual systems evolve. However, there is also agreement that the evidence behind the GABA receptors being involved in the behavioral response to dimming is entirely indirect, and would be substantially strengthened by a pharmacological parallel to the Glutamate receptor antagonist data. That is, according to the disinhibition model, acute blockade of GABA(A) receptors with a pharmacological antagonist should produce a "hyperactive" movement phenotype akin to the <i>frm</i> mutant animal, but one that should still be capable of phototaxis (but not a dimming response). Such a result would provide an elegant "double dissociation" that would parallel the findings with the AMPA receptor antagonist.</p>
<p class="paragraph">There is also agreement that the manuscript requires an extensive revision to the Introduction that puts the work in a broader context. At present, the manuscript begins largely with a description of the <i>Ciona</i> connectome, in relation to other complete connectomes, and then plunges directly into a more detailed description of ganglia, cells and synapses. A broader audience could be engaged by the work if the authors identified the key question of interest, and provides some of the background material currently found in the Discussion section, before diving into the pertinent details.</p>
<p class="paragraph"><i>Reviewer #1:</i></p>
<p class="paragraph">How the functional architecture of visual systems has evolved to subserve different behavioral goals is a fundamental question of broad interest. At present, while we have a deep understanding of visual system organization in a few experimental models, such a fundamental question can be enriched through the exploration of evolutionarily divergent organisms. In this context, Smith and colleagues integrate a new description of neurotransmitter expression patterns, ultrastructural connectivity, pharmacology and behavior to derive new insights into the architecture of the Ascidian <i>Ciona</i> visual system.</p>
<p class="paragraph">First, by mapping RNA expression patterns onto neurons spanning the <i>Ciona</i> nervous system using a combination of HCR in situs and image registration, they assign neurotransmitter types to many neurons. Importantly, these studies reveal three classes of ocellus photoreceptors – one that uses glutamate as a transmitter, one that uses GABA, and one that appears to release both. Next, using a glutamate receptor antagonist, they demonstrate that blockade of signaling from glutamatergic photoreceptors blocks phototaxis, but does not affect a second behavior evoked by transient dimming. Finally, consistent with the idea that a subset of photoreceptors could control the dimming response by depolarizing to darkness, and releasing GABA, the authors describe a mutant in which visual input to motor pathways is disrupted, leading to an animal that swims constitutively.</p>
<p class="paragraph">Overall, this manuscript reports an interesting, exciting set of findings that provide new insight into how visual systems evolve. I find the idea that there might be photoreceptors that appear to hyperpolarize to light and release GABA particularly exciting, and it will be fascinating to learn more about how these photoreceptors are related to retinal and pineal photoreceptors in vertebrates. However, I do feel that the evidence behind these receptors being involved in the behavioral response to dimming is entirely indirect, and would be substantially strengthened by a pharmacological parallel to the Glutamate receptor antagonist data. That is, according to the disinhibition model, acute blockade of GABA(A) receptors with a pharmacological antagonist should produce a "hyperactive" movement phenotype akin to the <i>frm</i> mutant animal, but one that should still be capable of phototaxis (but not a dimming response). Such a result would provide an elegant "double dissociation" that would parallel the findings with the AMPA receptor antagonist.</p>
<p class="paragraph"><i>Reviewer #2:</i></p>
<p class="paragraph">The fact that there is a full map of connections in <i>Ciona</i> provides a great opportunity to dissect circuits. Even better, the tools are there to perform some genetic and pharmacological pertubations, and evaluate effects on behavior. This study begins to exploit these features in a study of the <i>Ciona</i> visual system. The authors dug deeper into two circuits that begin with photoreception. They used transgenic reporter animals and in situ hybridization to define the use of two classical neurotransmitters, glutamate and GABA. Surprisingly, one type of photoreceptor uses GABA, an inhibitory neurotransmitter not previously described as used by photoreceptors in any species. From the known connections, they also make a case for how the two circuits are connected, and further suggest that one of the circuits is disinhibitory, perhaps along with other sensory inputs, for oscillatory swimming behavior. Through the use of a specific antagonist for a glutamate receptor they are able to show that one of the photoreceptor circuits is involved with detection of the direction of light (phototaxis), using a behavioral assay. Interestingly, inhibition of phototaxis has no effect on the other circuit, which detects dimming. However, it is likely that there is cross talk between the two photoreceptor circuits, as suggested by the known anatomy.</p>
<p class="paragraph">Overall this study provides a very nice example of photoreceptor directed behavior as controlled by two different circuits. It provides food for though regarding the evolution of different types of visually guided behaviors and the use of different types of photoreceptors. Optogenetic manipulations and calcium imaging (tried by the authors but did not work due to technical limitations) would greatly add to this story, but as it stands it constitutes a very nice addition to our understanding of a sensory circuit and behavior.</p>




      <span class="doi doi--article-section"><a href="https://doi.org/10.7554/eLife.44753.036" class="doi__link">https://doi.org/10.7554/eLife.44753.036</a></span>
  </div>

</section>


                
                    <section
    class="article-section "
   id="SA2"
  data-behaviour="ArticleSection"
  data-initial-state="closed"
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Author response</h2>
  </header>

  <div class="article-section__body">
      <p class="paragraph"><i>The reviewers – and the reviewing editor – agree that the manuscript reports an interesting, exciting set of findings that provide new insight into how visual systems evolve. […] A broader audience could be engaged by the work if the authors identified the key question of interest, and provides some of the background material currently found in the Discussion section, before diving into the pertinent details.</i></p>
<p class="paragraph">In our revised manuscript we have thoroughly addressed the reviewers concerns and have included extensive new data from behavioral studies using a GABA receptor antagonist (Figure 7 in the revised manuscript, and related text). As you will read in the text, our results with the GABA receptor antagonist (picrotoxin) agree thoroughly with our disinhibition model (and with our observations of the <i>frm</i> mutant). The use of the GABA receptor antagonist was an excellent suggestion, and we feel that the results presented here greatly strengthen our model. As you will see in Figure 7, picrotoxin (like the <i>frm</i> mutant) leads to increased spontaneous swimming. Moreover, picrotoxin also leads to a dramatic reduction in the dimming response. We then show with use of picrotoxin combined with the AMPAR antagonist perampanel that the residual dimming response is due to parallel activation of the excitatory circuit. Finally, we show that picrotoxin-treated larvae are still capable of phototaxis. However, we observed that the phototaxis ability of the picrotoxin-treated larvae was somewhat dampened in comparison to controls, which we attribute to excitotoxicity of prolonged picrotoxin exposure (Movie5 documents the toxicity of prolonged picrotoxin exposure).</p>
<p class="paragraph">We have also extensively rewritten the Introduction along the lines suggested by the reviewer. Additionally, as requested, we have included in the text the number of animals tested using the pOpsin1/VGAT Kaede combination (n=5). Finally, we have collected additional data on neurotransmitter use by cells of the motor ganglion. These additional data are presented in revised versions of Figure 4 and Figure 4-figure supplement 1. Our conclusions regarding the minimal circuit are unchanged by this additional data; however, we are revising our neurotransmitter assignment to the anterior pair of ACINs. This reassignment was undertaken after consultation with Kerrianne Ryan (author of the <i>Ciona</i> connectome manuscript). We also include an approved personal communication from Dr. Ryan in this section.</p>




      <span class="doi doi--article-section"><a href="https://doi.org/10.7554/eLife.44753.037" class="doi__link">https://doi.org/10.7554/eLife.44753.037</a></span>
  </div>

</section>


                
                    <section
    class="article-section "
   id="info"
  data-behaviour="ArticleSection"
  data-initial-state="closed"
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Article and author information</h2>
  </header>

  <div class="article-section__body">
      <h3 class="authors-details__heading">Author details</h3>
<ol class="authors-details__authors">
    <li class="authors-details__author"><div class="author-details" data-popup-contents="x8d8d9914" id="x8d8d9914">

  <h4 class="author-details__name">Matthew J Kourakis</h4>

    <section class="author-details__section">
        <span class="author-details__text">Neuroscience Research Institute, University of California, Santa Barbara, Santa Barbara, United States</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Data curation, Formal analysis, Supervision, Investigation, Methodology, Writing—review and editing</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contributed equally with</h5>
        <span class="author-details__text">Cezar Borba</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>

  <section class="author-details__section">
    <span class="orcid">
      <a href="https://orcid.org/0000-0002-1261-3811">
        <picture>
          <source srcset="/assets/patterns/img/icons/orcid.b96370b9.svg" type="image/svg+xml">
          <img src="/assets/patterns/img/icons/orcid.10f6112b.png" class="orcid__icon"
               alt="ORCID icon">
        </picture> <span class="visuallyhidden">"This ORCID iD identifies the author of this article:"</span>
    	 0000-0002-1261-3811</a>
    </span>
  </section>


</div>

</li>
    <li class="authors-details__author"><div class="author-details" data-popup-contents="xf3e51472" id="xf3e51472">

  <h4 class="author-details__name">Cezar Borba</h4>

    <section class="author-details__section">
        <span class="author-details__text">Department of Molecular, Cell and Developmental Biology, University of California, Santa Barbara, Santa Barbara, United States</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Software, Formal analysis, Investigation, Methodology, Writing—review and editing</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contributed equally with</h5>
        <span class="author-details__text">Matthew J Kourakis</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>



</div>

</li>
    <li class="authors-details__author"><div class="author-details" data-popup-contents="xb536f34f" id="xb536f34f">

  <h4 class="author-details__name">Angela Zhang</h4>

    <section class="author-details__section">
        <span class="author-details__text">Department of Electrical and Computer Engineering, University of California, Santa Barbara, Santa Barbara, United States</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Software, Formal analysis, Methodology, Writing—review and editing</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>



</div>

</li>
    <li class="authors-details__author"><div class="author-details" data-popup-contents="x1d85dfc3" id="x1d85dfc3">

  <h4 class="author-details__name">Erin Newman-Smith</h4>

    <section class="author-details__section">
        <ol class="author-details__list list list--bullet">
            <li class="author-details__text">Neuroscience Research Institute, University of California, Santa Barbara, Santa Barbara, United States</li>
            <li class="author-details__text">Department of Molecular, Cell and Developmental Biology, University of California, Santa Barbara, Santa Barbara, United States</li>
        </ol>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Conceptualization, Formal analysis, Investigation, Methodology, Writing—review and editing</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>



</div>

</li>
    <li class="authors-details__author"><div class="author-details" data-popup-contents="x6107dd5d" id="x6107dd5d">

  <h4 class="author-details__name">Priscilla Salas</h4>

    <section class="author-details__section">
        <span class="author-details__text">Department of Molecular, Cell and Developmental Biology, University of California, Santa Barbara, Santa Barbara, United States</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Investigation, Writing—review and editing</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>



</div>

</li>
    <li class="authors-details__author"><div class="author-details" data-popup-contents="x8b937bbf" id="x8b937bbf">

  <h4 class="author-details__name">B Manjunath</h4>

    <section class="author-details__section">
        <span class="author-details__text">Neuroscience Research Institute, University of California, Santa Barbara, Santa Barbara, United States</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Conceptualization, Supervision, Funding acquisition, Project administration, Writing—review and editing</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>



</div>

</li>
    <li class="authors-details__author"><div class="author-details" data-popup-contents="xa3814a31" id="xa3814a31">

  <h4 class="author-details__name">William C Smith</h4>

    <section class="author-details__section">
        <ol class="author-details__list list list--bullet">
            <li class="author-details__text">Neuroscience Research Institute, University of California, Santa Barbara, Santa Barbara, United States</li>
            <li class="author-details__text">Department of Molecular, Cell and Developmental Biology, University of California, Santa Barbara, Santa Barbara, United States</li>
        </ol>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Contribution</h5>
        <span class="author-details__text">Conceptualization, Funding acquisition, Writing—original draft, Project administration</span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">For correspondence</h5>
        <span class="author-details__text"><a href="mailto:w_smith@ucsb.edu">w_smith@ucsb.edu</a></span>
    </section>
    <section class="author-details__section">
        <h5 class="author-details__heading">Competing interests</h5>
        <span class="author-details__text">No competing interests declared</span>
    </section>

  <section class="author-details__section">
    <span class="orcid">
      <a href="https://orcid.org/0000-0002-6257-7695">
        <picture>
          <source srcset="/assets/patterns/img/icons/orcid.b96370b9.svg" type="image/svg+xml">
          <img src="/assets/patterns/img/icons/orcid.10f6112b.png" class="orcid__icon"
               alt="ORCID icon">
        </picture> <span class="visuallyhidden">"This ORCID iD identifies the author of this article:"</span>
    	 0000-0002-6257-7695</a>
    </span>
  </section>


</div>

</li>
</ol>
<section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Funding</h3>
  </header>

  <div class="article-section__body">
      <section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h4 class="article-section__header_text">National Institute of Neurological Disorders and Stroke (R01NS103774)</h4>
  </header>

  <div class="article-section__body">
      

    <ul class="list list--bullet">
            <li>William C Smith</li>
    </ul>





  </div>

</section>
<p class="paragraph">The funders had no role in study design, data collection and interpretation, or the decision to submit the work for publication.</p>




  </div>

</section>
<section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Acknowledgements</h3>
  </header>

  <div class="article-section__body">
      <p class="paragraph">We thank Takeo Horie and Takahiro Kusakabe for the opsin1 promoter construct; Yasunori Sasakura for the stable pVGAT &gt;kaede line and pVACHT &gt;CFP plasmid; Haruo Okado for the pAMPAR &gt;GFP construct. Kerrianne Ryan for her helpful discussion and sharing unpublished data. Chelsea Parlett-Pelleriti for her advice on statistical analysis. We acknowledge the use of the NRI-MCDB Microscopy Facility and the Resonant Scanning Confocal supported by NSF MRI grant 1625770. This work supported by an award from NIH (NS103774) to WCS and BM.</p>




  </div>

</section>
<section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Senior Editor</h3>
  </header>

  <div class="article-section__body">
      
    <ol class="list">
            <li>Ronald L Calabrese, Emory University, United States</li>
    </ol>






  </div>

</section>
<section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Reviewing Editor</h3>
  </header>

  <div class="article-section__body">
      
    <ol class="list">
            <li>Oliver Hobert, Howard Hughes Medical Institute, Columbia University, United States</li>
    </ol>






  </div>

</section>
<section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Publication history</h3>
  </header>

  <div class="article-section__body">
      
    <ol class="list list--bullet">
            <li>Received: December 28, 2018</li>
            <li>Accepted: April 11, 2019</li>
            <li>Accepted Manuscript published: <a href="/articles/44753v1">April 18, 2019 (version 1)</a></li>
            <li>Version of Record published: <a href="/articles/44753">May 3, 2019 (version 2)</a></li>
    </ol>






  </div>

</section>
<section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h3 class="article-section__header_text">Copyright</h3>
  </header>

  <div class="article-section__body">
      <p>© 2019, Kourakis et al.</p><p>This article is distributed under the terms of the <a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution License</a>, which permits unrestricted use and redistribution provided that the original author and source are credited.</p>



  </div>

</section>




  </div>

</section>


                
                    <section
    class="article-section "
   id="metrics"
  data-behaviour="ArticleSection"
  data-initial-state="closed"
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Metrics</h2>
  </header>

  <div class="article-section__body">
      <ul class="statistic-collection clearfix">
    <li class="statistic-collection__item">
      <dl class="statistic">
        <dd class="statistic__value">
          807
        </dd>
        <dt class="statistic__label">
          Page views
        </dt>
      </dl>
    </li>
    <li class="statistic-collection__item">
      <dl class="statistic">
        <dd class="statistic__value">
          173
        </dd>
        <dt class="statistic__label">
          Downloads
        </dt>
      </dl>
    </li>
    <li class="statistic-collection__item">
      <dl class="statistic">
        <dd class="statistic__value">
          0
        </dd>
        <dt class="statistic__label">
          Citations
        </dt>
      </dl>
    </li>
</ul>
<p class="paragraph">Article citation count generated by polling the highest count across the following sources: <a href="">Crossref</a>, <a href="">PubMed Central</a>, <a href="">Scopus</a>.</p>




  </div>

</section>


                
                    <section
    class="article-section "
  
  
  
>

  <header class="article-section__header">
    <h2 class="article-section__header_text">Download links</h2>
  </header>

  <div class="article-section__body">
      <div data-behaviour="ArticleDownloadLinksList" id="downloads" aria-labelledby="downloads-label">
  <div class="visuallyhidden"><span id="downloads-label">A two-part list of links to download the article, or parts of the article, in various formats.</span></div>

    <h3 class="article-download-links-list__heading">Downloads<span class="visuallyhidden"> (link to download the article as PDF)</span></h3>
    <ul class="article-download-list">
       <li><a href="https://elifesciences.org/download/aHR0cHM6Ly9jZG4uZWxpZmVzY2llbmNlcy5vcmcvYXJ0aWNsZXMvNDQ3NTMvZWxpZmUtNDQ3NTMtdjIucGRm/elife-44753-v2.pdf?_hash=CfyqOqVryCR4OjcMTfcdpeIWAGZznmh9jXksYKYChCw%3D" class="article-download-links-list__link"

         data-article-identifier="10.7554/eLife.44753"
         data-download-type="pdf-article"

       >Article PDF</a></li>
       <li><a href="https://elifesciences.org/download/aHR0cHM6Ly9jZG4uZWxpZmVzY2llbmNlcy5vcmcvYXJ0aWNsZXMvNDQ3NTMvZWxpZmUtNDQ3NTMtZmlndXJlcy12Mi5wZGY=/elife-44753-figures-v2.pdf?_hash=x4qA8GP%2BKBA2SOVJsL3falcqZCUNChW4fqaIfFIjgHk%3D" class="article-download-links-list__link"

         data-article-identifier="10.7554/eLife.44753"
         data-download-type="pdf-figures"

       >Figures PDF</a></li>
    </ul>
    <h3 class="article-download-links-list__heading">Download citations<span class="visuallyhidden"> (links to download the citations from this article in formats compatible with various reference manager tools)</span></h3>
    <ul class="article-download-list">
       <li><a href="/articles/44753.bib" class="article-download-links-list__link"


       >BibTeX</a></li>
       <li><a href="/articles/44753.ris" class="article-download-links-list__link"


       >RIS</a></li>
    </ul>
    <h3 class="article-download-links-list__heading">Open citations<span class="visuallyhidden"> (links to open the citations from this article in various online reference manager services)</span></h3>
    <ul class="article-download-list">
       <li><a href="https://www.mendeley.com/import?doi=10.7554/eLife.44753" class="article-download-links-list__link"


       >Mendeley</a></li>
       <li><a href="https://www.readcube.com/articles/10.7554/eLife.44753" class="article-download-links-list__link"


       >ReadCube</a></li>
       <li><a href="papers2://url/https%3A%2F%2Felifesciences.org%2Farticles%2F44753?title=Parallel+visual+circuitry+in+a+basal+chordate" class="article-download-links-list__link"


       >Papers</a></li>
       <li><a href="http://www.citeulike.org/posturl?url=https%3A%2F%2Felifesciences.org%2Farticles%2F44753&amp;title=Parallel+visual+circuitry+in+a+basal+chordate&amp;doi=10.7554/eLife.44753" class="article-download-links-list__link"


       >CiteULike</a></li>
    </ul>

</div>




  </div>

</section>


                
                    
<section class="article-meta">

  <div class="article-meta__container">


    <section class="article-meta__group">
      <h4 class="article-meta__group_title">Categories and tags</h4>
      <ul class="article-meta__link_list">
          <li class="article-meta__link_list_item">
            <a href="/articles/research-article" class="article-meta__link">Research Article</a></li>
          <li class="article-meta__link_list_item">
            <a href="/subjects/neuroscience" class="article-meta__link">Neuroscience</a></li>
          <li class="article-meta__link_list_item">
            <a href="/search?for=connectome" class="article-meta__link">connectome</a></li>
          <li class="article-meta__link_list_item">
            <a href="/search?for=visuomotor" class="article-meta__link">visuomotor</a></li>
          <li class="article-meta__link_list_item">
            <a href="/search?for=behavior" class="article-meta__link">behavior</a></li>
      </ul>
    </section>


    <section class="article-meta__group">
      <h4 class="article-meta__group_title">Research organism</h4>
      <ul class="article-meta__link_list">
          <li class="article-meta__link_list_item">
            <a href="/search?for=C.%20intestinalis" class="article-meta__link"><i>C. intestinalis</i></a></li>
      </ul>
    </section>


  </div>

</section>


                
                
            
        

        </div>

        
            <div class="grid__item one-whole

                large--four-twelfths x-large--three-twelfths
                 grid-secondary-column">

                <div class="grid-secondary-column__item grid-secondary-column__item--wide-only">

                    <div>


  <ol class="listing-list ">
    <li class="listing-list__item"><div class="teaser teaser--secondary teaser--related ">

    <ol class="teaser__context_label_list" aria-label="These research categories are for the following article">
        <li class="teaser__context_label_item">

            <span class="teaser__context_label">Of interest</span>
        </li>
    </ol>

  <header class="teaser__header">


    <h4 class="teaser__header_text">
        <a href="/articles/48779"   class="teaser__header_text_link">An arbitrary-spectrum spatial visual stimulator for vision research</a>
    </h4>

    <div class="teaser__secondary_info">
      Katrin Franke et al.
    </div>

  </header>


  <footer class="teaser__footer">

      <div class="meta">
      
          <a class="meta__type" href="/articles/tools-resources" >Tools and Resources</a>
      
      
          
          <span class="date"> Updated <time datetime="2019-10-08">Oct 8, 2019</time></span>
      </div>


  </footer>
</div>
</li><li class="listing-list__item"><a href="#listing" class="see-more-link">Further reading</a>
</li></ol>


</div>


                </div>

            </div>

        
    </div>

</div>

    
        <div class="wrapper listing-read-more">

  <div class="grid">

    <div class="content-container grid__item
              one-whole
              large--ten-twelfths
              push--large--one-twelfth
              x-large--eight-twelfths
              push--x-large--two-twelfths
              grid-column">

        <div class="listing-list-heading">
          <h3 class="list-heading">Further reading</h3>
        </div>

      <ol class="listing-list listing-list--read-more" id="listing">
          <li class="listing-list__item listing-list__item--related">
            <div class="listing-list__divider"></div>
              <header class="content-header content-header--read-more clearfix content-header--header">
              
                  <ol class="content-header__subject_list">
                      <li class="content-header__subject_list_item">
                        <span class="content-header__subject">Neuroscience</span>
                      </li>
                  </ol>
              
                <div class="content-header__body">
                  <h1 class="content-header__title content-header__title--long">
                    <a href="/articles/48779" class="content-header__title_link">An arbitrary-spectrum spatial visual stimulator for vision research</a>
                  </h1>
                </div>
              
                  <div class="content-header__authors content-header__authors--line">Katrin Franke et al.</div>
              
                  <div class="content-header__meta">
                    <div class="meta">
                    
                        <a class="meta__type" href="/articles/tools-resources" >Tools and Resources</a>
                    
                    
                        
                        <span class="date"> Updated <time datetime="2019-10-08">Oct 8, 2019</time></span>
                    </div>
                  </div>
              
              </header>
          </li>
          <li class="listing-list__item ">
            <div class="listing-list__divider"></div>
              <header class="content-header content-header--read-more clearfix content-header--header">
              
                  <ol class="content-header__subject_list">
                      <li class="content-header__subject_list_item">
                        <span class="content-header__subject">Neuroscience</span>
                      </li>
                  </ol>
              
                <div class="content-header__body">
                  <h1 class="content-header__title content-header__title--long">
                    <a href="/articles/47996" class="content-header__title_link">Self-organization of modular network architecture by activity-dependent neuronal migration and outgrowth</a>
                  </h1>
                </div>
              
                  <div class="content-header__authors content-header__authors--line">Samora Okujeni, Ulrich Egert</div>
              
                  <div class="content-header__meta">
                    <div class="meta">
                    
                        <a class="meta__type" href="/articles/research-article" >Research Article</a>
                    
                    
                        
                        <span class="date"> Updated <time datetime="2019-10-08">Oct 8, 2019</time></span>
                    </div>
                  </div>
              
              </header>
          </li>
          <li class="listing-list__item ">
            <div class="listing-list__divider"></div>
              <header class="content-header content-header--read-more clearfix content-header--header">
              
                  <ol class="content-header__subject_list">
                      <li class="content-header__subject_list_item">
                        <span class="content-header__subject">Neuroscience</span>
                      </li>
                  </ol>
              
                <div class="content-header__body">
                  <h1 class="content-header__title content-header__title--long">
                    <a href="/articles/48114" class="content-header__title_link">Pretectal neurons control hunting behaviour</a>
                  </h1>
                </div>
              
                  <div class="content-header__authors content-header__authors--line">Paride Antinucci et al.</div>
              
                  <div class="content-header__meta">
                    <div class="meta">
                    
                        <a class="meta__type" href="/articles/research-article" >Research Article</a>
                    
                    
                        
                        <span class="date"> <time datetime="2019-10-08">Oct 8, 2019</time></span>
                    </div>
                  </div>
              
              </header>
          </li>

      </ol>


    </div>

  </div>

</div>


    

    </div>


            </main>

                            <section class="email-cta">

</section>

            
                              <div class="main-menu" id="mainMenu" data-behaviour="MainMenu" tabindex="0">
    <nav class="main-menu__container" role="navigation">
        <h3 class="list-heading">Menu</h3>
        <ul class="main-menu__list">
          <li class="main-menu__list_item">
            <a href="/subjects" class="main-menu__list_link">Research categories</a>
          </li>
          <li class="main-menu__list_item">
            <a href="https://submit.elifesciences.org/html/elife_author_instructions.html" class="main-menu__list_link">Author guide</a>
          </li>
          <li class="main-menu__list_item">
            <a href="https://submit.elifesciences.org/html/elife_reviewer_instructions.html" class="main-menu__list_link">Reviewer guide</a>
          </li>
          <li class="main-menu__list_item">
            <a href="/about" class="main-menu__list_link">About</a>
          </li>
          <li class="main-menu__list_item">
            <a href="/inside-elife" class="main-menu__list_link">Inside eLife</a>
          </li>
          <li class="main-menu__list_item">
            <a href="/community" class="main-menu__list_link">Community</a>
          </li>
          <li class="main-menu__list_item">
            <a href="/labs" class="main-menu__list_link">Innovation</a>
          </li>
        </ul>
      <a href="#siteHeader" class="to-top-link">Back to top</a>
    </nav>
  </div>

<ol class="investor-logos" role="contentinfo" aria-label="eLife is funded by these organisations">
    <li class="investor-logos__item">

      <div class="investor-logos__container">
        <picture class="investor-logos__picture">
            <source srcset="/assets/images/investors/hhmi.9d0951a2.svg"
                    type="image/svg+xml"
              >
            <source srcset="/assets/images/investors/hhmi@2x.e63a8d68.webp 2x, /assets/images/investors/hhmi@1x.c1e8d1b9.webp 1x"
                    type="image/webp"
              >
            <source srcset="/assets/images/investors/hhmi@2x.58718155.png 2x, /assets/images/investors/hhmi@1x.ad4627a8.png 1x"
                    type="image/png"
              >
            <img src="/assets/images/investors/hhmi@1x.ad4627a8.png"
                 
                 alt="Howard Hughes Medical Institute"
                 class="investor-logos__img"
            >
        </picture>
      </div>

    </li>
    <li class="investor-logos__item">

      <div class="investor-logos__container">
        <picture class="investor-logos__picture">
            <source srcset="/assets/images/investors/wellcome.813f8634.svg"
                    type="image/svg+xml"
              >
            <source srcset="/assets/images/investors/wellcome@2x.993dd002.webp 2x, /assets/images/investors/wellcome@1x.1fd7fa84.webp 1x"
                    type="image/webp"
              >
            <source srcset="/assets/images/investors/wellcome@2x.75f8d6f9.png 2x, /assets/images/investors/wellcome@1x.ff6d9292.png 1x"
                    type="image/png"
              >
            <img src="/assets/images/investors/wellcome@1x.ff6d9292.png"
                 
                 alt="Wellcome Trust"
                 class="investor-logos__img"
            >
        </picture>
      </div>

    </li>
    <li class="investor-logos__item">

      <div class="investor-logos__container">
        <picture class="investor-logos__picture">
            <source srcset="/assets/images/investors/max.090f7458.svg"
                    type="image/svg+xml"
              >
            <source srcset="/assets/images/investors/max@2x.3215c512.webp 2x, /assets/images/investors/max@1x.8fabbf5a.webp 1x"
                    type="image/webp"
              >
            <source srcset="/assets/images/investors/max@2x.d233b5b1.png 2x, /assets/images/investors/max@1x.5daaf9a0.png 1x"
                    type="image/png"
              >
            <img src="/assets/images/investors/max@1x.5daaf9a0.png"
                 
                 alt="Max-Planck-Gesellschaft"
                 class="investor-logos__img"
            >
        </picture>
      </div>

    </li>
    <li class="investor-logos__item">

      <div class="investor-logos__container">
        <picture class="investor-logos__picture">
            <source srcset="/assets/images/investors/kaw.c1bb2e4b.svg"
                    type="image/svg+xml"
              >
            <source srcset="/assets/images/investors/kaw@2x.0afbcf57.webp 2x, /assets/images/investors/kaw@1x.04f3c517.webp 1x"
                    type="image/webp"
              >
            <source srcset="/assets/images/investors/kaw@2x.cc1a5adc.png 2x, /assets/images/investors/kaw@1x.318b49a9.png 1x"
                    type="image/png"
              >
            <img src="/assets/images/investors/kaw@1x.318b49a9.png"
                 
                 alt="Knut and Alice Wallenberg Foundation"
                 class="investor-logos__img"
            >
        </picture>
      </div>

    </li>
</ol>

<footer class="site-footer">

  <div class="site-footer__container">

    <div class="grid-cell">

      <nav class="footer-navigation">
        <ul class="footer-navigation__list">
          <li class="footer-navigation__list_item">
            <a href="/about" class="footer-navigation__list_link">About</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/jobs" class="footer-navigation__list_link">Jobs</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/who-we-work-with" class="footer-navigation__list_link">Who we work with</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/alerts" class="footer-navigation__list_link">Alerts</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/contact" class="footer-navigation__list_link">Contact</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/terms" class="footer-navigation__list_link">Terms and conditions</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/privacy" class="footer-navigation__list_link">Privacy notice</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/inside-elife" class="footer-navigation__list_link">Inside eLife</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/archive/2019" class="footer-navigation__list_link">Monthly archive</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/labs" class="footer-navigation__list_link">Innovation</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/for-the-press" class="footer-navigation__list_link">For the press</a>
          </li>
          <li class="footer-navigation__list_item">
            <a href="/resources" class="footer-navigation__list_link">Resources</a>
          </li>
        </ul>
      </nav>

      <div class="github-link-wrapper">
        <a href="https://github.com/elifesciences" class="github-link">
          <div class="github-link--text">Find us on GitHub</div>
        </a>
      </div>

    </div>

    <div class="grid-cell">

      <div class="site-smallprint">
        <small>eLife is a non-profit organisation inspired by research funders and led by scientists. Our mission is to help scientists accelerate discovery by operating a platform for research communication that encourages and recognises the most responsible behaviours in science.</small>
        <small>eLife Sciences Publications, Ltd is a limited liability non-profit non-stock corporation incorporated in the State of Delaware, USA, with company number 5030732, and is registered in the UK with company number FC030576 and branch number BR015634 at the address:</small>

        <address>
          eLife Sciences Publications, Ltd<br>
          Westbrook Centre, Milton Road<br>
          Cambridge CB4 1YG<br>
          UK
        </address>
      </div>

    </div>

    <div class="grid-cell">
      <div class="site-smallprint site-smallprint__copyright">
        <small>© <time>2019</time> eLife Sciences Publications Ltd. Subject to a <a href="https://creativecommons.org/licenses/by/4.0/" rel="license" class="site-smallprint__copyright_link">Creative Commons Attribution license</a>, except where otherwise noted. ISSN:&nbsp;2050-084X</small>
      </div>
    </div>

  </div>

</footer>

            
        </div>

    </div>
    <link href="/assets/patterns/css/all.ad4007d5.css" rel="stylesheet">


<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"c53c018d69","applicationID":"29775807","transactionName":"NQQGNUZZWEACVhdZWQxOJQJAUVldTFQRRF8BDQE=","queueTime":0,"applicationTime":287,"atts":"GUMFQw5DS04=","errorBeacon":"bam.nr-data.net","agent":""}</script></body>

</html>