Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

assets.yaml 132 KB

You have to be logged in to leave a comment. Sign In
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
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: microscopy approach; cell population imaging
  7. schemaKey: ApproachType
  8. - name: behavioral approach
  9. schemaKey: ApproachType
  10. blobDateModified: '2024-06-12T20:09:16.120000-07:00'
  11. contentSize: 26939654811
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/e98c6a55-f11e-4624-a2f7-f6ad712b1a6c/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/95f/212/95f21214-371d-4207-9f09-4d6f40e15182
  15. dateModified: '2024-06-23T22:36:39.166916-07:00'
  16. datePublished: '2024-06-25T00:15:48.654586+00:00'
  17. digest:
  18. dandi:dandi-etag: bbec8f769f12c73392a73ba94e2c21d6-402
  19. dandi:sha2-256: 51de9bda77611f4e9679e9845f4bb1a5539052f62ff7a0fd2b0ea9060f91d2e6
  20. encodingFormat: application/x-nwb
  21. id: dandiasset:e98c6a55-f11e-4624-a2f7-f6ad712b1a6c
  22. identifier: e98c6a55-f11e-4624-a2f7-f6ad712b1a6c
  23. measurementTechnique:
  24. - name: analytical technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: behavioral technique
  27. schemaKey: MeasurementTechniqueType
  28. path: sub-2022-06-14-13-SWF702/sub-2022-06-14-13-SWF702_ses-20220614_behavior+image+ophys.nwb
  29. publishedBy:
  30. endDate: '2024-06-25T00:15:48.654586+00:00'
  31. id: urn:uuid:74d96b89-7550-402c-9cb2-d1981a8a6000
  32. name: DANDI publish
  33. schemaKey: PublishActivity
  34. startDate: '2024-06-25T00:15:48.654586+00:00'
  35. wasAssociatedWith:
  36. - id: urn:uuid:c22a1990-2e7c-4384-a8d2-8f550ee41bc7
  37. identifier: RRID:SCR_017571
  38. name: DANDI API
  39. schemaKey: Software
  40. version: 0.1.0
  41. relatedResource:
  42. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  43. relation: dcite:IsDescribedBy
  44. schemaKey: Resource
  45. schemaKey: Asset
  46. schemaVersion: 0.6.7
  47. variableMeasured:
  48. - schemaKey: PropertyValue
  49. value: ProcessingModule
  50. - schemaKey: PropertyValue
  51. value: BehavioralTimeSeries
  52. - schemaKey: PropertyValue
  53. value: PlaneSegmentation
  54. - schemaKey: PropertyValue
  55. value: BehavioralEvents
  56. wasAttributedTo:
  57. - age:
  58. schemaKey: PropertyValue
  59. unitText: ISO-8601 duration
  60. value: P0D
  61. valueReference:
  62. schemaKey: PropertyValue
  63. value: dandi:BirthReference
  64. identifier: 2022-06-14-13-SWF702
  65. schemaKey: Participant
  66. sex:
  67. name: Other
  68. schemaKey: SexType
  69. species:
  70. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  71. name: Caenorhabditis elegans
  72. schemaKey: SpeciesType
  73. wasGeneratedBy:
  74. - description: 'Ventral cord at the bottom when head points to the left on confocal
  75. images (what the neuronal manual suggests)
  76. Young adult with 2 mature eggs
  77. Loose coiling and brief tight coilings here and there, most were <5 loops; coiled
  78. the least number of times among the 3 worms imaged today
  79. Pumping was infrequent
  80. Locomotion was slow towards the end of the recording
  81. Loop 1 is out of focus (a NIS element problem that Ziyu and candy encounter once
  82. in a while)
  83. Worm went into quiescence spontaneously while candy was saving the .h5, so this
  84. worm was not put in -20 C at all and immobilized with the cooling element immediately
  85. after free-moving recording
  86. '
  87. name: Acquisition session
  88. schemaKey: Session
  89. startDate: '2022-06-14T00:00:00-07:00'
  90. - description: Metadata generated by DANDI cli
  91. endDate: '2024-06-23T22:36:39.166893-07:00'
  92. id: urn:uuid:2916b1eb-46d1-4c72-8f8d-d1cf0f100de1
  93. name: Metadata generation
  94. schemaKey: Activity
  95. startDate: '2024-06-23T22:36:39.164367-07:00'
  96. wasAssociatedWith:
  97. - identifier: RRID:SCR_019009
  98. name: DANDI Command Line Interface
  99. schemaKey: Software
  100. url: https://github.com/dandi/dandi-cli
  101. version: 0.62.1
  102. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  103. access:
  104. - schemaKey: AccessRequirements
  105. status: dandi:OpenAccess
  106. approach:
  107. - name: microscopy approach; cell population imaging
  108. schemaKey: ApproachType
  109. - name: behavioral approach
  110. schemaKey: ApproachType
  111. blobDateModified: '2024-06-14T18:43:31.960000-07:00'
  112. contentSize: 26960339505
  113. contentUrl:
  114. - https://api.dandiarchive.org/api/assets/1c883af2-7898-4a09-b9db-dee7a4f18c8e/download/
  115. - https://dandiarchive.s3.amazonaws.com/blobs/a87/c74/a87c74b4-8dbf-4ba5-a640-2a75215e70c6
  116. dateModified: '2024-06-23T22:36:45.073654-07:00'
  117. datePublished: '2024-06-25T00:15:48.664466+00:00'
  118. digest:
  119. dandi:dandi-etag: 582442cac2a4a9538abb06ca73765f89-402
  120. dandi:sha2-256: 071c417ff80dea8470d7a7739df2297f46e7070cb0a139126c57cbb317a76bf8
  121. encodingFormat: application/x-nwb
  122. id: dandiasset:1c883af2-7898-4a09-b9db-dee7a4f18c8e
  123. identifier: 1c883af2-7898-4a09-b9db-dee7a4f18c8e
  124. measurementTechnique:
  125. - name: analytical technique
  126. schemaKey: MeasurementTechniqueType
  127. - name: behavioral technique
  128. schemaKey: MeasurementTechniqueType
  129. path: sub-2022-06-28-01-SWF702/sub-2022-06-28-01-SWF702_ses-20220628_behavior+image+ophys.nwb
  130. publishedBy:
  131. endDate: '2024-06-25T00:15:48.664466+00:00'
  132. id: urn:uuid:ab51f504-a732-492b-b5a4-f8570505c14e
  133. name: DANDI publish
  134. schemaKey: PublishActivity
  135. startDate: '2024-06-25T00:15:48.664466+00:00'
  136. wasAssociatedWith:
  137. - id: urn:uuid:8d3a48e4-b93a-4890-8d97-388f6236c8f5
  138. identifier: RRID:SCR_017571
  139. name: DANDI API
  140. schemaKey: Software
  141. version: 0.1.0
  142. relatedResource:
  143. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  144. relation: dcite:IsDescribedBy
  145. schemaKey: Resource
  146. schemaKey: Asset
  147. schemaVersion: 0.6.7
  148. variableMeasured:
  149. - schemaKey: PropertyValue
  150. value: ProcessingModule
  151. - schemaKey: PropertyValue
  152. value: BehavioralTimeSeries
  153. - schemaKey: PropertyValue
  154. value: PlaneSegmentation
  155. - schemaKey: PropertyValue
  156. value: BehavioralEvents
  157. wasAttributedTo:
  158. - age:
  159. schemaKey: PropertyValue
  160. unitText: ISO-8601 duration
  161. value: P0D
  162. valueReference:
  163. schemaKey: PropertyValue
  164. value: dandi:BirthReference
  165. identifier: 2022-06-28-01-SWF702
  166. schemaKey: Participant
  167. sex:
  168. name: Other
  169. schemaKey: SexType
  170. species:
  171. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  172. name: Caenorhabditis elegans
  173. schemaKey: SpeciesType
  174. wasGeneratedBy:
  175. - description: 'Ventral cord at the bottom when head points to the left on confocal
  176. images (what the neuronal manual suggests)
  177. One row of mature eggs
  178. Locomotion is slower than an average neuropal animal with intermittent pauses
  179. Lots of ventral head bend/ nose curling
  180. Brief coiling t~150, t~400, t~450, t~500; longer coiling t~850
  181. Bumped into a giant non-fluorescent gunk t~1150; passed
  182. Infrequent pumping throughout the 17 minutes of recording
  183. Laid an egg at t~1590
  184. '
  185. name: Acquisition session
  186. schemaKey: Session
  187. startDate: '2022-06-28T00:00:00-07:00'
  188. - description: Metadata generated by DANDI cli
  189. endDate: '2024-06-23T22:36:45.073631-07:00'
  190. id: urn:uuid:9855cfa2-4020-480a-85c1-a696c22ac187
  191. name: Metadata generation
  192. schemaKey: Activity
  193. startDate: '2024-06-23T22:36:45.072114-07:00'
  194. wasAssociatedWith:
  195. - identifier: RRID:SCR_019009
  196. name: DANDI Command Line Interface
  197. schemaKey: Software
  198. url: https://github.com/dandi/dandi-cli
  199. version: 0.62.1
  200. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  201. access:
  202. - schemaKey: AccessRequirements
  203. status: dandi:OpenAccess
  204. approach:
  205. - name: microscopy approach; cell population imaging
  206. schemaKey: ApproachType
  207. - name: behavioral approach
  208. schemaKey: ApproachType
  209. blobDateModified: '2024-06-12T21:08:13.740000-07:00'
  210. contentSize: 26838190811
  211. contentUrl:
  212. - https://api.dandiarchive.org/api/assets/6241eda7-7de1-4344-a54a-66c8339553e2/download/
  213. - https://dandiarchive.s3.amazonaws.com/blobs/386/ad5/386ad5fc-c3f8-4cd7-8bd3-d47691840fcf
  214. dateModified: '2024-06-23T22:36:41.411990-07:00'
  215. datePublished: '2024-06-25T00:15:48.674018+00:00'
  216. digest:
  217. dandi:dandi-etag: d6d4a82437c9861063828aeea01ba596-400
  218. dandi:sha2-256: a08ea6c93e11df54813db6e1c4114172571e3f259f18fb0f092abb595fa463a1
  219. encodingFormat: application/x-nwb
  220. id: dandiasset:6241eda7-7de1-4344-a54a-66c8339553e2
  221. identifier: 6241eda7-7de1-4344-a54a-66c8339553e2
  222. measurementTechnique:
  223. - name: analytical technique
  224. schemaKey: MeasurementTechniqueType
  225. - name: behavioral technique
  226. schemaKey: MeasurementTechniqueType
  227. path: sub-2022-06-28-07-SWF702/sub-2022-06-28-07-SWF702_ses-20220628_behavior+image+ophys.nwb
  228. publishedBy:
  229. endDate: '2024-06-25T00:15:48.674018+00:00'
  230. id: urn:uuid:70ab8f2c-deba-4f13-ab04-5b142593ae17
  231. name: DANDI publish
  232. schemaKey: PublishActivity
  233. startDate: '2024-06-25T00:15:48.674018+00:00'
  234. wasAssociatedWith:
  235. - id: urn:uuid:de90aebb-9bd8-4417-9e38-98e8229fb265
  236. identifier: RRID:SCR_017571
  237. name: DANDI API
  238. schemaKey: Software
  239. version: 0.1.0
  240. relatedResource:
  241. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  242. relation: dcite:IsDescribedBy
  243. schemaKey: Resource
  244. schemaKey: Asset
  245. schemaVersion: 0.6.7
  246. variableMeasured:
  247. - schemaKey: PropertyValue
  248. value: ProcessingModule
  249. - schemaKey: PropertyValue
  250. value: BehavioralTimeSeries
  251. - schemaKey: PropertyValue
  252. value: PlaneSegmentation
  253. - schemaKey: PropertyValue
  254. value: BehavioralEvents
  255. wasAttributedTo:
  256. - age:
  257. schemaKey: PropertyValue
  258. unitText: ISO-8601 duration
  259. value: P0D
  260. valueReference:
  261. schemaKey: PropertyValue
  262. value: dandi:BirthReference
  263. identifier: 2022-06-28-07-SWF702
  264. schemaKey: Participant
  265. sex:
  266. name: Other
  267. schemaKey: SexType
  268. species:
  269. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  270. name: Caenorhabditis elegans
  271. schemaKey: SpeciesType
  272. wasGeneratedBy:
  273. - description: 'Ventral cord at the bottom when head points to the left on confocal
  274. images (what the neuronal manual suggests)
  275. Pumping rate is above average for a neuropal worm
  276. Brief coiling t~80
  277. Passed by some mildly fluorescent gunk a few times throughout the 17 min of recording
  278. t>1450 is slightly out of focus
  279. TEC driver not working well again so I imaged 50 loops each, only reaching 6 C;
  280. fortunately, the worm is quiescent enough for immobilized recording
  281. Worm’s tail is coiled up against the head during -09, -10, -11, but the head remains
  282. straight and not twisted all along, so it should be possible to rotate the -09,
  283. -10, -11 to align them with -08 and -12
  284. '
  285. name: Acquisition session
  286. schemaKey: Session
  287. startDate: '2022-06-28T00:00:00-07:00'
  288. - description: Metadata generated by DANDI cli
  289. endDate: '2024-06-23T22:36:41.411968-07:00'
  290. id: urn:uuid:f62b13ed-2e60-4cac-b267-3c82359ba130
  291. name: Metadata generation
  292. schemaKey: Activity
  293. startDate: '2024-06-23T22:36:41.410453-07:00'
  294. wasAssociatedWith:
  295. - identifier: RRID:SCR_019009
  296. name: DANDI Command Line Interface
  297. schemaKey: Software
  298. url: https://github.com/dandi/dandi-cli
  299. version: 0.62.1
  300. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  301. access:
  302. - schemaKey: AccessRequirements
  303. status: dandi:OpenAccess
  304. approach:
  305. - name: microscopy approach; cell population imaging
  306. schemaKey: ApproachType
  307. - name: behavioral approach
  308. schemaKey: ApproachType
  309. blobDateModified: '2024-06-14T18:25:31.810000-07:00'
  310. contentSize: 26862264937
  311. contentUrl:
  312. - https://api.dandiarchive.org/api/assets/ece28dd8-5ca0-4c25-9a94-2f12b3b143e0/download/
  313. - https://dandiarchive.s3.amazonaws.com/blobs/526/148/52614874-adf2-42b8-a7fc-d702523228b0
  314. dateModified: '2024-06-23T22:36:46.209707-07:00'
  315. datePublished: '2024-06-25T00:15:48.680991+00:00'
  316. digest:
  317. dandi:dandi-etag: f4458401f961599fcd87b26a30372cb4-401
  318. dandi:sha2-256: aa6148dd1ac94821e178f51dfa9aeb3bdaa268cec760f27fcc02f0f739fd35ac
  319. encodingFormat: application/x-nwb
  320. id: dandiasset:ece28dd8-5ca0-4c25-9a94-2f12b3b143e0
  321. identifier: ece28dd8-5ca0-4c25-9a94-2f12b3b143e0
  322. measurementTechnique:
  323. - name: analytical technique
  324. schemaKey: MeasurementTechniqueType
  325. - name: behavioral technique
  326. schemaKey: MeasurementTechniqueType
  327. path: sub-2022-06-14-07-SWF702/sub-2022-06-14-07-SWF702_ses-20220614_behavior+image+ophys.nwb
  328. publishedBy:
  329. endDate: '2024-06-25T00:15:48.680991+00:00'
  330. id: urn:uuid:57ff11b6-701c-49b5-ae7c-357654b05e5d
  331. name: DANDI publish
  332. schemaKey: PublishActivity
  333. startDate: '2024-06-25T00:15:48.680991+00:00'
  334. wasAssociatedWith:
  335. - id: urn:uuid:16e98520-1be6-4871-8976-3039684d0b82
  336. identifier: RRID:SCR_017571
  337. name: DANDI API
  338. schemaKey: Software
  339. version: 0.1.0
  340. relatedResource:
  341. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  342. relation: dcite:IsDescribedBy
  343. schemaKey: Resource
  344. schemaKey: Asset
  345. schemaVersion: 0.6.7
  346. variableMeasured:
  347. - schemaKey: PropertyValue
  348. value: ProcessingModule
  349. - schemaKey: PropertyValue
  350. value: BehavioralTimeSeries
  351. - schemaKey: PropertyValue
  352. value: PlaneSegmentation
  353. - schemaKey: PropertyValue
  354. value: BehavioralEvents
  355. wasAttributedTo:
  356. - age:
  357. schemaKey: PropertyValue
  358. unitText: ISO-8601 duration
  359. value: P0D
  360. valueReference:
  361. schemaKey: PropertyValue
  362. value: dandi:BirthReference
  363. identifier: 2022-06-14-07-SWF702
  364. schemaKey: Participant
  365. sex:
  366. name: Other
  367. schemaKey: SexType
  368. species:
  369. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  370. name: Caenorhabditis elegans
  371. schemaKey: SpeciesType
  372. wasGeneratedBy:
  373. - description: 'Ventral cord at the bottom when head points to the left on confocal
  374. images (what the neuronal manual suggests)
  375. Young adult with no mature eggs
  376. Coiling for 3-5 loops t~55, t~150; longer coiling ~6 loops t~190
  377. Small red fluorescent gunk t~250 and t~1250 (shouldn’t affect registration in
  378. candy’s experience)
  379. Lost ~2 loops to coiling-induced tracking issue (resolved spontaneously) around
  380. t~320
  381. Worm pumped a lot at t~500
  382. Coiling disrupted tracking close to t~1600
  383. '
  384. name: Acquisition session
  385. schemaKey: Session
  386. startDate: '2022-06-14T00:00:00-07:00'
  387. - description: Metadata generated by DANDI cli
  388. endDate: '2024-06-23T22:36:46.209678-07:00'
  389. id: urn:uuid:ea2f0ea9-84f7-44a4-8f3a-66d90e5ed0b6
  390. name: Metadata generation
  391. schemaKey: Activity
  392. startDate: '2024-06-23T22:36:46.144930-07:00'
  393. wasAssociatedWith:
  394. - identifier: RRID:SCR_019009
  395. name: DANDI Command Line Interface
  396. schemaKey: Software
  397. url: https://github.com/dandi/dandi-cli
  398. version: 0.62.1
  399. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  400. access:
  401. - schemaKey: AccessRequirements
  402. status: dandi:OpenAccess
  403. approach:
  404. - name: microscopy approach; cell population imaging
  405. schemaKey: ApproachType
  406. - name: behavioral approach
  407. schemaKey: ApproachType
  408. blobDateModified: '2024-06-12T18:12:01.550000-07:00'
  409. contentSize: 26967312882
  410. contentUrl:
  411. - https://api.dandiarchive.org/api/assets/7423831f-100c-4103-9dde-73ac567d32fb/download/
  412. - https://dandiarchive.s3.amazonaws.com/blobs/074/e26/074e26b3-d11b-4463-bbf1-eb0f615c35fd
  413. dateModified: '2024-06-23T22:36:46.221924-07:00'
  414. datePublished: '2024-06-25T00:15:48.694294+00:00'
  415. digest:
  416. dandi:dandi-etag: 7727360095d8ef1830e8b3f80ee2d608-402
  417. dandi:sha2-256: a4be6adbc86619c678c44c9cafc4f010865245717d1a8a1a314ce4a6780be5a2
  418. encodingFormat: application/x-nwb
  419. id: dandiasset:7423831f-100c-4103-9dde-73ac567d32fb
  420. identifier: 7423831f-100c-4103-9dde-73ac567d32fb
  421. measurementTechnique:
  422. - name: analytical technique
  423. schemaKey: MeasurementTechniqueType
  424. - name: behavioral technique
  425. schemaKey: MeasurementTechniqueType
  426. path: sub-2022-06-14-01-SWF702/sub-2022-06-14-01-SWF702_ses-20220614_behavior+image+ophys.nwb
  427. publishedBy:
  428. endDate: '2024-06-25T00:15:48.694294+00:00'
  429. id: urn:uuid:1b505ddb-373e-423b-969e-69246e6f4826
  430. name: DANDI publish
  431. schemaKey: PublishActivity
  432. startDate: '2024-06-25T00:15:48.694294+00:00'
  433. wasAssociatedWith:
  434. - id: urn:uuid:76732fe2-c6ba-4b2a-b467-746b33b7d2ac
  435. identifier: RRID:SCR_017571
  436. name: DANDI API
  437. schemaKey: Software
  438. version: 0.1.0
  439. relatedResource:
  440. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  441. relation: dcite:IsDescribedBy
  442. schemaKey: Resource
  443. schemaKey: Asset
  444. schemaVersion: 0.6.7
  445. variableMeasured:
  446. - schemaKey: PropertyValue
  447. value: ProcessingModule
  448. - schemaKey: PropertyValue
  449. value: BehavioralTimeSeries
  450. - schemaKey: PropertyValue
  451. value: PlaneSegmentation
  452. - schemaKey: PropertyValue
  453. value: BehavioralEvents
  454. wasAttributedTo:
  455. - age:
  456. schemaKey: PropertyValue
  457. unitText: ISO-8601 duration
  458. value: P0D
  459. valueReference:
  460. schemaKey: PropertyValue
  461. value: dandi:BirthReference
  462. identifier: 2022-06-14-01-SWF702
  463. schemaKey: Participant
  464. sex:
  465. name: Other
  466. schemaKey: SexType
  467. species:
  468. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  469. name: Caenorhabditis elegans
  470. schemaKey: SpeciesType
  471. wasGeneratedBy:
  472. - description: 'Ventral cord at the bottom when head points to the left on confocal
  473. images (what the neuronal manual suggests)
  474. Young adult with a few mature eggs
  475. Some pumps here and there
  476. Coiling for ~5 loops at t~220, coiling for ~5 loops again at t~510, coiling again
  477. for ~5 loop at t~810, coiling briefly again t ~1100, long coiling ~8 loops at
  478. t~1400, long coiling again t~1550
  479. The second half is slightly out of focus (the edge of 3-5 neurons at the upper
  480. border in z-dimension), should not affect registration in candy’s experience
  481. '
  482. name: Acquisition session
  483. schemaKey: Session
  484. startDate: '2022-06-14T00:00:00-07:00'
  485. - description: Metadata generated by DANDI cli
  486. endDate: '2024-06-23T22:36:46.221898-07:00'
  487. id: urn:uuid:9547755c-88ca-4901-921f-d1d175133a3f
  488. name: Metadata generation
  489. schemaKey: Activity
  490. startDate: '2024-06-23T22:36:46.207693-07:00'
  491. wasAssociatedWith:
  492. - identifier: RRID:SCR_019009
  493. name: DANDI Command Line Interface
  494. schemaKey: Software
  495. url: https://github.com/dandi/dandi-cli
  496. version: 0.62.1
  497. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  498. access:
  499. - schemaKey: AccessRequirements
  500. status: dandi:OpenAccess
  501. approach:
  502. - name: microscopy approach; cell population imaging
  503. schemaKey: ApproachType
  504. - name: behavioral approach
  505. schemaKey: ApproachType
  506. blobDateModified: '2024-06-12T21:37:28.340000-07:00'
  507. contentSize: 26746446581
  508. contentUrl:
  509. - https://api.dandiarchive.org/api/assets/52a26404-eab7-417b-a577-70826be698dc/download/
  510. - https://dandiarchive.s3.amazonaws.com/blobs/582/6f7/5826f739-c00b-48d4-998b-bb5deaf55323
  511. dateModified: '2024-06-23T23:25:42.701376-07:00'
  512. datePublished: '2024-06-25T00:15:48.702053+00:00'
  513. digest:
  514. dandi:dandi-etag: 4b592fe02440dca56524f95e66209517-399
  515. dandi:sha2-256: 8d3d9b4aad8bf43d64989491ddb7273633e65f627d1fc0c4ad96f63dfdcdfcab
  516. encodingFormat: application/x-nwb
  517. id: dandiasset:52a26404-eab7-417b-a577-70826be698dc
  518. identifier: 52a26404-eab7-417b-a577-70826be698dc
  519. measurementTechnique:
  520. - name: analytical technique
  521. schemaKey: MeasurementTechniqueType
  522. - name: behavioral technique
  523. schemaKey: MeasurementTechniqueType
  524. path: sub-2022-07-15-06-SWF702/sub-2022-07-15-06-SWF702_ses-20220715_behavior+image+ophys.nwb
  525. publishedBy:
  526. endDate: '2024-06-25T00:15:48.702053+00:00'
  527. id: urn:uuid:bc42a494-8ed1-4f00-ac66-c9f6e09016ba
  528. name: DANDI publish
  529. schemaKey: PublishActivity
  530. startDate: '2024-06-25T00:15:48.702053+00:00'
  531. wasAssociatedWith:
  532. - id: urn:uuid:03f97911-4394-4d01-9ea1-5389a28942e7
  533. identifier: RRID:SCR_017571
  534. name: DANDI API
  535. schemaKey: Software
  536. version: 0.1.0
  537. relatedResource:
  538. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  539. relation: dcite:IsDescribedBy
  540. schemaKey: Resource
  541. schemaKey: Asset
  542. schemaVersion: 0.6.7
  543. variableMeasured:
  544. - schemaKey: PropertyValue
  545. value: ProcessingModule
  546. - schemaKey: PropertyValue
  547. value: BehavioralTimeSeries
  548. - schemaKey: PropertyValue
  549. value: PlaneSegmentation
  550. - schemaKey: PropertyValue
  551. value: BehavioralEvents
  552. wasAttributedTo:
  553. - age:
  554. schemaKey: PropertyValue
  555. unitText: ISO-8601 duration
  556. value: P0D
  557. valueReference:
  558. schemaKey: PropertyValue
  559. value: dandi:BirthReference
  560. identifier: 2022-07-15-06-SWF702
  561. schemaKey: Participant
  562. sex:
  563. name: Other
  564. schemaKey: SexType
  565. species:
  566. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  567. name: Caenorhabditis elegans
  568. schemaKey: SpeciesType
  569. wasGeneratedBy:
  570. - description: "Camera problem resolved after restarting the cameras\nVentral cord
  571. at the bottom when head points to the left on confocal images (what the neuronal
  572. manual suggests)\nLong coiling t~250, tracking disturbed for 1-2 loops; otherwise
  573. image quality looks good \n"
  574. name: Acquisition session
  575. schemaKey: Session
  576. startDate: '2022-07-15T00:00:00-07:00'
  577. - description: Metadata generated by DANDI cli
  578. endDate: '2024-06-23T23:25:42.701356-07:00'
  579. id: urn:uuid:153c8f5b-7c2c-4510-972b-8d878e91cfd2
  580. name: Metadata generation
  581. schemaKey: Activity
  582. startDate: '2024-06-23T23:25:42.700072-07:00'
  583. wasAssociatedWith:
  584. - identifier: RRID:SCR_019009
  585. name: DANDI Command Line Interface
  586. schemaKey: Software
  587. url: https://github.com/dandi/dandi-cli
  588. version: 0.62.1
  589. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  590. access:
  591. - schemaKey: AccessRequirements
  592. status: dandi:OpenAccess
  593. approach:
  594. - name: microscopy approach; cell population imaging
  595. schemaKey: ApproachType
  596. - name: behavioral approach
  597. schemaKey: ApproachType
  598. blobDateModified: '2024-06-12T22:06:38.650000-07:00'
  599. contentSize: 26529545442
  600. contentUrl:
  601. - https://api.dandiarchive.org/api/assets/c1fb1657-330d-4833-8b15-225f96a2bb4c/download/
  602. - https://dandiarchive.s3.amazonaws.com/blobs/3be/2d6/3be2d6bf-e270-4792-ae43-7c0d17780b09
  603. dateModified: '2024-06-23T23:25:58.999605-07:00'
  604. datePublished: '2024-06-25T00:15:48.709971+00:00'
  605. digest:
  606. dandi:dandi-etag: be1f23918149edd543891b156f41f324-396
  607. dandi:sha2-256: 1a3e876df68f2b4c9944ff6c39e8d41eed2d90edb46abca545bd2e803fe7576b
  608. encodingFormat: application/x-nwb
  609. id: dandiasset:c1fb1657-330d-4833-8b15-225f96a2bb4c
  610. identifier: c1fb1657-330d-4833-8b15-225f96a2bb4c
  611. measurementTechnique:
  612. - name: analytical technique
  613. schemaKey: MeasurementTechniqueType
  614. - name: behavioral technique
  615. schemaKey: MeasurementTechniqueType
  616. path: sub-2022-07-15-12-SWF702/sub-2022-07-15-12-SWF702_ses-20220715_behavior+image+ophys.nwb
  617. publishedBy:
  618. endDate: '2024-06-25T00:15:48.709971+00:00'
  619. id: urn:uuid:8246b99d-d345-4d83-98bf-272f71169eb1
  620. name: DANDI publish
  621. schemaKey: PublishActivity
  622. startDate: '2024-06-25T00:15:48.709971+00:00'
  623. wasAssociatedWith:
  624. - id: urn:uuid:474f2c66-08b9-40c8-86fd-9cfebd0dc035
  625. identifier: RRID:SCR_017571
  626. name: DANDI API
  627. schemaKey: Software
  628. version: 0.1.0
  629. relatedResource:
  630. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  631. relation: dcite:IsDescribedBy
  632. schemaKey: Resource
  633. schemaKey: Asset
  634. schemaVersion: 0.6.7
  635. variableMeasured:
  636. - schemaKey: PropertyValue
  637. value: ProcessingModule
  638. - schemaKey: PropertyValue
  639. value: BehavioralTimeSeries
  640. - schemaKey: PropertyValue
  641. value: PlaneSegmentation
  642. - schemaKey: PropertyValue
  643. value: BehavioralEvents
  644. wasAttributedTo:
  645. - age:
  646. schemaKey: PropertyValue
  647. unitText: ISO-8601 duration
  648. value: P0D
  649. valueReference:
  650. schemaKey: PropertyValue
  651. value: dandi:BirthReference
  652. identifier: 2022-07-15-12-SWF702
  653. schemaKey: Participant
  654. sex:
  655. name: Other
  656. schemaKey: SexType
  657. species:
  658. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  659. name: Caenorhabditis elegans
  660. schemaKey: SpeciesType
  661. wasGeneratedBy:
  662. - description: 'Ventral cord at the bottom when head points to the left on confocal
  663. images (what the neuronal manual suggests)
  664. Stage gitter t~40
  665. Coiling t~120, tracking is fine
  666. Good amount of pumping variance
  667. Long coiling t~1100, lost the anterior pharyngeal neurons for ~5 loops, most head
  668. neurons stayed within ROI throughout'
  669. name: Acquisition session
  670. schemaKey: Session
  671. startDate: '2022-07-15T00:00:00-07:00'
  672. - description: Metadata generated by DANDI cli
  673. endDate: '2024-06-23T23:25:58.999586-07:00'
  674. id: urn:uuid:0dfa056b-08a5-4b1f-9b09-3e53145fed5a
  675. name: Metadata generation
  676. schemaKey: Activity
  677. startDate: '2024-06-23T23:25:58.998276-07:00'
  678. wasAssociatedWith:
  679. - identifier: RRID:SCR_019009
  680. name: DANDI Command Line Interface
  681. schemaKey: Software
  682. url: https://github.com/dandi/dandi-cli
  683. version: 0.62.1
  684. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  685. access:
  686. - schemaKey: AccessRequirements
  687. status: dandi:OpenAccess
  688. approach:
  689. - name: microscopy approach; cell population imaging
  690. schemaKey: ApproachType
  691. - name: behavioral approach
  692. schemaKey: ApproachType
  693. blobDateModified: '2024-06-12T15:41:43.410000-07:00'
  694. contentSize: 26549950430
  695. contentUrl:
  696. - https://api.dandiarchive.org/api/assets/88a6e017-c8cb-4690-aed1-4fe27f9647c4/download/
  697. - https://dandiarchive.s3.amazonaws.com/blobs/f24/541/f2454100-9045-4059-966a-46c7c1448918
  698. dateModified: '2024-06-23T23:26:07.408434-07:00'
  699. datePublished: '2024-06-25T00:15:48.716926+00:00'
  700. digest:
  701. dandi:dandi-etag: 41a9026cc57cf82cb57ebc7652f3ebbe-396
  702. dandi:sha2-256: 131c995469f22a5248563d122fea59eff8185a44ab9df458c7eb04ea969752d8
  703. encodingFormat: application/x-nwb
  704. id: dandiasset:88a6e017-c8cb-4690-aed1-4fe27f9647c4
  705. identifier: 88a6e017-c8cb-4690-aed1-4fe27f9647c4
  706. measurementTechnique:
  707. - name: analytical technique
  708. schemaKey: MeasurementTechniqueType
  709. - name: behavioral technique
  710. schemaKey: MeasurementTechniqueType
  711. path: sub-2022-08-02-01-SWF702/sub-2022-08-02-01-SWF702_ses-20220802_behavior+image+ophys.nwb
  712. publishedBy:
  713. endDate: '2024-06-25T00:15:48.716926+00:00'
  714. id: urn:uuid:5f7fbce3-70c4-4219-bc69-fa524650e395
  715. name: DANDI publish
  716. schemaKey: PublishActivity
  717. startDate: '2024-06-25T00:15:48.716926+00:00'
  718. wasAssociatedWith:
  719. - id: urn:uuid:751ac995-2014-481e-813f-daa96fe9635f
  720. identifier: RRID:SCR_017571
  721. name: DANDI API
  722. schemaKey: Software
  723. version: 0.1.0
  724. relatedResource:
  725. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  726. relation: dcite:IsDescribedBy
  727. schemaKey: Resource
  728. schemaKey: Asset
  729. schemaVersion: 0.6.7
  730. variableMeasured:
  731. - schemaKey: PropertyValue
  732. value: ProcessingModule
  733. - schemaKey: PropertyValue
  734. value: BehavioralTimeSeries
  735. - schemaKey: PropertyValue
  736. value: PlaneSegmentation
  737. - schemaKey: PropertyValue
  738. value: BehavioralEvents
  739. wasAttributedTo:
  740. - age:
  741. schemaKey: PropertyValue
  742. unitText: ISO-8601 duration
  743. value: P0D
  744. valueReference:
  745. schemaKey: PropertyValue
  746. value: dandi:BirthReference
  747. identifier: 2022-08-02-01-SWF702
  748. schemaKey: Participant
  749. sex:
  750. name: Other
  751. schemaKey: SexType
  752. species:
  753. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  754. name: Caenorhabditis elegans
  755. schemaKey: SpeciesType
  756. wasGeneratedBy:
  757. - description: 'Ventral cord at the bottom when head points to the left on confocal
  758. images (what the neuronal manual suggests)
  759. One row of mature eggs
  760. High pumping variance, esp in the second half of the recording
  761. Locomotion is on the slower side, but there are a good number of reversals and
  762. reorientations
  763. Intermittent short stage jitters t~400
  764. Head is straight and well-immobilized
  765. '
  766. name: Acquisition session
  767. schemaKey: Session
  768. startDate: '2022-08-02T00:00:00-07:00'
  769. - description: Metadata generated by DANDI cli
  770. endDate: '2024-06-23T23:26:07.408410-07:00'
  771. id: urn:uuid:374a353e-5d54-4f00-b3b4-0a4d0f16229b
  772. name: Metadata generation
  773. schemaKey: Activity
  774. startDate: '2024-06-23T23:26:07.361270-07:00'
  775. wasAssociatedWith:
  776. - identifier: RRID:SCR_019009
  777. name: DANDI Command Line Interface
  778. schemaKey: Software
  779. url: https://github.com/dandi/dandi-cli
  780. version: 0.62.1
  781. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  782. access:
  783. - schemaKey: AccessRequirements
  784. status: dandi:OpenAccess
  785. approach:
  786. - name: microscopy approach; cell population imaging
  787. schemaKey: ApproachType
  788. - name: behavioral approach
  789. schemaKey: ApproachType
  790. blobDateModified: '2024-06-14T19:01:13.460000-07:00'
  791. contentSize: 26465047468
  792. contentUrl:
  793. - https://api.dandiarchive.org/api/assets/74b63136-301f-4244-81e4-9b19d9d63a3b/download/
  794. - https://dandiarchive.s3.amazonaws.com/blobs/3d6/20c/3d620cb5-060b-4f58-b312-cf5506dbf3f0
  795. dateModified: '2024-06-23T23:26:00.391087-07:00'
  796. datePublished: '2024-06-25T00:15:48.723810+00:00'
  797. digest:
  798. dandi:dandi-etag: 510dbbfdb062065aaee3ccac392b0086-395
  799. dandi:sha2-256: 9ebd613988e46de3127d9ae3e31fa46fdf32ebd72359352de44b150decab1462
  800. encodingFormat: application/x-nwb
  801. id: dandiasset:74b63136-301f-4244-81e4-9b19d9d63a3b
  802. identifier: 74b63136-301f-4244-81e4-9b19d9d63a3b
  803. measurementTechnique:
  804. - name: analytical technique
  805. schemaKey: MeasurementTechniqueType
  806. - name: behavioral technique
  807. schemaKey: MeasurementTechniqueType
  808. path: sub-2022-07-20-01-SWF702/sub-2022-07-20-01-SWF702_ses-20220720_behavior+image+ophys.nwb
  809. publishedBy:
  810. endDate: '2024-06-25T00:15:48.723810+00:00'
  811. id: urn:uuid:8ca2f538-6d94-49bb-84aa-9357ffa254d5
  812. name: DANDI publish
  813. schemaKey: PublishActivity
  814. startDate: '2024-06-25T00:15:48.723810+00:00'
  815. wasAssociatedWith:
  816. - id: urn:uuid:557e4ce7-79a2-4d19-8585-4f8c7472b2ef
  817. identifier: RRID:SCR_017571
  818. name: DANDI API
  819. schemaKey: Software
  820. version: 0.1.0
  821. relatedResource:
  822. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  823. relation: dcite:IsDescribedBy
  824. schemaKey: Resource
  825. schemaKey: Asset
  826. schemaVersion: 0.6.7
  827. variableMeasured:
  828. - schemaKey: PropertyValue
  829. value: ProcessingModule
  830. - schemaKey: PropertyValue
  831. value: BehavioralTimeSeries
  832. - schemaKey: PropertyValue
  833. value: PlaneSegmentation
  834. - schemaKey: PropertyValue
  835. value: BehavioralEvents
  836. wasAttributedTo:
  837. - age:
  838. schemaKey: PropertyValue
  839. unitText: ISO-8601 duration
  840. value: P0D
  841. valueReference:
  842. schemaKey: PropertyValue
  843. value: dandi:BirthReference
  844. identifier: 2022-07-20-01-SWF702
  845. schemaKey: Participant
  846. sex:
  847. name: Other
  848. schemaKey: SexType
  849. species:
  850. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  851. name: Caenorhabditis elegans
  852. schemaKey: SpeciesType
  853. wasGeneratedBy:
  854. - description: 'Ventral cord at the bottom when head points to the left on confocal
  855. images (what the neuronal manual suggests)
  856. One row of mature eggs
  857. Replaced the red camera with the one from the calcium scope; tried our best to
  858. manually align the red and green cameras
  859. Lost 2-3 loops to coiling at t~320; otherwise good image quality
  860. Immobilization was fast and stable
  861. The red channel is always more blacked out on the far right end for both free-moving
  862. and immobilized recordings. In theory, it shouldn’t affect registration, just
  863. like how the bright horizontal line in the middle of the old red camera didn’t
  864. affect registration.
  865. '
  866. name: Acquisition session
  867. schemaKey: Session
  868. startDate: '2022-07-20T00:00:00-07:00'
  869. - description: Metadata generated by DANDI cli
  870. endDate: '2024-06-23T23:26:00.391067-07:00'
  871. id: urn:uuid:14129e5a-eb1c-4944-bcef-44fe3a3ed329
  872. name: Metadata generation
  873. schemaKey: Activity
  874. startDate: '2024-06-23T23:26:00.389791-07:00'
  875. wasAssociatedWith:
  876. - identifier: RRID:SCR_019009
  877. name: DANDI Command Line Interface
  878. schemaKey: Software
  879. url: https://github.com/dandi/dandi-cli
  880. version: 0.62.1
  881. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  882. access:
  883. - schemaKey: AccessRequirements
  884. status: dandi:OpenAccess
  885. approach:
  886. - name: microscopy approach; cell population imaging
  887. schemaKey: ApproachType
  888. - name: behavioral approach
  889. schemaKey: ApproachType
  890. blobDateModified: '2024-06-12T23:04:53.340000-07:00'
  891. contentSize: 26655362087
  892. contentUrl:
  893. - https://api.dandiarchive.org/api/assets/0bcea79a-5ce8-43d4-9f17-73987f131d84/download/
  894. - https://dandiarchive.s3.amazonaws.com/blobs/135/18f/13518f67-480e-4d51-8058-79c97618d23a
  895. dateModified: '2024-06-23T23:26:07.008147-07:00'
  896. datePublished: '2024-06-25T00:15:48.730835+00:00'
  897. digest:
  898. dandi:dandi-etag: 70a1a67c90a6c5d0dba656ddb58140de-398
  899. dandi:sha2-256: 1af3308e08b3ccb249e95ff67362c97a45eb65d113e5de2fe1db527610be52a8
  900. encodingFormat: application/x-nwb
  901. id: dandiasset:0bcea79a-5ce8-43d4-9f17-73987f131d84
  902. identifier: 0bcea79a-5ce8-43d4-9f17-73987f131d84
  903. measurementTechnique:
  904. - name: analytical technique
  905. schemaKey: MeasurementTechniqueType
  906. - name: behavioral technique
  907. schemaKey: MeasurementTechniqueType
  908. path: sub-2022-07-26-01-SWF702/sub-2022-07-26-01-SWF702_ses-20220726_behavior+image+ophys.nwb
  909. publishedBy:
  910. endDate: '2024-06-25T00:15:48.730835+00:00'
  911. id: urn:uuid:e566fe7e-d7cb-4de5-8dde-c5c918046b88
  912. name: DANDI publish
  913. schemaKey: PublishActivity
  914. startDate: '2024-06-25T00:15:48.730835+00:00'
  915. wasAssociatedWith:
  916. - id: urn:uuid:ee85592c-754d-4ac8-8b5e-b1b81571b3c2
  917. identifier: RRID:SCR_017571
  918. name: DANDI API
  919. schemaKey: Software
  920. version: 0.1.0
  921. relatedResource:
  922. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  923. relation: dcite:IsDescribedBy
  924. schemaKey: Resource
  925. schemaKey: Asset
  926. schemaVersion: 0.6.7
  927. variableMeasured:
  928. - schemaKey: PropertyValue
  929. value: ProcessingModule
  930. - schemaKey: PropertyValue
  931. value: BehavioralTimeSeries
  932. - schemaKey: PropertyValue
  933. value: PlaneSegmentation
  934. - schemaKey: PropertyValue
  935. value: BehavioralEvents
  936. wasAttributedTo:
  937. - age:
  938. schemaKey: PropertyValue
  939. unitText: ISO-8601 duration
  940. value: P0D
  941. valueReference:
  942. schemaKey: PropertyValue
  943. value: dandi:BirthReference
  944. identifier: 2022-07-26-01-SWF702
  945. schemaKey: Participant
  946. sex:
  947. name: Other
  948. schemaKey: SexType
  949. species:
  950. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  951. name: Caenorhabditis elegans
  952. schemaKey: SpeciesType
  953. wasGeneratedBy:
  954. - description: "Ventral cord at the bottom when head points to the left on confocal
  955. images (what the neuronal manual suggests)\nOne mature egg\nLost 1-2 loops to
  956. coiling t~80\nLong coiling t~910, lost 1-2 loops\nFrequent brief coiling throughout
  957. the recording\nInfrequent pumping \nThe worm ended up in a tail-coiled posture
  958. during immobilization, but the head is straight and stable\n"
  959. name: Acquisition session
  960. schemaKey: Session
  961. startDate: '2022-07-26T00:00:00-07:00'
  962. - description: Metadata generated by DANDI cli
  963. endDate: '2024-06-23T23:26:07.008124-07:00'
  964. id: urn:uuid:d1e8cf13-5aa9-4d54-97be-7630aaf1c891
  965. name: Metadata generation
  966. schemaKey: Activity
  967. startDate: '2024-06-23T23:26:07.006369-07:00'
  968. wasAssociatedWith:
  969. - identifier: RRID:SCR_019009
  970. name: DANDI Command Line Interface
  971. schemaKey: Software
  972. url: https://github.com/dandi/dandi-cli
  973. version: 0.62.1
  974. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  975. access:
  976. - schemaKey: AccessRequirements
  977. status: dandi:OpenAccess
  978. approach:
  979. - name: microscopy approach; cell population imaging
  980. schemaKey: ApproachType
  981. - name: behavioral approach
  982. schemaKey: ApproachType
  983. blobDateModified: '2024-06-12T16:42:10.560000-07:00'
  984. contentSize: 26693956259
  985. contentUrl:
  986. - https://api.dandiarchive.org/api/assets/11549811-e49a-42ff-8278-23f7951b23ca/download/
  987. - https://dandiarchive.s3.amazonaws.com/blobs/1df/cd5/1dfcd53e-884e-4154-852e-b7c76b946726
  988. dateModified: '2024-06-23T23:46:59.361597-07:00'
  989. datePublished: '2024-06-25T00:15:48.737971+00:00'
  990. digest:
  991. dandi:dandi-etag: 691e4504b0ded76fea83ecbd6744b875-398
  992. dandi:sha2-256: 57f0d7b8dbdebfd2cf86585146c92b91ebc16ffafb5da6264d61bd30592ff231
  993. encodingFormat: application/x-nwb
  994. id: dandiasset:11549811-e49a-42ff-8278-23f7951b23ca
  995. identifier: 11549811-e49a-42ff-8278-23f7951b23ca
  996. measurementTechnique:
  997. - name: analytical technique
  998. schemaKey: MeasurementTechniqueType
  999. - name: behavioral technique
  1000. schemaKey: MeasurementTechniqueType
  1001. path: sub-2022-12-21-06-SWF702/sub-2022-12-21-06-SWF702_ses-20221221_behavior+image+ophys.nwb
  1002. publishedBy:
  1003. endDate: '2024-06-25T00:15:48.737971+00:00'
  1004. id: urn:uuid:0b7fac7b-9edd-4d91-8370-d10ff76fa47d
  1005. name: DANDI publish
  1006. schemaKey: PublishActivity
  1007. startDate: '2024-06-25T00:15:48.737971+00:00'
  1008. wasAssociatedWith:
  1009. - id: urn:uuid:ce99fcdd-0080-4a6c-9c3e-0b82f341801d
  1010. identifier: RRID:SCR_017571
  1011. name: DANDI API
  1012. schemaKey: Software
  1013. version: 0.1.0
  1014. relatedResource:
  1015. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1016. relation: dcite:IsDescribedBy
  1017. schemaKey: Resource
  1018. schemaKey: Asset
  1019. schemaVersion: 0.6.7
  1020. variableMeasured:
  1021. - schemaKey: PropertyValue
  1022. value: ProcessingModule
  1023. - schemaKey: PropertyValue
  1024. value: BehavioralTimeSeries
  1025. - schemaKey: PropertyValue
  1026. value: PlaneSegmentation
  1027. - schemaKey: PropertyValue
  1028. value: BehavioralEvents
  1029. wasAttributedTo:
  1030. - age:
  1031. schemaKey: PropertyValue
  1032. unitText: ISO-8601 duration
  1033. value: P0D
  1034. valueReference:
  1035. schemaKey: PropertyValue
  1036. value: dandi:BirthReference
  1037. identifier: 2022-12-21-06-SWF702
  1038. schemaKey: Participant
  1039. sex:
  1040. name: Other
  1041. schemaKey: SexType
  1042. species:
  1043. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1044. name: Caenorhabditis elegans
  1045. schemaKey: SpeciesType
  1046. wasGeneratedBy:
  1047. - description: 'Ventral cord at the bottom; one row of eggs
  1048. Bouts of pumping at baseline, but not sustained at a high level; lots of pumping
  1049. variance :D
  1050. Heat stim given at t~802; pumping goes down to near-zero till the end of the recording
  1051. Stage jitters t~1070 and again t~1280, might miss a few frames intermittently
  1052. Both behavioral and neural data look different to the eye before versus after
  1053. the stim
  1054. '
  1055. name: Acquisition session
  1056. schemaKey: Session
  1057. startDate: '2022-12-21T00:00:00-08:00'
  1058. - description: Metadata generated by DANDI cli
  1059. endDate: '2024-06-23T23:46:59.361577-07:00'
  1060. id: urn:uuid:0322b375-7fa0-4948-b89e-91752857eda2
  1061. name: Metadata generation
  1062. schemaKey: Activity
  1063. startDate: '2024-06-23T23:46:59.360233-07:00'
  1064. wasAssociatedWith:
  1065. - identifier: RRID:SCR_019009
  1066. name: DANDI Command Line Interface
  1067. schemaKey: Software
  1068. url: https://github.com/dandi/dandi-cli
  1069. version: 0.62.1
  1070. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1071. access:
  1072. - schemaKey: AccessRequirements
  1073. status: dandi:OpenAccess
  1074. approach:
  1075. - name: microscopy approach; cell population imaging
  1076. schemaKey: ApproachType
  1077. - name: behavioral approach
  1078. schemaKey: ApproachType
  1079. blobDateModified: '2024-06-14T17:49:44.220000-07:00'
  1080. contentSize: 26480539883
  1081. contentUrl:
  1082. - https://api.dandiarchive.org/api/assets/294936f3-7c92-4ee8-aad3-1aa60a4bd15e/download/
  1083. - https://dandiarchive.s3.amazonaws.com/blobs/840/2cb/8402cb61-f391-48e4-a301-f0084f21307e
  1084. dateModified: '2024-06-24T00:06:10.678845-07:00'
  1085. datePublished: '2024-06-25T00:15:48.744847+00:00'
  1086. digest:
  1087. dandi:dandi-etag: 65155e573d5dce15240680876a13a937-395
  1088. dandi:sha2-256: e95a8f945bc9b8e94b57e194ed9c15400965891cbd92d80b305e82e1880b9426
  1089. encodingFormat: application/x-nwb
  1090. id: dandiasset:294936f3-7c92-4ee8-aad3-1aa60a4bd15e
  1091. identifier: 294936f3-7c92-4ee8-aad3-1aa60a4bd15e
  1092. measurementTechnique:
  1093. - name: analytical technique
  1094. schemaKey: MeasurementTechniqueType
  1095. - name: behavioral technique
  1096. schemaKey: MeasurementTechniqueType
  1097. path: sub-2023-01-05-01-SWF702/sub-2023-01-05-01-SWF702_ses-20230105_behavior+image+ophys.nwb
  1098. publishedBy:
  1099. endDate: '2024-06-25T00:15:48.744847+00:00'
  1100. id: urn:uuid:96ee8a16-a4da-4914-983e-2aead8660125
  1101. name: DANDI publish
  1102. schemaKey: PublishActivity
  1103. startDate: '2024-06-25T00:15:48.744847+00:00'
  1104. wasAssociatedWith:
  1105. - id: urn:uuid:ac6bd7c7-2a7f-4358-a1bf-9188f765cb4e
  1106. identifier: RRID:SCR_017571
  1107. name: DANDI API
  1108. schemaKey: Software
  1109. version: 0.1.0
  1110. relatedResource:
  1111. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1112. relation: dcite:IsDescribedBy
  1113. schemaKey: Resource
  1114. schemaKey: Asset
  1115. schemaVersion: 0.6.7
  1116. variableMeasured:
  1117. - schemaKey: PropertyValue
  1118. value: ProcessingModule
  1119. - schemaKey: PropertyValue
  1120. value: BehavioralTimeSeries
  1121. - schemaKey: PropertyValue
  1122. value: PlaneSegmentation
  1123. - schemaKey: PropertyValue
  1124. value: BehavioralEvents
  1125. wasAttributedTo:
  1126. - age:
  1127. schemaKey: PropertyValue
  1128. unitText: ISO-8601 duration
  1129. value: P0D
  1130. valueReference:
  1131. schemaKey: PropertyValue
  1132. value: dandi:BirthReference
  1133. identifier: 2023-01-05-01-SWF702
  1134. schemaKey: Participant
  1135. sex:
  1136. name: Other
  1137. schemaKey: SexType
  1138. species:
  1139. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1140. name: Caenorhabditis elegans
  1141. schemaKey: SpeciesType
  1142. wasGeneratedBy:
  1143. - description: 'Ventral cord at the bottom when head faces left; one row of eggs
  1144. Heat stim at t~801
  1145. Frequent long pauses and omega turns pre-stim, long pauses only post-stim, but
  1146. not quiescent
  1147. Occasional pumping pre-stim, almost no pumping post stim
  1148. Spent much more time in reversals post-stim
  1149. I re-took 08 and 09, and think that 08, 09, 04, 05, 06 should register better
  1150. with one another; obviously 02 and 03 are less bleached'
  1151. name: Acquisition session
  1152. schemaKey: Session
  1153. startDate: '2023-01-05T00:00:00-08:00'
  1154. - description: Metadata generated by DANDI cli
  1155. endDate: '2024-06-24T00:06:10.678819-07:00'
  1156. id: urn:uuid:1389d8ff-9c94-4fee-bc4a-b8f90600562e
  1157. name: Metadata generation
  1158. schemaKey: Activity
  1159. startDate: '2024-06-24T00:06:10.676630-07:00'
  1160. wasAssociatedWith:
  1161. - identifier: RRID:SCR_019009
  1162. name: DANDI Command Line Interface
  1163. schemaKey: Software
  1164. url: https://github.com/dandi/dandi-cli
  1165. version: 0.62.1
  1166. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1167. access:
  1168. - schemaKey: AccessRequirements
  1169. status: dandi:OpenAccess
  1170. approach:
  1171. - name: microscopy approach; cell population imaging
  1172. schemaKey: ApproachType
  1173. - name: behavioral approach
  1174. schemaKey: ApproachType
  1175. blobDateModified: '2024-06-14T18:07:31.380000-07:00'
  1176. contentSize: 26518144557
  1177. contentUrl:
  1178. - https://api.dandiarchive.org/api/assets/1bb67791-92f6-439f-86e8-5a5322d327c7/download/
  1179. - https://dandiarchive.s3.amazonaws.com/blobs/780/8ee/7808eeeb-ad97-4224-9611-fe280e3ee8a4
  1180. dateModified: '2024-06-24T00:08:29.461952-07:00'
  1181. datePublished: '2024-06-25T00:15:48.752958+00:00'
  1182. digest:
  1183. dandi:dandi-etag: fa4ac1cfb54cd7c39941d286bff4ae85-396
  1184. dandi:sha2-256: 660f456922abb534250209d35fdf1055af6c14091dacc6c50d0ea30e6e292e71
  1185. encodingFormat: application/x-nwb
  1186. id: dandiasset:1bb67791-92f6-439f-86e8-5a5322d327c7
  1187. identifier: 1bb67791-92f6-439f-86e8-5a5322d327c7
  1188. measurementTechnique:
  1189. - name: analytical technique
  1190. schemaKey: MeasurementTechniqueType
  1191. - name: behavioral technique
  1192. schemaKey: MeasurementTechniqueType
  1193. path: sub-2023-01-05-18-SWF702/sub-2023-01-05-18-SWF702_ses-20230105_behavior+image+ophys.nwb
  1194. publishedBy:
  1195. endDate: '2024-06-25T00:15:48.752958+00:00'
  1196. id: urn:uuid:a04ba79f-35a0-4e33-9423-58bc0c6bc929
  1197. name: DANDI publish
  1198. schemaKey: PublishActivity
  1199. startDate: '2024-06-25T00:15:48.752958+00:00'
  1200. wasAssociatedWith:
  1201. - id: urn:uuid:fa686a95-f3cd-484a-b77d-56d032058cac
  1202. identifier: RRID:SCR_017571
  1203. name: DANDI API
  1204. schemaKey: Software
  1205. version: 0.1.0
  1206. relatedResource:
  1207. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1208. relation: dcite:IsDescribedBy
  1209. schemaKey: Resource
  1210. schemaKey: Asset
  1211. schemaVersion: 0.6.7
  1212. variableMeasured:
  1213. - schemaKey: PropertyValue
  1214. value: ProcessingModule
  1215. - schemaKey: PropertyValue
  1216. value: BehavioralTimeSeries
  1217. - schemaKey: PropertyValue
  1218. value: PlaneSegmentation
  1219. - schemaKey: PropertyValue
  1220. value: BehavioralEvents
  1221. wasAttributedTo:
  1222. - age:
  1223. schemaKey: PropertyValue
  1224. unitText: ISO-8601 duration
  1225. value: P0D
  1226. valueReference:
  1227. schemaKey: PropertyValue
  1228. value: dandi:BirthReference
  1229. identifier: 2023-01-05-18-SWF702
  1230. schemaKey: Participant
  1231. sex:
  1232. name: Other
  1233. schemaKey: SexType
  1234. species:
  1235. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1236. name: Caenorhabditis elegans
  1237. schemaKey: SpeciesType
  1238. wasGeneratedBy:
  1239. - description: 'Ventral cord at the bottom when head faces left; one row of eggs
  1240. Heat stim at t~801
  1241. Good pumping variance pre-stim, no pumping post-stim
  1242. 25 is just a backup for 19, and 26 is a backup for 23, immobilization looks good
  1243. throughout 19-26 except for a bit of linear upward gliding (most gliding in 23
  1244. that’s why I took 26)'
  1245. name: Acquisition session
  1246. schemaKey: Session
  1247. startDate: '2023-01-05T00:00:00-08:00'
  1248. - description: Metadata generated by DANDI cli
  1249. endDate: '2024-06-24T00:08:29.461935-07:00'
  1250. id: urn:uuid:05ae5b4e-90e0-44ff-9310-5803d6d2c2ae
  1251. name: Metadata generation
  1252. schemaKey: Activity
  1253. startDate: '2024-06-24T00:08:29.460601-07:00'
  1254. wasAssociatedWith:
  1255. - identifier: RRID:SCR_019009
  1256. name: DANDI Command Line Interface
  1257. schemaKey: Software
  1258. url: https://github.com/dandi/dandi-cli
  1259. version: 0.62.1
  1260. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1261. access:
  1262. - schemaKey: AccessRequirements
  1263. status: dandi:OpenAccess
  1264. approach:
  1265. - name: microscopy approach; cell population imaging
  1266. schemaKey: ApproachType
  1267. - name: behavioral approach
  1268. schemaKey: ApproachType
  1269. blobDateModified: '2024-06-12T18:41:19.910000-07:00'
  1270. contentSize: 26728867246
  1271. contentUrl:
  1272. - https://api.dandiarchive.org/api/assets/377c4b04-7dff-4cac-aa75-ceb8eb1f3cd0/download/
  1273. - https://dandiarchive.s3.amazonaws.com/blobs/877/51d/87751d43-b044-445e-a8d9-d07b875af218
  1274. dateModified: '2024-06-24T00:16:35.167972-07:00'
  1275. datePublished: '2024-06-25T00:15:48.760309+00:00'
  1276. digest:
  1277. dandi:dandi-etag: b72006b98651c0d34ba7e30f9ec4ff95-399
  1278. dandi:sha2-256: ef428cbacf03474b9458b3e7d425e8b9ebbd682f140cc21f5622f5b760cf7169
  1279. encodingFormat: application/x-nwb
  1280. id: dandiasset:377c4b04-7dff-4cac-aa75-ceb8eb1f3cd0
  1281. identifier: 377c4b04-7dff-4cac-aa75-ceb8eb1f3cd0
  1282. measurementTechnique:
  1283. - name: analytical technique
  1284. schemaKey: MeasurementTechniqueType
  1285. - name: behavioral technique
  1286. schemaKey: MeasurementTechniqueType
  1287. path: sub-2023-01-06-01-SWF702/sub-2023-01-06-01-SWF702_ses-20230106_behavior+image+ophys.nwb
  1288. publishedBy:
  1289. endDate: '2024-06-25T00:15:48.760309+00:00'
  1290. id: urn:uuid:ed18712b-6353-4c48-a4d1-f596e32d6f49
  1291. name: DANDI publish
  1292. schemaKey: PublishActivity
  1293. startDate: '2024-06-25T00:15:48.760309+00:00'
  1294. wasAssociatedWith:
  1295. - id: urn:uuid:eae1447e-f770-49e4-8fd7-1f46973d759a
  1296. identifier: RRID:SCR_017571
  1297. name: DANDI API
  1298. schemaKey: Software
  1299. version: 0.1.0
  1300. relatedResource:
  1301. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1302. relation: dcite:IsDescribedBy
  1303. schemaKey: Resource
  1304. schemaKey: Asset
  1305. schemaVersion: 0.6.7
  1306. variableMeasured:
  1307. - schemaKey: PropertyValue
  1308. value: ProcessingModule
  1309. - schemaKey: PropertyValue
  1310. value: BehavioralTimeSeries
  1311. - schemaKey: PropertyValue
  1312. value: PlaneSegmentation
  1313. - schemaKey: PropertyValue
  1314. value: BehavioralEvents
  1315. wasAttributedTo:
  1316. - age:
  1317. schemaKey: PropertyValue
  1318. unitText: ISO-8601 duration
  1319. value: P0D
  1320. valueReference:
  1321. schemaKey: PropertyValue
  1322. value: dandi:BirthReference
  1323. identifier: 2023-01-06-01-SWF702
  1324. schemaKey: Participant
  1325. sex:
  1326. name: Other
  1327. schemaKey: SexType
  1328. species:
  1329. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1330. name: Caenorhabditis elegans
  1331. schemaKey: SpeciesType
  1332. wasGeneratedBy:
  1333. - description: 'Ventral cord at the bottom when head faces left; one row of eggs
  1334. Heat stim at t~801
  1335. Long coiling t~100, tracking was fine, many shorter coils here and there
  1336. Laid an egg t~150
  1337. High pumping variance pre-stim, almost no pumping post-stim
  1338. Mild focus issue after t>1200, not to the point that impairs registration
  1339. 07 is a backup for 02
  1340. '
  1341. name: Acquisition session
  1342. schemaKey: Session
  1343. startDate: '2023-01-06T00:00:00-08:00'
  1344. - description: Metadata generated by DANDI cli
  1345. endDate: '2024-06-24T00:16:35.167951-07:00'
  1346. id: urn:uuid:e3e6412d-c628-494f-b24e-98b07b2f1af6
  1347. name: Metadata generation
  1348. schemaKey: Activity
  1349. startDate: '2024-06-24T00:16:35.165867-07:00'
  1350. wasAssociatedWith:
  1351. - identifier: RRID:SCR_019009
  1352. name: DANDI Command Line Interface
  1353. schemaKey: Software
  1354. url: https://github.com/dandi/dandi-cli
  1355. version: 0.62.1
  1356. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1357. access:
  1358. - schemaKey: AccessRequirements
  1359. status: dandi:OpenAccess
  1360. approach:
  1361. - name: microscopy approach; cell population imaging
  1362. schemaKey: ApproachType
  1363. - name: behavioral approach
  1364. schemaKey: ApproachType
  1365. blobDateModified: '2024-06-12T19:40:00.630000-07:00'
  1366. contentSize: 26729003783
  1367. contentUrl:
  1368. - https://api.dandiarchive.org/api/assets/e3bf161c-d5a6-4df8-b19a-45bf7bc52e2f/download/
  1369. - https://dandiarchive.s3.amazonaws.com/blobs/930/10b/93010b2b-64ee-4b75-879d-c6e6e7557516
  1370. dateModified: '2024-06-24T00:20:45.705328-07:00'
  1371. datePublished: '2024-06-25T00:15:48.777512+00:00'
  1372. digest:
  1373. dandi:dandi-etag: ccdc3810952929a421796898ae4ef5e8-399
  1374. dandi:sha2-256: ac7786b5d68515f06d2e3663ca3da5db76b74c728adade1140293d89ab484501
  1375. encodingFormat: application/x-nwb
  1376. id: dandiasset:e3bf161c-d5a6-4df8-b19a-45bf7bc52e2f
  1377. identifier: e3bf161c-d5a6-4df8-b19a-45bf7bc52e2f
  1378. measurementTechnique:
  1379. - name: analytical technique
  1380. schemaKey: MeasurementTechniqueType
  1381. - name: behavioral technique
  1382. schemaKey: MeasurementTechniqueType
  1383. path: sub-2023-01-09-08-SWF702/sub-2023-01-09-08-SWF702_ses-20230109_behavior+image+ophys.nwb
  1384. publishedBy:
  1385. endDate: '2024-06-25T00:15:48.777512+00:00'
  1386. id: urn:uuid:c1dc4873-87f5-4916-96e0-1cc6150c272f
  1387. name: DANDI publish
  1388. schemaKey: PublishActivity
  1389. startDate: '2024-06-25T00:15:48.777512+00:00'
  1390. wasAssociatedWith:
  1391. - id: urn:uuid:663afdc1-59fb-4bcb-8d94-07067a2b9fe2
  1392. identifier: RRID:SCR_017571
  1393. name: DANDI API
  1394. schemaKey: Software
  1395. version: 0.1.0
  1396. relatedResource:
  1397. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1398. relation: dcite:IsDescribedBy
  1399. schemaKey: Resource
  1400. schemaKey: Asset
  1401. schemaVersion: 0.6.7
  1402. variableMeasured:
  1403. - schemaKey: PropertyValue
  1404. value: ProcessingModule
  1405. - schemaKey: PropertyValue
  1406. value: BehavioralTimeSeries
  1407. - schemaKey: PropertyValue
  1408. value: PlaneSegmentation
  1409. - schemaKey: PropertyValue
  1410. value: BehavioralEvents
  1411. wasAttributedTo:
  1412. - age:
  1413. schemaKey: PropertyValue
  1414. unitText: ISO-8601 duration
  1415. value: P0D
  1416. valueReference:
  1417. schemaKey: PropertyValue
  1418. value: dandi:BirthReference
  1419. identifier: 2023-01-09-08-SWF702
  1420. schemaKey: Participant
  1421. sex:
  1422. name: Other
  1423. schemaKey: SexType
  1424. species:
  1425. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1426. name: Caenorhabditis elegans
  1427. schemaKey: SpeciesType
  1428. wasGeneratedBy:
  1429. - description: 'Ventral cord at the bottom when head faces left; one row of eggs
  1430. Heat stim at t~803
  1431. Occasional pumping pre-stim, no pumping post-stim
  1432. Frequent omega turns pre-stim
  1433. Much more short reversals/ short pauses post-stim
  1434. The first 50 loops of -13 should register well, the last 10 loops have some gliding;
  1435. -14 is a backup for -09
  1436. '
  1437. name: Acquisition session
  1438. schemaKey: Session
  1439. startDate: '2023-01-09T00:00:00-08:00'
  1440. - description: Metadata generated by DANDI cli
  1441. endDate: '2024-06-24T00:20:45.705306-07:00'
  1442. id: urn:uuid:c6e08ad3-27cb-4492-a53b-53d27cf0a6dd
  1443. name: Metadata generation
  1444. schemaKey: Activity
  1445. startDate: '2024-06-24T00:20:45.703629-07:00'
  1446. wasAssociatedWith:
  1447. - identifier: RRID:SCR_019009
  1448. name: DANDI Command Line Interface
  1449. schemaKey: Software
  1450. url: https://github.com/dandi/dandi-cli
  1451. version: 0.62.1
  1452. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1453. access:
  1454. - schemaKey: AccessRequirements
  1455. status: dandi:OpenAccess
  1456. approach:
  1457. - name: microscopy approach; cell population imaging
  1458. schemaKey: ApproachType
  1459. - name: behavioral approach
  1460. schemaKey: ApproachType
  1461. blobDateModified: '2024-06-14T19:18:51.680000-07:00'
  1462. contentSize: 26739030926
  1463. contentUrl:
  1464. - https://api.dandiarchive.org/api/assets/bb6ade09-2df9-4e7d-a7f6-2cce593dc7c8/download/
  1465. - https://dandiarchive.s3.amazonaws.com/blobs/b2f/dad/b2fdadb6-a115-4eed-8e7a-acbe6035ffbf
  1466. dateModified: '2024-06-24T00:16:54.366241-07:00'
  1467. datePublished: '2024-06-25T00:15:48.784934+00:00'
  1468. digest:
  1469. dandi:dandi-etag: f74815422e63c9acecdb99d5280aeea1-399
  1470. dandi:sha2-256: 9c468cbb331349c3d15fa2b968494cc97f6ce8edcdac9eb12465335c1b0fed53
  1471. encodingFormat: application/x-nwb
  1472. id: dandiasset:bb6ade09-2df9-4e7d-a7f6-2cce593dc7c8
  1473. identifier: bb6ade09-2df9-4e7d-a7f6-2cce593dc7c8
  1474. measurementTechnique:
  1475. - name: analytical technique
  1476. schemaKey: MeasurementTechniqueType
  1477. - name: behavioral technique
  1478. schemaKey: MeasurementTechniqueType
  1479. path: sub-2023-01-06-08-SWF702/sub-2023-01-06-08-SWF702_ses-20230106_behavior+image+ophys.nwb
  1480. publishedBy:
  1481. endDate: '2024-06-25T00:15:48.784934+00:00'
  1482. id: urn:uuid:496f9d3d-a5b2-428e-a6a5-6ab243bca56a
  1483. name: DANDI publish
  1484. schemaKey: PublishActivity
  1485. startDate: '2024-06-25T00:15:48.784934+00:00'
  1486. wasAssociatedWith:
  1487. - id: urn:uuid:63576def-7025-478f-beed-f54500110fde
  1488. identifier: RRID:SCR_017571
  1489. name: DANDI API
  1490. schemaKey: Software
  1491. version: 0.1.0
  1492. relatedResource:
  1493. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1494. relation: dcite:IsDescribedBy
  1495. schemaKey: Resource
  1496. schemaKey: Asset
  1497. schemaVersion: 0.6.7
  1498. variableMeasured:
  1499. - schemaKey: PropertyValue
  1500. value: ProcessingModule
  1501. - schemaKey: PropertyValue
  1502. value: BehavioralTimeSeries
  1503. - schemaKey: PropertyValue
  1504. value: PlaneSegmentation
  1505. - schemaKey: PropertyValue
  1506. value: BehavioralEvents
  1507. wasAttributedTo:
  1508. - age:
  1509. schemaKey: PropertyValue
  1510. unitText: ISO-8601 duration
  1511. value: P0D
  1512. valueReference:
  1513. schemaKey: PropertyValue
  1514. value: dandi:BirthReference
  1515. identifier: 2023-01-06-08-SWF702
  1516. schemaKey: Participant
  1517. sex:
  1518. name: Other
  1519. schemaKey: SexType
  1520. species:
  1521. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1522. name: Caenorhabditis elegans
  1523. schemaKey: SpeciesType
  1524. wasGeneratedBy:
  1525. - description: 'Ventral cord at the bottom when head faces left; one row of eggs
  1526. Heat stim at t~801
  1527. Sustained high pumping rate pre-stim, almost no pumping post-stim
  1528. One of the best behaving NeuroPAL animals given that it’s only a few generations
  1529. after the thawing
  1530. 14 is a backup for 09
  1531. '
  1532. name: Acquisition session
  1533. schemaKey: Session
  1534. startDate: '2023-01-06T00:00:00-08:00'
  1535. - description: Metadata generated by DANDI cli
  1536. endDate: '2024-06-24T00:16:54.366223-07:00'
  1537. id: urn:uuid:a21f8275-7a43-4d74-8b65-7c17cf25ab2a
  1538. name: Metadata generation
  1539. schemaKey: Activity
  1540. startDate: '2024-06-24T00:16:54.364387-07:00'
  1541. wasAssociatedWith:
  1542. - identifier: RRID:SCR_019009
  1543. name: DANDI Command Line Interface
  1544. schemaKey: Software
  1545. url: https://github.com/dandi/dandi-cli
  1546. version: 0.62.1
  1547. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1548. access:
  1549. - schemaKey: AccessRequirements
  1550. status: dandi:OpenAccess
  1551. approach:
  1552. - name: microscopy approach; cell population imaging
  1553. schemaKey: ApproachType
  1554. - name: behavioral approach
  1555. schemaKey: ApproachType
  1556. blobDateModified: '2024-06-12T16:12:11.440000-07:00'
  1557. contentSize: 26827236525
  1558. contentUrl:
  1559. - https://api.dandiarchive.org/api/assets/9cf0ed4c-ff85-4938-9fad-1823eabf41dc/download/
  1560. - https://dandiarchive.s3.amazonaws.com/blobs/1e3/45d/1e345d31-e33b-4e9f-845e-bf784a3e5531
  1561. dateModified: '2024-06-24T00:30:33.041409-07:00'
  1562. datePublished: '2024-06-25T00:15:48.791951+00:00'
  1563. digest:
  1564. dandi:dandi-etag: 0a01527834656e516755bcc144f78b3d-400
  1565. dandi:sha2-256: 1bc921c1988a495b1bb57a928b5c6abe9cf579c31044c1f7418b9e850a5ef40a
  1566. encodingFormat: application/x-nwb
  1567. id: dandiasset:9cf0ed4c-ff85-4938-9fad-1823eabf41dc
  1568. identifier: 9cf0ed4c-ff85-4938-9fad-1823eabf41dc
  1569. measurementTechnique:
  1570. - name: analytical technique
  1571. schemaKey: MeasurementTechniqueType
  1572. - name: behavioral technique
  1573. schemaKey: MeasurementTechniqueType
  1574. path: sub-2023-01-09-15-SWF702/sub-2023-01-09-15-SWF702_ses-20230109_behavior+image+ophys.nwb
  1575. publishedBy:
  1576. endDate: '2024-06-25T00:15:48.791951+00:00'
  1577. id: urn:uuid:0f97e1c8-e775-4bc6-89d8-1a22f3372362
  1578. name: DANDI publish
  1579. schemaKey: PublishActivity
  1580. startDate: '2024-06-25T00:15:48.791951+00:00'
  1581. wasAssociatedWith:
  1582. - id: urn:uuid:0825e295-ee1c-40c5-b9b8-b1f254119751
  1583. identifier: RRID:SCR_017571
  1584. name: DANDI API
  1585. schemaKey: Software
  1586. version: 0.1.0
  1587. relatedResource:
  1588. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1589. relation: dcite:IsDescribedBy
  1590. schemaKey: Resource
  1591. schemaKey: Asset
  1592. schemaVersion: 0.6.7
  1593. variableMeasured:
  1594. - schemaKey: PropertyValue
  1595. value: ProcessingModule
  1596. - schemaKey: PropertyValue
  1597. value: BehavioralTimeSeries
  1598. - schemaKey: PropertyValue
  1599. value: PlaneSegmentation
  1600. - schemaKey: PropertyValue
  1601. value: BehavioralEvents
  1602. wasAttributedTo:
  1603. - age:
  1604. schemaKey: PropertyValue
  1605. unitText: ISO-8601 duration
  1606. value: P0D
  1607. valueReference:
  1608. schemaKey: PropertyValue
  1609. value: dandi:BirthReference
  1610. identifier: 2023-01-09-15-SWF702
  1611. schemaKey: Participant
  1612. sex:
  1613. name: Other
  1614. schemaKey: SexType
  1615. species:
  1616. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1617. name: Caenorhabditis elegans
  1618. schemaKey: SpeciesType
  1619. wasGeneratedBy:
  1620. - description: 'Ventral cord at the bottom when head faces left; no mature eggs
  1621. Heat stim at t~801
  1622. High pumping variance pre-stim, almost no pumping post-stim
  1623. Post-stim reversals are not super frequent but long lasting
  1624. 21 is a backup of 16
  1625. '
  1626. name: Acquisition session
  1627. schemaKey: Session
  1628. startDate: '2023-01-09T00:00:00-08:00'
  1629. - description: Metadata generated by DANDI cli
  1630. endDate: '2024-06-24T00:30:33.041389-07:00'
  1631. id: urn:uuid:ad810a9b-3be1-492b-8a5c-66547972778d
  1632. name: Metadata generation
  1633. schemaKey: Activity
  1634. startDate: '2024-06-24T00:30:33.039584-07:00'
  1635. wasAssociatedWith:
  1636. - identifier: RRID:SCR_019009
  1637. name: DANDI Command Line Interface
  1638. schemaKey: Software
  1639. url: https://github.com/dandi/dandi-cli
  1640. version: 0.62.1
  1641. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1642. access:
  1643. - schemaKey: AccessRequirements
  1644. status: dandi:OpenAccess
  1645. approach:
  1646. - name: microscopy approach; cell population imaging
  1647. schemaKey: ApproachType
  1648. - name: behavioral approach
  1649. schemaKey: ApproachType
  1650. blobDateModified: '2024-06-13T00:04:07.110000-07:00'
  1651. contentSize: 26830212116
  1652. contentUrl:
  1653. - https://api.dandiarchive.org/api/assets/74f70a68-5eed-4c4a-9fb9-a00116aa2954/download/
  1654. - https://dandiarchive.s3.amazonaws.com/blobs/fb2/097/fb2097c1-7142-4fe9-a98c-c34fb5d9c6c0
  1655. dateModified: '2024-06-24T00:42:11.526153-07:00'
  1656. datePublished: '2024-06-25T00:15:48.803368+00:00'
  1657. digest:
  1658. dandi:dandi-etag: 517b132e50229701437fd366d2e77448-400
  1659. dandi:sha2-256: fe5919f437669325866fe05bedd792d6f55a86681385ec2269a69d7f88044120
  1660. encodingFormat: application/x-nwb
  1661. id: dandiasset:74f70a68-5eed-4c4a-9fb9-a00116aa2954
  1662. identifier: 74f70a68-5eed-4c4a-9fb9-a00116aa2954
  1663. measurementTechnique:
  1664. - name: analytical technique
  1665. schemaKey: MeasurementTechniqueType
  1666. - name: behavioral technique
  1667. schemaKey: MeasurementTechniqueType
  1668. path: sub-2023-01-09-22-SWF702/sub-2023-01-09-22-SWF702_ses-20230109_behavior+image+ophys.nwb
  1669. publishedBy:
  1670. endDate: '2024-06-25T00:15:48.803368+00:00'
  1671. id: urn:uuid:ca7a73a1-c97b-4b32-b8c8-b36999299b81
  1672. name: DANDI publish
  1673. schemaKey: PublishActivity
  1674. startDate: '2024-06-25T00:15:48.803368+00:00'
  1675. wasAssociatedWith:
  1676. - id: urn:uuid:fd0ffcdd-24c7-4ace-a4ba-98735b0948b3
  1677. identifier: RRID:SCR_017571
  1678. name: DANDI API
  1679. schemaKey: Software
  1680. version: 0.1.0
  1681. relatedResource:
  1682. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1683. relation: dcite:IsDescribedBy
  1684. schemaKey: Resource
  1685. schemaKey: Asset
  1686. schemaVersion: 0.6.7
  1687. variableMeasured:
  1688. - schemaKey: PropertyValue
  1689. value: ProcessingModule
  1690. - schemaKey: PropertyValue
  1691. value: BehavioralTimeSeries
  1692. - schemaKey: PropertyValue
  1693. value: PlaneSegmentation
  1694. - schemaKey: PropertyValue
  1695. value: BehavioralEvents
  1696. wasAttributedTo:
  1697. - age:
  1698. schemaKey: PropertyValue
  1699. unitText: ISO-8601 duration
  1700. value: P0D
  1701. valueReference:
  1702. schemaKey: PropertyValue
  1703. value: dandi:BirthReference
  1704. identifier: 2023-01-09-22-SWF702
  1705. schemaKey: Participant
  1706. sex:
  1707. name: Other
  1708. schemaKey: SexType
  1709. species:
  1710. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1711. name: Caenorhabditis elegans
  1712. schemaKey: SpeciesType
  1713. wasGeneratedBy:
  1714. - description: 'Ventral cord at the bottom when head faces left; two or three mature
  1715. eggs
  1716. Heat stim at t~801
  1717. Bouts of pumping pre-stim, almost no pumping post-stim
  1718. -25, -26 and -27 each has slight leftward gliding
  1719. '
  1720. name: Acquisition session
  1721. schemaKey: Session
  1722. startDate: '2023-01-09T00:00:00-08:00'
  1723. - description: Metadata generated by DANDI cli
  1724. endDate: '2024-06-24T00:42:11.526135-07:00'
  1725. id: urn:uuid:c8878d4f-3066-44d8-b7f4-52ad1717bf72
  1726. name: Metadata generation
  1727. schemaKey: Activity
  1728. startDate: '2024-06-24T00:42:11.524670-07:00'
  1729. wasAssociatedWith:
  1730. - identifier: RRID:SCR_019009
  1731. name: DANDI Command Line Interface
  1732. schemaKey: Software
  1733. url: https://github.com/dandi/dandi-cli
  1734. version: 0.62.1
  1735. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1736. access:
  1737. - schemaKey: AccessRequirements
  1738. status: dandi:OpenAccess
  1739. approach:
  1740. - name: microscopy approach; cell population imaging
  1741. schemaKey: ApproachType
  1742. - name: behavioral approach
  1743. schemaKey: ApproachType
  1744. blobDateModified: '2024-06-13T02:02:09.570000-07:00'
  1745. contentSize: 26583710122
  1746. contentUrl:
  1747. - https://api.dandiarchive.org/api/assets/77a0feb5-0f8d-4b29-bbfa-c115a6cd638e/download/
  1748. - https://dandiarchive.s3.amazonaws.com/blobs/8f5/7fd/8f57fd33-69fa-4ba2-90c5-80388fd3a835
  1749. dateModified: '2024-06-24T00:59:23.918951-07:00'
  1750. datePublished: '2024-06-25T00:15:48.810208+00:00'
  1751. digest:
  1752. dandi:dandi-etag: 455dd66a795e03dc6e55a278135a988e-397
  1753. dandi:sha2-256: e5c17bf299d964c1b8c96e4e0450e37aaa420b32b5649de48540c05c27078f3f
  1754. encodingFormat: application/x-nwb
  1755. id: dandiasset:77a0feb5-0f8d-4b29-bbfa-c115a6cd638e
  1756. identifier: 77a0feb5-0f8d-4b29-bbfa-c115a6cd638e
  1757. measurementTechnique:
  1758. - name: analytical technique
  1759. schemaKey: MeasurementTechniqueType
  1760. - name: behavioral technique
  1761. schemaKey: MeasurementTechniqueType
  1762. path: sub-2023-01-13-07-SWF702/sub-2023-01-13-07-SWF702_ses-20230113_behavior+image+ophys.nwb
  1763. publishedBy:
  1764. endDate: '2024-06-25T00:15:48.810208+00:00'
  1765. id: urn:uuid:49297cfb-1ec9-497a-a1d0-9c3a50921698
  1766. name: DANDI publish
  1767. schemaKey: PublishActivity
  1768. startDate: '2024-06-25T00:15:48.810208+00:00'
  1769. wasAssociatedWith:
  1770. - id: urn:uuid:5d8a19c2-36dd-46b9-88af-17b2bab0aff7
  1771. identifier: RRID:SCR_017571
  1772. name: DANDI API
  1773. schemaKey: Software
  1774. version: 0.1.0
  1775. relatedResource:
  1776. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1777. relation: dcite:IsDescribedBy
  1778. schemaKey: Resource
  1779. schemaKey: Asset
  1780. schemaVersion: 0.6.7
  1781. variableMeasured:
  1782. - schemaKey: PropertyValue
  1783. value: ProcessingModule
  1784. - schemaKey: PropertyValue
  1785. value: BehavioralTimeSeries
  1786. - schemaKey: PropertyValue
  1787. value: PlaneSegmentation
  1788. - schemaKey: PropertyValue
  1789. value: BehavioralEvents
  1790. wasAttributedTo:
  1791. - age:
  1792. schemaKey: PropertyValue
  1793. unitText: ISO-8601 duration
  1794. value: P0D
  1795. valueReference:
  1796. schemaKey: PropertyValue
  1797. value: dandi:BirthReference
  1798. identifier: 2023-01-13-07-SWF702
  1799. schemaKey: Participant
  1800. sex:
  1801. name: Other
  1802. schemaKey: SexType
  1803. species:
  1804. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1805. name: Caenorhabditis elegans
  1806. schemaKey: SpeciesType
  1807. wasGeneratedBy:
  1808. - description: 'Ventral cord at the bottom when head faces left; 1-2 mature eggs
  1809. Heat stim at t~801
  1810. Rapid pumping rate pre-stim, no pumping post-stim
  1811. Spent a lot of time in long reversals/ long pauses post-stim until the very end
  1812. 09 has some gliding (cannot guarantee no nonlinear transformation), so I retook
  1813. 14. I think 08, 10-14 should register well with one another.'
  1814. name: Acquisition session
  1815. schemaKey: Session
  1816. startDate: '2023-01-13T00:00:00-08:00'
  1817. - description: Metadata generated by DANDI cli
  1818. endDate: '2024-06-24T00:59:23.918933-07:00'
  1819. id: urn:uuid:42b01bb9-4b31-4b70-ae8d-79bb70b8279b
  1820. name: Metadata generation
  1821. schemaKey: Activity
  1822. startDate: '2024-06-24T00:59:23.917472-07:00'
  1823. wasAssociatedWith:
  1824. - identifier: RRID:SCR_019009
  1825. name: DANDI Command Line Interface
  1826. schemaKey: Software
  1827. url: https://github.com/dandi/dandi-cli
  1828. version: 0.62.1
  1829. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1830. access:
  1831. - schemaKey: AccessRequirements
  1832. status: dandi:OpenAccess
  1833. approach:
  1834. - name: microscopy approach; cell population imaging
  1835. schemaKey: ApproachType
  1836. - name: behavioral approach
  1837. schemaKey: ApproachType
  1838. blobDateModified: '2024-06-13T01:02:45.460000-07:00'
  1839. contentSize: 26687489224
  1840. contentUrl:
  1841. - https://api.dandiarchive.org/api/assets/d298f685-e1ee-463f-80ba-e999a2125312/download/
  1842. - https://dandiarchive.s3.amazonaws.com/blobs/696/0ef/6960ef8f-f376-439e-bc71-35e96cd62295
  1843. dateModified: '2024-06-24T00:51:50.625249-07:00'
  1844. datePublished: '2024-06-25T00:15:48.817079+00:00'
  1845. digest:
  1846. dandi:dandi-etag: a4c0ecdd7f9cc5756e72fe9be45c5523-398
  1847. dandi:sha2-256: 8958ed212212d50ca6bb96e6fc48e38b788b2be9fd9a291c54c3eead78f2bfb4
  1848. encodingFormat: application/x-nwb
  1849. id: dandiasset:d298f685-e1ee-463f-80ba-e999a2125312
  1850. identifier: d298f685-e1ee-463f-80ba-e999a2125312
  1851. measurementTechnique:
  1852. - name: analytical technique
  1853. schemaKey: MeasurementTechniqueType
  1854. - name: behavioral technique
  1855. schemaKey: MeasurementTechniqueType
  1856. path: sub-2023-01-10-07-SWF702/sub-2023-01-10-07-SWF702_ses-20230110_behavior+image+ophys.nwb
  1857. publishedBy:
  1858. endDate: '2024-06-25T00:15:48.817079+00:00'
  1859. id: urn:uuid:0b576d95-2fb2-411c-8e06-2e4b5c7c0ae1
  1860. name: DANDI publish
  1861. schemaKey: PublishActivity
  1862. startDate: '2024-06-25T00:15:48.817079+00:00'
  1863. wasAssociatedWith:
  1864. - id: urn:uuid:1b6005ed-9572-4592-8995-542d175c81c0
  1865. identifier: RRID:SCR_017571
  1866. name: DANDI API
  1867. schemaKey: Software
  1868. version: 0.1.0
  1869. relatedResource:
  1870. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1871. relation: dcite:IsDescribedBy
  1872. schemaKey: Resource
  1873. schemaKey: Asset
  1874. schemaVersion: 0.6.7
  1875. variableMeasured:
  1876. - schemaKey: PropertyValue
  1877. value: ProcessingModule
  1878. - schemaKey: PropertyValue
  1879. value: BehavioralTimeSeries
  1880. - schemaKey: PropertyValue
  1881. value: PlaneSegmentation
  1882. - schemaKey: PropertyValue
  1883. value: BehavioralEvents
  1884. wasAttributedTo:
  1885. - age:
  1886. schemaKey: PropertyValue
  1887. unitText: ISO-8601 duration
  1888. value: P0D
  1889. valueReference:
  1890. schemaKey: PropertyValue
  1891. value: dandi:BirthReference
  1892. identifier: 2023-01-10-07-SWF702
  1893. schemaKey: Participant
  1894. sex:
  1895. name: Other
  1896. schemaKey: SexType
  1897. species:
  1898. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1899. name: Caenorhabditis elegans
  1900. schemaKey: SpeciesType
  1901. wasGeneratedBy:
  1902. - description: 'Ventral cord at the bottom when head faces left; 2-3 mature eggs
  1903. Heat stim at t~801
  1904. Occasional pumping pre-stim, no pumping post-stim until t>1350
  1905. Spent more time in long reversals post-stim
  1906. 13 is a backup of 08
  1907. '
  1908. name: Acquisition session
  1909. schemaKey: Session
  1910. startDate: '2023-01-10T00:00:00-08:00'
  1911. - description: Metadata generated by DANDI cli
  1912. endDate: '2024-06-24T00:51:50.625230-07:00'
  1913. id: urn:uuid:3df8606b-2de5-4ce2-b649-e4210b3841a6
  1914. name: Metadata generation
  1915. schemaKey: Activity
  1916. startDate: '2024-06-24T00:51:50.623822-07:00'
  1917. wasAssociatedWith:
  1918. - identifier: RRID:SCR_019009
  1919. name: DANDI Command Line Interface
  1920. schemaKey: Software
  1921. url: https://github.com/dandi/dandi-cli
  1922. version: 0.62.1
  1923. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1924. access:
  1925. - schemaKey: AccessRequirements
  1926. status: dandi:OpenAccess
  1927. approach:
  1928. - name: microscopy approach; cell population imaging
  1929. schemaKey: ApproachType
  1930. - name: behavioral approach
  1931. schemaKey: ApproachType
  1932. blobDateModified: '2024-06-14T19:36:33.730000-07:00'
  1933. contentSize: 26775716157
  1934. contentUrl:
  1935. - https://api.dandiarchive.org/api/assets/3918a346-77bb-49a5-9d37-f4e67939190c/download/
  1936. - https://dandiarchive.s3.amazonaws.com/blobs/7c8/99a/7c899a7e-f17f-49f4-89c7-fc046365917c
  1937. dateModified: '2024-06-24T00:49:11.992769-07:00'
  1938. datePublished: '2024-06-25T00:15:48.826447+00:00'
  1939. digest:
  1940. dandi:dandi-etag: 079556b966462097577c31bb2c8b774a-399
  1941. dandi:sha2-256: 4e9e13ea9f6195fa9b9ecf6c24b5b1c1682aec95514f56be5716bc9a0d227cb6
  1942. encodingFormat: application/x-nwb
  1943. id: dandiasset:3918a346-77bb-49a5-9d37-f4e67939190c
  1944. identifier: 3918a346-77bb-49a5-9d37-f4e67939190c
  1945. measurementTechnique:
  1946. - name: analytical technique
  1947. schemaKey: MeasurementTechniqueType
  1948. - name: behavioral technique
  1949. schemaKey: MeasurementTechniqueType
  1950. path: sub-2023-01-09-28-SWF702/sub-2023-01-09-28-SWF702_ses-20230109_behavior+image+ophys.nwb
  1951. publishedBy:
  1952. endDate: '2024-06-25T00:15:48.826447+00:00'
  1953. id: urn:uuid:3a0dcb8b-42e3-4d83-ba48-d9ec67337411
  1954. name: DANDI publish
  1955. schemaKey: PublishActivity
  1956. startDate: '2024-06-25T00:15:48.826447+00:00'
  1957. wasAssociatedWith:
  1958. - id: urn:uuid:c49ea36d-ef9a-4398-93d4-c99479374262
  1959. identifier: RRID:SCR_017571
  1960. name: DANDI API
  1961. schemaKey: Software
  1962. version: 0.1.0
  1963. relatedResource:
  1964. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  1965. relation: dcite:IsDescribedBy
  1966. schemaKey: Resource
  1967. schemaKey: Asset
  1968. schemaVersion: 0.6.7
  1969. variableMeasured:
  1970. - schemaKey: PropertyValue
  1971. value: ProcessingModule
  1972. - schemaKey: PropertyValue
  1973. value: BehavioralTimeSeries
  1974. - schemaKey: PropertyValue
  1975. value: PlaneSegmentation
  1976. - schemaKey: PropertyValue
  1977. value: BehavioralEvents
  1978. wasAttributedTo:
  1979. - age:
  1980. schemaKey: PropertyValue
  1981. unitText: ISO-8601 duration
  1982. value: P0D
  1983. valueReference:
  1984. schemaKey: PropertyValue
  1985. value: dandi:BirthReference
  1986. identifier: 2023-01-09-28-SWF702
  1987. schemaKey: Participant
  1988. sex:
  1989. name: Other
  1990. schemaKey: SexType
  1991. species:
  1992. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  1993. name: Caenorhabditis elegans
  1994. schemaKey: SpeciesType
  1995. wasGeneratedBy:
  1996. - description: 'Ventral cord at the bottom when head faces left; no mature eggs
  1997. This is a baseline dataset (I did not deliver any heat stim because the worm spends
  1998. a lot of time in long reversals in the first 800 loops)
  1999. Occasional pumping
  2000. I re-took 34-37 as backups since they may register better with 33 than 29-32 do
  2001. '
  2002. name: Acquisition session
  2003. schemaKey: Session
  2004. startDate: '2023-01-09T00:00:00-08:00'
  2005. - description: Metadata generated by DANDI cli
  2006. endDate: '2024-06-24T00:49:11.992752-07:00'
  2007. id: urn:uuid:2e864ec9-0215-49e0-a4ef-c5c36b484082
  2008. name: Metadata generation
  2009. schemaKey: Activity
  2010. startDate: '2024-06-24T00:49:11.991419-07:00'
  2011. wasAssociatedWith:
  2012. - identifier: RRID:SCR_019009
  2013. name: DANDI Command Line Interface
  2014. schemaKey: Software
  2015. url: https://github.com/dandi/dandi-cli
  2016. version: 0.62.1
  2017. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2018. access:
  2019. - schemaKey: AccessRequirements
  2020. status: dandi:OpenAccess
  2021. approach:
  2022. - name: microscopy approach; cell population imaging
  2023. schemaKey: ApproachType
  2024. - name: behavioral approach
  2025. schemaKey: ApproachType
  2026. blobDateModified: '2024-06-13T01:32:30.990000-07:00'
  2027. contentSize: 26587822101
  2028. contentUrl:
  2029. - https://api.dandiarchive.org/api/assets/457d5523-6eb0-48bc-84f5-02e210abf1a7/download/
  2030. - https://dandiarchive.s3.amazonaws.com/blobs/df8/10a/df810a27-e4a7-4984-abee-335ba6955b45
  2031. dateModified: '2024-06-24T00:56:50.003177-07:00'
  2032. datePublished: '2024-06-25T00:15:48.835258+00:00'
  2033. digest:
  2034. dandi:dandi-etag: 98e5fde944040b1fb6d703a770235531-397
  2035. dandi:sha2-256: 044760a2ca106480956e793cff7efe9e11299929fd88e8f44a54af673345a5f5
  2036. encodingFormat: application/x-nwb
  2037. id: dandiasset:457d5523-6eb0-48bc-84f5-02e210abf1a7
  2038. identifier: 457d5523-6eb0-48bc-84f5-02e210abf1a7
  2039. measurementTechnique:
  2040. - name: analytical technique
  2041. schemaKey: MeasurementTechniqueType
  2042. - name: behavioral technique
  2043. schemaKey: MeasurementTechniqueType
  2044. path: sub-2023-01-10-14-SWF702/sub-2023-01-10-14-SWF702_ses-20230110_behavior+image+ophys.nwb
  2045. publishedBy:
  2046. endDate: '2024-06-25T00:15:48.835258+00:00'
  2047. id: urn:uuid:2790fc43-0f20-4f7b-be8a-0221b1824bfc
  2048. name: DANDI publish
  2049. schemaKey: PublishActivity
  2050. startDate: '2024-06-25T00:15:48.835258+00:00'
  2051. wasAssociatedWith:
  2052. - id: urn:uuid:bece56be-0193-401a-961e-f3c719fbd60c
  2053. identifier: RRID:SCR_017571
  2054. name: DANDI API
  2055. schemaKey: Software
  2056. version: 0.1.0
  2057. relatedResource:
  2058. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2059. relation: dcite:IsDescribedBy
  2060. schemaKey: Resource
  2061. schemaKey: Asset
  2062. schemaVersion: 0.6.7
  2063. variableMeasured:
  2064. - schemaKey: PropertyValue
  2065. value: ProcessingModule
  2066. - schemaKey: PropertyValue
  2067. value: BehavioralTimeSeries
  2068. - schemaKey: PropertyValue
  2069. value: PlaneSegmentation
  2070. - schemaKey: PropertyValue
  2071. value: BehavioralEvents
  2072. wasAttributedTo:
  2073. - age:
  2074. schemaKey: PropertyValue
  2075. unitText: ISO-8601 duration
  2076. value: P0D
  2077. valueReference:
  2078. schemaKey: PropertyValue
  2079. value: dandi:BirthReference
  2080. identifier: 2023-01-10-14-SWF702
  2081. schemaKey: Participant
  2082. sex:
  2083. name: Other
  2084. schemaKey: SexType
  2085. species:
  2086. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2087. name: Caenorhabditis elegans
  2088. schemaKey: SpeciesType
  2089. wasGeneratedBy:
  2090. - description: 'Ventral cord at the bottom when head faces left; no mature eggs
  2091. Heat stim at t~802
  2092. Lost 3-4 loops to coiling t~180
  2093. High pumping variance pre-stim, no pumping post-stim
  2094. Spent more time in long reversals post-stim
  2095. '
  2096. name: Acquisition session
  2097. schemaKey: Session
  2098. startDate: '2023-01-10T00:00:00-08:00'
  2099. - description: Metadata generated by DANDI cli
  2100. endDate: '2024-06-24T00:56:50.003159-07:00'
  2101. id: urn:uuid:2568aa1a-12ab-486b-bdbb-0f150db8eec3
  2102. name: Metadata generation
  2103. schemaKey: Activity
  2104. startDate: '2024-06-24T00:56:50.001687-07:00'
  2105. wasAssociatedWith:
  2106. - identifier: RRID:SCR_019009
  2107. name: DANDI Command Line Interface
  2108. schemaKey: Software
  2109. url: https://github.com/dandi/dandi-cli
  2110. version: 0.62.1
  2111. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2112. access:
  2113. - schemaKey: AccessRequirements
  2114. status: dandi:OpenAccess
  2115. approach:
  2116. - name: microscopy approach; cell population imaging
  2117. schemaKey: ApproachType
  2118. - name: behavioral approach
  2119. schemaKey: ApproachType
  2120. blobDateModified: '2024-06-14T19:54:31.950000-07:00'
  2121. contentSize: 26608522907
  2122. contentUrl:
  2123. - https://api.dandiarchive.org/api/assets/8281985c-393d-4216-a60d-705ad82d328c/download/
  2124. - https://dandiarchive.s3.amazonaws.com/blobs/d9f/667/d9f667d3-e44c-4e28-beb8-9af421982aec
  2125. dateModified: '2024-06-24T01:12:43.963098-07:00'
  2126. datePublished: '2024-06-25T00:15:48.843065+00:00'
  2127. digest:
  2128. dandi:dandi-etag: b98ae01380ac306b84586e56746a724a-397
  2129. dandi:sha2-256: 6c164459f2a1922d40ac771fc317f0e9e9dffadba94ce34f04b94ef0804e13fc
  2130. encodingFormat: application/x-nwb
  2131. id: dandiasset:8281985c-393d-4216-a60d-705ad82d328c
  2132. identifier: 8281985c-393d-4216-a60d-705ad82d328c
  2133. measurementTechnique:
  2134. - name: analytical technique
  2135. schemaKey: MeasurementTechniqueType
  2136. - name: behavioral technique
  2137. schemaKey: MeasurementTechniqueType
  2138. path: sub-2023-01-16-01-SWF702/sub-2023-01-16-01-SWF702_ses-20230116_behavior+image+ophys.nwb
  2139. publishedBy:
  2140. endDate: '2024-06-25T00:15:48.843065+00:00'
  2141. id: urn:uuid:2b71be80-87b9-4de1-9123-5228af304b75
  2142. name: DANDI publish
  2143. schemaKey: PublishActivity
  2144. startDate: '2024-06-25T00:15:48.843065+00:00'
  2145. wasAssociatedWith:
  2146. - id: urn:uuid:c1994392-766e-4bd2-94ae-1141deaac9b0
  2147. identifier: RRID:SCR_017571
  2148. name: DANDI API
  2149. schemaKey: Software
  2150. version: 0.1.0
  2151. relatedResource:
  2152. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2153. relation: dcite:IsDescribedBy
  2154. schemaKey: Resource
  2155. schemaKey: Asset
  2156. schemaVersion: 0.6.7
  2157. variableMeasured:
  2158. - schemaKey: PropertyValue
  2159. value: ProcessingModule
  2160. - schemaKey: PropertyValue
  2161. value: BehavioralTimeSeries
  2162. - schemaKey: PropertyValue
  2163. value: PlaneSegmentation
  2164. - schemaKey: PropertyValue
  2165. value: BehavioralEvents
  2166. wasAttributedTo:
  2167. - age:
  2168. schemaKey: PropertyValue
  2169. unitText: ISO-8601 duration
  2170. value: P0D
  2171. valueReference:
  2172. schemaKey: PropertyValue
  2173. value: dandi:BirthReference
  2174. identifier: 2023-01-16-01-SWF702
  2175. schemaKey: Participant
  2176. sex:
  2177. name: Other
  2178. schemaKey: SexType
  2179. species:
  2180. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2181. name: Caenorhabditis elegans
  2182. schemaKey: SpeciesType
  2183. wasGeneratedBy:
  2184. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  2185. eggs
  2186. Heat stim t~801
  2187. Occasional pumping pre-stim, no pumping post-stim
  2188. Large stage jitter t~900 and t~1200
  2189. Quite a bit of reversals pre-stim already, but more & longer reversals post-stim
  2190. 07 is a backup of 02, gliding +, head posture stationary
  2191. '
  2192. name: Acquisition session
  2193. schemaKey: Session
  2194. startDate: '2023-01-16T00:00:00-08:00'
  2195. - description: Metadata generated by DANDI cli
  2196. endDate: '2024-06-24T01:12:43.963079-07:00'
  2197. id: urn:uuid:cbffbe73-ac73-43ab-9af2-a7e234b9256e
  2198. name: Metadata generation
  2199. schemaKey: Activity
  2200. startDate: '2024-06-24T01:12:43.961520-07:00'
  2201. wasAssociatedWith:
  2202. - identifier: RRID:SCR_019009
  2203. name: DANDI Command Line Interface
  2204. schemaKey: Software
  2205. url: https://github.com/dandi/dandi-cli
  2206. version: 0.62.1
  2207. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2208. access:
  2209. - schemaKey: AccessRequirements
  2210. status: dandi:OpenAccess
  2211. approach:
  2212. - name: microscopy approach; cell population imaging
  2213. schemaKey: ApproachType
  2214. - name: behavioral approach
  2215. schemaKey: ApproachType
  2216. blobDateModified: '2024-06-14T20:12:24.500000-07:00'
  2217. contentSize: 26721844686
  2218. contentUrl:
  2219. - https://api.dandiarchive.org/api/assets/924ea29c-a35e-4233-9282-cf55f1909d4d/download/
  2220. - https://dandiarchive.s3.amazonaws.com/blobs/129/f67/129f6704-2194-4365-b840-6150647d668a
  2221. dateModified: '2024-06-24T01:36:59.008052-07:00'
  2222. datePublished: '2024-06-25T00:15:48.850630+00:00'
  2223. digest:
  2224. dandi:dandi-etag: 3c27df915531bae26a1aca37faf4f454-399
  2225. dandi:sha2-256: 2e683ea790af98dd97752d90f2e7a84afc6a96dc2e10f5e604e5b4a3af623381
  2226. encodingFormat: application/x-nwb
  2227. id: dandiasset:924ea29c-a35e-4233-9282-cf55f1909d4d
  2228. identifier: 924ea29c-a35e-4233-9282-cf55f1909d4d
  2229. measurementTechnique:
  2230. - name: analytical technique
  2231. schemaKey: MeasurementTechniqueType
  2232. - name: behavioral technique
  2233. schemaKey: MeasurementTechniqueType
  2234. path: sub-2023-01-16-08-SWF702/sub-2023-01-16-08-SWF702_ses-20230116_behavior+image+ophys.nwb
  2235. publishedBy:
  2236. endDate: '2024-06-25T00:15:48.850630+00:00'
  2237. id: urn:uuid:41661309-efef-4734-8c7e-d158e515d064
  2238. name: DANDI publish
  2239. schemaKey: PublishActivity
  2240. startDate: '2024-06-25T00:15:48.850630+00:00'
  2241. wasAssociatedWith:
  2242. - id: urn:uuid:3f34f23e-858c-4a7b-b8e3-a2a0b565a0dd
  2243. identifier: RRID:SCR_017571
  2244. name: DANDI API
  2245. schemaKey: Software
  2246. version: 0.1.0
  2247. relatedResource:
  2248. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2249. relation: dcite:IsDescribedBy
  2250. schemaKey: Resource
  2251. schemaKey: Asset
  2252. schemaVersion: 0.6.7
  2253. variableMeasured:
  2254. - schemaKey: PropertyValue
  2255. value: ProcessingModule
  2256. - schemaKey: PropertyValue
  2257. value: BehavioralTimeSeries
  2258. - schemaKey: PropertyValue
  2259. value: PlaneSegmentation
  2260. - schemaKey: PropertyValue
  2261. value: BehavioralEvents
  2262. wasAttributedTo:
  2263. - age:
  2264. schemaKey: PropertyValue
  2265. unitText: ISO-8601 duration
  2266. value: P0D
  2267. valueReference:
  2268. schemaKey: PropertyValue
  2269. value: dandi:BirthReference
  2270. identifier: 2023-01-16-08-SWF702
  2271. schemaKey: Participant
  2272. sex:
  2273. name: Other
  2274. schemaKey: SexType
  2275. species:
  2276. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2277. name: Caenorhabditis elegans
  2278. schemaKey: SpeciesType
  2279. wasGeneratedBy:
  2280. - description: 'Ventral cord at the bottom when head faces left; 2-3 mature eggs
  2281. Heat stim at t~802
  2282. Occasional pumping pre-stim, no pumping post-stim
  2283. Lots of reversals both pre-stim and post-stim, but many more pauses and omega
  2284. turns post-stim
  2285. Lost 4-5 loops to tracking disturbance t~1460
  2286. 14 is a backup of 09
  2287. '
  2288. name: Acquisition session
  2289. schemaKey: Session
  2290. startDate: '2023-01-16T00:00:00-08:00'
  2291. - description: Metadata generated by DANDI cli
  2292. endDate: '2024-06-24T01:36:59.008033-07:00'
  2293. id: urn:uuid:5a2dcc05-b05d-4230-9785-9415603426f4
  2294. name: Metadata generation
  2295. schemaKey: Activity
  2296. startDate: '2024-06-24T01:36:59.006400-07:00'
  2297. wasAssociatedWith:
  2298. - identifier: RRID:SCR_019009
  2299. name: DANDI Command Line Interface
  2300. schemaKey: Software
  2301. url: https://github.com/dandi/dandi-cli
  2302. version: 0.62.1
  2303. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2304. access:
  2305. - schemaKey: AccessRequirements
  2306. status: dandi:OpenAccess
  2307. approach:
  2308. - name: microscopy approach; cell population imaging
  2309. schemaKey: ApproachType
  2310. - name: behavioral approach
  2311. schemaKey: ApproachType
  2312. blobDateModified: '2024-06-13T03:59:56.200000-07:00'
  2313. contentSize: 26647143668
  2314. contentUrl:
  2315. - https://api.dandiarchive.org/api/assets/ef6941a7-24fb-47ef-bde8-487d5b8c6c5e/download/
  2316. - https://dandiarchive.s3.amazonaws.com/blobs/af9/2d2/af92d24e-bfb2-4e0f-b5e0-b53043982af4
  2317. dateModified: '2024-06-24T01:37:08.098269-07:00'
  2318. datePublished: '2024-06-25T00:15:48.858086+00:00'
  2319. digest:
  2320. dandi:dandi-etag: 9e3f72fb5ce1f0f383f9ad92f68e6d77-398
  2321. dandi:sha2-256: 488c6199d2dcd3480dcb653028c6f3e414bb0c1bee43d5a2cc9d6fdd98be2fe6
  2322. encodingFormat: application/x-nwb
  2323. id: dandiasset:ef6941a7-24fb-47ef-bde8-487d5b8c6c5e
  2324. identifier: ef6941a7-24fb-47ef-bde8-487d5b8c6c5e
  2325. measurementTechnique:
  2326. - name: analytical technique
  2327. schemaKey: MeasurementTechniqueType
  2328. - name: behavioral technique
  2329. schemaKey: MeasurementTechniqueType
  2330. path: sub-2023-01-16-22-SWF702/sub-2023-01-16-22-SWF702_ses-20230116_behavior+image+ophys.nwb
  2331. publishedBy:
  2332. endDate: '2024-06-25T00:15:48.858086+00:00'
  2333. id: urn:uuid:793c7ae2-6c97-4195-80f1-8d64306ae2c6
  2334. name: DANDI publish
  2335. schemaKey: PublishActivity
  2336. startDate: '2024-06-25T00:15:48.858086+00:00'
  2337. wasAssociatedWith:
  2338. - id: urn:uuid:76d06f48-f8ac-48d7-8d77-f75185692649
  2339. identifier: RRID:SCR_017571
  2340. name: DANDI API
  2341. schemaKey: Software
  2342. version: 0.1.0
  2343. relatedResource:
  2344. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2345. relation: dcite:IsDescribedBy
  2346. schemaKey: Resource
  2347. schemaKey: Asset
  2348. schemaVersion: 0.6.7
  2349. variableMeasured:
  2350. - schemaKey: PropertyValue
  2351. value: ProcessingModule
  2352. - schemaKey: PropertyValue
  2353. value: BehavioralTimeSeries
  2354. - schemaKey: PropertyValue
  2355. value: PlaneSegmentation
  2356. - schemaKey: PropertyValue
  2357. value: BehavioralEvents
  2358. wasAttributedTo:
  2359. - age:
  2360. schemaKey: PropertyValue
  2361. unitText: ISO-8601 duration
  2362. value: P0D
  2363. valueReference:
  2364. schemaKey: PropertyValue
  2365. value: dandi:BirthReference
  2366. identifier: 2023-01-16-22-SWF702
  2367. schemaKey: Participant
  2368. sex:
  2369. name: Other
  2370. schemaKey: SexType
  2371. species:
  2372. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2373. name: Caenorhabditis elegans
  2374. schemaKey: SpeciesType
  2375. wasGeneratedBy:
  2376. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  2377. eggs
  2378. Heat stim at t~801
  2379. High pumping variance pre-stim, almost no pumping post-stim
  2380. Lots of long reversals post-stim
  2381. t=1 and t=1615 are out of focus (NIS element issue, so I tested for syncing issue
  2382. for this dataset - it syncs fine)
  2383. 28 is a backup for 23
  2384. '
  2385. name: Acquisition session
  2386. schemaKey: Session
  2387. startDate: '2023-01-16T00:00:00-08:00'
  2388. - description: Metadata generated by DANDI cli
  2389. endDate: '2024-06-24T01:37:08.098251-07:00'
  2390. id: urn:uuid:dce28dc5-07d0-4c6a-8a8d-5e169b40bba8
  2391. name: Metadata generation
  2392. schemaKey: Activity
  2393. startDate: '2024-06-24T01:37:08.096555-07:00'
  2394. wasAssociatedWith:
  2395. - identifier: RRID:SCR_019009
  2396. name: DANDI Command Line Interface
  2397. schemaKey: Software
  2398. url: https://github.com/dandi/dandi-cli
  2399. version: 0.62.1
  2400. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2401. access:
  2402. - schemaKey: AccessRequirements
  2403. status: dandi:OpenAccess
  2404. approach:
  2405. - name: microscopy approach; cell population imaging
  2406. schemaKey: ApproachType
  2407. - name: behavioral approach
  2408. schemaKey: ApproachType
  2409. blobDateModified: '2024-06-13T03:30:23.150000-07:00'
  2410. contentSize: 26650577193
  2411. contentUrl:
  2412. - https://api.dandiarchive.org/api/assets/6d6b7d0c-7932-474e-832f-4000d9386103/download/
  2413. - https://dandiarchive.s3.amazonaws.com/blobs/682/6f1/6826f1e2-6cf5-4654-9e40-360040014530
  2414. dateModified: '2024-06-24T01:36:53.899389-07:00'
  2415. datePublished: '2024-06-25T00:15:48.865075+00:00'
  2416. digest:
  2417. dandi:dandi-etag: 4d7d68a6d3485cccb32034f5d0e3c863-398
  2418. dandi:sha2-256: 626f16cef3ab2c776c14569bcb0d063fed202b3ff0120d23f2e7582b4770f44c
  2419. encodingFormat: application/x-nwb
  2420. id: dandiasset:6d6b7d0c-7932-474e-832f-4000d9386103
  2421. identifier: 6d6b7d0c-7932-474e-832f-4000d9386103
  2422. measurementTechnique:
  2423. - name: analytical technique
  2424. schemaKey: MeasurementTechniqueType
  2425. - name: behavioral technique
  2426. schemaKey: MeasurementTechniqueType
  2427. path: sub-2023-01-16-15-SWF702/sub-2023-01-16-15-SWF702_ses-20230116_behavior+image+ophys.nwb
  2428. publishedBy:
  2429. endDate: '2024-06-25T00:15:48.865075+00:00'
  2430. id: urn:uuid:3e8e7460-0114-49cd-92b1-e2eabd4aad6d
  2431. name: DANDI publish
  2432. schemaKey: PublishActivity
  2433. startDate: '2024-06-25T00:15:48.865075+00:00'
  2434. wasAssociatedWith:
  2435. - id: urn:uuid:9e66928d-d0ae-4724-9184-6dbe725f976a
  2436. identifier: RRID:SCR_017571
  2437. name: DANDI API
  2438. schemaKey: Software
  2439. version: 0.1.0
  2440. relatedResource:
  2441. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2442. relation: dcite:IsDescribedBy
  2443. schemaKey: Resource
  2444. schemaKey: Asset
  2445. schemaVersion: 0.6.7
  2446. variableMeasured:
  2447. - schemaKey: PropertyValue
  2448. value: ProcessingModule
  2449. - schemaKey: PropertyValue
  2450. value: BehavioralTimeSeries
  2451. - schemaKey: PropertyValue
  2452. value: PlaneSegmentation
  2453. - schemaKey: PropertyValue
  2454. value: BehavioralEvents
  2455. wasAttributedTo:
  2456. - age:
  2457. schemaKey: PropertyValue
  2458. unitText: ISO-8601 duration
  2459. value: P0D
  2460. valueReference:
  2461. schemaKey: PropertyValue
  2462. value: dandi:BirthReference
  2463. identifier: 2023-01-16-15-SWF702
  2464. schemaKey: Participant
  2465. sex:
  2466. name: Other
  2467. schemaKey: SexType
  2468. species:
  2469. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2470. name: Caenorhabditis elegans
  2471. schemaKey: SpeciesType
  2472. wasGeneratedBy:
  2473. - description: 'Ventral cord at the bottom when head faces left; 1-2 mature eggs
  2474. Heat stim at t~801
  2475. High pumping variance pre-stim, no pumping post-stim
  2476. This is one of the very few NeuroPAL animals that perform long forward runs pre-stim
  2477. Lots of long reversals post-stim
  2478. Lost ~5 loops to coiling t~1220
  2479. 21 is a backup of 16
  2480. '
  2481. name: Acquisition session
  2482. schemaKey: Session
  2483. startDate: '2023-01-16T00:00:00-08:00'
  2484. - description: Metadata generated by DANDI cli
  2485. endDate: '2024-06-24T01:36:53.899369-07:00'
  2486. id: urn:uuid:4291bceb-441f-4af6-a669-d2aa8c339cb3
  2487. name: Metadata generation
  2488. schemaKey: Activity
  2489. startDate: '2024-06-24T01:36:53.897626-07:00'
  2490. wasAssociatedWith:
  2491. - identifier: RRID:SCR_019009
  2492. name: DANDI Command Line Interface
  2493. schemaKey: Software
  2494. url: https://github.com/dandi/dandi-cli
  2495. version: 0.62.1
  2496. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2497. access:
  2498. - schemaKey: AccessRequirements
  2499. status: dandi:OpenAccess
  2500. approach:
  2501. - name: microscopy approach; cell population imaging
  2502. schemaKey: ApproachType
  2503. - name: behavioral approach
  2504. schemaKey: ApproachType
  2505. blobDateModified: '2024-06-13T04:29:03.570000-07:00'
  2506. contentSize: 26713193977
  2507. contentUrl:
  2508. - https://api.dandiarchive.org/api/assets/96c8bbdf-5b3c-45f4-8809-754e34b737ef/download/
  2509. - https://dandiarchive.s3.amazonaws.com/blobs/b8e/f8a/b8ef8a5b-e37c-434c-a233-a21cc58be109
  2510. dateModified: '2024-06-24T01:38:09.961344-07:00'
  2511. datePublished: '2024-06-25T00:15:48.873486+00:00'
  2512. digest:
  2513. dandi:dandi-etag: c2510a19b4758b49477f8934b04c4df0-399
  2514. dandi:sha2-256: 3f62901a83ac2dc9ddbd9dde370980ef2077cf0d9d7b48ef7d7a22515f7a741b
  2515. encodingFormat: application/x-nwb
  2516. id: dandiasset:96c8bbdf-5b3c-45f4-8809-754e34b737ef
  2517. identifier: 96c8bbdf-5b3c-45f4-8809-754e34b737ef
  2518. measurementTechnique:
  2519. - name: analytical technique
  2520. schemaKey: MeasurementTechniqueType
  2521. - name: behavioral technique
  2522. schemaKey: MeasurementTechniqueType
  2523. path: sub-2023-01-17-01-SWF702/sub-2023-01-17-01-SWF702_ses-20230117_behavior+image+ophys.nwb
  2524. publishedBy:
  2525. endDate: '2024-06-25T00:15:48.873486+00:00'
  2526. id: urn:uuid:bae95c85-6b91-4d18-b078-8b78b6c8306e
  2527. name: DANDI publish
  2528. schemaKey: PublishActivity
  2529. startDate: '2024-06-25T00:15:48.873486+00:00'
  2530. wasAssociatedWith:
  2531. - id: urn:uuid:b05a777a-14b6-464d-97cb-79e8696471af
  2532. identifier: RRID:SCR_017571
  2533. name: DANDI API
  2534. schemaKey: Software
  2535. version: 0.1.0
  2536. relatedResource:
  2537. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2538. relation: dcite:IsDescribedBy
  2539. schemaKey: Resource
  2540. schemaKey: Asset
  2541. schemaVersion: 0.6.7
  2542. variableMeasured:
  2543. - schemaKey: PropertyValue
  2544. value: ProcessingModule
  2545. - schemaKey: PropertyValue
  2546. value: BehavioralTimeSeries
  2547. - schemaKey: PropertyValue
  2548. value: PlaneSegmentation
  2549. - schemaKey: PropertyValue
  2550. value: BehavioralEvents
  2551. wasAttributedTo:
  2552. - age:
  2553. schemaKey: PropertyValue
  2554. unitText: ISO-8601 duration
  2555. value: P0D
  2556. valueReference:
  2557. schemaKey: PropertyValue
  2558. value: dandi:BirthReference
  2559. identifier: 2023-01-17-01-SWF702
  2560. schemaKey: Participant
  2561. sex:
  2562. name: Other
  2563. schemaKey: SexType
  2564. species:
  2565. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2566. name: Caenorhabditis elegans
  2567. schemaKey: SpeciesType
  2568. wasGeneratedBy:
  2569. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  2570. eggs
  2571. This is a baseline dataset. I decided to not give any stim because there are a
  2572. lot of reversals and very occasional pumping in the first 800 timepoints.
  2573. A few coils t<200, tracking is largely fine (intermittently losing 1-2 loops),
  2574. afterwards there are a number of omega turns, and a few more short coils in the
  2575. last 200 timepoints
  2576. 03 was retaken after 05 so I stepped up on the laser intensity
  2577. Really nice immobilization, no backup taken for 02
  2578. '
  2579. name: Acquisition session
  2580. schemaKey: Session
  2581. startDate: '2023-01-17T00:00:00-08:00'
  2582. - description: Metadata generated by DANDI cli
  2583. endDate: '2024-06-24T01:38:09.961328-07:00'
  2584. id: urn:uuid:a0a95e13-5bac-455e-bcf7-c7b415d55345
  2585. name: Metadata generation
  2586. schemaKey: Activity
  2587. startDate: '2024-06-24T01:38:09.959876-07:00'
  2588. wasAssociatedWith:
  2589. - identifier: RRID:SCR_019009
  2590. name: DANDI Command Line Interface
  2591. schemaKey: Software
  2592. url: https://github.com/dandi/dandi-cli
  2593. version: 0.62.1
  2594. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2595. access:
  2596. - schemaKey: AccessRequirements
  2597. status: dandi:OpenAccess
  2598. approach:
  2599. - name: microscopy approach; cell population imaging
  2600. schemaKey: ApproachType
  2601. - name: behavioral approach
  2602. schemaKey: ApproachType
  2603. blobDateModified: '2024-06-13T04:58:15.740000-07:00'
  2604. contentSize: 26566316095
  2605. contentUrl:
  2606. - https://api.dandiarchive.org/api/assets/826fe557-7ddd-476a-bcee-b37f3bf4ce43/download/
  2607. - https://dandiarchive.s3.amazonaws.com/blobs/620/910/62091003-d8d1-4128-a2cb-d8da4ac8dc2d
  2608. dateModified: '2024-06-24T01:41:49.898307-07:00'
  2609. datePublished: '2024-06-25T00:15:48.880236+00:00'
  2610. digest:
  2611. dandi:dandi-etag: c50bdc65a83f7c358abba4eeac0f1c5d-396
  2612. dandi:sha2-256: fe8a5474d078b0e9d4c1d46d3a9361d6414f749668df38f1b4b4815564161d2b
  2613. encodingFormat: application/x-nwb
  2614. id: dandiasset:826fe557-7ddd-476a-bcee-b37f3bf4ce43
  2615. identifier: 826fe557-7ddd-476a-bcee-b37f3bf4ce43
  2616. measurementTechnique:
  2617. - name: analytical technique
  2618. schemaKey: MeasurementTechniqueType
  2619. - name: behavioral technique
  2620. schemaKey: MeasurementTechniqueType
  2621. path: sub-2023-01-17-07-SWF702/sub-2023-01-17-07-SWF702_ses-20230117_behavior+image+ophys.nwb
  2622. publishedBy:
  2623. endDate: '2024-06-25T00:15:48.880236+00:00'
  2624. id: urn:uuid:07c5e89c-b1c1-47f1-88ab-c2284fda9e84
  2625. name: DANDI publish
  2626. schemaKey: PublishActivity
  2627. startDate: '2024-06-25T00:15:48.880236+00:00'
  2628. wasAssociatedWith:
  2629. - id: urn:uuid:275eeaa5-9ee1-4139-89d0-8fc2b23d943d
  2630. identifier: RRID:SCR_017571
  2631. name: DANDI API
  2632. schemaKey: Software
  2633. version: 0.1.0
  2634. relatedResource:
  2635. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2636. relation: dcite:IsDescribedBy
  2637. schemaKey: Resource
  2638. schemaKey: Asset
  2639. schemaVersion: 0.6.7
  2640. variableMeasured:
  2641. - schemaKey: PropertyValue
  2642. value: ProcessingModule
  2643. - schemaKey: PropertyValue
  2644. value: BehavioralTimeSeries
  2645. - schemaKey: PropertyValue
  2646. value: PlaneSegmentation
  2647. - schemaKey: PropertyValue
  2648. value: BehavioralEvents
  2649. wasAttributedTo:
  2650. - age:
  2651. schemaKey: PropertyValue
  2652. unitText: ISO-8601 duration
  2653. value: P0D
  2654. valueReference:
  2655. schemaKey: PropertyValue
  2656. value: dandi:BirthReference
  2657. identifier: 2023-01-17-07-SWF702
  2658. schemaKey: Participant
  2659. sex:
  2660. name: Other
  2661. schemaKey: SexType
  2662. species:
  2663. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2664. name: Caenorhabditis elegans
  2665. schemaKey: SpeciesType
  2666. wasGeneratedBy:
  2667. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  2668. eggs
  2669. Heat stim at t~801
  2670. Bouts of pumping pre-stim, almost no pumping post-stim
  2671. Coiling disrupts tracking for 3-4 loops t~580
  2672. Frequent long reversals post-stim
  2673. Some pumping and long forward runs t>1300
  2674. Some gliding during immobilization, head remains straight, 08 was retaken after
  2675. 11 so I used higher laser intensity
  2676. 12 and 13 used the same image settings, and together should provide >50 loops
  2677. of BFP recording that register with the 08-11
  2678. This worm has behavior in my mental top quartile; immobilization is below average,
  2679. but has a good chance of still working
  2680. '
  2681. name: Acquisition session
  2682. schemaKey: Session
  2683. startDate: '2023-01-17T00:00:00-08:00'
  2684. - description: Metadata generated by DANDI cli
  2685. endDate: '2024-06-24T01:41:49.898290-07:00'
  2686. id: urn:uuid:02c67c81-4b46-49ed-96e5-c2a207c0a36c
  2687. name: Metadata generation
  2688. schemaKey: Activity
  2689. startDate: '2024-06-24T01:41:49.896849-07:00'
  2690. wasAssociatedWith:
  2691. - identifier: RRID:SCR_019009
  2692. name: DANDI Command Line Interface
  2693. schemaKey: Software
  2694. url: https://github.com/dandi/dandi-cli
  2695. version: 0.62.1
  2696. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2697. access:
  2698. - schemaKey: AccessRequirements
  2699. status: dandi:OpenAccess
  2700. approach:
  2701. - name: microscopy approach; cell population imaging
  2702. schemaKey: ApproachType
  2703. - name: behavioral approach
  2704. schemaKey: ApproachType
  2705. blobDateModified: '2024-06-13T05:27:58.770000-07:00'
  2706. contentSize: 26644049396
  2707. contentUrl:
  2708. - https://api.dandiarchive.org/api/assets/d20a4494-7bda-4273-a4cf-ddc5740c5639/download/
  2709. - https://dandiarchive.s3.amazonaws.com/blobs/995/f4e/995f4e8d-dd2f-4677-bc89-355e3ad2750c
  2710. dateModified: '2024-06-24T02:24:04.663777-07:00'
  2711. datePublished: '2024-06-25T00:15:48.887090+00:00'
  2712. digest:
  2713. dandi:dandi-etag: 960927ee470d469efbdc36307257b06c-398
  2714. dandi:sha2-256: 3dcd244c0a5bfaed54dd62d6c0174025dda6486e50605baca9cb5828128ca168
  2715. encodingFormat: application/x-nwb
  2716. id: dandiasset:d20a4494-7bda-4273-a4cf-ddc5740c5639
  2717. identifier: d20a4494-7bda-4273-a4cf-ddc5740c5639
  2718. measurementTechnique:
  2719. - name: analytical technique
  2720. schemaKey: MeasurementTechniqueType
  2721. - name: behavioral technique
  2722. schemaKey: MeasurementTechniqueType
  2723. path: sub-2023-01-17-14-SWF702/sub-2023-01-17-14-SWF702_ses-20230117_behavior+image+ophys.nwb
  2724. publishedBy:
  2725. endDate: '2024-06-25T00:15:48.887090+00:00'
  2726. id: urn:uuid:d4d0597d-0e7a-43bc-ba01-af547b884668
  2727. name: DANDI publish
  2728. schemaKey: PublishActivity
  2729. startDate: '2024-06-25T00:15:48.887090+00:00'
  2730. wasAssociatedWith:
  2731. - id: urn:uuid:e3dcb499-7459-46e2-8c30-a75405527ab7
  2732. identifier: RRID:SCR_017571
  2733. name: DANDI API
  2734. schemaKey: Software
  2735. version: 0.1.0
  2736. relatedResource:
  2737. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2738. relation: dcite:IsDescribedBy
  2739. schemaKey: Resource
  2740. schemaKey: Asset
  2741. schemaVersion: 0.6.7
  2742. variableMeasured:
  2743. - schemaKey: PropertyValue
  2744. value: ProcessingModule
  2745. - schemaKey: PropertyValue
  2746. value: BehavioralTimeSeries
  2747. - schemaKey: PropertyValue
  2748. value: PlaneSegmentation
  2749. - schemaKey: PropertyValue
  2750. value: BehavioralEvents
  2751. wasAttributedTo:
  2752. - age:
  2753. schemaKey: PropertyValue
  2754. unitText: ISO-8601 duration
  2755. value: P0D
  2756. valueReference:
  2757. schemaKey: PropertyValue
  2758. value: dandi:BirthReference
  2759. identifier: 2023-01-17-14-SWF702
  2760. schemaKey: Participant
  2761. sex:
  2762. name: Other
  2763. schemaKey: SexType
  2764. species:
  2765. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2766. name: Caenorhabditis elegans
  2767. schemaKey: SpeciesType
  2768. wasGeneratedBy:
  2769. - description: 'Ventral cord at the bottom when head faces left; 1-2 mature eggs
  2770. Heat stim at t~801
  2771. High pumping variance pre-stim, no pumping post-stim
  2772. More forward runs after t>1300
  2773. 15 and 16 were retaken after 17 and 18, immobilization looked very stable
  2774. '
  2775. name: Acquisition session
  2776. schemaKey: Session
  2777. startDate: '2023-01-17T00:00:00-08:00'
  2778. - description: Metadata generated by DANDI cli
  2779. endDate: '2024-06-24T02:24:04.663749-07:00'
  2780. id: urn:uuid:5f59d70d-430d-472b-a682-049be4fea760
  2781. name: Metadata generation
  2782. schemaKey: Activity
  2783. startDate: '2024-06-24T02:24:04.661559-07:00'
  2784. wasAssociatedWith:
  2785. - identifier: RRID:SCR_019009
  2786. name: DANDI Command Line Interface
  2787. schemaKey: Software
  2788. url: https://github.com/dandi/dandi-cli
  2789. version: 0.62.1
  2790. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2791. access:
  2792. - schemaKey: AccessRequirements
  2793. status: dandi:OpenAccess
  2794. approach:
  2795. - name: microscopy approach; cell population imaging
  2796. schemaKey: ApproachType
  2797. - name: behavioral approach
  2798. schemaKey: ApproachType
  2799. blobDateModified: '2024-06-13T06:26:36.230000-07:00'
  2800. contentSize: 26432048149
  2801. contentUrl:
  2802. - https://api.dandiarchive.org/api/assets/080a096f-ef6f-44e8-a8ce-882a74905a0e/download/
  2803. - https://dandiarchive.s3.amazonaws.com/blobs/7ee/213/7ee21312-8a1d-4d63-a19a-81d052dd2588
  2804. dateModified: '2024-06-24T02:24:40.867565-07:00'
  2805. datePublished: '2024-06-25T00:15:48.893585+00:00'
  2806. digest:
  2807. dandi:dandi-etag: 89260d5ed78338d5cff56339993e5ec2-394
  2808. dandi:sha2-256: 98894dc2c36b45b53d1414e3bab96926ebeb12e87c1c6b21620d1f87847b6813
  2809. encodingFormat: application/x-nwb
  2810. id: dandiasset:080a096f-ef6f-44e8-a8ce-882a74905a0e
  2811. identifier: 080a096f-ef6f-44e8-a8ce-882a74905a0e
  2812. measurementTechnique:
  2813. - name: analytical technique
  2814. schemaKey: MeasurementTechniqueType
  2815. - name: behavioral technique
  2816. schemaKey: MeasurementTechniqueType
  2817. path: sub-2023-01-19-08-SWF702/sub-2023-01-19-08-SWF702_ses-20230119_behavior+image+ophys.nwb
  2818. publishedBy:
  2819. endDate: '2024-06-25T00:15:48.893585+00:00'
  2820. id: urn:uuid:9b7024bf-3511-4efc-867f-2fc84ba2cc06
  2821. name: DANDI publish
  2822. schemaKey: PublishActivity
  2823. startDate: '2024-06-25T00:15:48.893585+00:00'
  2824. wasAssociatedWith:
  2825. - id: urn:uuid:b20214de-b766-444a-8db3-c9c079a23337
  2826. identifier: RRID:SCR_017571
  2827. name: DANDI API
  2828. schemaKey: Software
  2829. version: 0.1.0
  2830. relatedResource:
  2831. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2832. relation: dcite:IsDescribedBy
  2833. schemaKey: Resource
  2834. schemaKey: Asset
  2835. schemaVersion: 0.6.7
  2836. variableMeasured:
  2837. - schemaKey: PropertyValue
  2838. value: ProcessingModule
  2839. - schemaKey: PropertyValue
  2840. value: BehavioralTimeSeries
  2841. - schemaKey: PropertyValue
  2842. value: PlaneSegmentation
  2843. - schemaKey: PropertyValue
  2844. value: BehavioralEvents
  2845. wasAttributedTo:
  2846. - age:
  2847. schemaKey: PropertyValue
  2848. unitText: ISO-8601 duration
  2849. value: P0D
  2850. valueReference:
  2851. schemaKey: PropertyValue
  2852. value: dandi:BirthReference
  2853. identifier: 2023-01-19-08-SWF702
  2854. schemaKey: Participant
  2855. sex:
  2856. name: Other
  2857. schemaKey: SexType
  2858. species:
  2859. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2860. name: Caenorhabditis elegans
  2861. schemaKey: SpeciesType
  2862. wasGeneratedBy:
  2863. - description: 'Ventral cord at the bottom when head faces left; 2-3 mature eggs
  2864. This is a baseline dataset
  2865. High pumping variance
  2866. Long coiling t~300 with intermittent disruption of tracking
  2867. Lots of omaga turns without tracking disturbance
  2868. Head touches midbody during immobilization, so mid portion of ventral cord is
  2869. also in the field of view
  2870. '
  2871. name: Acquisition session
  2872. schemaKey: Session
  2873. startDate: '2023-01-19T00:00:00-08:00'
  2874. - description: Metadata generated by DANDI cli
  2875. endDate: '2024-06-24T02:24:40.867548-07:00'
  2876. id: urn:uuid:767f181b-cf25-489f-943a-3a5a1c79a355
  2877. name: Metadata generation
  2878. schemaKey: Activity
  2879. startDate: '2024-06-24T02:24:40.866138-07:00'
  2880. wasAssociatedWith:
  2881. - identifier: RRID:SCR_019009
  2882. name: DANDI Command Line Interface
  2883. schemaKey: Software
  2884. url: https://github.com/dandi/dandi-cli
  2885. version: 0.62.1
  2886. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2887. access:
  2888. - schemaKey: AccessRequirements
  2889. status: dandi:OpenAccess
  2890. approach:
  2891. - name: microscopy approach; cell population imaging
  2892. schemaKey: ApproachType
  2893. - name: behavioral approach
  2894. schemaKey: ApproachType
  2895. blobDateModified: '2024-06-14T20:30:03.940000-07:00'
  2896. contentSize: 26379164373
  2897. contentUrl:
  2898. - https://api.dandiarchive.org/api/assets/f7bb2e72-2657-49fd-93fd-b289242ff96a/download/
  2899. - https://dandiarchive.s3.amazonaws.com/blobs/aaf/4b8/aaf4b8f9-4c83-4cad-809a-8b064d1764ff
  2900. dateModified: '2024-06-24T02:24:44.167343-07:00'
  2901. datePublished: '2024-06-25T00:15:48.900537+00:00'
  2902. digest:
  2903. dandi:dandi-etag: 1af7baf68461b4fdd8f22fe3ee559719-394
  2904. dandi:sha2-256: 9de51a336dc2a4f3e0ebc187dcf8b8ac6b7d202d998c55a61cabf24b4ab4e030
  2905. encodingFormat: application/x-nwb
  2906. id: dandiasset:f7bb2e72-2657-49fd-93fd-b289242ff96a
  2907. identifier: f7bb2e72-2657-49fd-93fd-b289242ff96a
  2908. measurementTechnique:
  2909. - name: analytical technique
  2910. schemaKey: MeasurementTechniqueType
  2911. - name: behavioral technique
  2912. schemaKey: MeasurementTechniqueType
  2913. path: sub-2023-01-19-15-SWF702/sub-2023-01-19-15-SWF702_ses-20230119_behavior+image+ophys.nwb
  2914. publishedBy:
  2915. endDate: '2024-06-25T00:15:48.900537+00:00'
  2916. id: urn:uuid:42213590-d16a-40d4-9465-443ff6307bb6
  2917. name: DANDI publish
  2918. schemaKey: PublishActivity
  2919. startDate: '2024-06-25T00:15:48.900537+00:00'
  2920. wasAssociatedWith:
  2921. - id: urn:uuid:75842aff-5b4c-4183-b926-c42bccb99ab0
  2922. identifier: RRID:SCR_017571
  2923. name: DANDI API
  2924. schemaKey: Software
  2925. version: 0.1.0
  2926. relatedResource:
  2927. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  2928. relation: dcite:IsDescribedBy
  2929. schemaKey: Resource
  2930. schemaKey: Asset
  2931. schemaVersion: 0.6.7
  2932. variableMeasured:
  2933. - schemaKey: PropertyValue
  2934. value: ProcessingModule
  2935. - schemaKey: PropertyValue
  2936. value: BehavioralTimeSeries
  2937. - schemaKey: PropertyValue
  2938. value: PlaneSegmentation
  2939. - schemaKey: PropertyValue
  2940. value: BehavioralEvents
  2941. wasAttributedTo:
  2942. - age:
  2943. schemaKey: PropertyValue
  2944. unitText: ISO-8601 duration
  2945. value: P0D
  2946. valueReference:
  2947. schemaKey: PropertyValue
  2948. value: dandi:BirthReference
  2949. identifier: 2023-01-19-15-SWF702
  2950. schemaKey: Participant
  2951. sex:
  2952. name: Other
  2953. schemaKey: SexType
  2954. species:
  2955. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  2956. name: Caenorhabditis elegans
  2957. schemaKey: SpeciesType
  2958. wasGeneratedBy:
  2959. - description: 'Ventral cord on top when head faces left; one row of mature eggs
  2960. This is a baseline dataset
  2961. High pumping variance
  2962. Mild focus issue t>1200
  2963. Immobilization worked well on the second trial, so I stepped on laser intensities
  2964. '
  2965. name: Acquisition session
  2966. schemaKey: Session
  2967. startDate: '2023-01-19T00:00:00-08:00'
  2968. - description: Metadata generated by DANDI cli
  2969. endDate: '2024-06-24T02:24:44.167329-07:00'
  2970. id: urn:uuid:e948844d-494b-4512-af2f-f92ea71c1e67
  2971. name: Metadata generation
  2972. schemaKey: Activity
  2973. startDate: '2024-06-24T02:24:44.166067-07:00'
  2974. wasAssociatedWith:
  2975. - identifier: RRID:SCR_019009
  2976. name: DANDI Command Line Interface
  2977. schemaKey: Software
  2978. url: https://github.com/dandi/dandi-cli
  2979. version: 0.62.1
  2980. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2981. access:
  2982. - schemaKey: AccessRequirements
  2983. status: dandi:OpenAccess
  2984. approach:
  2985. - name: microscopy approach; cell population imaging
  2986. schemaKey: ApproachType
  2987. - name: behavioral approach
  2988. schemaKey: ApproachType
  2989. blobDateModified: '2024-06-14T20:47:48.720000-07:00'
  2990. contentSize: 26283315575
  2991. contentUrl:
  2992. - https://api.dandiarchive.org/api/assets/d4313d52-83b0-48d2-9e13-4164b8732b5e/download/
  2993. - https://dandiarchive.s3.amazonaws.com/blobs/980/e63/980e6316-b072-48dd-876c-ff9648b520f9
  2994. dateModified: '2024-06-24T02:24:46.741975-07:00'
  2995. datePublished: '2024-06-25T00:15:48.907121+00:00'
  2996. digest:
  2997. dandi:dandi-etag: 73bb1e4e9cb3d64cda2cb547347a9fe2-392
  2998. dandi:sha2-256: 0b14290d2178a349b19337eb26718dc31d989fa8d0c1bcb5c2e98064eb57054b
  2999. encodingFormat: application/x-nwb
  3000. id: dandiasset:d4313d52-83b0-48d2-9e13-4164b8732b5e
  3001. identifier: d4313d52-83b0-48d2-9e13-4164b8732b5e
  3002. measurementTechnique:
  3003. - name: analytical technique
  3004. schemaKey: MeasurementTechniqueType
  3005. - name: behavioral technique
  3006. schemaKey: MeasurementTechniqueType
  3007. path: sub-2023-01-19-22-SWF702/sub-2023-01-19-22-SWF702_ses-20230119_behavior+image+ophys.nwb
  3008. publishedBy:
  3009. endDate: '2024-06-25T00:15:48.907121+00:00'
  3010. id: urn:uuid:efbe245d-30f1-4d49-b08d-8bdd313751ea
  3011. name: DANDI publish
  3012. schemaKey: PublishActivity
  3013. startDate: '2024-06-25T00:15:48.907121+00:00'
  3014. wasAssociatedWith:
  3015. - id: urn:uuid:a2adc576-266d-4f1f-a9e1-730056f577d5
  3016. identifier: RRID:SCR_017571
  3017. name: DANDI API
  3018. schemaKey: Software
  3019. version: 0.1.0
  3020. relatedResource:
  3021. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3022. relation: dcite:IsDescribedBy
  3023. schemaKey: Resource
  3024. schemaKey: Asset
  3025. schemaVersion: 0.6.7
  3026. variableMeasured:
  3027. - schemaKey: PropertyValue
  3028. value: ProcessingModule
  3029. - schemaKey: PropertyValue
  3030. value: BehavioralTimeSeries
  3031. - schemaKey: PropertyValue
  3032. value: PlaneSegmentation
  3033. - schemaKey: PropertyValue
  3034. value: BehavioralEvents
  3035. wasAttributedTo:
  3036. - age:
  3037. schemaKey: PropertyValue
  3038. unitText: ISO-8601 duration
  3039. value: P0D
  3040. valueReference:
  3041. schemaKey: PropertyValue
  3042. value: dandi:BirthReference
  3043. identifier: 2023-01-19-22-SWF702
  3044. schemaKey: Participant
  3045. sex:
  3046. name: Other
  3047. schemaKey: SexType
  3048. species:
  3049. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3050. name: Caenorhabditis elegans
  3051. schemaKey: SpeciesType
  3052. wasGeneratedBy:
  3053. - description: 'Ventral cord at the bottom when head faces left; no mature eggs
  3054. This is a baseline dataset
  3055. High pumping rates, lots of reversals
  3056. '
  3057. name: Acquisition session
  3058. schemaKey: Session
  3059. startDate: '2023-01-19T00:00:00-08:00'
  3060. - description: Metadata generated by DANDI cli
  3061. endDate: '2024-06-24T02:24:46.741956-07:00'
  3062. id: urn:uuid:9d81310c-8454-433a-9982-5be8c04c25b5
  3063. name: Metadata generation
  3064. schemaKey: Activity
  3065. startDate: '2024-06-24T02:24:46.740539-07:00'
  3066. wasAssociatedWith:
  3067. - identifier: RRID:SCR_019009
  3068. name: DANDI Command Line Interface
  3069. schemaKey: Software
  3070. url: https://github.com/dandi/dandi-cli
  3071. version: 0.62.1
  3072. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3073. access:
  3074. - schemaKey: AccessRequirements
  3075. status: dandi:OpenAccess
  3076. approach:
  3077. - name: microscopy approach; cell population imaging
  3078. schemaKey: ApproachType
  3079. - name: behavioral approach
  3080. schemaKey: ApproachType
  3081. blobDateModified: '2024-06-13T05:57:28.090000-07:00'
  3082. contentSize: 26526588060
  3083. contentUrl:
  3084. - https://api.dandiarchive.org/api/assets/a3d17ae8-253c-4526-af73-7241476877e7/download/
  3085. - https://dandiarchive.s3.amazonaws.com/blobs/41e/a51/41ea511b-d127-41ce-b9bc-4a9284fad224
  3086. dateModified: '2024-06-24T02:24:45.137525-07:00'
  3087. datePublished: '2024-06-25T00:15:48.914226+00:00'
  3088. digest:
  3089. dandi:dandi-etag: fac524a048c1faa0e5228aaecfbcd5aa-396
  3090. dandi:sha2-256: 749061e8261f84b3ac1bc4b23a251608022ed2badb2ad4e01096c7ec274bf19d
  3091. encodingFormat: application/x-nwb
  3092. id: dandiasset:a3d17ae8-253c-4526-af73-7241476877e7
  3093. identifier: a3d17ae8-253c-4526-af73-7241476877e7
  3094. measurementTechnique:
  3095. - name: analytical technique
  3096. schemaKey: MeasurementTechniqueType
  3097. - name: behavioral technique
  3098. schemaKey: MeasurementTechniqueType
  3099. path: sub-2023-01-18-01-SWF702/sub-2023-01-18-01-SWF702_ses-20230118_behavior+image+ophys.nwb
  3100. publishedBy:
  3101. endDate: '2024-06-25T00:15:48.914226+00:00'
  3102. id: urn:uuid:4d8de982-3f8a-47c7-9e4e-b2bbe454e3a5
  3103. name: DANDI publish
  3104. schemaKey: PublishActivity
  3105. startDate: '2024-06-25T00:15:48.914226+00:00'
  3106. wasAssociatedWith:
  3107. - id: urn:uuid:f97e37a6-6d16-48a9-8be6-a8d38524eff1
  3108. identifier: RRID:SCR_017571
  3109. name: DANDI API
  3110. schemaKey: Software
  3111. version: 0.1.0
  3112. relatedResource:
  3113. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3114. relation: dcite:IsDescribedBy
  3115. schemaKey: Resource
  3116. schemaKey: Asset
  3117. schemaVersion: 0.6.7
  3118. variableMeasured:
  3119. - schemaKey: PropertyValue
  3120. value: ProcessingModule
  3121. - schemaKey: PropertyValue
  3122. value: BehavioralTimeSeries
  3123. - schemaKey: PropertyValue
  3124. value: PlaneSegmentation
  3125. - schemaKey: PropertyValue
  3126. value: BehavioralEvents
  3127. wasAttributedTo:
  3128. - age:
  3129. schemaKey: PropertyValue
  3130. unitText: ISO-8601 duration
  3131. value: P0D
  3132. valueReference:
  3133. schemaKey: PropertyValue
  3134. value: dandi:BirthReference
  3135. identifier: 2023-01-18-01-SWF702
  3136. schemaKey: Participant
  3137. sex:
  3138. name: Other
  3139. schemaKey: SexType
  3140. species:
  3141. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3142. name: Caenorhabditis elegans
  3143. schemaKey: SpeciesType
  3144. wasGeneratedBy:
  3145. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  3146. eggs
  3147. Heatstim at t~801
  3148. Short bouts of pumping pre-stim, no pumping post-stim
  3149. Spent more time in reversals/ omega turns post-stim
  3150. Lost 3-5 loops to coiling t~750 and t~850 and t~1550
  3151. Stable immobilization with minimal gliding, 07 is a backup of 02
  3152. '
  3153. name: Acquisition session
  3154. schemaKey: Session
  3155. startDate: '2023-01-18T00:00:00-08:00'
  3156. - description: Metadata generated by DANDI cli
  3157. endDate: '2024-06-24T02:24:45.137509-07:00'
  3158. id: urn:uuid:131be058-295e-4b0a-af9a-dccee6263f29
  3159. name: Metadata generation
  3160. schemaKey: Activity
  3161. startDate: '2024-06-24T02:24:45.135580-07:00'
  3162. wasAssociatedWith:
  3163. - identifier: RRID:SCR_019009
  3164. name: DANDI Command Line Interface
  3165. schemaKey: Software
  3166. url: https://github.com/dandi/dandi-cli
  3167. version: 0.62.1
  3168. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3169. access:
  3170. - schemaKey: AccessRequirements
  3171. status: dandi:OpenAccess
  3172. approach:
  3173. - name: microscopy approach; cell population imaging
  3174. schemaKey: ApproachType
  3175. - name: behavioral approach
  3176. schemaKey: ApproachType
  3177. blobDateModified: '2024-06-13T08:53:41.750000-07:00'
  3178. contentSize: 26334665757
  3179. contentUrl:
  3180. - https://api.dandiarchive.org/api/assets/e41e9955-2e56-4635-b466-9b106272ac81/download/
  3181. - https://dandiarchive.s3.amazonaws.com/blobs/68d/b3e/68db3ebc-0036-44ab-b707-1390f997f418
  3182. dateModified: '2024-06-24T03:03:56.503934-07:00'
  3183. datePublished: '2024-06-25T00:15:48.921022+00:00'
  3184. digest:
  3185. dandi:dandi-etag: a9cd21f94ee8c389a9bae2b36c9a86fa-393
  3186. dandi:sha2-256: 78c1f188a15994fa7b01b00c4bf6608b6bc6a786d85a8259e441821d154d2efc
  3187. encodingFormat: application/x-nwb
  3188. id: dandiasset:e41e9955-2e56-4635-b466-9b106272ac81
  3189. identifier: e41e9955-2e56-4635-b466-9b106272ac81
  3190. measurementTechnique:
  3191. - name: analytical technique
  3192. schemaKey: MeasurementTechniqueType
  3193. - name: behavioral technique
  3194. schemaKey: MeasurementTechniqueType
  3195. path: sub-2023-01-23-15-SWF702/sub-2023-01-23-15-SWF702_ses-20230123_behavior+image+ophys.nwb
  3196. publishedBy:
  3197. endDate: '2024-06-25T00:15:48.921022+00:00'
  3198. id: urn:uuid:7d7e3b8d-10be-4df9-99e9-6bf1da4952ad
  3199. name: DANDI publish
  3200. schemaKey: PublishActivity
  3201. startDate: '2024-06-25T00:15:48.921022+00:00'
  3202. wasAssociatedWith:
  3203. - id: urn:uuid:05780481-4289-48ba-a45d-b950dfc9246b
  3204. identifier: RRID:SCR_017571
  3205. name: DANDI API
  3206. schemaKey: Software
  3207. version: 0.1.0
  3208. relatedResource:
  3209. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3210. relation: dcite:IsDescribedBy
  3211. schemaKey: Resource
  3212. schemaKey: Asset
  3213. schemaVersion: 0.6.7
  3214. variableMeasured:
  3215. - schemaKey: PropertyValue
  3216. value: ProcessingModule
  3217. - schemaKey: PropertyValue
  3218. value: BehavioralTimeSeries
  3219. - schemaKey: PropertyValue
  3220. value: PlaneSegmentation
  3221. - schemaKey: PropertyValue
  3222. value: BehavioralEvents
  3223. wasAttributedTo:
  3224. - age:
  3225. schemaKey: PropertyValue
  3226. unitText: ISO-8601 duration
  3227. value: P0D
  3228. valueReference:
  3229. schemaKey: PropertyValue
  3230. value: dandi:BirthReference
  3231. identifier: 2023-01-23-15-SWF702
  3232. schemaKey: Participant
  3233. sex:
  3234. name: Other
  3235. schemaKey: SexType
  3236. species:
  3237. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3238. name: Caenorhabditis elegans
  3239. schemaKey: SpeciesType
  3240. wasGeneratedBy:
  3241. - description: "Ventral cord at the bottom when head faces left; one row of mature
  3242. eggs\nThis is a baseline dataset\nLots of omega turns in the first half of the
  3243. recording\nMore pumping t~700-1000\nImmobilized well, head is straight, but there’s
  3244. quite a bit of gliding \nNo backup for 16\n"
  3245. name: Acquisition session
  3246. schemaKey: Session
  3247. startDate: '2023-01-23T00:00:00-08:00'
  3248. - description: Metadata generated by DANDI cli
  3249. endDate: '2024-06-24T03:03:56.503918-07:00'
  3250. id: urn:uuid:15315082-9004-45b9-b5b7-2602538a1a57
  3251. name: Metadata generation
  3252. schemaKey: Activity
  3253. startDate: '2024-06-24T03:03:56.502633-07:00'
  3254. wasAssociatedWith:
  3255. - identifier: RRID:SCR_019009
  3256. name: DANDI Command Line Interface
  3257. schemaKey: Software
  3258. url: https://github.com/dandi/dandi-cli
  3259. version: 0.62.1
  3260. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3261. access:
  3262. - schemaKey: AccessRequirements
  3263. status: dandi:OpenAccess
  3264. approach:
  3265. - name: microscopy approach; cell population imaging
  3266. schemaKey: ApproachType
  3267. - name: behavioral approach
  3268. schemaKey: ApproachType
  3269. blobDateModified: '2024-06-13T07:55:01.410000-07:00'
  3270. contentSize: 26373384337
  3271. contentUrl:
  3272. - https://api.dandiarchive.org/api/assets/69c917b4-3246-4588-b93e-e4c40aa9225e/download/
  3273. - https://dandiarchive.s3.amazonaws.com/blobs/18e/a82/18ea8280-f581-4e76-a98f-efc80dfd4c57
  3274. dateModified: '2024-06-24T02:50:50.395868-07:00'
  3275. datePublished: '2024-06-25T00:15:48.927600+00:00'
  3276. digest:
  3277. dandi:dandi-etag: 06fdb81adb4ac65064ce95d48e94b4a4-393
  3278. dandi:sha2-256: d3b9993febe001bc8ad9c985da1a5ff2c8e0eba6ac5c99c15aa0e9a7173aaba8
  3279. encodingFormat: application/x-nwb
  3280. id: dandiasset:69c917b4-3246-4588-b93e-e4c40aa9225e
  3281. identifier: 69c917b4-3246-4588-b93e-e4c40aa9225e
  3282. measurementTechnique:
  3283. - name: analytical technique
  3284. schemaKey: MeasurementTechniqueType
  3285. - name: behavioral technique
  3286. schemaKey: MeasurementTechniqueType
  3287. path: sub-2023-01-23-01-SWF702/sub-2023-01-23-01-SWF702_ses-20230123_behavior+image+ophys.nwb
  3288. publishedBy:
  3289. endDate: '2024-06-25T00:15:48.927600+00:00'
  3290. id: urn:uuid:140af690-6a0a-424a-bbee-7ce2b8a539cf
  3291. name: DANDI publish
  3292. schemaKey: PublishActivity
  3293. startDate: '2024-06-25T00:15:48.927600+00:00'
  3294. wasAssociatedWith:
  3295. - id: urn:uuid:da4afa7a-1bf2-4f60-a102-6676df443029
  3296. identifier: RRID:SCR_017571
  3297. name: DANDI API
  3298. schemaKey: Software
  3299. version: 0.1.0
  3300. relatedResource:
  3301. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3302. relation: dcite:IsDescribedBy
  3303. schemaKey: Resource
  3304. schemaKey: Asset
  3305. schemaVersion: 0.6.7
  3306. variableMeasured:
  3307. - schemaKey: PropertyValue
  3308. value: ProcessingModule
  3309. - schemaKey: PropertyValue
  3310. value: BehavioralTimeSeries
  3311. - schemaKey: PropertyValue
  3312. value: PlaneSegmentation
  3313. - schemaKey: PropertyValue
  3314. value: BehavioralEvents
  3315. wasAttributedTo:
  3316. - age:
  3317. schemaKey: PropertyValue
  3318. unitText: ISO-8601 duration
  3319. value: P0D
  3320. valueReference:
  3321. schemaKey: PropertyValue
  3322. value: dandi:BirthReference
  3323. identifier: 2023-01-23-01-SWF702
  3324. schemaKey: Participant
  3325. sex:
  3326. name: Other
  3327. schemaKey: SexType
  3328. species:
  3329. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3330. name: Caenorhabditis elegans
  3331. schemaKey: SpeciesType
  3332. wasGeneratedBy:
  3333. - description: 'Ventral cord at the bottom when head faces left; 1-2 mature eggs
  3334. This is a baseline dataset
  3335. High pumping variance
  3336. Lost a few loops to coiling t~900
  3337. I am 100% sure that I didn’t touch the air table/ camera during free-moving imaging,
  3338. but somehow the near-perfect red-green alignment went away once I started the
  3339. immobilized imaging, so I suspect it’s because of the focal plane change (~100
  3340. um towards objective) once the cooling block was added
  3341. Immobilization worked well, but there was some gliding
  3342. '
  3343. name: Acquisition session
  3344. schemaKey: Session
  3345. startDate: '2023-01-23T00:00:00-08:00'
  3346. - description: Metadata generated by DANDI cli
  3347. endDate: '2024-06-24T02:50:50.395849-07:00'
  3348. id: urn:uuid:da0181fe-ddd4-45e4-a2b1-cd23ff612e2b
  3349. name: Metadata generation
  3350. schemaKey: Activity
  3351. startDate: '2024-06-24T02:50:50.388657-07:00'
  3352. wasAssociatedWith:
  3353. - identifier: RRID:SCR_019009
  3354. name: DANDI Command Line Interface
  3355. schemaKey: Software
  3356. url: https://github.com/dandi/dandi-cli
  3357. version: 0.62.1
  3358. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3359. access:
  3360. - schemaKey: AccessRequirements
  3361. status: dandi:OpenAccess
  3362. approach:
  3363. - name: microscopy approach; cell population imaging
  3364. schemaKey: ApproachType
  3365. - name: behavioral approach
  3366. schemaKey: ApproachType
  3367. blobDateModified: '2024-06-14T21:05:22.980000-07:00'
  3368. contentSize: 26332848044
  3369. contentUrl:
  3370. - https://api.dandiarchive.org/api/assets/fc2a0057-1341-4df2-b7ed-ee64d886e451/download/
  3371. - https://dandiarchive.s3.amazonaws.com/blobs/651/f2e/651f2eda-af11-4e13-8d5f-da61df4f4547
  3372. dateModified: '2024-06-24T02:59:12.108959-07:00'
  3373. datePublished: '2024-06-25T00:15:48.934633+00:00'
  3374. digest:
  3375. dandi:dandi-etag: 01c3b56853aa25b6172c9b102c5774d8-393
  3376. dandi:sha2-256: 0cd989d75344ac8fe35864d77863e81787dd456ad29675b4e49060ea4d5b57be
  3377. encodingFormat: application/x-nwb
  3378. id: dandiasset:fc2a0057-1341-4df2-b7ed-ee64d886e451
  3379. identifier: fc2a0057-1341-4df2-b7ed-ee64d886e451
  3380. measurementTechnique:
  3381. - name: analytical technique
  3382. schemaKey: MeasurementTechniqueType
  3383. - name: behavioral technique
  3384. schemaKey: MeasurementTechniqueType
  3385. path: sub-2023-01-23-08-SWF702/sub-2023-01-23-08-SWF702_ses-20230123_behavior+image+ophys.nwb
  3386. publishedBy:
  3387. endDate: '2024-06-25T00:15:48.934633+00:00'
  3388. id: urn:uuid:2ebbb5b9-2512-4954-97d7-13ebfc0b6902
  3389. name: DANDI publish
  3390. schemaKey: PublishActivity
  3391. startDate: '2024-06-25T00:15:48.934633+00:00'
  3392. wasAssociatedWith:
  3393. - id: urn:uuid:ecf897d2-3a62-41f4-a035-ef8df5b59d00
  3394. identifier: RRID:SCR_017571
  3395. name: DANDI API
  3396. schemaKey: Software
  3397. version: 0.1.0
  3398. relatedResource:
  3399. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3400. relation: dcite:IsDescribedBy
  3401. schemaKey: Resource
  3402. schemaKey: Asset
  3403. schemaVersion: 0.6.7
  3404. variableMeasured:
  3405. - schemaKey: PropertyValue
  3406. value: ProcessingModule
  3407. - schemaKey: PropertyValue
  3408. value: BehavioralTimeSeries
  3409. - schemaKey: PropertyValue
  3410. value: PlaneSegmentation
  3411. - schemaKey: PropertyValue
  3412. value: BehavioralEvents
  3413. wasAttributedTo:
  3414. - age:
  3415. schemaKey: PropertyValue
  3416. unitText: ISO-8601 duration
  3417. value: P0D
  3418. valueReference:
  3419. schemaKey: PropertyValue
  3420. value: dandi:BirthReference
  3421. identifier: 2023-01-23-08-SWF702
  3422. schemaKey: Participant
  3423. sex:
  3424. name: Other
  3425. schemaKey: SexType
  3426. species:
  3427. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3428. name: Caenorhabditis elegans
  3429. schemaKey: SpeciesType
  3430. wasGeneratedBy:
  3431. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  3432. eggs
  3433. This is a baseline dataset
  3434. High pumping variance in both the first and second half of the recording
  3435. One of the very few neuropal animals that actually perform long forward runs
  3436. This is probably my best neuropal animal in terms of behavior
  3437. Large stage jitters t~1050
  3438. Worm got close to the agar border, but never actually reached it or touched any
  3439. air
  3440. '
  3441. name: Acquisition session
  3442. schemaKey: Session
  3443. startDate: '2023-01-23T00:00:00-08:00'
  3444. - description: Metadata generated by DANDI cli
  3445. endDate: '2024-06-24T02:59:12.108940-07:00'
  3446. id: urn:uuid:04cad54e-3294-41f7-b4cb-1f0eda640283
  3447. name: Metadata generation
  3448. schemaKey: Activity
  3449. startDate: '2024-06-24T02:59:12.107213-07:00'
  3450. wasAssociatedWith:
  3451. - identifier: RRID:SCR_019009
  3452. name: DANDI Command Line Interface
  3453. schemaKey: Software
  3454. url: https://github.com/dandi/dandi-cli
  3455. version: 0.62.1
  3456. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3457. access:
  3458. - schemaKey: AccessRequirements
  3459. status: dandi:OpenAccess
  3460. approach:
  3461. - name: microscopy approach; cell population imaging
  3462. schemaKey: ApproachType
  3463. - name: behavioral approach
  3464. schemaKey: ApproachType
  3465. blobDateModified: '2024-06-13T09:26:38.220000-07:00'
  3466. contentSize: 26324799061
  3467. contentUrl:
  3468. - https://api.dandiarchive.org/api/assets/26ff1569-b2c3-466a-a3b8-7a65f439c1bb/download/
  3469. - https://dandiarchive.s3.amazonaws.com/blobs/a0c/df7/a0cdf76e-7920-48b7-822e-473c5cdb98f0
  3470. dateModified: '2024-06-24T03:11:44.647251-07:00'
  3471. datePublished: '2024-06-25T00:15:48.942027+00:00'
  3472. digest:
  3473. dandi:dandi-etag: 47dd322edd5e966fae919d690b3f4cc4-393
  3474. dandi:sha2-256: bc8bf888c4621d57fa040c570b1ea3a70209cc504dc2970e9689b4a32ca01079
  3475. encodingFormat: application/x-nwb
  3476. id: dandiasset:26ff1569-b2c3-466a-a3b8-7a65f439c1bb
  3477. identifier: 26ff1569-b2c3-466a-a3b8-7a65f439c1bb
  3478. measurementTechnique:
  3479. - name: analytical technique
  3480. schemaKey: MeasurementTechniqueType
  3481. - name: behavioral technique
  3482. schemaKey: MeasurementTechniqueType
  3483. path: sub-2023-01-23-21-SWF702/sub-2023-01-23-21-SWF702_ses-20230123_behavior+image+ophys.nwb
  3484. publishedBy:
  3485. endDate: '2024-06-25T00:15:48.942027+00:00'
  3486. id: urn:uuid:70e304ed-1c7a-44a2-90f9-e8b9f7bd1b0b
  3487. name: DANDI publish
  3488. schemaKey: PublishActivity
  3489. startDate: '2024-06-25T00:15:48.942027+00:00'
  3490. wasAssociatedWith:
  3491. - id: urn:uuid:aba5143d-a153-4400-9192-f49ea74bdde2
  3492. identifier: RRID:SCR_017571
  3493. name: DANDI API
  3494. schemaKey: Software
  3495. version: 0.1.0
  3496. relatedResource:
  3497. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3498. relation: dcite:IsDescribedBy
  3499. schemaKey: Resource
  3500. schemaKey: Asset
  3501. schemaVersion: 0.6.7
  3502. variableMeasured:
  3503. - schemaKey: PropertyValue
  3504. value: ProcessingModule
  3505. - schemaKey: PropertyValue
  3506. value: BehavioralTimeSeries
  3507. - schemaKey: PropertyValue
  3508. value: PlaneSegmentation
  3509. - schemaKey: PropertyValue
  3510. value: BehavioralEvents
  3511. wasAttributedTo:
  3512. - age:
  3513. schemaKey: PropertyValue
  3514. unitText: ISO-8601 duration
  3515. value: P0D
  3516. valueReference:
  3517. schemaKey: PropertyValue
  3518. value: dandi:BirthReference
  3519. identifier: 2023-01-23-21-SWF702
  3520. schemaKey: Participant
  3521. sex:
  3522. name: Other
  3523. schemaKey: SexType
  3524. species:
  3525. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3526. name: Caenorhabditis elegans
  3527. schemaKey: SpeciesType
  3528. wasGeneratedBy:
  3529. - description: 'Ventral cord at the bottom when head faces left; one row of mature
  3530. eggs
  3531. This is a baseline dataset
  3532. High pumping rates in the first half, low pumping rates in the second half of
  3533. the recording
  3534. Lots of reversals/ reorientations
  3535. Large stage jitter t~350 and t~1170
  3536. Immobilization worked well, but there’s quite a bit of downward gliding in 24
  3537. '
  3538. name: Acquisition session
  3539. schemaKey: Session
  3540. startDate: '2023-01-23T00:00:00-08:00'
  3541. - description: Metadata generated by DANDI cli
  3542. endDate: '2024-06-24T03:11:44.647235-07:00'
  3543. id: urn:uuid:e1ac6518-8d5b-4c08-ae03-e0e288e3f4eb
  3544. name: Metadata generation
  3545. schemaKey: Activity
  3546. startDate: '2024-06-24T03:11:44.645884-07:00'
  3547. wasAssociatedWith:
  3548. - identifier: RRID:SCR_019009
  3549. name: DANDI Command Line Interface
  3550. schemaKey: Software
  3551. url: https://github.com/dandi/dandi-cli
  3552. version: 0.62.1
  3553. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  3554. access:
  3555. - schemaKey: AccessRequirements
  3556. status: dandi:OpenAccess
  3557. approach:
  3558. - name: microscopy approach; cell population imaging
  3559. schemaKey: ApproachType
  3560. - name: behavioral approach
  3561. schemaKey: ApproachType
  3562. blobDateModified: '2024-06-13T09:55:57.720000-07:00'
  3563. contentSize: 26508995421
  3564. contentUrl:
  3565. - https://api.dandiarchive.org/api/assets/97de69a1-529e-42e9-bc32-b6d51918df43/download/
  3566. - https://dandiarchive.s3.amazonaws.com/blobs/e7f/794/e7f79482-e43e-4bcc-80e5-89e895942f62
  3567. dateModified: '2024-06-24T03:11:53.432059-07:00'
  3568. datePublished: '2024-06-25T00:15:48.949818+00:00'
  3569. digest:
  3570. dandi:dandi-etag: 151e2faa1d9f89fc2034b88901725b60-396
  3571. dandi:sha2-256: f54f436ba371c50818f1a33e63dfcb22b0d83e0a0f8e2081dcc5d7a170d074bb
  3572. encodingFormat: application/x-nwb
  3573. id: dandiasset:97de69a1-529e-42e9-bc32-b6d51918df43
  3574. identifier: 97de69a1-529e-42e9-bc32-b6d51918df43
  3575. measurementTechnique:
  3576. - name: analytical technique
  3577. schemaKey: MeasurementTechniqueType
  3578. - name: behavioral technique
  3579. schemaKey: MeasurementTechniqueType
  3580. path: sub-2023-03-07-01-SWF702/sub-2023-03-07-01-SWF702_ses-20230307_behavior+image+ophys.nwb
  3581. publishedBy:
  3582. endDate: '2024-06-25T00:15:48.949818+00:00'
  3583. id: urn:uuid:1a2a5ed5-8c2c-4f1c-981f-b9d75e194e6c
  3584. name: DANDI publish
  3585. schemaKey: PublishActivity
  3586. startDate: '2024-06-25T00:15:48.949818+00:00'
  3587. wasAssociatedWith:
  3588. - id: urn:uuid:a7854840-9fec-4947-a21b-85ffed27f336
  3589. identifier: RRID:SCR_017571
  3590. name: DANDI API
  3591. schemaKey: Software
  3592. version: 0.1.0
  3593. relatedResource:
  3594. - identifier: https://doi.org/10.1016/j.cell.2023.07.035
  3595. relation: dcite:IsDescribedBy
  3596. schemaKey: Resource
  3597. schemaKey: Asset
  3598. schemaVersion: 0.6.7
  3599. variableMeasured:
  3600. - schemaKey: PropertyValue
  3601. value: ProcessingModule
  3602. - schemaKey: PropertyValue
  3603. value: BehavioralTimeSeries
  3604. - schemaKey: PropertyValue
  3605. value: PlaneSegmentation
  3606. - schemaKey: PropertyValue
  3607. value: BehavioralEvents
  3608. wasAttributedTo:
  3609. - age:
  3610. schemaKey: PropertyValue
  3611. unitText: ISO-8601 duration
  3612. value: P0D
  3613. valueReference:
  3614. schemaKey: PropertyValue
  3615. value: dandi:BirthReference
  3616. identifier: 2023-03-07-01-SWF702
  3617. schemaKey: Participant
  3618. sex:
  3619. name: Other
  3620. schemaKey: SexType
  3621. species:
  3622. identifier: http://purl.obolibrary.org/obo/NCBITaxon_6239
  3623. name: Caenorhabditis elegans
  3624. schemaKey: SpeciesType
  3625. wasGeneratedBy:
  3626. - description: 'Ventral cord at the bottom when head faces left; no mature eggs
  3627. This is a baseline dataset
  3628. Mediocre pumping variance
  3629. 08 is just a repetition of 02 and 03, I retook 03 because 02 seemed to have more
  3630. gliding
  3631. Immobilization worked well, not much gliding overall
  3632. '
  3633. name: Acquisition session
  3634. schemaKey: Session
  3635. startDate: '2023-03-07T00:00:00-08:00'
  3636. - description: Metadata generated by DANDI cli
  3637. endDate: '2024-06-24T03:11:53.432042-07:00'
  3638. id: urn:uuid:23394d31-5db6-4d52-97a9-8e88a58f4460
  3639. name: Metadata generation
  3640. schemaKey: Activity
  3641. startDate: '2024-06-24T03:11:53.430673-07:00'
  3642. wasAssociatedWith:
  3643. - identifier: RRID:SCR_019009
  3644. name: DANDI Command Line Interface
  3645. schemaKey: Software
  3646. url: https://github.com/dandi/dandi-cli
  3647. version: 0.62.1
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...