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 119 KB
Raw

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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/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: '2023-06-01T22:59:00.114507-07:00'
  11. contentSize: 1340175564
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/ab5ec054-8372-421c-a4f5-2cf53cf7e796/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/a25/2dc/a252dccf-c3f2-4495-b835-b97cd8fd85fc
  15. dateModified: '2023-06-01T23:33:10.464669-07:00'
  16. digest:
  17. dandi:dandi-etag: 8dba2c9f04829b1897498d84175bbb4a-20
  18. dandi:sha2-256: 6a806fb6c6ab4b3c8a7e3ef4102c9a0967461567f93908c814a17a05849c0c2b
  19. encodingFormat: application/x-nwb
  20. id: dandiasset:ab5ec054-8372-421c-a4f5-2cf53cf7e796
  21. identifier: ab5ec054-8372-421c-a4f5-2cf53cf7e796
  22. measurementTechnique:
  23. - name: behavioral technique
  24. schemaKey: MeasurementTechniqueType
  25. - name: surgical technique
  26. schemaKey: MeasurementTechniqueType
  27. - name: analytical technique
  28. schemaKey: MeasurementTechniqueType
  29. path: sub-416366/sub-416366_ses-775204389_behavior+image+ophys.nwb
  30. schemaKey: Asset
  31. schemaVersion: 0.6.4
  32. variableMeasured:
  33. - schemaKey: PropertyValue
  34. value: PlaneSegmentation
  35. - schemaKey: PropertyValue
  36. value: ImagingPlane
  37. - schemaKey: PropertyValue
  38. value: BehavioralTimeSeries
  39. - schemaKey: PropertyValue
  40. value: ProcessingModule
  41. - schemaKey: PropertyValue
  42. value: OpticalChannel
  43. wasAttributedTo:
  44. - age:
  45. schemaKey: PropertyValue
  46. unitText: ISO-8601 duration
  47. value: P94DT6988.878S
  48. valueReference:
  49. schemaKey: PropertyValue
  50. value: dandi:BirthReference
  51. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  52. identifier: '416366'
  53. schemaKey: Participant
  54. sex:
  55. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  56. name: Male
  57. schemaKey: SexType
  58. species:
  59. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  60. name: Mus musculus - House mouse
  61. schemaKey: SpeciesType
  62. wasGeneratedBy:
  63. - description: Allen Institute OpenScope dataset
  64. identifier: '775204389'
  65. name: '775204389'
  66. schemaKey: Session
  67. startDate: '2018-11-08T17:56:28.878000-08:00'
  68. - description: Metadata generated by DANDI cli
  69. endDate: '2023-06-01T23:33:10.464669-07:00'
  70. id: urn:uuid:9b237967-a203-459f-aa69-1897b8c2db30
  71. name: Metadata generation
  72. schemaKey: Activity
  73. startDate: '2023-06-01T23:32:41.234589-07:00'
  74. wasAssociatedWith:
  75. - identifier: RRID:SCR_019009
  76. name: DANDI Command Line Interface
  77. schemaKey: Software
  78. url: https://github.com/dandi/dandi-cli
  79. version: 0.54.0
  80. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  81. access:
  82. - schemaKey: AccessRequirements
  83. status: dandi:OpenAccess
  84. approach:
  85. - name: microscopy approach; cell population imaging
  86. schemaKey: ApproachType
  87. - name: behavioral approach
  88. schemaKey: ApproachType
  89. blobDateModified: '2023-06-01T23:05:03.506222-07:00'
  90. contentSize: 1397192564
  91. contentUrl:
  92. - https://api.dandiarchive.org/api/assets/ba99173e-aff9-4c2c-a18c-10a9b9b279dc/download/
  93. - https://dandiarchive.s3.amazonaws.com/blobs/54c/1b5/54c1b581-6574-46ee-82a8-8e3530003c90
  94. dateModified: '2023-06-01T23:33:50.847781-07:00'
  95. digest:
  96. dandi:dandi-etag: 925743d4af9c01fdb7f89d368ea65bc9-21
  97. dandi:sha2-256: 75d6d1c833276cba08fee58ec7fb009d7107a6c54c4b68d4a2b270e335654914
  98. encodingFormat: application/x-nwb
  99. id: dandiasset:ba99173e-aff9-4c2c-a18c-10a9b9b279dc
  100. identifier: ba99173e-aff9-4c2c-a18c-10a9b9b279dc
  101. measurementTechnique:
  102. - name: behavioral technique
  103. schemaKey: MeasurementTechniqueType
  104. - name: surgical technique
  105. schemaKey: MeasurementTechniqueType
  106. - name: analytical technique
  107. schemaKey: MeasurementTechniqueType
  108. path: sub-416366/sub-416366_ses-775841272_behavior+image+ophys.nwb
  109. schemaKey: Asset
  110. schemaVersion: 0.6.4
  111. variableMeasured:
  112. - schemaKey: PropertyValue
  113. value: PlaneSegmentation
  114. - schemaKey: PropertyValue
  115. value: ImagingPlane
  116. - schemaKey: PropertyValue
  117. value: BehavioralTimeSeries
  118. - schemaKey: PropertyValue
  119. value: ProcessingModule
  120. - schemaKey: PropertyValue
  121. value: OpticalChannel
  122. wasAttributedTo:
  123. - age:
  124. schemaKey: PropertyValue
  125. unitText: ISO-8601 duration
  126. value: P95DT9522.756S
  127. valueReference:
  128. schemaKey: PropertyValue
  129. value: dandi:BirthReference
  130. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  131. identifier: '416366'
  132. schemaKey: Participant
  133. sex:
  134. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  135. name: Male
  136. schemaKey: SexType
  137. species:
  138. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  139. name: Mus musculus - House mouse
  140. schemaKey: SpeciesType
  141. wasGeneratedBy:
  142. - description: Allen Institute OpenScope dataset
  143. identifier: '775841272'
  144. name: '775841272'
  145. schemaKey: Session
  146. startDate: '2018-11-09T18:38:42.756000-08:00'
  147. - description: Metadata generated by DANDI cli
  148. endDate: '2023-06-01T23:33:50.847781-07:00'
  149. id: urn:uuid:dbc332c4-8321-4a69-8903-a37ead8e2470
  150. name: Metadata generation
  151. schemaKey: Activity
  152. startDate: '2023-06-01T23:32:48.724585-07:00'
  153. wasAssociatedWith:
  154. - identifier: RRID:SCR_019009
  155. name: DANDI Command Line Interface
  156. schemaKey: Software
  157. url: https://github.com/dandi/dandi-cli
  158. version: 0.54.0
  159. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  160. access:
  161. - schemaKey: AccessRequirements
  162. status: dandi:OpenAccess
  163. approach:
  164. - name: microscopy approach; cell population imaging
  165. schemaKey: ApproachType
  166. - name: behavioral approach
  167. schemaKey: ApproachType
  168. blobDateModified: '2023-06-01T23:03:16.887689-07:00'
  169. contentSize: 1376008596
  170. contentUrl:
  171. - https://api.dandiarchive.org/api/assets/1cc781dc-f523-4ac8-82ad-6ede19cfece0/download/
  172. - https://dandiarchive.s3.amazonaws.com/blobs/a1d/2d5/a1d2d51a-720d-4f25-b4e4-848d473260e0
  173. dateModified: '2023-06-01T23:33:58.929529-07:00'
  174. digest:
  175. dandi:dandi-etag: 138c22017ef318266ca7550661e3d48b-21
  176. dandi:sha2-256: dddb01f60f9fdf40a4f2d959fd62793c9a7d6a508a9c5df069d4454ef0548534
  177. encodingFormat: application/x-nwb
  178. id: dandiasset:1cc781dc-f523-4ac8-82ad-6ede19cfece0
  179. identifier: 1cc781dc-f523-4ac8-82ad-6ede19cfece0
  180. measurementTechnique:
  181. - name: behavioral technique
  182. schemaKey: MeasurementTechniqueType
  183. - name: surgical technique
  184. schemaKey: MeasurementTechniqueType
  185. - name: analytical technique
  186. schemaKey: MeasurementTechniqueType
  187. path: sub-432373/sub-432373_ses-812785966_behavior+image+ophys.nwb
  188. schemaKey: Asset
  189. schemaVersion: 0.6.4
  190. variableMeasured:
  191. - schemaKey: PropertyValue
  192. value: PlaneSegmentation
  193. - schemaKey: PropertyValue
  194. value: ImagingPlane
  195. - schemaKey: PropertyValue
  196. value: BehavioralTimeSeries
  197. - schemaKey: PropertyValue
  198. value: ProcessingModule
  199. - schemaKey: PropertyValue
  200. value: OpticalChannel
  201. wasAttributedTo:
  202. - age:
  203. schemaKey: PropertyValue
  204. unitText: ISO-8601 duration
  205. value: P86DT5002.867S
  206. valueReference:
  207. schemaKey: PropertyValue
  208. value: dandi:BirthReference
  209. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  210. identifier: '432373'
  211. schemaKey: Participant
  212. sex:
  213. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  214. name: Male
  215. schemaKey: SexType
  216. species:
  217. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  218. name: Mus musculus - House mouse
  219. schemaKey: SpeciesType
  220. wasGeneratedBy:
  221. - description: Allen Institute OpenScope dataset
  222. identifier: '812785966'
  223. name: '812785966'
  224. schemaKey: Session
  225. startDate: '2019-01-24T17:23:22.867000-08:00'
  226. - description: Metadata generated by DANDI cli
  227. endDate: '2023-06-01T23:33:58.929529-07:00'
  228. id: urn:uuid:11c03068-c73e-4763-952f-650a36f0c4ef
  229. name: Metadata generation
  230. schemaKey: Activity
  231. startDate: '2023-06-01T23:33:02.192614-07:00'
  232. wasAssociatedWith:
  233. - identifier: RRID:SCR_019009
  234. name: DANDI Command Line Interface
  235. schemaKey: Software
  236. url: https://github.com/dandi/dandi-cli
  237. version: 0.54.0
  238. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  239. access:
  240. - schemaKey: AccessRequirements
  241. status: dandi:OpenAccess
  242. approach:
  243. - name: microscopy approach; cell population imaging
  244. schemaKey: ApproachType
  245. - name: behavioral approach
  246. schemaKey: ApproachType
  247. blobDateModified: '2023-06-01T22:58:31.543172-07:00'
  248. contentSize: 1295830892
  249. contentUrl:
  250. - https://api.dandiarchive.org/api/assets/15057c95-f453-4eef-ac05-f424f4b54ee1/download/
  251. - https://dandiarchive.s3.amazonaws.com/blobs/f22/87f/f2287f7c-7848-4008-b37b-96c90a568df2
  252. dateModified: '2023-06-01T23:34:05.363011-07:00'
  253. digest:
  254. dandi:dandi-etag: 0d9cd47e66ee178d8daa0b1924d76fc5-20
  255. dandi:sha2-256: 999ae7ae5382539e8568605a800b15d58a0e64f249922f43472d55478c55b149
  256. encodingFormat: application/x-nwb
  257. id: dandiasset:15057c95-f453-4eef-ac05-f424f4b54ee1
  258. identifier: 15057c95-f453-4eef-ac05-f424f4b54ee1
  259. measurementTechnique:
  260. - name: behavioral technique
  261. schemaKey: MeasurementTechniqueType
  262. - name: surgical technique
  263. schemaKey: MeasurementTechniqueType
  264. - name: analytical technique
  265. schemaKey: MeasurementTechniqueType
  266. path: sub-416366/sub-416366_ses-774663713_behavior+image+ophys.nwb
  267. schemaKey: Asset
  268. schemaVersion: 0.6.4
  269. variableMeasured:
  270. - schemaKey: PropertyValue
  271. value: PlaneSegmentation
  272. - schemaKey: PropertyValue
  273. value: ImagingPlane
  274. - schemaKey: PropertyValue
  275. value: BehavioralTimeSeries
  276. - schemaKey: PropertyValue
  277. value: ProcessingModule
  278. - schemaKey: PropertyValue
  279. value: OpticalChannel
  280. wasAttributedTo:
  281. - age:
  282. schemaKey: PropertyValue
  283. unitText: ISO-8601 duration
  284. value: P93DT7408.972S
  285. valueReference:
  286. schemaKey: PropertyValue
  287. value: dandi:BirthReference
  288. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  289. identifier: '416366'
  290. schemaKey: Participant
  291. sex:
  292. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  293. name: Male
  294. schemaKey: SexType
  295. species:
  296. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  297. name: Mus musculus - House mouse
  298. schemaKey: SpeciesType
  299. wasGeneratedBy:
  300. - description: Allen Institute OpenScope dataset
  301. identifier: '774663713'
  302. name: '774663713'
  303. schemaKey: Session
  304. startDate: '2018-11-07T18:03:28.972000-08:00'
  305. - description: Metadata generated by DANDI cli
  306. endDate: '2023-06-01T23:34:05.363011-07:00'
  307. id: urn:uuid:c5ac9b8d-97d3-4abd-9be1-806d442a7d7a
  308. name: Metadata generation
  309. schemaKey: Activity
  310. startDate: '2023-06-01T23:33:08.398366-07:00'
  311. wasAssociatedWith:
  312. - identifier: RRID:SCR_019009
  313. name: DANDI Command Line Interface
  314. schemaKey: Software
  315. url: https://github.com/dandi/dandi-cli
  316. version: 0.54.0
  317. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  318. access:
  319. - schemaKey: AccessRequirements
  320. status: dandi:OpenAccess
  321. approach:
  322. - name: microscopy approach; cell population imaging
  323. schemaKey: ApproachType
  324. - name: behavioral approach
  325. schemaKey: ApproachType
  326. blobDateModified: '2023-06-01T23:06:43.244365-07:00'
  327. contentSize: 1545789836
  328. contentUrl:
  329. - https://api.dandiarchive.org/api/assets/862c4c4b-08fc-427d-892e-8b95a34e0111/download/
  330. - https://dandiarchive.s3.amazonaws.com/blobs/c93/e3e/c93e3e55-3e78-4a4b-9cd9-9a679dc4c342
  331. dateModified: '2023-06-01T23:34:35.802726-07:00'
  332. digest:
  333. dandi:dandi-etag: db3df010dda002735993a52893021dca-24
  334. dandi:sha2-256: 3cd4ec8432f6f7aaa41c40db1f99f9a1fed7a06915117f9b6e6f150430dbc39e
  335. encodingFormat: application/x-nwb
  336. id: dandiasset:862c4c4b-08fc-427d-892e-8b95a34e0111
  337. identifier: 862c4c4b-08fc-427d-892e-8b95a34e0111
  338. measurementTechnique:
  339. - name: behavioral technique
  340. schemaKey: MeasurementTechniqueType
  341. - name: surgical technique
  342. schemaKey: MeasurementTechniqueType
  343. - name: analytical technique
  344. schemaKey: MeasurementTechniqueType
  345. path: sub-416366/sub-416366_ses-768476976_behavior+image+ophys.nwb
  346. schemaKey: Asset
  347. schemaVersion: 0.6.4
  348. variableMeasured:
  349. - schemaKey: PropertyValue
  350. value: PlaneSegmentation
  351. - schemaKey: PropertyValue
  352. value: ImagingPlane
  353. - schemaKey: PropertyValue
  354. value: BehavioralTimeSeries
  355. - schemaKey: PropertyValue
  356. value: ProcessingModule
  357. - schemaKey: PropertyValue
  358. value: OpticalChannel
  359. wasAttributedTo:
  360. - age:
  361. schemaKey: PropertyValue
  362. unitText: ISO-8601 duration
  363. value: P80DT3939.176S
  364. valueReference:
  365. schemaKey: PropertyValue
  366. value: dandi:BirthReference
  367. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  368. identifier: '416366'
  369. schemaKey: Participant
  370. sex:
  371. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  372. name: Male
  373. schemaKey: SexType
  374. species:
  375. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  376. name: Mus musculus - House mouse
  377. schemaKey: SpeciesType
  378. wasGeneratedBy:
  379. - description: Allen Institute OpenScope dataset
  380. identifier: '768476976'
  381. name: '768476976'
  382. schemaKey: Session
  383. startDate: '2018-10-25T18:05:39.176000-07:00'
  384. - description: Metadata generated by DANDI cli
  385. endDate: '2023-06-01T23:34:35.802726-07:00'
  386. id: urn:uuid:12b07f72-a45d-4a44-9532-c938f798cba9
  387. name: Metadata generation
  388. schemaKey: Activity
  389. startDate: '2023-06-01T23:33:14.654559-07:00'
  390. wasAssociatedWith:
  391. - identifier: RRID:SCR_019009
  392. name: DANDI Command Line Interface
  393. schemaKey: Software
  394. url: https://github.com/dandi/dandi-cli
  395. version: 0.54.0
  396. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  397. access:
  398. - schemaKey: AccessRequirements
  399. status: dandi:OpenAccess
  400. approach:
  401. - name: microscopy approach; cell population imaging
  402. schemaKey: ApproachType
  403. - name: behavioral approach
  404. schemaKey: ApproachType
  405. blobDateModified: '2023-06-01T22:58:59.277202-07:00'
  406. contentSize: 1331707372
  407. contentUrl:
  408. - https://api.dandiarchive.org/api/assets/f1761f56-5bf4-4dfe-8aeb-37560cc0fdf5/download/
  409. - https://dandiarchive.s3.amazonaws.com/blobs/6a7/420/6a742061-24fc-4edd-9e26-dd3649b58a17
  410. dateModified: '2023-06-01T23:36:57.031730-07:00'
  411. digest:
  412. dandi:dandi-etag: 6602985250d52ad01165e3b6e405fd86-20
  413. dandi:sha2-256: 36d96757baed7d9cf0bfea826b8b6ee2857e245966b0513aab83e5d63db592d5
  414. encodingFormat: application/x-nwb
  415. id: dandiasset:f1761f56-5bf4-4dfe-8aeb-37560cc0fdf5
  416. identifier: f1761f56-5bf4-4dfe-8aeb-37560cc0fdf5
  417. measurementTechnique:
  418. - name: behavioral technique
  419. schemaKey: MeasurementTechniqueType
  420. - name: surgical technique
  421. schemaKey: MeasurementTechniqueType
  422. - name: analytical technique
  423. schemaKey: MeasurementTechniqueType
  424. path: sub-432373/sub-432373_ses-815987594_behavior+image+ophys.nwb
  425. schemaKey: Asset
  426. schemaVersion: 0.6.4
  427. variableMeasured:
  428. - schemaKey: PropertyValue
  429. value: PlaneSegmentation
  430. - schemaKey: PropertyValue
  431. value: ImagingPlane
  432. - schemaKey: PropertyValue
  433. value: BehavioralTimeSeries
  434. - schemaKey: PropertyValue
  435. value: ProcessingModule
  436. - schemaKey: PropertyValue
  437. value: OpticalChannel
  438. wasAttributedTo:
  439. - age:
  440. schemaKey: PropertyValue
  441. unitText: ISO-8601 duration
  442. value: P93DT9152.01S
  443. valueReference:
  444. schemaKey: PropertyValue
  445. value: dandi:BirthReference
  446. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  447. identifier: '432373'
  448. schemaKey: Participant
  449. sex:
  450. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  451. name: Male
  452. schemaKey: SexType
  453. species:
  454. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  455. name: Mus musculus - House mouse
  456. schemaKey: SpeciesType
  457. wasGeneratedBy:
  458. - description: Allen Institute OpenScope dataset
  459. identifier: '815987594'
  460. name: '815987594'
  461. schemaKey: Session
  462. startDate: '2019-01-31T18:32:32.010000-08:00'
  463. - description: Metadata generated by DANDI cli
  464. endDate: '2023-06-01T23:36:57.031730-07:00'
  465. id: urn:uuid:594b0d39-5c39-4ddf-bf43-4548f1d22ddb
  466. name: Metadata generation
  467. schemaKey: Activity
  468. startDate: '2023-06-01T23:35:33.922509-07:00'
  469. wasAssociatedWith:
  470. - identifier: RRID:SCR_019009
  471. name: DANDI Command Line Interface
  472. schemaKey: Software
  473. url: https://github.com/dandi/dandi-cli
  474. version: 0.54.0
  475. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  476. access:
  477. - schemaKey: AccessRequirements
  478. status: dandi:OpenAccess
  479. approach:
  480. - name: microscopy approach; cell population imaging
  481. schemaKey: ApproachType
  482. - name: behavioral approach
  483. schemaKey: ApproachType
  484. blobDateModified: '2023-06-01T22:54:21.914980-07:00'
  485. contentSize: 1304184340
  486. contentUrl:
  487. - https://api.dandiarchive.org/api/assets/6a35c81e-ae18-4800-a2cd-9b722d03d526/download/
  488. - https://dandiarchive.s3.amazonaws.com/blobs/eae/c1b/eaec1b65-8b90-486d-a0b3-dd290b9761aa
  489. dateModified: '2023-06-01T23:37:29.958828-07:00'
  490. digest:
  491. dandi:dandi-etag: 20674eef2d8a3e472699a07e46dcaf7b-20
  492. dandi:sha2-256: e9bd00951ebaecc5f3c1229ddb2fa756a4969a3ad3b26223f6e0dbece8800663
  493. encodingFormat: application/x-nwb
  494. id: dandiasset:6a35c81e-ae18-4800-a2cd-9b722d03d526
  495. identifier: 6a35c81e-ae18-4800-a2cd-9b722d03d526
  496. measurementTechnique:
  497. - name: behavioral technique
  498. schemaKey: MeasurementTechniqueType
  499. - name: surgical technique
  500. schemaKey: MeasurementTechniqueType
  501. - name: analytical technique
  502. schemaKey: MeasurementTechniqueType
  503. path: sub-433242/sub-433242_ses-826156469_behavior+image+ophys.nwb
  504. schemaKey: Asset
  505. schemaVersion: 0.6.4
  506. variableMeasured:
  507. - schemaKey: PropertyValue
  508. value: PlaneSegmentation
  509. - schemaKey: PropertyValue
  510. value: ImagingPlane
  511. - schemaKey: PropertyValue
  512. value: BehavioralTimeSeries
  513. - schemaKey: PropertyValue
  514. value: ProcessingModule
  515. - schemaKey: PropertyValue
  516. value: OpticalChannel
  517. wasAttributedTo:
  518. - age:
  519. schemaKey: PropertyValue
  520. unitText: ISO-8601 duration
  521. value: P108DT18067.175S
  522. valueReference:
  523. schemaKey: PropertyValue
  524. value: dandi:BirthReference
  525. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  526. identifier: '433242'
  527. schemaKey: Participant
  528. sex:
  529. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  530. name: Male
  531. schemaKey: SexType
  532. species:
  533. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  534. name: Mus musculus - House mouse
  535. schemaKey: SpeciesType
  536. wasGeneratedBy:
  537. - description: Allen Institute OpenScope dataset
  538. identifier: '826156469'
  539. name: '826156469'
  540. schemaKey: Session
  541. startDate: '2019-02-20T21:01:07.175000-08:00'
  542. - description: Metadata generated by DANDI cli
  543. endDate: '2023-06-01T23:37:29.958828-07:00'
  544. id: urn:uuid:b507a970-4b48-4e58-bce1-f6d7c646cabc
  545. name: Metadata generation
  546. schemaKey: Activity
  547. startDate: '2023-06-01T23:36:25.573419-07:00'
  548. wasAssociatedWith:
  549. - identifier: RRID:SCR_019009
  550. name: DANDI Command Line Interface
  551. schemaKey: Software
  552. url: https://github.com/dandi/dandi-cli
  553. version: 0.54.0
  554. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  555. access:
  556. - schemaKey: AccessRequirements
  557. status: dandi:OpenAccess
  558. approach:
  559. - name: microscopy approach; cell population imaging
  560. schemaKey: ApproachType
  561. - name: behavioral approach
  562. schemaKey: ApproachType
  563. blobDateModified: '2023-06-01T23:06:09.383811-07:00'
  564. contentSize: 1673710836
  565. contentUrl:
  566. - https://api.dandiarchive.org/api/assets/c677cb97-63e2-43eb-b665-a2833397800d/download/
  567. - https://dandiarchive.s3.amazonaws.com/blobs/983/aa1/983aa1cb-07bc-417b-a1b6-e51fb8d4d3c9
  568. dateModified: '2023-06-01T23:37:28.658344-07:00'
  569. digest:
  570. dandi:dandi-etag: d213f0f873fca59525346925768e7e18-25
  571. dandi:sha2-256: 1f245704768416af0444ea338662aa690e809dd30955708db3c62fb264d7234b
  572. encodingFormat: application/x-nwb
  573. id: dandiasset:c677cb97-63e2-43eb-b665-a2833397800d
  574. identifier: c677cb97-63e2-43eb-b665-a2833397800d
  575. measurementTechnique:
  576. - name: behavioral technique
  577. schemaKey: MeasurementTechniqueType
  578. - name: surgical technique
  579. schemaKey: MeasurementTechniqueType
  580. - name: analytical technique
  581. schemaKey: MeasurementTechniqueType
  582. path: sub-432373/sub-432373_ses-817048539_behavior+image+ophys.nwb
  583. schemaKey: Asset
  584. schemaVersion: 0.6.4
  585. variableMeasured:
  586. - schemaKey: PropertyValue
  587. value: PlaneSegmentation
  588. - schemaKey: PropertyValue
  589. value: ImagingPlane
  590. - schemaKey: PropertyValue
  591. value: BehavioralTimeSeries
  592. - schemaKey: PropertyValue
  593. value: ProcessingModule
  594. - schemaKey: PropertyValue
  595. value: OpticalChannel
  596. wasAttributedTo:
  597. - age:
  598. schemaKey: PropertyValue
  599. unitText: ISO-8601 duration
  600. value: P94DT10332.854S
  601. valueReference:
  602. schemaKey: PropertyValue
  603. value: dandi:BirthReference
  604. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  605. identifier: '432373'
  606. schemaKey: Participant
  607. sex:
  608. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  609. name: Male
  610. schemaKey: SexType
  611. species:
  612. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  613. name: Mus musculus - House mouse
  614. schemaKey: SpeciesType
  615. wasGeneratedBy:
  616. - description: Allen Institute OpenScope dataset
  617. identifier: '817048539'
  618. name: '817048539'
  619. schemaKey: Session
  620. startDate: '2019-02-01T18:52:12.854000-08:00'
  621. - description: Metadata generated by DANDI cli
  622. endDate: '2023-06-01T23:37:28.658344-07:00'
  623. id: urn:uuid:f28745f6-09fc-468e-9c83-1668561fa992
  624. name: Metadata generation
  625. schemaKey: Activity
  626. startDate: '2023-06-01T23:36:17.060510-07:00'
  627. wasAssociatedWith:
  628. - identifier: RRID:SCR_019009
  629. name: DANDI Command Line Interface
  630. schemaKey: Software
  631. url: https://github.com/dandi/dandi-cli
  632. version: 0.54.0
  633. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  634. access:
  635. - schemaKey: AccessRequirements
  636. status: dandi:OpenAccess
  637. approach:
  638. - name: microscopy approach; cell population imaging
  639. schemaKey: ApproachType
  640. - name: behavioral approach
  641. schemaKey: ApproachType
  642. blobDateModified: '2023-06-01T22:54:38.306625-07:00'
  643. contentSize: 1327789644
  644. contentUrl:
  645. - https://api.dandiarchive.org/api/assets/01cba1b5-1305-47d7-a6a7-311c0af3417f/download/
  646. - https://dandiarchive.s3.amazonaws.com/blobs/189/168/189168cd-8ac4-4561-b0ea-858d0c79225d
  647. dateModified: '2023-06-01T23:38:00.964239-07:00'
  648. digest:
  649. dandi:dandi-etag: 073ad5a1811d826d4c9cf7f84fa16931-20
  650. dandi:sha2-256: 0b65aa57bf131eab0b9af0ddb8c6771256d099d17d1459a00d00b4f9f7c258e6
  651. encodingFormat: application/x-nwb
  652. id: dandiasset:01cba1b5-1305-47d7-a6a7-311c0af3417f
  653. identifier: 01cba1b5-1305-47d7-a6a7-311c0af3417f
  654. measurementTechnique:
  655. - name: behavioral technique
  656. schemaKey: MeasurementTechniqueType
  657. - name: surgical technique
  658. schemaKey: MeasurementTechniqueType
  659. - name: analytical technique
  660. schemaKey: MeasurementTechniqueType
  661. path: sub-433242/sub-433242_ses-826788987_behavior+image+ophys.nwb
  662. schemaKey: Asset
  663. schemaVersion: 0.6.4
  664. variableMeasured:
  665. - schemaKey: PropertyValue
  666. value: PlaneSegmentation
  667. - schemaKey: PropertyValue
  668. value: ImagingPlane
  669. - schemaKey: PropertyValue
  670. value: BehavioralTimeSeries
  671. - schemaKey: PropertyValue
  672. value: ProcessingModule
  673. - schemaKey: PropertyValue
  674. value: OpticalChannel
  675. wasAttributedTo:
  676. - age:
  677. schemaKey: PropertyValue
  678. unitText: ISO-8601 duration
  679. value: P109DT17356.447S
  680. valueReference:
  681. schemaKey: PropertyValue
  682. value: dandi:BirthReference
  683. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  684. identifier: '433242'
  685. schemaKey: Participant
  686. sex:
  687. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  688. name: Male
  689. schemaKey: SexType
  690. species:
  691. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  692. name: Mus musculus - House mouse
  693. schemaKey: SpeciesType
  694. wasGeneratedBy:
  695. - description: Allen Institute OpenScope dataset
  696. identifier: '826788987'
  697. name: '826788987'
  698. schemaKey: Session
  699. startDate: '2019-02-21T20:49:16.447000-08:00'
  700. - description: Metadata generated by DANDI cli
  701. endDate: '2023-06-01T23:38:00.964239-07:00'
  702. id: urn:uuid:76773a4b-abe3-4cee-aae2-f98586208e84
  703. name: Metadata generation
  704. schemaKey: Activity
  705. startDate: '2023-06-01T23:36:37.378857-07:00'
  706. wasAssociatedWith:
  707. - identifier: RRID:SCR_019009
  708. name: DANDI Command Line Interface
  709. schemaKey: Software
  710. url: https://github.com/dandi/dandi-cli
  711. version: 0.54.0
  712. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  713. access:
  714. - schemaKey: AccessRequirements
  715. status: dandi:OpenAccess
  716. approach:
  717. - name: microscopy approach; cell population imaging
  718. schemaKey: ApproachType
  719. - name: behavioral approach
  720. schemaKey: ApproachType
  721. blobDateModified: '2023-06-01T22:59:54.389940-07:00'
  722. contentSize: 1321439676
  723. contentUrl:
  724. - https://api.dandiarchive.org/api/assets/b623638d-cd2e-4ef7-8431-5930117e0cbe/download/
  725. - https://dandiarchive.s3.amazonaws.com/blobs/cdc/4a0/cdc4a0cb-3cac-4d5d-83ea-99a69770d72d
  726. dateModified: '2023-06-01T23:40:30.363588-07:00'
  727. digest:
  728. dandi:dandi-etag: ec4bc186613d926a5f1d81e1dd673194-20
  729. dandi:sha2-256: 0e25783cb134f0427d64cd2e662b6a614d1e8ce733919c974688c464e3bd9eed
  730. encodingFormat: application/x-nwb
  731. id: dandiasset:b623638d-cd2e-4ef7-8431-5930117e0cbe
  732. identifier: b623638d-cd2e-4ef7-8431-5930117e0cbe
  733. measurementTechnique:
  734. - name: behavioral technique
  735. schemaKey: MeasurementTechniqueType
  736. - name: surgical technique
  737. schemaKey: MeasurementTechniqueType
  738. - name: analytical technique
  739. schemaKey: MeasurementTechniqueType
  740. path: sub-433242/sub-433242_ses-829248349_behavior+image+ophys.nwb
  741. schemaKey: Asset
  742. schemaVersion: 0.6.4
  743. variableMeasured:
  744. - schemaKey: PropertyValue
  745. value: PlaneSegmentation
  746. - schemaKey: PropertyValue
  747. value: ImagingPlane
  748. - schemaKey: PropertyValue
  749. value: BehavioralTimeSeries
  750. - schemaKey: PropertyValue
  751. value: ProcessingModule
  752. - schemaKey: PropertyValue
  753. value: OpticalChannel
  754. wasAttributedTo:
  755. - age:
  756. schemaKey: PropertyValue
  757. unitText: ISO-8601 duration
  758. value: P114DT17475.863S
  759. valueReference:
  760. schemaKey: PropertyValue
  761. value: dandi:BirthReference
  762. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  763. identifier: '433242'
  764. schemaKey: Participant
  765. sex:
  766. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  767. name: Male
  768. schemaKey: SexType
  769. species:
  770. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  771. name: Mus musculus - House mouse
  772. schemaKey: SpeciesType
  773. wasGeneratedBy:
  774. - description: Allen Institute OpenScope dataset
  775. identifier: '829248349'
  776. name: '829248349'
  777. schemaKey: Session
  778. startDate: '2019-02-26T20:51:15.863000-08:00'
  779. - description: Metadata generated by DANDI cli
  780. endDate: '2023-06-01T23:40:30.363588-07:00'
  781. id: urn:uuid:5fb01169-37f9-4ebb-a94a-2cc0261ce623
  782. name: Metadata generation
  783. schemaKey: Activity
  784. startDate: '2023-06-01T23:39:29.140017-07:00'
  785. wasAssociatedWith:
  786. - identifier: RRID:SCR_019009
  787. name: DANDI Command Line Interface
  788. schemaKey: Software
  789. url: https://github.com/dandi/dandi-cli
  790. version: 0.54.0
  791. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  792. access:
  793. - schemaKey: AccessRequirements
  794. status: dandi:OpenAccess
  795. approach:
  796. - name: microscopy approach; cell population imaging
  797. schemaKey: ApproachType
  798. - name: behavioral approach
  799. schemaKey: ApproachType
  800. blobDateModified: '2023-06-01T22:57:04.276179-07:00'
  801. contentSize: 1205022204
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/461f7298-3904-4ebc-8aa8-a16e95ddfe7c/download/
  804. - https://dandiarchive.s3.amazonaws.com/blobs/def/dc4/defdc491-60c4-4aa0-bc31-315c4287af27
  805. dateModified: '2023-06-01T23:40:55.796505-07:00'
  806. digest:
  807. dandi:dandi-etag: a68c7c752325cec9cdda1271998efa5e-18
  808. dandi:sha2-256: 72a56649df0b788e6aead48bbae2ef1af0e52e4431a52eb2ad04f7311e2e3393
  809. encodingFormat: application/x-nwb
  810. id: dandiasset:461f7298-3904-4ebc-8aa8-a16e95ddfe7c
  811. identifier: 461f7298-3904-4ebc-8aa8-a16e95ddfe7c
  812. measurementTechnique:
  813. - name: behavioral technique
  814. schemaKey: MeasurementTechniqueType
  815. - name: surgical technique
  816. schemaKey: MeasurementTechniqueType
  817. - name: analytical technique
  818. schemaKey: MeasurementTechniqueType
  819. path: sub-437813/sub-437813_ses-847488858_behavior+image+ophys.nwb
  820. schemaKey: Asset
  821. schemaVersion: 0.6.4
  822. variableMeasured:
  823. - schemaKey: PropertyValue
  824. value: PlaneSegmentation
  825. - schemaKey: PropertyValue
  826. value: ImagingPlane
  827. - schemaKey: PropertyValue
  828. value: BehavioralTimeSeries
  829. - schemaKey: PropertyValue
  830. value: ProcessingModule
  831. - schemaKey: PropertyValue
  832. value: OpticalChannel
  833. wasAttributedTo:
  834. - age:
  835. schemaKey: PropertyValue
  836. unitText: ISO-8601 duration
  837. value: P134DT81294.727S
  838. valueReference:
  839. schemaKey: PropertyValue
  840. value: dandi:BirthReference
  841. genotype: Rbp4-Cre_KL100/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  842. identifier: '437813'
  843. schemaKey: Participant
  844. sex:
  845. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  846. name: Male
  847. schemaKey: SexType
  848. species:
  849. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  850. name: Mus musculus - House mouse
  851. schemaKey: SpeciesType
  852. wasGeneratedBy:
  853. - description: Allen Institute OpenScope dataset
  854. identifier: '847488858'
  855. name: '847488858'
  856. schemaKey: Session
  857. startDate: '2019-04-08T15:34:54.727000-07:00'
  858. - description: Metadata generated by DANDI cli
  859. endDate: '2023-06-01T23:40:55.796505-07:00'
  860. id: urn:uuid:b68052bf-334d-48f8-b224-f1a6b1649108
  861. name: Metadata generation
  862. schemaKey: Activity
  863. startDate: '2023-06-01T23:39:59.062412-07:00'
  864. wasAssociatedWith:
  865. - identifier: RRID:SCR_019009
  866. name: DANDI Command Line Interface
  867. schemaKey: Software
  868. url: https://github.com/dandi/dandi-cli
  869. version: 0.54.0
  870. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  871. access:
  872. - schemaKey: AccessRequirements
  873. status: dandi:OpenAccess
  874. approach:
  875. - name: microscopy approach; cell population imaging
  876. schemaKey: ApproachType
  877. - name: behavioral approach
  878. schemaKey: ApproachType
  879. blobDateModified: '2023-06-01T22:54:12.644051-07:00'
  880. contentSize: 1300291324
  881. contentUrl:
  882. - https://api.dandiarchive.org/api/assets/289ffbeb-61b3-4084-9883-7c3d7c24cfd7/download/
  883. - https://dandiarchive.s3.amazonaws.com/blobs/e01/fc9/e01fc971-51c6-4cf5-9350-49e3e43becc8
  884. dateModified: '2023-06-01T23:40:56.121452-07:00'
  885. digest:
  886. dandi:dandi-etag: 36361989dfc5f32088ad594afd549a07-20
  887. dandi:sha2-256: f2efba58493e47d3f349a208e97ac511f3a94cdf08c595fea37afd2cb603d9ed
  888. encodingFormat: application/x-nwb
  889. id: dandiasset:289ffbeb-61b3-4084-9883-7c3d7c24cfd7
  890. identifier: 289ffbeb-61b3-4084-9883-7c3d7c24cfd7
  891. measurementTechnique:
  892. - name: behavioral technique
  893. schemaKey: MeasurementTechniqueType
  894. - name: surgical technique
  895. schemaKey: MeasurementTechniqueType
  896. - name: analytical technique
  897. schemaKey: MeasurementTechniqueType
  898. path: sub-437812/sub-437812_ses-848089631_behavior+image+ophys.nwb
  899. schemaKey: Asset
  900. schemaVersion: 0.6.4
  901. variableMeasured:
  902. - schemaKey: PropertyValue
  903. value: PlaneSegmentation
  904. - schemaKey: PropertyValue
  905. value: ImagingPlane
  906. - schemaKey: PropertyValue
  907. value: BehavioralTimeSeries
  908. - schemaKey: PropertyValue
  909. value: ProcessingModule
  910. - schemaKey: PropertyValue
  911. value: OpticalChannel
  912. wasAttributedTo:
  913. - age:
  914. schemaKey: PropertyValue
  915. unitText: ISO-8601 duration
  916. value: P135DT81771.284S
  917. valueReference:
  918. schemaKey: PropertyValue
  919. value: dandi:BirthReference
  920. genotype: Rbp4-Cre_KL100/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  921. identifier: '437812'
  922. schemaKey: Participant
  923. sex:
  924. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  925. name: Male
  926. schemaKey: SexType
  927. species:
  928. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  929. name: Mus musculus - House mouse
  930. schemaKey: SpeciesType
  931. wasGeneratedBy:
  932. - description: Allen Institute OpenScope dataset
  933. identifier: '848089631'
  934. name: '848089631'
  935. schemaKey: Session
  936. startDate: '2019-04-09T15:42:51.284000-07:00'
  937. - description: Metadata generated by DANDI cli
  938. endDate: '2023-06-01T23:40:56.121452-07:00'
  939. id: urn:uuid:0392d9ea-fb94-4a20-911f-7375040bd354
  940. name: Metadata generation
  941. schemaKey: Activity
  942. startDate: '2023-06-01T23:39:49.954259-07:00'
  943. wasAssociatedWith:
  944. - identifier: RRID:SCR_019009
  945. name: DANDI Command Line Interface
  946. schemaKey: Software
  947. url: https://github.com/dandi/dandi-cli
  948. version: 0.54.0
  949. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  950. access:
  951. - schemaKey: AccessRequirements
  952. status: dandi:OpenAccess
  953. approach:
  954. - name: microscopy approach; cell population imaging
  955. schemaKey: ApproachType
  956. - name: behavioral approach
  957. schemaKey: ApproachType
  958. blobDateModified: '2023-06-01T22:53:04.953563-07:00'
  959. contentSize: 1219900140
  960. contentUrl:
  961. - https://api.dandiarchive.org/api/assets/3f523944-d0de-4f30-ba91-79656ca3ad26/download/
  962. - https://dandiarchive.s3.amazonaws.com/blobs/dc0/758/dc075805-b760-4bb6-904a-172356931eaf
  963. dateModified: '2023-06-01T23:41:19.607610-07:00'
  964. digest:
  965. dandi:dandi-etag: 75ceb2e688ac5a20e1eef50d8ddab475-19
  966. dandi:sha2-256: daaeafcb358fffe75d874580c37a8168a7633327ed8915452f81a291f8ecfd65
  967. encodingFormat: application/x-nwb
  968. id: dandiasset:3f523944-d0de-4f30-ba91-79656ca3ad26
  969. identifier: 3f523944-d0de-4f30-ba91-79656ca3ad26
  970. measurementTechnique:
  971. - name: behavioral technique
  972. schemaKey: MeasurementTechniqueType
  973. - name: surgical technique
  974. schemaKey: MeasurementTechniqueType
  975. - name: analytical technique
  976. schemaKey: MeasurementTechniqueType
  977. path: sub-437812/sub-437812_ses-847488960_behavior+image+ophys.nwb
  978. schemaKey: Asset
  979. schemaVersion: 0.6.4
  980. variableMeasured:
  981. - schemaKey: PropertyValue
  982. value: PlaneSegmentation
  983. - schemaKey: PropertyValue
  984. value: ImagingPlane
  985. - schemaKey: PropertyValue
  986. value: BehavioralTimeSeries
  987. - schemaKey: PropertyValue
  988. value: ProcessingModule
  989. - schemaKey: PropertyValue
  990. value: OpticalChannel
  991. wasAttributedTo:
  992. - age:
  993. schemaKey: PropertyValue
  994. unitText: ISO-8601 duration
  995. value: P134DT82519.341S
  996. valueReference:
  997. schemaKey: PropertyValue
  998. value: dandi:BirthReference
  999. genotype: Rbp4-Cre_KL100/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1000. identifier: '437812'
  1001. schemaKey: Participant
  1002. sex:
  1003. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1004. name: Male
  1005. schemaKey: SexType
  1006. species:
  1007. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1008. name: Mus musculus - House mouse
  1009. schemaKey: SpeciesType
  1010. wasGeneratedBy:
  1011. - description: Allen Institute OpenScope dataset
  1012. identifier: '847488960'
  1013. name: '847488960'
  1014. schemaKey: Session
  1015. startDate: '2019-04-08T15:55:19.341000-07:00'
  1016. - description: Metadata generated by DANDI cli
  1017. endDate: '2023-06-01T23:41:19.607610-07:00'
  1018. id: urn:uuid:c5f8ea8e-cead-4f1b-91be-cc05eb279b54
  1019. name: Metadata generation
  1020. schemaKey: Activity
  1021. startDate: '2023-06-01T23:39:53.197295-07:00'
  1022. wasAssociatedWith:
  1023. - identifier: RRID:SCR_019009
  1024. name: DANDI Command Line Interface
  1025. schemaKey: Software
  1026. url: https://github.com/dandi/dandi-cli
  1027. version: 0.54.0
  1028. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1029. access:
  1030. - schemaKey: AccessRequirements
  1031. status: dandi:OpenAccess
  1032. approach:
  1033. - name: microscopy approach; cell population imaging
  1034. schemaKey: ApproachType
  1035. - name: behavioral approach
  1036. schemaKey: ApproachType
  1037. blobDateModified: '2023-06-01T23:06:30.220079-07:00'
  1038. contentSize: 1468978092
  1039. contentUrl:
  1040. - https://api.dandiarchive.org/api/assets/40084815-157f-4f5d-a4b7-d9ca37b8982b/download/
  1041. - https://dandiarchive.s3.amazonaws.com/blobs/e6d/e74/e6de747a-552e-46ba-8fd5-9eccb1589e40
  1042. dateModified: '2023-06-01T23:42:57.558510-07:00'
  1043. digest:
  1044. dandi:dandi-etag: 051462ddad4411d315186f18ade337cb-22
  1045. dandi:sha2-256: 8aeaaa1e2a988a192e269895ec0850b58f4f67c5bf4d953b15abc3119f96ab02
  1046. encodingFormat: application/x-nwb
  1047. id: dandiasset:40084815-157f-4f5d-a4b7-d9ca37b8982b
  1048. identifier: 40084815-157f-4f5d-a4b7-d9ca37b8982b
  1049. measurementTechnique:
  1050. - name: behavioral technique
  1051. schemaKey: MeasurementTechniqueType
  1052. - name: surgical technique
  1053. schemaKey: MeasurementTechniqueType
  1054. - name: analytical technique
  1055. schemaKey: MeasurementTechniqueType
  1056. path: sub-438097/sub-438097_ses-830149321_behavior+image+ophys.nwb
  1057. schemaKey: Asset
  1058. schemaVersion: 0.6.4
  1059. variableMeasured:
  1060. - schemaKey: PropertyValue
  1061. value: PlaneSegmentation
  1062. - schemaKey: PropertyValue
  1063. value: ImagingPlane
  1064. - schemaKey: PropertyValue
  1065. value: BehavioralTimeSeries
  1066. - schemaKey: PropertyValue
  1067. value: ProcessingModule
  1068. - schemaKey: PropertyValue
  1069. value: OpticalChannel
  1070. wasAttributedTo:
  1071. - age:
  1072. schemaKey: PropertyValue
  1073. unitText: ISO-8601 duration
  1074. value: P94DT1744.129S
  1075. valueReference:
  1076. schemaKey: PropertyValue
  1077. value: dandi:BirthReference
  1078. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1079. identifier: '438097'
  1080. schemaKey: Participant
  1081. sex:
  1082. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1083. name: Female
  1084. schemaKey: SexType
  1085. species:
  1086. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1087. name: Mus musculus - House mouse
  1088. schemaKey: SpeciesType
  1089. wasGeneratedBy:
  1090. - description: Allen Institute OpenScope dataset
  1091. identifier: '830149321'
  1092. name: '830149321'
  1093. schemaKey: Session
  1094. startDate: '2019-02-28T16:29:04.129000-08:00'
  1095. - description: Metadata generated by DANDI cli
  1096. endDate: '2023-06-01T23:42:57.558510-07:00'
  1097. id: urn:uuid:0bd504d2-e4f4-4d35-abfb-4ac2eb1814bc
  1098. name: Metadata generation
  1099. schemaKey: Activity
  1100. startDate: '2023-06-01T23:42:15.452649-07:00'
  1101. wasAssociatedWith:
  1102. - identifier: RRID:SCR_019009
  1103. name: DANDI Command Line Interface
  1104. schemaKey: Software
  1105. url: https://github.com/dandi/dandi-cli
  1106. version: 0.54.0
  1107. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1108. access:
  1109. - schemaKey: AccessRequirements
  1110. status: dandi:OpenAccess
  1111. approach:
  1112. - name: microscopy approach; cell population imaging
  1113. schemaKey: ApproachType
  1114. - name: behavioral approach
  1115. schemaKey: ApproachType
  1116. blobDateModified: '2023-06-01T23:05:41.475664-07:00'
  1117. contentSize: 1314829036
  1118. contentUrl:
  1119. - https://api.dandiarchive.org/api/assets/8031227c-4831-4fd1-bc5b-6143fc748d7a/download/
  1120. - https://dandiarchive.s3.amazonaws.com/blobs/9f6/c8a/9f6c8acd-22ee-4bd3-8f27-970f579677b0
  1121. dateModified: '2023-06-01T23:44:12.201354-07:00'
  1122. digest:
  1123. dandi:dandi-etag: 120f137847fb891952dee7e6aa24ef59-20
  1124. dandi:sha2-256: 14a9ff1bb6aadf572d50f973965c0ca8a580a5ae3655fae98e12112941b4fd5c
  1125. encodingFormat: application/x-nwb
  1126. id: dandiasset:8031227c-4831-4fd1-bc5b-6143fc748d7a
  1127. identifier: 8031227c-4831-4fd1-bc5b-6143fc748d7a
  1128. measurementTechnique:
  1129. - name: behavioral technique
  1130. schemaKey: MeasurementTechniqueType
  1131. - name: surgical technique
  1132. schemaKey: MeasurementTechniqueType
  1133. - name: analytical technique
  1134. schemaKey: MeasurementTechniqueType
  1135. path: sub-438097/sub-438097_ses-830764081_behavior+image+ophys.nwb
  1136. schemaKey: Asset
  1137. schemaVersion: 0.6.4
  1138. variableMeasured:
  1139. - schemaKey: PropertyValue
  1140. value: PlaneSegmentation
  1141. - schemaKey: PropertyValue
  1142. value: ImagingPlane
  1143. - schemaKey: PropertyValue
  1144. value: BehavioralTimeSeries
  1145. - schemaKey: PropertyValue
  1146. value: ProcessingModule
  1147. - schemaKey: PropertyValue
  1148. value: OpticalChannel
  1149. wasAttributedTo:
  1150. - age:
  1151. schemaKey: PropertyValue
  1152. unitText: ISO-8601 duration
  1153. value: P95DT1462.765S
  1154. valueReference:
  1155. schemaKey: PropertyValue
  1156. value: dandi:BirthReference
  1157. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1158. identifier: '438097'
  1159. schemaKey: Participant
  1160. sex:
  1161. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1162. name: Female
  1163. schemaKey: SexType
  1164. species:
  1165. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1166. name: Mus musculus - House mouse
  1167. schemaKey: SpeciesType
  1168. wasGeneratedBy:
  1169. - description: Allen Institute OpenScope dataset
  1170. identifier: '830764081'
  1171. name: '830764081'
  1172. schemaKey: Session
  1173. startDate: '2019-03-01T16:24:22.765000-08:00'
  1174. - description: Metadata generated by DANDI cli
  1175. endDate: '2023-06-01T23:44:12.201354-07:00'
  1176. id: urn:uuid:079b7c87-f1ca-4461-915a-7ca451669e6d
  1177. name: Metadata generation
  1178. schemaKey: Activity
  1179. startDate: '2023-06-01T23:42:50.130644-07:00'
  1180. wasAssociatedWith:
  1181. - identifier: RRID:SCR_019009
  1182. name: DANDI Command Line Interface
  1183. schemaKey: Software
  1184. url: https://github.com/dandi/dandi-cli
  1185. version: 0.54.0
  1186. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1187. access:
  1188. - schemaKey: AccessRequirements
  1189. status: dandi:OpenAccess
  1190. approach:
  1191. - name: microscopy approach; cell population imaging
  1192. schemaKey: ApproachType
  1193. - name: behavioral approach
  1194. schemaKey: ApproachType
  1195. blobDateModified: '2023-06-01T23:02:28.770614-07:00'
  1196. contentSize: 1765675556
  1197. contentUrl:
  1198. - https://api.dandiarchive.org/api/assets/89ffebb6-c6da-4a62-8586-52300f40903a/download/
  1199. - https://dandiarchive.s3.amazonaws.com/blobs/001/948/00194868-a4cc-411e-858f-412954c5aba0
  1200. dateModified: '2023-06-01T23:44:25.073521-07:00'
  1201. digest:
  1202. dandi:dandi-etag: a6532d8c1cd3c31f4655c22fd76d1ee1-27
  1203. dandi:sha2-256: 0a819dcbf0ffb6707fc98e298dc7052646a341157d2f2ee18c79681825331c9d
  1204. encodingFormat: application/x-nwb
  1205. id: dandiasset:89ffebb6-c6da-4a62-8586-52300f40903a
  1206. identifier: 89ffebb6-c6da-4a62-8586-52300f40903a
  1207. measurementTechnique:
  1208. - name: behavioral technique
  1209. schemaKey: MeasurementTechniqueType
  1210. - name: surgical technique
  1211. schemaKey: MeasurementTechniqueType
  1212. - name: analytical technique
  1213. schemaKey: MeasurementTechniqueType
  1214. path: sub-438378/sub-438378_ses-829524157_behavior+image+ophys.nwb
  1215. schemaKey: Asset
  1216. schemaVersion: 0.6.4
  1217. variableMeasured:
  1218. - schemaKey: PropertyValue
  1219. value: PlaneSegmentation
  1220. - schemaKey: PropertyValue
  1221. value: ImagingPlane
  1222. - schemaKey: PropertyValue
  1223. value: BehavioralTimeSeries
  1224. - schemaKey: PropertyValue
  1225. value: ProcessingModule
  1226. - schemaKey: PropertyValue
  1227. value: OpticalChannel
  1228. wasAttributedTo:
  1229. - age:
  1230. schemaKey: PropertyValue
  1231. unitText: ISO-8601 duration
  1232. value: P91DT4981.49S
  1233. valueReference:
  1234. schemaKey: PropertyValue
  1235. value: dandi:BirthReference
  1236. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1237. identifier: '438378'
  1238. schemaKey: Participant
  1239. sex:
  1240. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1241. name: Male
  1242. schemaKey: SexType
  1243. species:
  1244. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1245. name: Mus musculus - House mouse
  1246. schemaKey: SpeciesType
  1247. wasGeneratedBy:
  1248. - description: Allen Institute OpenScope dataset
  1249. identifier: '829524157'
  1250. name: '829524157'
  1251. schemaKey: Session
  1252. startDate: '2019-02-27T17:23:01.490000-08:00'
  1253. - description: Metadata generated by DANDI cli
  1254. endDate: '2023-06-01T23:44:25.073521-07:00'
  1255. id: urn:uuid:583e0018-29f1-4b19-be25-c1f00b6f6920
  1256. name: Metadata generation
  1257. schemaKey: Activity
  1258. startDate: '2023-06-01T23:43:30.538760-07:00'
  1259. wasAssociatedWith:
  1260. - identifier: RRID:SCR_019009
  1261. name: DANDI Command Line Interface
  1262. schemaKey: Software
  1263. url: https://github.com/dandi/dandi-cli
  1264. version: 0.54.0
  1265. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1266. access:
  1267. - schemaKey: AccessRequirements
  1268. status: dandi:OpenAccess
  1269. approach:
  1270. - name: microscopy approach; cell population imaging
  1271. schemaKey: ApproachType
  1272. - name: behavioral approach
  1273. schemaKey: ApproachType
  1274. blobDateModified: '2023-06-01T23:10:06.469263-07:00'
  1275. contentSize: 1297934732
  1276. contentUrl:
  1277. - https://api.dandiarchive.org/api/assets/03f0f885-2b96-4385-88ee-0aefb98c986e/download/
  1278. - https://dandiarchive.s3.amazonaws.com/blobs/930/375/930375fb-1be4-4a2d-a6e1-b63c46e7ddd7
  1279. dateModified: '2023-06-01T23:44:25.597823-07:00'
  1280. digest:
  1281. dandi:dandi-etag: 05eb14d670b6ba7ade5d3bf0d6af2dde-20
  1282. dandi:sha2-256: af1366bdb9bd19caf2ddc95a0a23e51da4bf2cc815f4bc1528d24a0699c17a93
  1283. encodingFormat: application/x-nwb
  1284. id: dandiasset:03f0f885-2b96-4385-88ee-0aefb98c986e
  1285. identifier: 03f0f885-2b96-4385-88ee-0aefb98c986e
  1286. measurementTechnique:
  1287. - name: behavioral technique
  1288. schemaKey: MeasurementTechniqueType
  1289. - name: surgical technique
  1290. schemaKey: MeasurementTechniqueType
  1291. - name: analytical technique
  1292. schemaKey: MeasurementTechniqueType
  1293. path: sub-438097/sub-438097_ses-832175186_behavior+image+ophys.nwb
  1294. schemaKey: Asset
  1295. schemaVersion: 0.6.4
  1296. variableMeasured:
  1297. - schemaKey: PropertyValue
  1298. value: PlaneSegmentation
  1299. - schemaKey: PropertyValue
  1300. value: ImagingPlane
  1301. - schemaKey: PropertyValue
  1302. value: BehavioralTimeSeries
  1303. - schemaKey: PropertyValue
  1304. value: ProcessingModule
  1305. - schemaKey: PropertyValue
  1306. value: OpticalChannel
  1307. wasAttributedTo:
  1308. - age:
  1309. schemaKey: PropertyValue
  1310. unitText: ISO-8601 duration
  1311. value: P99DT1369.376S
  1312. valueReference:
  1313. schemaKey: PropertyValue
  1314. value: dandi:BirthReference
  1315. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  1316. identifier: '438097'
  1317. schemaKey: Participant
  1318. sex:
  1319. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1320. name: Female
  1321. schemaKey: SexType
  1322. species:
  1323. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1324. name: Mus musculus - House mouse
  1325. schemaKey: SpeciesType
  1326. wasGeneratedBy:
  1327. - description: Allen Institute OpenScope dataset
  1328. identifier: '832175186'
  1329. name: '832175186'
  1330. schemaKey: Session
  1331. startDate: '2019-03-05T16:22:49.376000-08:00'
  1332. - description: Metadata generated by DANDI cli
  1333. endDate: '2023-06-01T23:44:25.597823-07:00'
  1334. id: urn:uuid:4b4362ee-60e5-4280-947b-edb2c7e59b14
  1335. name: Metadata generation
  1336. schemaKey: Activity
  1337. startDate: '2023-06-01T23:43:21.750267-07:00'
  1338. wasAssociatedWith:
  1339. - identifier: RRID:SCR_019009
  1340. name: DANDI Command Line Interface
  1341. schemaKey: Software
  1342. url: https://github.com/dandi/dandi-cli
  1343. version: 0.54.0
  1344. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1345. access:
  1346. - schemaKey: AccessRequirements
  1347. status: dandi:OpenAccess
  1348. approach:
  1349. - name: microscopy approach; cell population imaging
  1350. schemaKey: ApproachType
  1351. - name: behavioral approach
  1352. schemaKey: ApproachType
  1353. blobDateModified: '2023-06-01T23:07:33.600686-07:00'
  1354. contentSize: 1710793564
  1355. contentUrl:
  1356. - https://api.dandiarchive.org/api/assets/28860c7b-104a-44d6-88a6-f6c2051724c8/download/
  1357. - https://dandiarchive.s3.amazonaws.com/blobs/c0d/11a/c0d11a58-0ee1-4e3d-940a-c1a8b28a3648
  1358. dateModified: '2023-06-01T23:46:28.064957-07:00'
  1359. digest:
  1360. dandi:dandi-etag: c1fae5d96cc8466dfe8d0351e2741b29-26
  1361. dandi:sha2-256: 1d998a1bdea49d109829974b5bc3e0f1d050f48c2b81dde2d023707c7a5ed761
  1362. encodingFormat: application/x-nwb
  1363. id: dandiasset:28860c7b-104a-44d6-88a6-f6c2051724c8
  1364. identifier: 28860c7b-104a-44d6-88a6-f6c2051724c8
  1365. measurementTechnique:
  1366. - name: behavioral technique
  1367. schemaKey: MeasurementTechniqueType
  1368. - name: surgical technique
  1369. schemaKey: MeasurementTechniqueType
  1370. - name: analytical technique
  1371. schemaKey: MeasurementTechniqueType
  1372. path: sub-438378/sub-438378_ses-830766957_behavior+image+ophys.nwb
  1373. schemaKey: Asset
  1374. schemaVersion: 0.6.4
  1375. variableMeasured:
  1376. - schemaKey: PropertyValue
  1377. value: PlaneSegmentation
  1378. - schemaKey: PropertyValue
  1379. value: ImagingPlane
  1380. - schemaKey: PropertyValue
  1381. value: BehavioralTimeSeries
  1382. - schemaKey: PropertyValue
  1383. value: ProcessingModule
  1384. - schemaKey: PropertyValue
  1385. value: OpticalChannel
  1386. wasAttributedTo:
  1387. - age:
  1388. schemaKey: PropertyValue
  1389. unitText: ISO-8601 duration
  1390. value: P93DT2858.698S
  1391. valueReference:
  1392. schemaKey: PropertyValue
  1393. value: dandi:BirthReference
  1394. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1395. identifier: '438378'
  1396. schemaKey: Participant
  1397. sex:
  1398. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1399. name: Male
  1400. schemaKey: SexType
  1401. species:
  1402. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1403. name: Mus musculus - House mouse
  1404. schemaKey: SpeciesType
  1405. wasGeneratedBy:
  1406. - description: Allen Institute OpenScope dataset
  1407. identifier: '830766957'
  1408. name: '830766957'
  1409. schemaKey: Session
  1410. startDate: '2019-03-01T16:47:38.698000-08:00'
  1411. - description: Metadata generated by DANDI cli
  1412. endDate: '2023-06-01T23:46:28.064957-07:00'
  1413. id: urn:uuid:b761c8e9-a512-41e6-b970-411028a25ffa
  1414. name: Metadata generation
  1415. schemaKey: Activity
  1416. startDate: '2023-06-01T23:45:34.182541-07:00'
  1417. wasAssociatedWith:
  1418. - identifier: RRID:SCR_019009
  1419. name: DANDI Command Line Interface
  1420. schemaKey: Software
  1421. url: https://github.com/dandi/dandi-cli
  1422. version: 0.54.0
  1423. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1424. access:
  1425. - schemaKey: AccessRequirements
  1426. status: dandi:OpenAccess
  1427. approach:
  1428. - name: microscopy approach; cell population imaging
  1429. schemaKey: ApproachType
  1430. - name: behavioral approach
  1431. schemaKey: ApproachType
  1432. blobDateModified: '2023-06-01T23:03:38.109377-07:00'
  1433. contentSize: 1431472468
  1434. contentUrl:
  1435. - https://api.dandiarchive.org/api/assets/53d339cd-bea4-44a8-ba4b-f704b9f8152a/download/
  1436. - https://dandiarchive.s3.amazonaws.com/blobs/10a/7b8/10a7b805-db0a-4991-99a4-605881d45b93
  1437. dateModified: '2023-06-01T23:47:19.267255-07:00'
  1438. digest:
  1439. dandi:dandi-etag: 26f6886109142fd42b1580fcd27760eb-22
  1440. dandi:sha2-256: e928cbb9b0ddb1b7f2d4e67a16ab13cf54709d000bc478e3aa78c132ea5f95ce
  1441. encodingFormat: application/x-nwb
  1442. id: dandiasset:53d339cd-bea4-44a8-ba4b-f704b9f8152a
  1443. identifier: 53d339cd-bea4-44a8-ba4b-f704b9f8152a
  1444. measurementTechnique:
  1445. - name: behavioral technique
  1446. schemaKey: MeasurementTechniqueType
  1447. - name: surgical technique
  1448. schemaKey: MeasurementTechniqueType
  1449. - name: analytical technique
  1450. schemaKey: MeasurementTechniqueType
  1451. path: sub-438378/sub-438378_ses-830149483_behavior+image+ophys.nwb
  1452. schemaKey: Asset
  1453. schemaVersion: 0.6.4
  1454. variableMeasured:
  1455. - schemaKey: PropertyValue
  1456. value: PlaneSegmentation
  1457. - schemaKey: PropertyValue
  1458. value: ImagingPlane
  1459. - schemaKey: PropertyValue
  1460. value: BehavioralTimeSeries
  1461. - schemaKey: PropertyValue
  1462. value: ProcessingModule
  1463. - schemaKey: PropertyValue
  1464. value: OpticalChannel
  1465. wasAttributedTo:
  1466. - age:
  1467. schemaKey: PropertyValue
  1468. unitText: ISO-8601 duration
  1469. value: P92DT3166.993S
  1470. valueReference:
  1471. schemaKey: PropertyValue
  1472. value: dandi:BirthReference
  1473. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1474. identifier: '438378'
  1475. schemaKey: Participant
  1476. sex:
  1477. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1478. name: Male
  1479. schemaKey: SexType
  1480. species:
  1481. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1482. name: Mus musculus - House mouse
  1483. schemaKey: SpeciesType
  1484. wasGeneratedBy:
  1485. - description: Allen Institute OpenScope dataset
  1486. identifier: '830149483'
  1487. name: '830149483'
  1488. schemaKey: Session
  1489. startDate: '2019-02-28T16:52:46.993000-08:00'
  1490. - description: Metadata generated by DANDI cli
  1491. endDate: '2023-06-01T23:47:19.267255-07:00'
  1492. id: urn:uuid:c84ae78f-de93-4976-81ae-36cb1eb0082b
  1493. name: Metadata generation
  1494. schemaKey: Activity
  1495. startDate: '2023-06-01T23:45:52.255154-07:00'
  1496. wasAssociatedWith:
  1497. - identifier: RRID:SCR_019009
  1498. name: DANDI Command Line Interface
  1499. schemaKey: Software
  1500. url: https://github.com/dandi/dandi-cli
  1501. version: 0.54.0
  1502. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1503. access:
  1504. - schemaKey: AccessRequirements
  1505. status: dandi:OpenAccess
  1506. approach:
  1507. - name: microscopy approach; cell population imaging
  1508. schemaKey: ApproachType
  1509. - name: behavioral approach
  1510. schemaKey: ApproachType
  1511. blobDateModified: '2023-06-01T22:53:28.592502-07:00'
  1512. contentSize: 1524570460
  1513. contentUrl:
  1514. - https://api.dandiarchive.org/api/assets/732e6deb-4222-4924-82b0-99e633d8d5e4/download/
  1515. - https://dandiarchive.s3.amazonaws.com/blobs/a5c/7fb/a5c7fb75-e9e9-4b07-aeba-c061f103d1b3
  1516. dateModified: '2023-06-01T23:48:27.848913-07:00'
  1517. digest:
  1518. dandi:dandi-etag: daa19432f599c64f1d3a8aeeff0152eb-23
  1519. dandi:sha2-256: 8e98c15a4982bd34aa419548a51279196ec0aa49ba94e05e9a84def69c16b89d
  1520. encodingFormat: application/x-nwb
  1521. id: dandiasset:732e6deb-4222-4924-82b0-99e633d8d5e4
  1522. identifier: 732e6deb-4222-4924-82b0-99e633d8d5e4
  1523. measurementTechnique:
  1524. - name: behavioral technique
  1525. schemaKey: MeasurementTechniqueType
  1526. - name: surgical technique
  1527. schemaKey: MeasurementTechniqueType
  1528. - name: analytical technique
  1529. schemaKey: MeasurementTechniqueType
  1530. path: sub-438378/sub-438378_ses-831764403_behavior+image+ophys.nwb
  1531. schemaKey: Asset
  1532. schemaVersion: 0.6.4
  1533. variableMeasured:
  1534. - schemaKey: PropertyValue
  1535. value: PlaneSegmentation
  1536. - schemaKey: PropertyValue
  1537. value: ImagingPlane
  1538. - schemaKey: PropertyValue
  1539. value: BehavioralTimeSeries
  1540. - schemaKey: PropertyValue
  1541. value: ProcessingModule
  1542. - schemaKey: PropertyValue
  1543. value: OpticalChannel
  1544. wasAttributedTo:
  1545. - age:
  1546. schemaKey: PropertyValue
  1547. unitText: ISO-8601 duration
  1548. value: P96DT2627.462S
  1549. valueReference:
  1550. schemaKey: PropertyValue
  1551. value: dandi:BirthReference
  1552. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1553. identifier: '438378'
  1554. schemaKey: Participant
  1555. sex:
  1556. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1557. name: Male
  1558. schemaKey: SexType
  1559. species:
  1560. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1561. name: Mus musculus - House mouse
  1562. schemaKey: SpeciesType
  1563. wasGeneratedBy:
  1564. - description: Allen Institute OpenScope dataset
  1565. identifier: '831764403'
  1566. name: '831764403'
  1567. schemaKey: Session
  1568. startDate: '2019-03-04T16:43:47.462000-08:00'
  1569. - description: Metadata generated by DANDI cli
  1570. endDate: '2023-06-01T23:48:27.848913-07:00'
  1571. id: urn:uuid:7308409e-4cbb-47c6-b5b6-bc29eaee4a96
  1572. name: Metadata generation
  1573. schemaKey: Activity
  1574. startDate: '2023-06-01T23:47:16.452981-07:00'
  1575. wasAssociatedWith:
  1576. - identifier: RRID:SCR_019009
  1577. name: DANDI Command Line Interface
  1578. schemaKey: Software
  1579. url: https://github.com/dandi/dandi-cli
  1580. version: 0.54.0
  1581. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1582. access:
  1583. - schemaKey: AccessRequirements
  1584. status: dandi:OpenAccess
  1585. approach:
  1586. - name: microscopy approach; cell population imaging
  1587. schemaKey: ApproachType
  1588. - name: behavioral approach
  1589. schemaKey: ApproachType
  1590. blobDateModified: '2023-06-01T22:54:42.878208-07:00'
  1591. contentSize: 1410288068
  1592. contentUrl:
  1593. - https://api.dandiarchive.org/api/assets/e6c29b0b-b173-4ae0-8780-3c3a6cf8ae5b/download/
  1594. - https://dandiarchive.s3.amazonaws.com/blobs/3d2/f61/3d2f6102-ee72-42d8-97e5-b4d48d1a2ef1
  1595. dateModified: '2023-06-01T23:48:31.255681-07:00'
  1596. digest:
  1597. dandi:dandi-etag: 901438a33fc5c89cff698533b1871778-22
  1598. dandi:sha2-256: 423f6375e5f421c13bba7e0be040016e8a220580d0329606ca7d597b85f007ab
  1599. encodingFormat: application/x-nwb
  1600. id: dandiasset:e6c29b0b-b173-4ae0-8780-3c3a6cf8ae5b
  1601. identifier: e6c29b0b-b173-4ae0-8780-3c3a6cf8ae5b
  1602. measurementTechnique:
  1603. - name: behavioral technique
  1604. schemaKey: MeasurementTechniqueType
  1605. - name: surgical technique
  1606. schemaKey: MeasurementTechniqueType
  1607. - name: analytical technique
  1608. schemaKey: MeasurementTechniqueType
  1609. path: sub-438382/sub-438382_ses-834009644_behavior+image+ophys.nwb
  1610. schemaKey: Asset
  1611. schemaVersion: 0.6.4
  1612. variableMeasured:
  1613. - schemaKey: PropertyValue
  1614. value: PlaneSegmentation
  1615. - schemaKey: PropertyValue
  1616. value: ImagingPlane
  1617. - schemaKey: PropertyValue
  1618. value: BehavioralTimeSeries
  1619. - schemaKey: PropertyValue
  1620. value: ProcessingModule
  1621. - schemaKey: PropertyValue
  1622. value: OpticalChannel
  1623. wasAttributedTo:
  1624. - age:
  1625. schemaKey: PropertyValue
  1626. unitText: ISO-8601 duration
  1627. value: P99DT17813.814S
  1628. valueReference:
  1629. schemaKey: PropertyValue
  1630. value: dandi:BirthReference
  1631. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1632. identifier: '438382'
  1633. schemaKey: Participant
  1634. sex:
  1635. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1636. name: Female
  1637. schemaKey: SexType
  1638. species:
  1639. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1640. name: Mus musculus - House mouse
  1641. schemaKey: SpeciesType
  1642. wasGeneratedBy:
  1643. - description: Allen Institute OpenScope dataset
  1644. identifier: '834009644'
  1645. name: '834009644'
  1646. schemaKey: Session
  1647. startDate: '2019-03-07T20:56:53.814000-08:00'
  1648. - description: Metadata generated by DANDI cli
  1649. endDate: '2023-06-01T23:48:31.255681-07:00'
  1650. id: urn:uuid:0dbfb4fc-a322-425f-a775-c3b4698a404a
  1651. name: Metadata generation
  1652. schemaKey: Activity
  1653. startDate: '2023-06-01T23:47:23.253423-07:00'
  1654. wasAssociatedWith:
  1655. - identifier: RRID:SCR_019009
  1656. name: DANDI Command Line Interface
  1657. schemaKey: Software
  1658. url: https://github.com/dandi/dandi-cli
  1659. version: 0.54.0
  1660. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1661. access:
  1662. - schemaKey: AccessRequirements
  1663. status: dandi:OpenAccess
  1664. approach:
  1665. - name: microscopy approach; cell population imaging
  1666. schemaKey: ApproachType
  1667. - name: behavioral approach
  1668. schemaKey: ApproachType
  1669. blobDateModified: '2023-06-01T23:01:26.046260-07:00'
  1670. contentSize: 1653602460
  1671. contentUrl:
  1672. - https://api.dandiarchive.org/api/assets/4388ec95-eca0-470e-bcb3-784e4d2197d3/download/
  1673. - https://dandiarchive.s3.amazonaws.com/blobs/ab0/c10/ab0c1062-6d33-47fd-8d4b-1f8d0c270c86
  1674. dateModified: '2023-06-01T23:48:31.462891-07:00'
  1675. digest:
  1676. dandi:dandi-etag: 30e5f62ce72c242e9d99e015f0d16beb-25
  1677. dandi:sha2-256: 946acfcedbc5938b209f70fa640f2e35d5fd73abdb0ea20d38ff65b20686a401
  1678. encodingFormat: application/x-nwb
  1679. id: dandiasset:4388ec95-eca0-470e-bcb3-784e4d2197d3
  1680. identifier: 4388ec95-eca0-470e-bcb3-784e4d2197d3
  1681. measurementTechnique:
  1682. - name: behavioral technique
  1683. schemaKey: MeasurementTechniqueType
  1684. - name: surgical technique
  1685. schemaKey: MeasurementTechniqueType
  1686. - name: analytical technique
  1687. schemaKey: MeasurementTechniqueType
  1688. path: sub-438382/sub-438382_ses-833145852_behavior+image+ophys.nwb
  1689. schemaKey: Asset
  1690. schemaVersion: 0.6.4
  1691. variableMeasured:
  1692. - schemaKey: PropertyValue
  1693. value: PlaneSegmentation
  1694. - schemaKey: PropertyValue
  1695. value: ImagingPlane
  1696. - schemaKey: PropertyValue
  1697. value: BehavioralTimeSeries
  1698. - schemaKey: PropertyValue
  1699. value: ProcessingModule
  1700. - schemaKey: PropertyValue
  1701. value: OpticalChannel
  1702. wasAttributedTo:
  1703. - age:
  1704. schemaKey: PropertyValue
  1705. unitText: ISO-8601 duration
  1706. value: P98DT16105.05S
  1707. valueReference:
  1708. schemaKey: PropertyValue
  1709. value: dandi:BirthReference
  1710. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1711. identifier: '438382'
  1712. schemaKey: Participant
  1713. sex:
  1714. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1715. name: Female
  1716. schemaKey: SexType
  1717. species:
  1718. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1719. name: Mus musculus - House mouse
  1720. schemaKey: SpeciesType
  1721. wasGeneratedBy:
  1722. - description: Allen Institute OpenScope dataset
  1723. identifier: '833145852'
  1724. name: '833145852'
  1725. schemaKey: Session
  1726. startDate: '2019-03-06T20:28:25.050000-08:00'
  1727. - description: Metadata generated by DANDI cli
  1728. endDate: '2023-06-01T23:48:31.462891-07:00'
  1729. id: urn:uuid:3d65ba9c-1b1d-443d-be1e-3475534b3705
  1730. name: Metadata generation
  1731. schemaKey: Activity
  1732. startDate: '2023-06-01T23:47:21.869497-07:00'
  1733. wasAssociatedWith:
  1734. - identifier: RRID:SCR_019009
  1735. name: DANDI Command Line Interface
  1736. schemaKey: Software
  1737. url: https://github.com/dandi/dandi-cli
  1738. version: 0.54.0
  1739. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1740. access:
  1741. - schemaKey: AccessRequirements
  1742. status: dandi:OpenAccess
  1743. approach:
  1744. - name: microscopy approach; cell population imaging
  1745. schemaKey: ApproachType
  1746. - name: behavioral approach
  1747. schemaKey: ApproachType
  1748. blobDateModified: '2023-06-01T22:56:27.450950-07:00'
  1749. contentSize: 1393376532
  1750. contentUrl:
  1751. - https://api.dandiarchive.org/api/assets/84f667ce-f85d-45f3-96a2-2bd09f09ed9f/download/
  1752. - https://dandiarchive.s3.amazonaws.com/blobs/d28/762/d28762b6-9cc0-454e-9a3c-0cddd6b309cb
  1753. dateModified: '2023-06-01T23:50:28.472797-07:00'
  1754. digest:
  1755. dandi:dandi-etag: 4cb9967dfd1a206f55a92d5297ae2822-21
  1756. dandi:sha2-256: d6c6cd73c5a7bc09bbf0c473a5f3cdf55ad35875cc43cd95992420767cc16712
  1757. encodingFormat: application/x-nwb
  1758. id: dandiasset:84f667ce-f85d-45f3-96a2-2bd09f09ed9f
  1759. identifier: 84f667ce-f85d-45f3-96a2-2bd09f09ed9f
  1760. measurementTechnique:
  1761. - name: behavioral technique
  1762. schemaKey: MeasurementTechniqueType
  1763. - name: surgical technique
  1764. schemaKey: MeasurementTechniqueType
  1765. - name: analytical technique
  1766. schemaKey: MeasurementTechniqueType
  1767. path: sub-438382/sub-438382_ses-835972901_behavior+image+ophys.nwb
  1768. schemaKey: Asset
  1769. schemaVersion: 0.6.4
  1770. variableMeasured:
  1771. - schemaKey: PropertyValue
  1772. value: PlaneSegmentation
  1773. - schemaKey: PropertyValue
  1774. value: ImagingPlane
  1775. - schemaKey: PropertyValue
  1776. value: BehavioralTimeSeries
  1777. - schemaKey: PropertyValue
  1778. value: ProcessingModule
  1779. - schemaKey: PropertyValue
  1780. value: OpticalChannel
  1781. wasAttributedTo:
  1782. - age:
  1783. schemaKey: PropertyValue
  1784. unitText: ISO-8601 duration
  1785. value: P104DT10795.727S
  1786. valueReference:
  1787. schemaKey: PropertyValue
  1788. value: dandi:BirthReference
  1789. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1790. identifier: '438382'
  1791. schemaKey: Participant
  1792. sex:
  1793. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1794. name: Female
  1795. schemaKey: SexType
  1796. species:
  1797. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1798. name: Mus musculus - House mouse
  1799. schemaKey: SpeciesType
  1800. wasGeneratedBy:
  1801. - description: Allen Institute OpenScope dataset
  1802. identifier: '835972901'
  1803. name: '835972901'
  1804. schemaKey: Session
  1805. startDate: '2019-03-12T19:59:55.727000-07:00'
  1806. - description: Metadata generated by DANDI cli
  1807. endDate: '2023-06-01T23:50:28.472797-07:00'
  1808. id: urn:uuid:997715a6-dfd1-42bd-8416-75602d823cbe
  1809. name: Metadata generation
  1810. schemaKey: Activity
  1811. startDate: '2023-06-01T23:49:26.940419-07:00'
  1812. wasAssociatedWith:
  1813. - identifier: RRID:SCR_019009
  1814. name: DANDI Command Line Interface
  1815. schemaKey: Software
  1816. url: https://github.com/dandi/dandi-cli
  1817. version: 0.54.0
  1818. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1819. access:
  1820. - schemaKey: AccessRequirements
  1821. status: dandi:OpenAccess
  1822. approach:
  1823. - name: microscopy approach; cell population imaging
  1824. schemaKey: ApproachType
  1825. - name: behavioral approach
  1826. schemaKey: ApproachType
  1827. blobDateModified: '2023-06-01T23:09:35.814908-07:00'
  1828. contentSize: 1808860072
  1829. contentUrl:
  1830. - https://api.dandiarchive.org/api/assets/180aeab3-4e83-4d2a-98f5-4de1a744dea3/download/
  1831. - https://dandiarchive.s3.amazonaws.com/blobs/665/ec1/665ec16a-5969-4465-b25f-4ef7f71e065c
  1832. dateModified: '2023-06-01T23:50:52.592718-07:00'
  1833. digest:
  1834. dandi:dandi-etag: 8ae180308c8e1aeed6b3b04f209d4bb1-27
  1835. dandi:sha2-256: 5b6293e2299be7a29c9eb8a71a6fa9a27fa9f988896ca4540b355bca350617ab
  1836. encodingFormat: application/x-nwb
  1837. id: dandiasset:180aeab3-4e83-4d2a-98f5-4de1a744dea3
  1838. identifier: 180aeab3-4e83-4d2a-98f5-4de1a744dea3
  1839. measurementTechnique:
  1840. - name: behavioral technique
  1841. schemaKey: MeasurementTechniqueType
  1842. - name: surgical technique
  1843. schemaKey: MeasurementTechniqueType
  1844. - name: analytical technique
  1845. schemaKey: MeasurementTechniqueType
  1846. path: sub-438384/sub-438384_ses-834399858_behavior+image+ophys.nwb
  1847. schemaKey: Asset
  1848. schemaVersion: 0.6.4
  1849. variableMeasured:
  1850. - schemaKey: PropertyValue
  1851. value: PlaneSegmentation
  1852. - schemaKey: PropertyValue
  1853. value: ImagingPlane
  1854. - schemaKey: PropertyValue
  1855. value: BehavioralTimeSeries
  1856. - schemaKey: PropertyValue
  1857. value: ProcessingModule
  1858. - schemaKey: PropertyValue
  1859. value: OpticalChannel
  1860. wasAttributedTo:
  1861. - age:
  1862. schemaKey: PropertyValue
  1863. unitText: ISO-8601 duration
  1864. value: P100DT1870.063S
  1865. valueReference:
  1866. schemaKey: PropertyValue
  1867. value: dandi:BirthReference
  1868. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1869. identifier: '438384'
  1870. schemaKey: Participant
  1871. sex:
  1872. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1873. name: Female
  1874. schemaKey: SexType
  1875. species:
  1876. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1877. name: Mus musculus - House mouse
  1878. schemaKey: SpeciesType
  1879. wasGeneratedBy:
  1880. - description: Allen Institute OpenScope dataset
  1881. identifier: '834399858'
  1882. name: '834399858'
  1883. schemaKey: Session
  1884. startDate: '2019-03-08T16:31:10.063000-08:00'
  1885. - description: Metadata generated by DANDI cli
  1886. endDate: '2023-06-01T23:50:52.592718-07:00'
  1887. id: urn:uuid:ce4a791d-2255-45bb-ad3e-f1a6c3259b7d
  1888. name: Metadata generation
  1889. schemaKey: Activity
  1890. startDate: '2023-06-01T23:50:00.391907-07:00'
  1891. wasAssociatedWith:
  1892. - identifier: RRID:SCR_019009
  1893. name: DANDI Command Line Interface
  1894. schemaKey: Software
  1895. url: https://github.com/dandi/dandi-cli
  1896. version: 0.54.0
  1897. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1898. access:
  1899. - schemaKey: AccessRequirements
  1900. status: dandi:OpenAccess
  1901. approach:
  1902. - name: microscopy approach; cell population imaging
  1903. schemaKey: ApproachType
  1904. - name: behavioral approach
  1905. schemaKey: ApproachType
  1906. blobDateModified: '2023-06-01T23:02:26.676191-07:00'
  1907. contentSize: 1920868428
  1908. contentUrl:
  1909. - https://api.dandiarchive.org/api/assets/3726c996-0460-4d56-8998-bc77828fc4f9/download/
  1910. - https://dandiarchive.s3.amazonaws.com/blobs/9c8/a99/9c8a9919-e57c-4233-96ec-b9de3aa22025
  1911. dateModified: '2023-06-01T23:52:53.491083-07:00'
  1912. digest:
  1913. dandi:dandi-etag: b28aa3799ac3542195097b99f6b52a0b-29
  1914. dandi:sha2-256: e9153cc89a85a1d8cf5ee05688baf8de04985aa4982bd4450a8af70d0d647547
  1915. encodingFormat: application/x-nwb
  1916. id: dandiasset:3726c996-0460-4d56-8998-bc77828fc4f9
  1917. identifier: 3726c996-0460-4d56-8998-bc77828fc4f9
  1918. measurementTechnique:
  1919. - name: behavioral technique
  1920. schemaKey: MeasurementTechniqueType
  1921. - name: surgical technique
  1922. schemaKey: MeasurementTechniqueType
  1923. - name: analytical technique
  1924. schemaKey: MeasurementTechniqueType
  1925. path: sub-438384/sub-438384_ses-835345797_behavior+image+ophys.nwb
  1926. schemaKey: Asset
  1927. schemaVersion: 0.6.4
  1928. variableMeasured:
  1929. - schemaKey: PropertyValue
  1930. value: PlaneSegmentation
  1931. - schemaKey: PropertyValue
  1932. value: ImagingPlane
  1933. - schemaKey: PropertyValue
  1934. value: BehavioralTimeSeries
  1935. - schemaKey: PropertyValue
  1936. value: ProcessingModule
  1937. - schemaKey: PropertyValue
  1938. value: OpticalChannel
  1939. wasAttributedTo:
  1940. - age:
  1941. schemaKey: PropertyValue
  1942. unitText: ISO-8601 duration
  1943. value: P102DT81417.275S
  1944. valueReference:
  1945. schemaKey: PropertyValue
  1946. value: dandi:BirthReference
  1947. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  1948. identifier: '438384'
  1949. schemaKey: Participant
  1950. sex:
  1951. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1952. name: Female
  1953. schemaKey: SexType
  1954. species:
  1955. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1956. name: Mus musculus - House mouse
  1957. schemaKey: SpeciesType
  1958. wasGeneratedBy:
  1959. - description: Allen Institute OpenScope dataset
  1960. identifier: '835345797'
  1961. name: '835345797'
  1962. schemaKey: Session
  1963. startDate: '2019-03-11T15:36:57.275000-07:00'
  1964. - description: Metadata generated by DANDI cli
  1965. endDate: '2023-06-01T23:52:53.491083-07:00'
  1966. id: urn:uuid:82c7c049-c746-4049-a871-1fa39ab1cdbc
  1967. name: Metadata generation
  1968. schemaKey: Activity
  1969. startDate: '2023-06-01T23:51:36.685078-07:00'
  1970. wasAssociatedWith:
  1971. - identifier: RRID:SCR_019009
  1972. name: DANDI Command Line Interface
  1973. schemaKey: Software
  1974. url: https://github.com/dandi/dandi-cli
  1975. version: 0.54.0
  1976. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1977. access:
  1978. - schemaKey: AccessRequirements
  1979. status: dandi:OpenAccess
  1980. approach:
  1981. - name: microscopy approach; cell population imaging
  1982. schemaKey: ApproachType
  1983. - name: behavioral approach
  1984. schemaKey: ApproachType
  1985. blobDateModified: '2023-06-01T23:02:04.130417-07:00'
  1986. contentSize: 1604128828
  1987. contentUrl:
  1988. - https://api.dandiarchive.org/api/assets/51405a9d-db22-4d07-a79b-80922017047b/download/
  1989. - https://dandiarchive.s3.amazonaws.com/blobs/8d7/6e4/8d76e495-aba4-42d5-b1bc-416f8ee5fdfd
  1990. dateModified: '2023-06-01T23:53:00.211026-07:00'
  1991. digest:
  1992. dandi:dandi-etag: 8f2a1f565c049c5ac2c8a5da3af37fcf-24
  1993. dandi:sha2-256: 154fc709b77096139dbceb817a7fa2bd6d8bbf6a9553030fa3cc7a182360a731
  1994. encodingFormat: application/x-nwb
  1995. id: dandiasset:51405a9d-db22-4d07-a79b-80922017047b
  1996. identifier: 51405a9d-db22-4d07-a79b-80922017047b
  1997. measurementTechnique:
  1998. - name: behavioral technique
  1999. schemaKey: MeasurementTechniqueType
  2000. - name: surgical technique
  2001. schemaKey: MeasurementTechniqueType
  2002. - name: analytical technique
  2003. schemaKey: MeasurementTechniqueType
  2004. path: sub-438384/sub-438384_ses-835799383_behavior+image+ophys.nwb
  2005. schemaKey: Asset
  2006. schemaVersion: 0.6.4
  2007. variableMeasured:
  2008. - schemaKey: PropertyValue
  2009. value: PlaneSegmentation
  2010. - schemaKey: PropertyValue
  2011. value: ImagingPlane
  2012. - schemaKey: PropertyValue
  2013. value: BehavioralTimeSeries
  2014. - schemaKey: PropertyValue
  2015. value: ProcessingModule
  2016. - schemaKey: PropertyValue
  2017. value: OpticalChannel
  2018. wasAttributedTo:
  2019. - age:
  2020. schemaKey: PropertyValue
  2021. unitText: ISO-8601 duration
  2022. value: P103DT80813.896S
  2023. valueReference:
  2024. schemaKey: PropertyValue
  2025. value: dandi:BirthReference
  2026. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2027. identifier: '438384'
  2028. schemaKey: Participant
  2029. sex:
  2030. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2031. name: Female
  2032. schemaKey: SexType
  2033. species:
  2034. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2035. name: Mus musculus - House mouse
  2036. schemaKey: SpeciesType
  2037. wasGeneratedBy:
  2038. - description: Allen Institute OpenScope dataset
  2039. identifier: '835799383'
  2040. name: '835799383'
  2041. schemaKey: Session
  2042. startDate: '2019-03-12T15:26:53.896000-07:00'
  2043. - description: Metadata generated by DANDI cli
  2044. endDate: '2023-06-01T23:53:00.211026-07:00'
  2045. id: urn:uuid:0a1faabc-8752-40da-be3c-162ecb80cb15
  2046. name: Metadata generation
  2047. schemaKey: Activity
  2048. startDate: '2023-06-01T23:52:04.186145-07:00'
  2049. wasAssociatedWith:
  2050. - identifier: RRID:SCR_019009
  2051. name: DANDI Command Line Interface
  2052. schemaKey: Software
  2053. url: https://github.com/dandi/dandi-cli
  2054. version: 0.54.0
  2055. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2056. access:
  2057. - schemaKey: AccessRequirements
  2058. status: dandi:OpenAccess
  2059. approach:
  2060. - name: microscopy approach; cell population imaging
  2061. schemaKey: ApproachType
  2062. - name: behavioral approach
  2063. schemaKey: ApproachType
  2064. blobDateModified: '2023-06-01T23:06:00.187520-07:00'
  2065. contentSize: 1549219772
  2066. contentUrl:
  2067. - https://api.dandiarchive.org/api/assets/3f4a9255-8316-406c-8480-631418495c1f/download/
  2068. - https://dandiarchive.s3.amazonaws.com/blobs/459/7a4/4597a4fc-14cc-4082-90b0-3ed69406b5b2
  2069. dateModified: '2023-06-01T23:53:13.684246-07:00'
  2070. digest:
  2071. dandi:dandi-etag: 2d502c8e548d4d861cf74aa7ff90c32b-24
  2072. dandi:sha2-256: 9a07247b8eaff59e221d164b064c10003f59013088860350162fd7c77854e7e6
  2073. encodingFormat: application/x-nwb
  2074. id: dandiasset:3f4a9255-8316-406c-8480-631418495c1f
  2075. identifier: 3f4a9255-8316-406c-8480-631418495c1f
  2076. measurementTechnique:
  2077. - name: behavioral technique
  2078. schemaKey: MeasurementTechniqueType
  2079. - name: surgical technique
  2080. schemaKey: MeasurementTechniqueType
  2081. - name: analytical technique
  2082. schemaKey: MeasurementTechniqueType
  2083. path: sub-438384/sub-438384_ses-836324839_behavior+image+ophys.nwb
  2084. schemaKey: Asset
  2085. schemaVersion: 0.6.4
  2086. variableMeasured:
  2087. - schemaKey: PropertyValue
  2088. value: PlaneSegmentation
  2089. - schemaKey: PropertyValue
  2090. value: ImagingPlane
  2091. - schemaKey: PropertyValue
  2092. value: BehavioralTimeSeries
  2093. - schemaKey: PropertyValue
  2094. value: ProcessingModule
  2095. - schemaKey: PropertyValue
  2096. value: OpticalChannel
  2097. wasAttributedTo:
  2098. - age:
  2099. schemaKey: PropertyValue
  2100. unitText: ISO-8601 duration
  2101. value: P104DT80754.062S
  2102. valueReference:
  2103. schemaKey: PropertyValue
  2104. value: dandi:BirthReference
  2105. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2106. identifier: '438384'
  2107. schemaKey: Participant
  2108. sex:
  2109. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2110. name: Female
  2111. schemaKey: SexType
  2112. species:
  2113. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2114. name: Mus musculus - House mouse
  2115. schemaKey: SpeciesType
  2116. wasGeneratedBy:
  2117. - description: Allen Institute OpenScope dataset
  2118. identifier: '836324839'
  2119. name: '836324839'
  2120. schemaKey: Session
  2121. startDate: '2019-03-13T15:25:54.062000-07:00'
  2122. - description: Metadata generated by DANDI cli
  2123. endDate: '2023-06-01T23:53:13.684246-07:00'
  2124. id: urn:uuid:0b7bd0d0-eb8c-451c-b57b-e2a6b14c8253
  2125. name: Metadata generation
  2126. schemaKey: Activity
  2127. startDate: '2023-06-01T23:52:07.331128-07:00'
  2128. wasAssociatedWith:
  2129. - identifier: RRID:SCR_019009
  2130. name: DANDI Command Line Interface
  2131. schemaKey: Software
  2132. url: https://github.com/dandi/dandi-cli
  2133. version: 0.54.0
  2134. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2135. access:
  2136. - schemaKey: AccessRequirements
  2137. status: dandi:OpenAccess
  2138. approach:
  2139. - name: microscopy approach; cell population imaging
  2140. schemaKey: ApproachType
  2141. - name: behavioral approach
  2142. schemaKey: ApproachType
  2143. blobDateModified: '2023-06-01T22:56:05.359284-07:00'
  2144. contentSize: 1414533924
  2145. contentUrl:
  2146. - https://api.dandiarchive.org/api/assets/ca1f26c5-f39c-421f-b1b3-59a9685f127b/download/
  2147. - https://dandiarchive.s3.amazonaws.com/blobs/ef3/062/ef3062e5-afc0-4753-9611-cb3f4699b696
  2148. dateModified: '2023-06-01T23:54:52.814536-07:00'
  2149. digest:
  2150. dandi:dandi-etag: 7cb541eee5822db31ce4bf6a0ae4218c-22
  2151. dandi:sha2-256: ba8d3bdea778ed0ea2945c52f6edcd93bee7028343836944b3b27120964ff6fe
  2152. encodingFormat: application/x-nwb
  2153. id: dandiasset:ca1f26c5-f39c-421f-b1b3-59a9685f127b
  2154. identifier: ca1f26c5-f39c-421f-b1b3-59a9685f127b
  2155. measurementTechnique:
  2156. - name: behavioral technique
  2157. schemaKey: MeasurementTechniqueType
  2158. - name: surgical technique
  2159. schemaKey: MeasurementTechniqueType
  2160. - name: analytical technique
  2161. schemaKey: MeasurementTechniqueType
  2162. path: sub-439885/sub-439885_ses-833225602_behavior+image+ophys.nwb
  2163. schemaKey: Asset
  2164. schemaVersion: 0.6.4
  2165. variableMeasured:
  2166. - schemaKey: PropertyValue
  2167. value: PlaneSegmentation
  2168. - schemaKey: PropertyValue
  2169. value: ImagingPlane
  2170. - schemaKey: PropertyValue
  2171. value: BehavioralTimeSeries
  2172. - schemaKey: PropertyValue
  2173. value: ProcessingModule
  2174. - schemaKey: PropertyValue
  2175. value: OpticalChannel
  2176. wasAttributedTo:
  2177. - age:
  2178. schemaKey: PropertyValue
  2179. unitText: ISO-8601 duration
  2180. value: P90DT21498.514S
  2181. valueReference:
  2182. schemaKey: PropertyValue
  2183. value: dandi:BirthReference
  2184. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2185. identifier: '439885'
  2186. schemaKey: Participant
  2187. sex:
  2188. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2189. name: Female
  2190. schemaKey: SexType
  2191. species:
  2192. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2193. name: Mus musculus - House mouse
  2194. schemaKey: SpeciesType
  2195. wasGeneratedBy:
  2196. - description: Allen Institute OpenScope dataset
  2197. identifier: '833225602'
  2198. name: '833225602'
  2199. schemaKey: Session
  2200. startDate: '2019-03-06T21:58:18.514000-08:00'
  2201. - description: Metadata generated by DANDI cli
  2202. endDate: '2023-06-01T23:54:52.814536-07:00'
  2203. id: urn:uuid:f1432c36-cc5c-4ad4-b6ed-c11af327b383
  2204. name: Metadata generation
  2205. schemaKey: Activity
  2206. startDate: '2023-06-01T23:53:57.466240-07:00'
  2207. wasAssociatedWith:
  2208. - identifier: RRID:SCR_019009
  2209. name: DANDI Command Line Interface
  2210. schemaKey: Software
  2211. url: https://github.com/dandi/dandi-cli
  2212. version: 0.54.0
  2213. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2214. access:
  2215. - schemaKey: AccessRequirements
  2216. status: dandi:OpenAccess
  2217. approach:
  2218. - name: microscopy approach; cell population imaging
  2219. schemaKey: ApproachType
  2220. - name: behavioral approach
  2221. schemaKey: ApproachType
  2222. blobDateModified: '2023-06-01T22:54:52.094887-07:00'
  2223. contentSize: 1365860908
  2224. contentUrl:
  2225. - https://api.dandiarchive.org/api/assets/699f1964-ed7d-4013-ab0e-1e5401a3dd30/download/
  2226. - https://dandiarchive.s3.amazonaws.com/blobs/6e4/87a/6e487a84-ec83-4e9f-be15-4e61ec2a0ea5
  2227. dateModified: '2023-06-01T23:54:56.410051-07:00'
  2228. digest:
  2229. dandi:dandi-etag: 5746a23738301835d965ccc5a6e543d1-21
  2230. dandi:sha2-256: ab8115fe1b44ebd93deb25424c368e7db84c25ab65534a4bdd7526988002e6df
  2231. encodingFormat: application/x-nwb
  2232. id: dandiasset:699f1964-ed7d-4013-ab0e-1e5401a3dd30
  2233. identifier: 699f1964-ed7d-4013-ab0e-1e5401a3dd30
  2234. measurementTechnique:
  2235. - name: behavioral technique
  2236. schemaKey: MeasurementTechniqueType
  2237. - name: surgical technique
  2238. schemaKey: MeasurementTechniqueType
  2239. - name: analytical technique
  2240. schemaKey: MeasurementTechniqueType
  2241. path: sub-439885/sub-439885_ses-836099240_behavior+image+ophys.nwb
  2242. schemaKey: Asset
  2243. schemaVersion: 0.6.4
  2244. variableMeasured:
  2245. - schemaKey: PropertyValue
  2246. value: PlaneSegmentation
  2247. - schemaKey: PropertyValue
  2248. value: ImagingPlane
  2249. - schemaKey: PropertyValue
  2250. value: BehavioralTimeSeries
  2251. - schemaKey: PropertyValue
  2252. value: ProcessingModule
  2253. - schemaKey: PropertyValue
  2254. value: OpticalChannel
  2255. wasAttributedTo:
  2256. - age:
  2257. schemaKey: PropertyValue
  2258. unitText: ISO-8601 duration
  2259. value: P96DT15784.879S
  2260. valueReference:
  2261. schemaKey: PropertyValue
  2262. value: dandi:BirthReference
  2263. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2264. identifier: '439885'
  2265. schemaKey: Participant
  2266. sex:
  2267. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2268. name: Female
  2269. schemaKey: SexType
  2270. species:
  2271. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2272. name: Mus musculus - House mouse
  2273. schemaKey: SpeciesType
  2274. wasGeneratedBy:
  2275. - description: Allen Institute OpenScope dataset
  2276. identifier: '836099240'
  2277. name: '836099240'
  2278. schemaKey: Session
  2279. startDate: '2019-03-12T21:23:04.879000-07:00'
  2280. - description: Metadata generated by DANDI cli
  2281. endDate: '2023-06-01T23:54:56.410051-07:00'
  2282. id: urn:uuid:d999b2c4-d2de-4b9c-b03f-dd22f1bdf86b
  2283. name: Metadata generation
  2284. schemaKey: Activity
  2285. startDate: '2023-06-01T23:54:04.990232-07:00'
  2286. wasAssociatedWith:
  2287. - identifier: RRID:SCR_019009
  2288. name: DANDI Command Line Interface
  2289. schemaKey: Software
  2290. url: https://github.com/dandi/dandi-cli
  2291. version: 0.54.0
  2292. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2293. access:
  2294. - schemaKey: AccessRequirements
  2295. status: dandi:OpenAccess
  2296. approach:
  2297. - name: microscopy approach; cell population imaging
  2298. schemaKey: ApproachType
  2299. - name: behavioral approach
  2300. schemaKey: ApproachType
  2301. blobDateModified: '2023-06-01T22:59:28.866361-07:00'
  2302. contentSize: 1270676940
  2303. contentUrl:
  2304. - https://api.dandiarchive.org/api/assets/93123dab-22f4-4ed3-aae6-a3c09f3835dc/download/
  2305. - https://dandiarchive.s3.amazonaws.com/blobs/a68/8cf/a688cf6b-e2f6-4cab-8aa7-f46fca5a191d
  2306. dateModified: '2023-06-01T23:56:38.183319-07:00'
  2307. digest:
  2308. dandi:dandi-etag: 7205f0e550f3500626f298ec33e7b0ed-19
  2309. dandi:sha2-256: 77e251df46265671ff0eb12fc4f1fda468b24521469ac0e6da543348c06087e9
  2310. encodingFormat: application/x-nwb
  2311. id: dandiasset:93123dab-22f4-4ed3-aae6-a3c09f3835dc
  2312. identifier: 93123dab-22f4-4ed3-aae6-a3c09f3835dc
  2313. measurementTechnique:
  2314. - name: behavioral technique
  2315. schemaKey: MeasurementTechniqueType
  2316. - name: surgical technique
  2317. schemaKey: MeasurementTechniqueType
  2318. - name: analytical technique
  2319. schemaKey: MeasurementTechniqueType
  2320. path: sub-439885/sub-439885_ses-836665934_behavior+image+ophys.nwb
  2321. schemaKey: Asset
  2322. schemaVersion: 0.6.4
  2323. variableMeasured:
  2324. - schemaKey: PropertyValue
  2325. value: PlaneSegmentation
  2326. - schemaKey: PropertyValue
  2327. value: ImagingPlane
  2328. - schemaKey: PropertyValue
  2329. value: BehavioralTimeSeries
  2330. - schemaKey: PropertyValue
  2331. value: ProcessingModule
  2332. - schemaKey: PropertyValue
  2333. value: OpticalChannel
  2334. wasAttributedTo:
  2335. - age:
  2336. schemaKey: PropertyValue
  2337. unitText: ISO-8601 duration
  2338. value: P97DT12820.642S
  2339. valueReference:
  2340. schemaKey: PropertyValue
  2341. value: dandi:BirthReference
  2342. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2343. identifier: '439885'
  2344. schemaKey: Participant
  2345. sex:
  2346. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2347. name: Female
  2348. schemaKey: SexType
  2349. species:
  2350. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2351. name: Mus musculus - House mouse
  2352. schemaKey: SpeciesType
  2353. wasGeneratedBy:
  2354. - description: Allen Institute OpenScope dataset
  2355. identifier: '836665934'
  2356. name: '836665934'
  2357. schemaKey: Session
  2358. startDate: '2019-03-13T20:33:40.642000-07:00'
  2359. - description: Metadata generated by DANDI cli
  2360. endDate: '2023-06-01T23:56:38.183319-07:00'
  2361. id: urn:uuid:c2279976-c47a-4296-918d-e2059d6683d6
  2362. name: Metadata generation
  2363. schemaKey: Activity
  2364. startDate: '2023-06-01T23:55:32.168576-07:00'
  2365. wasAssociatedWith:
  2366. - identifier: RRID:SCR_019009
  2367. name: DANDI Command Line Interface
  2368. schemaKey: Software
  2369. url: https://github.com/dandi/dandi-cli
  2370. version: 0.54.0
  2371. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2372. access:
  2373. - schemaKey: AccessRequirements
  2374. status: dandi:OpenAccess
  2375. approach:
  2376. - name: microscopy approach; cell population imaging
  2377. schemaKey: ApproachType
  2378. - name: behavioral approach
  2379. schemaKey: ApproachType
  2380. blobDateModified: '2023-06-01T23:10:08.420574-07:00'
  2381. contentSize: 1317135476
  2382. contentUrl:
  2383. - https://api.dandiarchive.org/api/assets/ab0118fc-7095-4c6c-bb15-da597154d4bb/download/
  2384. - https://dandiarchive.s3.amazonaws.com/blobs/06f/3a9/06f3a9aa-295d-47c8-9c07-876b84e54294
  2385. dateModified: '2023-06-01T23:56:59.187708-07:00'
  2386. digest:
  2387. dandi:dandi-etag: f6e09585c43ed623e6233a26f3ee7800-20
  2388. dandi:sha2-256: cc494d23c1852cc315bc56c2570d149d1ffaa4da84d3e1fbf230004b1022a32a
  2389. encodingFormat: application/x-nwb
  2390. id: dandiasset:ab0118fc-7095-4c6c-bb15-da597154d4bb
  2391. identifier: ab0118fc-7095-4c6c-bb15-da597154d4bb
  2392. measurementTechnique:
  2393. - name: behavioral technique
  2394. schemaKey: MeasurementTechniqueType
  2395. - name: surgical technique
  2396. schemaKey: MeasurementTechniqueType
  2397. - name: analytical technique
  2398. schemaKey: MeasurementTechniqueType
  2399. path: sub-439895/sub-439895_ses-826834709_behavior+image+ophys.nwb
  2400. schemaKey: Asset
  2401. schemaVersion: 0.6.4
  2402. variableMeasured:
  2403. - schemaKey: PropertyValue
  2404. value: PlaneSegmentation
  2405. - schemaKey: PropertyValue
  2406. value: ImagingPlane
  2407. - schemaKey: PropertyValue
  2408. value: BehavioralTimeSeries
  2409. - schemaKey: PropertyValue
  2410. value: ProcessingModule
  2411. - schemaKey: PropertyValue
  2412. value: OpticalChannel
  2413. wasAttributedTo:
  2414. - age:
  2415. schemaKey: PropertyValue
  2416. unitText: ISO-8601 duration
  2417. value: P77DT23924.701S
  2418. valueReference:
  2419. schemaKey: PropertyValue
  2420. value: dandi:BirthReference
  2421. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2422. identifier: '439895'
  2423. schemaKey: Participant
  2424. sex:
  2425. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2426. name: Male
  2427. schemaKey: SexType
  2428. species:
  2429. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2430. name: Mus musculus - House mouse
  2431. schemaKey: SpeciesType
  2432. wasGeneratedBy:
  2433. - description: Allen Institute OpenScope dataset
  2434. identifier: '826834709'
  2435. name: '826834709'
  2436. schemaKey: Session
  2437. startDate: '2019-02-21T22:38:44.701000-08:00'
  2438. - description: Metadata generated by DANDI cli
  2439. endDate: '2023-06-01T23:56:59.187708-07:00'
  2440. id: urn:uuid:c78d4b49-194d-431f-a262-81fa3c489ee8
  2441. name: Metadata generation
  2442. schemaKey: Activity
  2443. startDate: '2023-06-01T23:56:02.534029-07:00'
  2444. wasAssociatedWith:
  2445. - identifier: RRID:SCR_019009
  2446. name: DANDI Command Line Interface
  2447. schemaKey: Software
  2448. url: https://github.com/dandi/dandi-cli
  2449. version: 0.54.0
  2450. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2451. access:
  2452. - schemaKey: AccessRequirements
  2453. status: dandi:OpenAccess
  2454. approach:
  2455. - name: microscopy approach; cell population imaging
  2456. schemaKey: ApproachType
  2457. - name: behavioral approach
  2458. schemaKey: ApproachType
  2459. blobDateModified: '2023-06-01T22:53:16.715870-07:00'
  2460. contentSize: 1236823116
  2461. contentUrl:
  2462. - https://api.dandiarchive.org/api/assets/63bf5bd6-9765-45ae-b5da-91eba0665bb9/download/
  2463. - https://dandiarchive.s3.amazonaws.com/blobs/027/fba/027fba6d-b93c-4c9c-9e89-6c24bce88066
  2464. dateModified: '2023-06-01T23:57:04.266337-07:00'
  2465. digest:
  2466. dandi:dandi-etag: 065090dc0a528182c11fe579ec518ce8-19
  2467. dandi:sha2-256: 18375b142bea8f5fdecab687c72a736650d116245b121883cf0ed32930d790bb
  2468. encodingFormat: application/x-nwb
  2469. id: dandiasset:63bf5bd6-9765-45ae-b5da-91eba0665bb9
  2470. identifier: 63bf5bd6-9765-45ae-b5da-91eba0665bb9
  2471. measurementTechnique:
  2472. - name: behavioral technique
  2473. schemaKey: MeasurementTechniqueType
  2474. - name: surgical technique
  2475. schemaKey: MeasurementTechniqueType
  2476. - name: analytical technique
  2477. schemaKey: MeasurementTechniqueType
  2478. path: sub-439885/sub-439885_ses-837174181_behavior+image+ophys.nwb
  2479. schemaKey: Asset
  2480. schemaVersion: 0.6.4
  2481. variableMeasured:
  2482. - schemaKey: PropertyValue
  2483. value: PlaneSegmentation
  2484. - schemaKey: PropertyValue
  2485. value: ImagingPlane
  2486. - schemaKey: PropertyValue
  2487. value: BehavioralTimeSeries
  2488. - schemaKey: PropertyValue
  2489. value: ProcessingModule
  2490. - schemaKey: PropertyValue
  2491. value: OpticalChannel
  2492. wasAttributedTo:
  2493. - age:
  2494. schemaKey: PropertyValue
  2495. unitText: ISO-8601 duration
  2496. value: P98DT11068.324S
  2497. valueReference:
  2498. schemaKey: PropertyValue
  2499. value: dandi:BirthReference
  2500. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2501. identifier: '439885'
  2502. schemaKey: Participant
  2503. sex:
  2504. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2505. name: Female
  2506. schemaKey: SexType
  2507. species:
  2508. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2509. name: Mus musculus - House mouse
  2510. schemaKey: SpeciesType
  2511. wasGeneratedBy:
  2512. - description: Allen Institute OpenScope dataset
  2513. identifier: '837174181'
  2514. name: '837174181'
  2515. schemaKey: Session
  2516. startDate: '2019-03-14T20:04:28.324000-07:00'
  2517. - description: Metadata generated by DANDI cli
  2518. endDate: '2023-06-01T23:57:04.266337-07:00'
  2519. id: urn:uuid:49ccda6e-9dd6-4e3f-ab19-548651bdf447
  2520. name: Metadata generation
  2521. schemaKey: Activity
  2522. startDate: '2023-06-01T23:56:06.927347-07:00'
  2523. wasAssociatedWith:
  2524. - identifier: RRID:SCR_019009
  2525. name: DANDI Command Line Interface
  2526. schemaKey: Software
  2527. url: https://github.com/dandi/dandi-cli
  2528. version: 0.54.0
  2529. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2530. access:
  2531. - schemaKey: AccessRequirements
  2532. status: dandi:OpenAccess
  2533. approach:
  2534. - name: microscopy approach; cell population imaging
  2535. schemaKey: ApproachType
  2536. - name: behavioral approach
  2537. schemaKey: ApproachType
  2538. blobDateModified: '2023-06-01T23:00:25.510666-07:00'
  2539. contentSize: 1325672956
  2540. contentUrl:
  2541. - https://api.dandiarchive.org/api/assets/782f7127-bd95-4dd1-8596-a43d3eff4142/download/
  2542. - https://dandiarchive.s3.amazonaws.com/blobs/d58/da2/d58da27c-0127-4653-9c02-4520926ffa40
  2543. dateModified: '2023-06-01T23:58:41.604711-07:00'
  2544. digest:
  2545. dandi:dandi-etag: 2998dce9e5807cf54ae427b20928c385-20
  2546. dandi:sha2-256: e30fabf48e58707347b009f550ed1b62f794f5a1f42689477c70ea633c116b89
  2547. encodingFormat: application/x-nwb
  2548. id: dandiasset:782f7127-bd95-4dd1-8596-a43d3eff4142
  2549. identifier: 782f7127-bd95-4dd1-8596-a43d3eff4142
  2550. measurementTechnique:
  2551. - name: behavioral technique
  2552. schemaKey: MeasurementTechniqueType
  2553. - name: surgical technique
  2554. schemaKey: MeasurementTechniqueType
  2555. - name: analytical technique
  2556. schemaKey: MeasurementTechniqueType
  2557. path: sub-439895/sub-439895_ses-828804932_behavior+image+ophys.nwb
  2558. schemaKey: Asset
  2559. schemaVersion: 0.6.4
  2560. variableMeasured:
  2561. - schemaKey: PropertyValue
  2562. value: PlaneSegmentation
  2563. - schemaKey: PropertyValue
  2564. value: ImagingPlane
  2565. - schemaKey: PropertyValue
  2566. value: BehavioralTimeSeries
  2567. - schemaKey: PropertyValue
  2568. value: ProcessingModule
  2569. - schemaKey: PropertyValue
  2570. value: OpticalChannel
  2571. wasAttributedTo:
  2572. - age:
  2573. schemaKey: PropertyValue
  2574. unitText: ISO-8601 duration
  2575. value: P81DT19278.014S
  2576. valueReference:
  2577. schemaKey: PropertyValue
  2578. value: dandi:BirthReference
  2579. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2580. identifier: '439895'
  2581. schemaKey: Participant
  2582. sex:
  2583. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2584. name: Male
  2585. schemaKey: SexType
  2586. species:
  2587. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2588. name: Mus musculus - House mouse
  2589. schemaKey: SpeciesType
  2590. wasGeneratedBy:
  2591. - description: Allen Institute OpenScope dataset
  2592. identifier: '828804932'
  2593. name: '828804932'
  2594. schemaKey: Session
  2595. startDate: '2019-02-25T21:21:18.014000-08:00'
  2596. - description: Metadata generated by DANDI cli
  2597. endDate: '2023-06-01T23:58:41.604711-07:00'
  2598. id: urn:uuid:6954892b-ad52-4562-885e-0b8427a27222
  2599. name: Metadata generation
  2600. schemaKey: Activity
  2601. startDate: '2023-06-01T23:57:51.946540-07:00'
  2602. wasAssociatedWith:
  2603. - identifier: RRID:SCR_019009
  2604. name: DANDI Command Line Interface
  2605. schemaKey: Software
  2606. url: https://github.com/dandi/dandi-cli
  2607. version: 0.54.0
  2608. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2609. access:
  2610. - schemaKey: AccessRequirements
  2611. status: dandi:OpenAccess
  2612. approach:
  2613. - name: microscopy approach; cell population imaging
  2614. schemaKey: ApproachType
  2615. - name: behavioral approach
  2616. schemaKey: ApproachType
  2617. blobDateModified: '2023-06-01T23:01:41.444481-07:00'
  2618. contentSize: 1306638988
  2619. contentUrl:
  2620. - https://api.dandiarchive.org/api/assets/ee67eedc-58b9-4457-a1a4-d610c8f0bf4e/download/
  2621. - https://dandiarchive.s3.amazonaws.com/blobs/01e/b69/01eb69f6-5d1d-4afa-acd8-0a16cec7dc5d
  2622. dateModified: '2023-06-02T00:00:28.210905-07:00'
  2623. digest:
  2624. dandi:dandi-etag: f61f7dcd4876b5892c6e573ed85c8a3e-20
  2625. dandi:sha2-256: 792fdb7b5e23e83d203c92fe62c3d44c7650f7ea4ec022bb3a3eb43f3ff2b446
  2626. encodingFormat: application/x-nwb
  2627. id: dandiasset:ee67eedc-58b9-4457-a1a4-d610c8f0bf4e
  2628. identifier: ee67eedc-58b9-4457-a1a4-d610c8f0bf4e
  2629. measurementTechnique:
  2630. - name: behavioral technique
  2631. schemaKey: MeasurementTechniqueType
  2632. - name: surgical technique
  2633. schemaKey: MeasurementTechniqueType
  2634. - name: analytical technique
  2635. schemaKey: MeasurementTechniqueType
  2636. path: sub-439895/sub-439895_ses-831155306_behavior+image+ophys.nwb
  2637. schemaKey: Asset
  2638. schemaVersion: 0.6.4
  2639. variableMeasured:
  2640. - schemaKey: PropertyValue
  2641. value: PlaneSegmentation
  2642. - schemaKey: PropertyValue
  2643. value: ImagingPlane
  2644. - schemaKey: PropertyValue
  2645. value: BehavioralTimeSeries
  2646. - schemaKey: PropertyValue
  2647. value: ProcessingModule
  2648. - schemaKey: PropertyValue
  2649. value: OpticalChannel
  2650. wasAttributedTo:
  2651. - age:
  2652. schemaKey: PropertyValue
  2653. unitText: ISO-8601 duration
  2654. value: P85DT23625.846S
  2655. valueReference:
  2656. schemaKey: PropertyValue
  2657. value: dandi:BirthReference
  2658. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2659. identifier: '439895'
  2660. schemaKey: Participant
  2661. sex:
  2662. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2663. name: Male
  2664. schemaKey: SexType
  2665. species:
  2666. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2667. name: Mus musculus - House mouse
  2668. schemaKey: SpeciesType
  2669. wasGeneratedBy:
  2670. - description: Allen Institute OpenScope dataset
  2671. identifier: '831155306'
  2672. name: '831155306'
  2673. schemaKey: Session
  2674. startDate: '2019-03-01T22:33:45.846000-08:00'
  2675. - description: Metadata generated by DANDI cli
  2676. endDate: '2023-06-02T00:00:28.210905-07:00'
  2677. id: urn:uuid:ce048d86-d623-4324-a25f-cef8d5bce524
  2678. name: Metadata generation
  2679. schemaKey: Activity
  2680. startDate: '2023-06-01T23:59:11.627917-07:00'
  2681. wasAssociatedWith:
  2682. - identifier: RRID:SCR_019009
  2683. name: DANDI Command Line Interface
  2684. schemaKey: Software
  2685. url: https://github.com/dandi/dandi-cli
  2686. version: 0.54.0
  2687. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2688. access:
  2689. - schemaKey: AccessRequirements
  2690. status: dandi:OpenAccess
  2691. approach:
  2692. - name: microscopy approach; cell population imaging
  2693. schemaKey: ApproachType
  2694. - name: behavioral approach
  2695. schemaKey: ApproachType
  2696. blobDateModified: '2023-06-01T22:53:20.651149-07:00'
  2697. contentSize: 1247174524
  2698. contentUrl:
  2699. - https://api.dandiarchive.org/api/assets/59b0d883-0c7e-4044-b8e7-93961bd6ac51/download/
  2700. - https://dandiarchive.s3.amazonaws.com/blobs/b42/631/b426311f-8acb-44b5-88b4-794e1b95e233
  2701. dateModified: '2023-06-02T00:00:37.830966-07:00'
  2702. digest:
  2703. dandi:dandi-etag: 5a8479a590dc6a300458068b245078e6-19
  2704. dandi:sha2-256: aa92dda192ee6e5e6a866ba550bded686aff59531389aefaf714b0b022bc8494
  2705. encodingFormat: application/x-nwb
  2706. id: dandiasset:59b0d883-0c7e-4044-b8e7-93961bd6ac51
  2707. identifier: 59b0d883-0c7e-4044-b8e7-93961bd6ac51
  2708. measurementTechnique:
  2709. - name: behavioral technique
  2710. schemaKey: MeasurementTechniqueType
  2711. - name: surgical technique
  2712. schemaKey: MeasurementTechniqueType
  2713. - name: analytical technique
  2714. schemaKey: MeasurementTechniqueType
  2715. path: sub-439900/sub-439900_ses-835537233_behavior+image+ophys.nwb
  2716. schemaKey: Asset
  2717. schemaVersion: 0.6.4
  2718. variableMeasured:
  2719. - schemaKey: PropertyValue
  2720. value: PlaneSegmentation
  2721. - schemaKey: PropertyValue
  2722. value: ImagingPlane
  2723. - schemaKey: PropertyValue
  2724. value: BehavioralTimeSeries
  2725. - schemaKey: PropertyValue
  2726. value: ProcessingModule
  2727. - schemaKey: PropertyValue
  2728. value: OpticalChannel
  2729. wasAttributedTo:
  2730. - age:
  2731. schemaKey: PropertyValue
  2732. unitText: ISO-8601 duration
  2733. value: P95DT12558.401S
  2734. valueReference:
  2735. schemaKey: PropertyValue
  2736. value: dandi:BirthReference
  2737. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2738. identifier: '439900'
  2739. schemaKey: Participant
  2740. sex:
  2741. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2742. name: Female
  2743. schemaKey: SexType
  2744. species:
  2745. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2746. name: Mus musculus - House mouse
  2747. schemaKey: SpeciesType
  2748. wasGeneratedBy:
  2749. - description: Allen Institute OpenScope dataset
  2750. identifier: '835537233'
  2751. name: '835537233'
  2752. schemaKey: Session
  2753. startDate: '2019-03-11T20:29:18.401000-07:00'
  2754. - description: Metadata generated by DANDI cli
  2755. endDate: '2023-06-02T00:00:37.830966-07:00'
  2756. id: urn:uuid:cfadf897-8e7d-4af7-81a3-3037c42be7e6
  2757. name: Metadata generation
  2758. schemaKey: Activity
  2759. startDate: '2023-06-01T23:59:32.545817-07:00'
  2760. wasAssociatedWith:
  2761. - identifier: RRID:SCR_019009
  2762. name: DANDI Command Line Interface
  2763. schemaKey: Software
  2764. url: https://github.com/dandi/dandi-cli
  2765. version: 0.54.0
  2766. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2767. access:
  2768. - schemaKey: AccessRequirements
  2769. status: dandi:OpenAccess
  2770. approach:
  2771. - name: microscopy approach; cell population imaging
  2772. schemaKey: ApproachType
  2773. - name: behavioral approach
  2774. schemaKey: ApproachType
  2775. blobDateModified: '2023-06-01T22:53:55.372964-07:00'
  2776. contentSize: 1245137596
  2777. contentUrl:
  2778. - https://api.dandiarchive.org/api/assets/d88ddebc-3d9b-411c-a26e-6f23f7e754cc/download/
  2779. - https://dandiarchive.s3.amazonaws.com/blobs/a1c/806/a1c80623-39c9-43a7-8983-c92235ec6700
  2780. dateModified: '2023-06-02T00:00:55.389444-07:00'
  2781. digest:
  2782. dandi:dandi-etag: 28eebbbd6dba722537b92ef7ba326b99-19
  2783. dandi:sha2-256: 437f6e744eaeee42c7286f20b5e1329c0a5cd123532eecd3d691eede95254399
  2784. encodingFormat: application/x-nwb
  2785. id: dandiasset:d88ddebc-3d9b-411c-a26e-6f23f7e754cc
  2786. identifier: d88ddebc-3d9b-411c-a26e-6f23f7e754cc
  2787. measurementTechnique:
  2788. - name: behavioral technique
  2789. schemaKey: MeasurementTechniqueType
  2790. - name: surgical technique
  2791. schemaKey: MeasurementTechniqueType
  2792. - name: analytical technique
  2793. schemaKey: MeasurementTechniqueType
  2794. path: sub-439900/sub-439900_ses-835970284_behavior+image+ophys.nwb
  2795. schemaKey: Asset
  2796. schemaVersion: 0.6.4
  2797. variableMeasured:
  2798. - schemaKey: PropertyValue
  2799. value: PlaneSegmentation
  2800. - schemaKey: PropertyValue
  2801. value: ImagingPlane
  2802. - schemaKey: PropertyValue
  2803. value: BehavioralTimeSeries
  2804. - schemaKey: PropertyValue
  2805. value: ProcessingModule
  2806. - schemaKey: PropertyValue
  2807. value: OpticalChannel
  2808. wasAttributedTo:
  2809. - age:
  2810. schemaKey: PropertyValue
  2811. unitText: ISO-8601 duration
  2812. value: P96DT10187.93S
  2813. valueReference:
  2814. schemaKey: PropertyValue
  2815. value: dandi:BirthReference
  2816. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2817. identifier: '439900'
  2818. schemaKey: Participant
  2819. sex:
  2820. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2821. name: Female
  2822. schemaKey: SexType
  2823. species:
  2824. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2825. name: Mus musculus - House mouse
  2826. schemaKey: SpeciesType
  2827. wasGeneratedBy:
  2828. - description: Allen Institute OpenScope dataset
  2829. identifier: '835970284'
  2830. name: '835970284'
  2831. schemaKey: Session
  2832. startDate: '2019-03-12T19:49:47.930000-07:00'
  2833. - description: Metadata generated by DANDI cli
  2834. endDate: '2023-06-02T00:00:55.389444-07:00'
  2835. id: urn:uuid:a3b4b76e-11d9-4254-877c-0dfc0bf48d59
  2836. name: Metadata generation
  2837. schemaKey: Activity
  2838. startDate: '2023-06-01T23:59:55.885456-07:00'
  2839. wasAssociatedWith:
  2840. - identifier: RRID:SCR_019009
  2841. name: DANDI Command Line Interface
  2842. schemaKey: Software
  2843. url: https://github.com/dandi/dandi-cli
  2844. version: 0.54.0
  2845. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2846. access:
  2847. - schemaKey: AccessRequirements
  2848. status: dandi:OpenAccess
  2849. approach:
  2850. - name: microscopy approach; cell population imaging
  2851. schemaKey: ApproachType
  2852. - name: behavioral approach
  2853. schemaKey: ApproachType
  2854. blobDateModified: '2023-06-01T22:57:31.201695-07:00'
  2855. contentSize: 1287374652
  2856. contentUrl:
  2857. - https://api.dandiarchive.org/api/assets/ee90fcb9-1cf3-4d07-ab08-73ddea2c3920/download/
  2858. - https://dandiarchive.s3.amazonaws.com/blobs/031/069/03106995-52a2-4916-93b9-6d3fe9eeadf2
  2859. dateModified: '2023-06-02T00:00:56.633706-07:00'
  2860. digest:
  2861. dandi:dandi-etag: 2ce184f835f9cc8b6fce27f899e9bde8-20
  2862. dandi:sha2-256: 69f93d21730a4844e84745173bf9e412c23f9593303d181c8234abf1191e2c2c
  2863. encodingFormat: application/x-nwb
  2864. id: dandiasset:ee90fcb9-1cf3-4d07-ab08-73ddea2c3920
  2865. identifier: ee90fcb9-1cf3-4d07-ab08-73ddea2c3920
  2866. measurementTechnique:
  2867. - name: behavioral technique
  2868. schemaKey: MeasurementTechniqueType
  2869. - name: surgical technique
  2870. schemaKey: MeasurementTechniqueType
  2871. - name: analytical technique
  2872. schemaKey: MeasurementTechniqueType
  2873. path: sub-439900/sub-439900_ses-833173749_behavior+image+ophys.nwb
  2874. schemaKey: Asset
  2875. schemaVersion: 0.6.4
  2876. variableMeasured:
  2877. - schemaKey: PropertyValue
  2878. value: PlaneSegmentation
  2879. - schemaKey: PropertyValue
  2880. value: ImagingPlane
  2881. - schemaKey: PropertyValue
  2882. value: BehavioralTimeSeries
  2883. - schemaKey: PropertyValue
  2884. value: ProcessingModule
  2885. - schemaKey: PropertyValue
  2886. value: OpticalChannel
  2887. wasAttributedTo:
  2888. - age:
  2889. schemaKey: PropertyValue
  2890. unitText: ISO-8601 duration
  2891. value: P90DT17726.007S
  2892. valueReference:
  2893. schemaKey: PropertyValue
  2894. value: dandi:BirthReference
  2895. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  2896. identifier: '439900'
  2897. schemaKey: Participant
  2898. sex:
  2899. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2900. name: Female
  2901. schemaKey: SexType
  2902. species:
  2903. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2904. name: Mus musculus - House mouse
  2905. schemaKey: SpeciesType
  2906. wasGeneratedBy:
  2907. - description: Allen Institute OpenScope dataset
  2908. identifier: '833173749'
  2909. name: '833173749'
  2910. schemaKey: Session
  2911. startDate: '2019-03-06T20:55:26.007000-08:00'
  2912. - description: Metadata generated by DANDI cli
  2913. endDate: '2023-06-02T00:00:56.633706-07:00'
  2914. id: urn:uuid:8d5135a0-a8fe-472c-aae5-f077d92ffa41
  2915. name: Metadata generation
  2916. schemaKey: Activity
  2917. startDate: '2023-06-01T23:59:28.261527-07:00'
  2918. wasAssociatedWith:
  2919. - identifier: RRID:SCR_019009
  2920. name: DANDI Command Line Interface
  2921. schemaKey: Software
  2922. url: https://github.com/dandi/dandi-cli
  2923. version: 0.54.0
  2924. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2925. access:
  2926. - schemaKey: AccessRequirements
  2927. status: dandi:OpenAccess
  2928. approach:
  2929. - name: microscopy approach; cell population imaging
  2930. schemaKey: ApproachType
  2931. - name: behavioral approach
  2932. schemaKey: ApproachType
  2933. blobDateModified: '2023-04-28T19:03:48.993643-07:00'
  2934. contentSize: 1642954276
  2935. contentUrl:
  2936. - https://api.dandiarchive.org/api/assets/ae4e0bd4-6e5d-4145-9ca8-8ee4e3357e0c/download/
  2937. - https://dandiarchive.s3.amazonaws.com/blobs/b98/ad3/b98ad319-bd6f-49ef-ba43-ed1f2bbd2932
  2938. dateModified: '2023-06-02T00:02:17.453193-07:00'
  2939. digest:
  2940. dandi:dandi-etag: ec083eaf7e818e015ac317c6d6927cc2-25
  2941. dandi:sha2-256: d7efb9b44c24a2812261e3182bc6107dca5b765c62c90987174fd84b629c9237
  2942. encodingFormat: application/x-nwb
  2943. id: dandiasset:ae4e0bd4-6e5d-4145-9ca8-8ee4e3357e0c
  2944. identifier: ae4e0bd4-6e5d-4145-9ca8-8ee4e3357e0c
  2945. measurementTechnique:
  2946. - name: behavioral technique
  2947. schemaKey: MeasurementTechniqueType
  2948. - name: surgical technique
  2949. schemaKey: MeasurementTechniqueType
  2950. - name: analytical technique
  2951. schemaKey: MeasurementTechniqueType
  2952. path: sub-440208/sub-440208_ses-20190313T174911_behavior+image+ophys.nwb
  2953. schemaKey: Asset
  2954. schemaVersion: 0.6.4
  2955. variableMeasured:
  2956. - schemaKey: PropertyValue
  2957. value: PlaneSegmentation
  2958. - schemaKey: PropertyValue
  2959. value: ImagingPlane
  2960. - schemaKey: PropertyValue
  2961. value: BehavioralTimeSeries
  2962. - schemaKey: PropertyValue
  2963. value: ProcessingModule
  2964. - schemaKey: PropertyValue
  2965. value: OpticalChannel
  2966. wasAttributedTo:
  2967. - age:
  2968. schemaKey: PropertyValue
  2969. unitText: ISO-8601 duration
  2970. value: P95DT2951.943S
  2971. valueReference:
  2972. schemaKey: PropertyValue
  2973. value: dandi:BirthReference
  2974. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  2975. identifier: '440208'
  2976. schemaKey: Participant
  2977. sex:
  2978. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2979. name: Female
  2980. schemaKey: SexType
  2981. species:
  2982. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2983. name: Mus musculus - House mouse
  2984. schemaKey: SpeciesType
  2985. wasGeneratedBy:
  2986. - description: Allen Institute OpenScope dataset
  2987. name: Acquisition session
  2988. schemaKey: Session
  2989. startDate: '2019-03-13T17:49:11.943000-07:00'
  2990. - description: Metadata generated by DANDI cli
  2991. endDate: '2023-06-02T00:02:17.453193-07:00'
  2992. id: urn:uuid:8fa26ad3-ac39-4b72-85db-9554a83c1c1b
  2993. name: Metadata generation
  2994. schemaKey: Activity
  2995. startDate: '2023-06-02T00:02:17.412963-07:00'
  2996. wasAssociatedWith:
  2997. - identifier: RRID:SCR_019009
  2998. name: DANDI Command Line Interface
  2999. schemaKey: Software
  3000. url: https://github.com/dandi/dandi-cli
  3001. version: 0.54.0
  3002. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3003. access:
  3004. - schemaKey: AccessRequirements
  3005. status: dandi:OpenAccess
  3006. approach:
  3007. - name: microscopy approach; cell population imaging
  3008. schemaKey: ApproachType
  3009. - name: behavioral approach
  3010. schemaKey: ApproachType
  3011. blobDateModified: '2023-06-01T23:09:51.119127-07:00'
  3012. contentSize: 1600722220
  3013. contentUrl:
  3014. - https://api.dandiarchive.org/api/assets/49727ce3-b4e0-49c6-8425-c5600340e901/download/
  3015. - https://dandiarchive.s3.amazonaws.com/blobs/5a5/0d3/5a50d343-d93e-46fc-acf2-ab309397d59e
  3016. dateModified: '2023-06-02T00:04:27.729575-07:00'
  3017. digest:
  3018. dandi:dandi-etag: cd9e81b3c4ccb7f03f9a75eca27faecf-24
  3019. dandi:sha2-256: 6ff348cb73c10341bfb2d1d905b6e1846eef36e724769b96abe85f7dcf98082b
  3020. encodingFormat: application/x-nwb
  3021. id: dandiasset:49727ce3-b4e0-49c6-8425-c5600340e901
  3022. identifier: 49727ce3-b4e0-49c6-8425-c5600340e901
  3023. measurementTechnique:
  3024. - name: behavioral technique
  3025. schemaKey: MeasurementTechniqueType
  3026. - name: surgical technique
  3027. schemaKey: MeasurementTechniqueType
  3028. - name: analytical technique
  3029. schemaKey: MeasurementTechniqueType
  3030. path: sub-440299/sub-440299_ses-833016683_behavior+image+ophys.nwb
  3031. schemaKey: Asset
  3032. schemaVersion: 0.6.4
  3033. variableMeasured:
  3034. - schemaKey: PropertyValue
  3035. value: PlaneSegmentation
  3036. - schemaKey: PropertyValue
  3037. value: ImagingPlane
  3038. - schemaKey: PropertyValue
  3039. value: BehavioralTimeSeries
  3040. - schemaKey: PropertyValue
  3041. value: ProcessingModule
  3042. - schemaKey: PropertyValue
  3043. value: OpticalChannel
  3044. wasAttributedTo:
  3045. - age:
  3046. schemaKey: PropertyValue
  3047. unitText: ISO-8601 duration
  3048. value: P87DT9960.916S
  3049. valueReference:
  3050. schemaKey: PropertyValue
  3051. value: dandi:BirthReference
  3052. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3053. identifier: '440299'
  3054. schemaKey: Participant
  3055. sex:
  3056. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3057. name: Male
  3058. schemaKey: SexType
  3059. species:
  3060. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3061. name: Mus musculus - House mouse
  3062. schemaKey: SpeciesType
  3063. wasGeneratedBy:
  3064. - description: Allen Institute OpenScope dataset
  3065. identifier: '833016683'
  3066. name: '833016683'
  3067. schemaKey: Session
  3068. startDate: '2019-03-06T18:46:00.916000-08:00'
  3069. - description: Metadata generated by DANDI cli
  3070. endDate: '2023-06-02T00:04:27.729575-07:00'
  3071. id: urn:uuid:b6c436dd-35fa-4e9f-8651-c6671b3140b8
  3072. name: Metadata generation
  3073. schemaKey: Activity
  3074. startDate: '2023-06-02T00:03:13.915432-07:00'
  3075. wasAssociatedWith:
  3076. - identifier: RRID:SCR_019009
  3077. name: DANDI Command Line Interface
  3078. schemaKey: Software
  3079. url: https://github.com/dandi/dandi-cli
  3080. version: 0.54.0
  3081. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3082. access:
  3083. - schemaKey: AccessRequirements
  3084. status: dandi:OpenAccess
  3085. approach:
  3086. - name: microscopy approach; cell population imaging
  3087. schemaKey: ApproachType
  3088. - name: behavioral approach
  3089. schemaKey: ApproachType
  3090. blobDateModified: '2023-06-01T23:08:08.559655-07:00'
  3091. contentSize: 1599859580
  3092. contentUrl:
  3093. - https://api.dandiarchive.org/api/assets/e1a47cae-c2b6-46c3-ac4e-aed07dd2653c/download/
  3094. - https://dandiarchive.s3.amazonaws.com/blobs/44b/792/44b792bf-c64f-4586-9f14-06ca21577bd0
  3095. dateModified: '2023-06-02T00:04:39.431796-07:00'
  3096. digest:
  3097. dandi:dandi-etag: 80a2de8f9aded50438b48652e54adae8-24
  3098. dandi:sha2-256: e11e121f74c1f31f39af0cd4c04e056e13b511486ea6d303f7aaa31a05c08190
  3099. encodingFormat: application/x-nwb
  3100. id: dandiasset:e1a47cae-c2b6-46c3-ac4e-aed07dd2653c
  3101. identifier: e1a47cae-c2b6-46c3-ac4e-aed07dd2653c
  3102. measurementTechnique:
  3103. - name: behavioral technique
  3104. schemaKey: MeasurementTechniqueType
  3105. - name: surgical technique
  3106. schemaKey: MeasurementTechniqueType
  3107. - name: analytical technique
  3108. schemaKey: MeasurementTechniqueType
  3109. path: sub-440208/sub-440208_ses-837081368_behavior+image+ophys.nwb
  3110. schemaKey: Asset
  3111. schemaVersion: 0.6.4
  3112. variableMeasured:
  3113. - schemaKey: PropertyValue
  3114. value: PlaneSegmentation
  3115. - schemaKey: PropertyValue
  3116. value: ImagingPlane
  3117. - schemaKey: PropertyValue
  3118. value: BehavioralTimeSeries
  3119. - schemaKey: PropertyValue
  3120. value: ProcessingModule
  3121. - schemaKey: PropertyValue
  3122. value: OpticalChannel
  3123. wasAttributedTo:
  3124. - age:
  3125. schemaKey: PropertyValue
  3126. unitText: ISO-8601 duration
  3127. value: P96DT3716.557S
  3128. valueReference:
  3129. schemaKey: PropertyValue
  3130. value: dandi:BirthReference
  3131. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai94(TITL-GCaMP6s)/wt
  3132. identifier: '440208'
  3133. schemaKey: Participant
  3134. sex:
  3135. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  3136. name: Female
  3137. schemaKey: SexType
  3138. species:
  3139. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3140. name: Mus musculus - House mouse
  3141. schemaKey: SpeciesType
  3142. wasGeneratedBy:
  3143. - description: Allen Institute OpenScope dataset
  3144. identifier: '837081368'
  3145. name: '837081368'
  3146. schemaKey: Session
  3147. startDate: '2019-03-14T18:01:56.557000-07:00'
  3148. - description: Metadata generated by DANDI cli
  3149. endDate: '2023-06-02T00:04:39.431796-07:00'
  3150. id: urn:uuid:0256053a-3b9d-4a8e-8e84-f37a53425a0f
  3151. name: Metadata generation
  3152. schemaKey: Activity
  3153. startDate: '2023-06-02T00:03:31.136808-07:00'
  3154. wasAssociatedWith:
  3155. - identifier: RRID:SCR_019009
  3156. name: DANDI Command Line Interface
  3157. schemaKey: Software
  3158. url: https://github.com/dandi/dandi-cli
  3159. version: 0.54.0
  3160. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3161. access:
  3162. - schemaKey: AccessRequirements
  3163. status: dandi:OpenAccess
  3164. approach:
  3165. - name: microscopy approach; cell population imaging
  3166. schemaKey: ApproachType
  3167. - name: behavioral approach
  3168. schemaKey: ApproachType
  3169. blobDateModified: '2023-06-01T22:55:36.280888-07:00'
  3170. contentSize: 1463185228
  3171. contentUrl:
  3172. - https://api.dandiarchive.org/api/assets/efa91e97-befc-4a2f-a9da-fefa746973f4/download/
  3173. - https://dandiarchive.s3.amazonaws.com/blobs/a0d/13f/a0d13fb4-b98e-4a06-ae9a-938f889d8663
  3174. dateModified: '2023-06-02T00:05:00.938383-07:00'
  3175. digest:
  3176. dandi:dandi-etag: edf07abc5ee465cc12f2c8c04130409c-22
  3177. dandi:sha2-256: 7efd049547930b8ffa50b3b5c5da15462fdb250cab5b23d06f1ccdaae1e30864
  3178. encodingFormat: application/x-nwb
  3179. id: dandiasset:efa91e97-befc-4a2f-a9da-fefa746973f4
  3180. identifier: efa91e97-befc-4a2f-a9da-fefa746973f4
  3181. measurementTechnique:
  3182. - name: behavioral technique
  3183. schemaKey: MeasurementTechniqueType
  3184. - name: surgical technique
  3185. schemaKey: MeasurementTechniqueType
  3186. - name: analytical technique
  3187. schemaKey: MeasurementTechniqueType
  3188. path: sub-440299/sub-440299_ses-833870314_behavior+image+ophys.nwb
  3189. schemaKey: Asset
  3190. schemaVersion: 0.6.4
  3191. variableMeasured:
  3192. - schemaKey: PropertyValue
  3193. value: PlaneSegmentation
  3194. - schemaKey: PropertyValue
  3195. value: ImagingPlane
  3196. - schemaKey: PropertyValue
  3197. value: BehavioralTimeSeries
  3198. - schemaKey: PropertyValue
  3199. value: ProcessingModule
  3200. - schemaKey: PropertyValue
  3201. value: OpticalChannel
  3202. wasAttributedTo:
  3203. - age:
  3204. schemaKey: PropertyValue
  3205. unitText: ISO-8601 duration
  3206. value: P88DT11405.053S
  3207. valueReference:
  3208. schemaKey: PropertyValue
  3209. value: dandi:BirthReference
  3210. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3211. identifier: '440299'
  3212. schemaKey: Participant
  3213. sex:
  3214. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3215. name: Male
  3216. schemaKey: SexType
  3217. species:
  3218. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3219. name: Mus musculus - House mouse
  3220. schemaKey: SpeciesType
  3221. wasGeneratedBy:
  3222. - description: Allen Institute OpenScope dataset
  3223. identifier: '833870314'
  3224. name: '833870314'
  3225. schemaKey: Session
  3226. startDate: '2019-03-07T19:10:05.053000-08:00'
  3227. - description: Metadata generated by DANDI cli
  3228. endDate: '2023-06-02T00:05:00.938383-07:00'
  3229. id: urn:uuid:d3c5d6a8-e2a5-4b87-8893-90bfc8801c10
  3230. name: Metadata generation
  3231. schemaKey: Activity
  3232. startDate: '2023-06-02T00:04:12.060776-07:00'
  3233. wasAssociatedWith:
  3234. - identifier: RRID:SCR_019009
  3235. name: DANDI Command Line Interface
  3236. schemaKey: Software
  3237. url: https://github.com/dandi/dandi-cli
  3238. version: 0.54.0
  3239. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3240. access:
  3241. - schemaKey: AccessRequirements
  3242. status: dandi:OpenAccess
  3243. approach:
  3244. - name: microscopy approach; cell population imaging
  3245. schemaKey: ApproachType
  3246. - name: behavioral approach
  3247. schemaKey: ApproachType
  3248. blobDateModified: '2023-06-01T22:53:54.375011-07:00'
  3249. contentSize: 1325682556
  3250. contentUrl:
  3251. - https://api.dandiarchive.org/api/assets/3306a224-00d0-4503-96f9-43d40704c110/download/
  3252. - https://dandiarchive.s3.amazonaws.com/blobs/d1b/6f2/d1b6f22b-c514-479c-ba1c-2842a486fe69
  3253. dateModified: '2023-06-02T00:05:42.427696-07:00'
  3254. digest:
  3255. dandi:dandi-etag: 207e9abda327992ac6e16a119dadb550-20
  3256. dandi:sha2-256: 1f9f9be34db71571f92f3bd05896b0c3e742ad5bc9cf9ca19b36487235a8ef5e
  3257. encodingFormat: application/x-nwb
  3258. id: dandiasset:3306a224-00d0-4503-96f9-43d40704c110
  3259. identifier: 3306a224-00d0-4503-96f9-43d40704c110
  3260. measurementTechnique:
  3261. - name: behavioral technique
  3262. schemaKey: MeasurementTechniqueType
  3263. - name: surgical technique
  3264. schemaKey: MeasurementTechniqueType
  3265. - name: analytical technique
  3266. schemaKey: MeasurementTechniqueType
  3267. path: sub-440299/sub-440299_ses-836464549_behavior+image+ophys.nwb
  3268. schemaKey: Asset
  3269. schemaVersion: 0.6.4
  3270. variableMeasured:
  3271. - schemaKey: PropertyValue
  3272. value: PlaneSegmentation
  3273. - schemaKey: PropertyValue
  3274. value: ImagingPlane
  3275. - schemaKey: PropertyValue
  3276. value: BehavioralTimeSeries
  3277. - schemaKey: PropertyValue
  3278. value: ProcessingModule
  3279. - schemaKey: PropertyValue
  3280. value: OpticalChannel
  3281. wasAttributedTo:
  3282. - age:
  3283. schemaKey: PropertyValue
  3284. unitText: ISO-8601 duration
  3285. value: P94DT4550.253S
  3286. valueReference:
  3287. schemaKey: PropertyValue
  3288. value: dandi:BirthReference
  3289. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3290. identifier: '440299'
  3291. schemaKey: Participant
  3292. sex:
  3293. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3294. name: Male
  3295. schemaKey: SexType
  3296. species:
  3297. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3298. name: Mus musculus - House mouse
  3299. schemaKey: SpeciesType
  3300. wasGeneratedBy:
  3301. - description: Allen Institute OpenScope dataset
  3302. identifier: '836464549'
  3303. name: '836464549'
  3304. schemaKey: Session
  3305. startDate: '2019-03-13T18:15:50.253000-07:00'
  3306. - description: Metadata generated by DANDI cli
  3307. endDate: '2023-06-02T00:05:42.427696-07:00'
  3308. id: urn:uuid:e0724b1b-371a-411b-9b5e-1ce2654fb2ed
  3309. name: Metadata generation
  3310. schemaKey: Activity
  3311. startDate: '2023-06-02T00:05:28.872383-07:00'
  3312. wasAssociatedWith:
  3313. - identifier: RRID:SCR_019009
  3314. name: DANDI Command Line Interface
  3315. schemaKey: Software
  3316. url: https://github.com/dandi/dandi-cli
  3317. version: 0.54.0
  3318. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  3319. access:
  3320. - schemaKey: AccessRequirements
  3321. status: dandi:OpenAccess
  3322. approach:
  3323. - name: microscopy approach; cell population imaging
  3324. schemaKey: ApproachType
  3325. - name: behavioral approach
  3326. schemaKey: ApproachType
  3327. blobDateModified: '2023-06-01T23:05:53.253289-07:00'
  3328. contentSize: 1317228108
  3329. contentUrl:
  3330. - https://api.dandiarchive.org/api/assets/96b9f4e2-3ddf-4699-984c-6608d4843b45/download/
  3331. - https://dandiarchive.s3.amazonaws.com/blobs/8f7/90c/8f790c99-edde-4045-a132-096183935771
  3332. dateModified: '2023-06-02T00:05:49.058300-07:00'
  3333. digest:
  3334. dandi:dandi-etag: 7b5110a6a86dc1baecb2aef6af7d6f77-20
  3335. dandi:sha2-256: 0a088ab83907ac9cdad378aa23b405123997f4276c66f5db83be20c82bd0deb1
  3336. encodingFormat: application/x-nwb
  3337. id: dandiasset:96b9f4e2-3ddf-4699-984c-6608d4843b45
  3338. identifier: 96b9f4e2-3ddf-4699-984c-6608d4843b45
  3339. measurementTechnique:
  3340. - name: behavioral technique
  3341. schemaKey: MeasurementTechniqueType
  3342. - name: surgical technique
  3343. schemaKey: MeasurementTechniqueType
  3344. - name: analytical technique
  3345. schemaKey: MeasurementTechniqueType
  3346. path: sub-440299/sub-440299_ses-837094917_behavior+image+ophys.nwb
  3347. schemaKey: Asset
  3348. schemaVersion: 0.6.4
  3349. variableMeasured:
  3350. - schemaKey: PropertyValue
  3351. value: PlaneSegmentation
  3352. - schemaKey: PropertyValue
  3353. value: ImagingPlane
  3354. - schemaKey: PropertyValue
  3355. value: BehavioralTimeSeries
  3356. - schemaKey: PropertyValue
  3357. value: ProcessingModule
  3358. - schemaKey: PropertyValue
  3359. value: OpticalChannel
  3360. wasAttributedTo:
  3361. - age:
  3362. schemaKey: PropertyValue
  3363. unitText: ISO-8601 duration
  3364. value: P95DT4744.746S
  3365. valueReference:
  3366. schemaKey: PropertyValue
  3367. value: dandi:BirthReference
  3368. genotype: Slc17a7-IRES2-Cre/wt;Camk2a-tTA/wt;Ai93(TITL-GCaMP6f)/wt
  3369. identifier: '440299'
  3370. schemaKey: Participant
  3371. sex:
  3372. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  3373. name: Male
  3374. schemaKey: SexType
  3375. species:
  3376. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  3377. name: Mus musculus - House mouse
  3378. schemaKey: SpeciesType
  3379. wasGeneratedBy:
  3380. - description: Allen Institute OpenScope dataset
  3381. identifier: '837094917'
  3382. name: '837094917'
  3383. schemaKey: Session
  3384. startDate: '2019-03-14T18:19:04.746000-07:00'
  3385. - description: Metadata generated by DANDI cli
  3386. endDate: '2023-06-02T00:05:49.058300-07:00'
  3387. id: urn:uuid:9c41e1a6-4b3e-42bf-98cb-7be88a11f9fa
  3388. name: Metadata generation
  3389. schemaKey: Activity
  3390. startDate: '2023-06-02T00:05:35.446457-07:00'
  3391. wasAssociatedWith:
  3392. - identifier: RRID:SCR_019009
  3393. name: DANDI Command Line Interface
  3394. schemaKey: Software
  3395. url: https://github.com/dandi/dandi-cli
  3396. version: 0.54.0
Tip!

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

Comments

Loading...