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 97 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2022-12-02T17:21:54.708718-08:00'
  9. contentSize: 237267068
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/11c25674-6eff-43a8-8dba-7dea2e8c76c4/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/429/baa/429baaad-a057-411d-8957-8460947aef73
  13. dateModified: '2022-12-02T20:15:00.997018-08:00'
  14. digest:
  15. dandi:dandi-etag: 4c907ae8685aea1bfbe57316942b881f-4
  16. dandi:sha2-256: b770e3ac3f75f40618de2ba2a81e996429d5fc01dd530e9d826acc7a1ad0853c
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:11c25674-6eff-43a8-8dba-7dea2e8c76c4
  19. identifier: 11c25674-6eff-43a8-8dba-7dea2e8c76c4
  20. measurementTechnique:
  21. - name: multi electrode extracellular electrophysiology recording technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: surgical technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-San4/sub-San4_ses-20200302T142114_ecephys.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.3
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: ElectrodeGroup
  31. - schemaKey: PropertyValue
  32. value: ElectricalSeries
  33. wasAttributedTo:
  34. - age:
  35. schemaKey: PropertyValue
  36. unitText: ISO-8601 duration
  37. value: P209DT55274S
  38. valueReference:
  39. schemaKey: PropertyValue
  40. value: dandi:BirthReference
  41. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  42. identifier: San4
  43. schemaKey: Participant
  44. sex:
  45. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  46. name: Male
  47. schemaKey: SexType
  48. species:
  49. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  50. name: Mus musculus - House mouse
  51. schemaKey: SpeciesType
  52. wasGeneratedBy:
  53. - description: Fig 3i, S10
  54. name: Acquisition session
  55. schemaKey: Session
  56. startDate: '2020-03-02T14:21:14-08:00'
  57. - description: Metadata generated by DANDI cli
  58. id: urn:uuid:a698c09b-ca57-4cf3-a523-dfbb00a8f524
  59. name: Metadata generation
  60. schemaKey: Activity
  61. wasAssociatedWith:
  62. - identifier: RRID:SCR_019009
  63. name: DANDI Command Line Interface
  64. schemaKey: Software
  65. url: https://github.com/dandi/dandi-cli
  66. version: 0.46.6
  67. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  68. access:
  69. - schemaKey: AccessRequirements
  70. status: dandi:OpenAccess
  71. approach:
  72. - name: electrophysiological approach
  73. schemaKey: ApproachType
  74. blobDateModified: '2022-12-02T16:35:38.907549-08:00'
  75. contentSize: 106345201
  76. contentUrl:
  77. - https://api.dandiarchive.org/api/assets/591a4423-cc24-40c6-966e-20d782d68a53/download/
  78. - https://dandiarchive.s3.amazonaws.com/blobs/c57/141/c57141f4-e1b5-43c8-853b-e8be262e1645
  79. dateModified: '2022-12-02T20:14:35.706470-08:00'
  80. digest:
  81. dandi:dandi-etag: f7db977b7a3b5fd9a4722142aee59099-2
  82. dandi:sha2-256: 8eb7801dbd5c8f16fae65bf6515696b36656cb6b37b38b5925942fa56322aba0
  83. encodingFormat: application/x-nwb
  84. id: dandiasset:591a4423-cc24-40c6-966e-20d782d68a53
  85. identifier: 591a4423-cc24-40c6-966e-20d782d68a53
  86. measurementTechnique:
  87. - name: multi electrode extracellular electrophysiology recording technique
  88. schemaKey: MeasurementTechniqueType
  89. - name: surgical technique
  90. schemaKey: MeasurementTechniqueType
  91. path: sub-San2/sub-San2_ses-20190904T115958_ecephys.nwb
  92. schemaKey: Asset
  93. schemaVersion: 0.6.3
  94. variableMeasured:
  95. - schemaKey: PropertyValue
  96. value: ElectrodeGroup
  97. - schemaKey: PropertyValue
  98. value: ElectricalSeries
  99. wasAttributedTo:
  100. - age:
  101. schemaKey: PropertyValue
  102. unitText: ISO-8601 duration
  103. value: P68DT43198S
  104. valueReference:
  105. schemaKey: PropertyValue
  106. value: dandi:BirthReference
  107. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  108. identifier: San2
  109. schemaKey: Participant
  110. sex:
  111. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  112. name: Male
  113. schemaKey: SexType
  114. species:
  115. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  116. name: Mus musculus - House mouse
  117. schemaKey: SpeciesType
  118. wasGeneratedBy:
  119. - description: Fig 2h, 2j
  120. name: Acquisition session
  121. schemaKey: Session
  122. startDate: '2019-09-04T11:59:58-07:00'
  123. - description: Metadata generated by DANDI cli
  124. id: urn:uuid:78fd53e1-920f-4236-8386-07b531b04a0d
  125. name: Metadata generation
  126. schemaKey: Activity
  127. wasAssociatedWith:
  128. - identifier: RRID:SCR_019009
  129. name: DANDI Command Line Interface
  130. schemaKey: Software
  131. url: https://github.com/dandi/dandi-cli
  132. version: 0.46.6
  133. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  134. access:
  135. - schemaKey: AccessRequirements
  136. status: dandi:OpenAccess
  137. approach:
  138. - name: electrophysiological approach
  139. schemaKey: ApproachType
  140. blobDateModified: '2022-12-02T16:00:13.094883-08:00'
  141. contentSize: 277318234
  142. contentUrl:
  143. - https://api.dandiarchive.org/api/assets/ffe78b91-329e-46a6-b65c-929de304c50f/download/
  144. - https://dandiarchive.s3.amazonaws.com/blobs/22c/507/22c507dd-3c47-43b7-bcea-a3382137ebf8
  145. dateModified: '2022-12-02T20:14:40.275271-08:00'
  146. digest:
  147. dandi:dandi-etag: 5878d98ff85ee4b9c82c6dd0644cec01-5
  148. dandi:sha2-256: 66bd0cd689b8fbf84f811b2a69e1a6f0800bf1717b5b84658c63170ae479d3a2
  149. encodingFormat: application/x-nwb
  150. id: dandiasset:ffe78b91-329e-46a6-b65c-929de304c50f
  151. identifier: ffe78b91-329e-46a6-b65c-929de304c50f
  152. measurementTechnique:
  153. - name: multi electrode extracellular electrophysiology recording technique
  154. schemaKey: MeasurementTechniqueType
  155. - name: surgical technique
  156. schemaKey: MeasurementTechniqueType
  157. path: sub-San4/sub-San4_ses-20191216T144004_ecephys.nwb
  158. schemaKey: Asset
  159. schemaVersion: 0.6.3
  160. variableMeasured:
  161. - schemaKey: PropertyValue
  162. value: ElectrodeGroup
  163. - schemaKey: PropertyValue
  164. value: ElectricalSeries
  165. wasAttributedTo:
  166. - age:
  167. schemaKey: PropertyValue
  168. unitText: ISO-8601 duration
  169. value: P132DT56404S
  170. valueReference:
  171. schemaKey: PropertyValue
  172. value: dandi:BirthReference
  173. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  174. identifier: San4
  175. schemaKey: Participant
  176. sex:
  177. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  178. name: Male
  179. schemaKey: SexType
  180. species:
  181. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  182. name: Mus musculus - House mouse
  183. schemaKey: SpeciesType
  184. wasGeneratedBy:
  185. - description: Fig 3i, S10
  186. name: Acquisition session
  187. schemaKey: Session
  188. startDate: '2019-12-16T14:40:04-08:00'
  189. - description: Metadata generated by DANDI cli
  190. id: urn:uuid:bcab4f1d-8862-4668-adc0-68ec43b4a1e4
  191. name: Metadata generation
  192. schemaKey: Activity
  193. wasAssociatedWith:
  194. - identifier: RRID:SCR_019009
  195. name: DANDI Command Line Interface
  196. schemaKey: Software
  197. url: https://github.com/dandi/dandi-cli
  198. version: 0.46.6
  199. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  200. access:
  201. - schemaKey: AccessRequirements
  202. status: dandi:OpenAccess
  203. approach:
  204. - name: electrophysiological approach
  205. schemaKey: ApproachType
  206. blobDateModified: '2022-12-02T16:33:50.001105-08:00'
  207. contentSize: 245094998
  208. contentUrl:
  209. - https://api.dandiarchive.org/api/assets/b1e75022-4ee0-4381-bb28-fef5d54b95cd/download/
  210. - https://dandiarchive.s3.amazonaws.com/blobs/b49/265/b49265a8-5fc9-4a4c-a36b-7574ad6cdde0
  211. dateModified: '2022-12-02T20:15:39.991165-08:00'
  212. digest:
  213. dandi:dandi-etag: b05ae0dd6260d946a45c8f0a6ffb40ae-4
  214. dandi:sha2-256: d65b26eb855c4e7b202fbe11dcc297e26a588c6cd46d68cc3b298c842c5496cd
  215. encodingFormat: application/x-nwb
  216. id: dandiasset:b1e75022-4ee0-4381-bb28-fef5d54b95cd
  217. identifier: b1e75022-4ee0-4381-bb28-fef5d54b95cd
  218. measurementTechnique:
  219. - name: multi electrode extracellular electrophysiology recording technique
  220. schemaKey: MeasurementTechniqueType
  221. - name: surgical technique
  222. schemaKey: MeasurementTechniqueType
  223. path: sub-San4/sub-San4_ses-20200430T084710_ecephys.nwb
  224. schemaKey: Asset
  225. schemaVersion: 0.6.3
  226. variableMeasured:
  227. - schemaKey: PropertyValue
  228. value: ElectrodeGroup
  229. - schemaKey: PropertyValue
  230. value: ElectricalSeries
  231. wasAttributedTo:
  232. - age:
  233. schemaKey: PropertyValue
  234. unitText: ISO-8601 duration
  235. value: P268DT31630S
  236. valueReference:
  237. schemaKey: PropertyValue
  238. value: dandi:BirthReference
  239. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  240. identifier: San4
  241. schemaKey: Participant
  242. sex:
  243. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  244. name: Male
  245. schemaKey: SexType
  246. species:
  247. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  248. name: Mus musculus - House mouse
  249. schemaKey: SpeciesType
  250. wasGeneratedBy:
  251. - description: Fig 2f
  252. name: Acquisition session
  253. schemaKey: Session
  254. startDate: '2020-04-30T08:47:10-07:00'
  255. - description: Metadata generated by DANDI cli
  256. id: urn:uuid:884bf8de-5d91-48d7-bb4e-abfe8921b570
  257. name: Metadata generation
  258. schemaKey: Activity
  259. wasAssociatedWith:
  260. - identifier: RRID:SCR_019009
  261. name: DANDI Command Line Interface
  262. schemaKey: Software
  263. url: https://github.com/dandi/dandi-cli
  264. version: 0.46.6
  265. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  266. access:
  267. - schemaKey: AccessRequirements
  268. status: dandi:OpenAccess
  269. approach:
  270. - name: electrophysiological approach
  271. schemaKey: ApproachType
  272. blobDateModified: '2022-12-02T17:03:01.730780-08:00'
  273. contentSize: 289181382
  274. contentUrl:
  275. - https://api.dandiarchive.org/api/assets/4cecec4e-e953-4e01-a07d-2171af598a1e/download/
  276. - https://dandiarchive.s3.amazonaws.com/blobs/af5/6a6/af56a6da-c4c0-4614-a959-3db651bc2bf0
  277. dateModified: '2022-12-02T20:17:21.656500-08:00'
  278. digest:
  279. dandi:dandi-etag: a61bb505332fdc243631ff7131c00718-5
  280. dandi:sha2-256: b2dd1b42fd0f3cd61dc16379973b803e682c4a50e16c6caf0ad02e8025cc213d
  281. encodingFormat: application/x-nwb
  282. id: dandiasset:4cecec4e-e953-4e01-a07d-2171af598a1e
  283. identifier: 4cecec4e-e953-4e01-a07d-2171af598a1e
  284. measurementTechnique:
  285. - name: multi electrode extracellular electrophysiology recording technique
  286. schemaKey: MeasurementTechniqueType
  287. - name: surgical technique
  288. schemaKey: MeasurementTechniqueType
  289. path: sub-San6/sub-San6_ses-20200204T144357_ecephys.nwb
  290. schemaKey: Asset
  291. schemaVersion: 0.6.3
  292. variableMeasured:
  293. - schemaKey: PropertyValue
  294. value: ElectrodeGroup
  295. - schemaKey: PropertyValue
  296. value: ElectricalSeries
  297. wasAttributedTo:
  298. - age:
  299. schemaKey: PropertyValue
  300. unitText: ISO-8601 duration
  301. value: P182DT56637S
  302. valueReference:
  303. schemaKey: PropertyValue
  304. value: dandi:BirthReference
  305. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  306. identifier: San6
  307. schemaKey: Participant
  308. sex:
  309. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  310. name: Male
  311. schemaKey: SexType
  312. species:
  313. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  314. name: Mus musculus - House mouse
  315. schemaKey: SpeciesType
  316. wasGeneratedBy:
  317. - description: Fig 3g
  318. name: Acquisition session
  319. schemaKey: Session
  320. startDate: '2020-02-04T14:43:57-08:00'
  321. - description: Metadata generated by DANDI cli
  322. id: urn:uuid:dc6b619c-be84-4f95-b907-541c4a887a0b
  323. name: Metadata generation
  324. schemaKey: Activity
  325. wasAssociatedWith:
  326. - identifier: RRID:SCR_019009
  327. name: DANDI Command Line Interface
  328. schemaKey: Software
  329. url: https://github.com/dandi/dandi-cli
  330. version: 0.46.6
  331. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  332. access:
  333. - schemaKey: AccessRequirements
  334. status: dandi:OpenAccess
  335. approach:
  336. - name: electrophysiological approach
  337. schemaKey: ApproachType
  338. blobDateModified: '2022-12-02T17:06:14.973378-08:00'
  339. contentSize: 227308949
  340. contentUrl:
  341. - https://api.dandiarchive.org/api/assets/e0b65f35-dec3-4d64-aad3-d862db747f97/download/
  342. - https://dandiarchive.s3.amazonaws.com/blobs/e53/814/e5381457-3da2-44df-81ee-a93700b8db30
  343. dateModified: '2022-12-02T20:19:47.736631-08:00'
  344. digest:
  345. dandi:dandi-etag: 1f7b32012f8dbb7552e02bc5eb2c09fc-4
  346. dandi:sha2-256: 696f19491098f7155e3648e53f106414364de4d8ca242e54731a6c70c2a13820
  347. encodingFormat: application/x-nwb
  348. id: dandiasset:e0b65f35-dec3-4d64-aad3-d862db747f97
  349. identifier: e0b65f35-dec3-4d64-aad3-d862db747f97
  350. measurementTechnique:
  351. - name: multi electrode extracellular electrophysiology recording technique
  352. schemaKey: MeasurementTechniqueType
  353. - name: surgical technique
  354. schemaKey: MeasurementTechniqueType
  355. path: sub-San6/sub-San6_ses-20200204T145647_ecephys.nwb
  356. schemaKey: Asset
  357. schemaVersion: 0.6.3
  358. variableMeasured:
  359. - schemaKey: PropertyValue
  360. value: ElectrodeGroup
  361. - schemaKey: PropertyValue
  362. value: ElectricalSeries
  363. wasAttributedTo:
  364. - age:
  365. schemaKey: PropertyValue
  366. unitText: ISO-8601 duration
  367. value: P182DT57407S
  368. valueReference:
  369. schemaKey: PropertyValue
  370. value: dandi:BirthReference
  371. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  372. identifier: San6
  373. schemaKey: Participant
  374. sex:
  375. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  376. name: Male
  377. schemaKey: SexType
  378. species:
  379. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  380. name: Mus musculus - House mouse
  381. schemaKey: SpeciesType
  382. wasGeneratedBy:
  383. - description: Fig 3g
  384. name: Acquisition session
  385. schemaKey: Session
  386. startDate: '2020-02-04T14:56:47-08:00'
  387. - description: Metadata generated by DANDI cli
  388. id: urn:uuid:93782f36-c4cd-433a-9f2b-d734ed68b8e1
  389. name: Metadata generation
  390. schemaKey: Activity
  391. wasAssociatedWith:
  392. - identifier: RRID:SCR_019009
  393. name: DANDI Command Line Interface
  394. schemaKey: Software
  395. url: https://github.com/dandi/dandi-cli
  396. version: 0.46.6
  397. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  398. access:
  399. - schemaKey: AccessRequirements
  400. status: dandi:OpenAccess
  401. approach:
  402. - name: electrophysiological approach
  403. schemaKey: ApproachType
  404. blobDateModified: '2022-12-02T17:09:08.279764-08:00'
  405. contentSize: 218401331
  406. contentUrl:
  407. - https://api.dandiarchive.org/api/assets/6b9b644e-909a-460f-bf85-8713748e02a2/download/
  408. - https://dandiarchive.s3.amazonaws.com/blobs/f88/810/f888108e-dc64-40b4-9101-401a9483c6ac
  409. dateModified: '2022-12-02T20:21:35.848722-08:00'
  410. digest:
  411. dandi:dandi-etag: aa032b9e0a61937d37537774169c0547-4
  412. dandi:sha2-256: 5d4868965bd951db9e8361f936a203edca386bd7cfd3c879a3753b2625de986c
  413. encodingFormat: application/x-nwb
  414. id: dandiasset:6b9b644e-909a-460f-bf85-8713748e02a2
  415. identifier: 6b9b644e-909a-460f-bf85-8713748e02a2
  416. measurementTechnique:
  417. - name: multi electrode extracellular electrophysiology recording technique
  418. schemaKey: MeasurementTechniqueType
  419. - name: surgical technique
  420. schemaKey: MeasurementTechniqueType
  421. path: sub-San6/sub-San6_ses-20200204T150032_ecephys.nwb
  422. schemaKey: Asset
  423. schemaVersion: 0.6.3
  424. variableMeasured:
  425. - schemaKey: PropertyValue
  426. value: ElectrodeGroup
  427. - schemaKey: PropertyValue
  428. value: ElectricalSeries
  429. wasAttributedTo:
  430. - age:
  431. schemaKey: PropertyValue
  432. unitText: ISO-8601 duration
  433. value: P182DT57632S
  434. valueReference:
  435. schemaKey: PropertyValue
  436. value: dandi:BirthReference
  437. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  438. identifier: San6
  439. schemaKey: Participant
  440. sex:
  441. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  442. name: Male
  443. schemaKey: SexType
  444. species:
  445. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  446. name: Mus musculus - House mouse
  447. schemaKey: SpeciesType
  448. wasGeneratedBy:
  449. - description: Fig 3g
  450. name: Acquisition session
  451. schemaKey: Session
  452. startDate: '2020-02-04T15:00:32-08:00'
  453. - description: Metadata generated by DANDI cli
  454. id: urn:uuid:df164cc8-f735-4d87-a88f-77022c022202
  455. name: Metadata generation
  456. schemaKey: Activity
  457. wasAssociatedWith:
  458. - identifier: RRID:SCR_019009
  459. name: DANDI Command Line Interface
  460. schemaKey: Software
  461. url: https://github.com/dandi/dandi-cli
  462. version: 0.46.6
  463. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  464. access:
  465. - schemaKey: AccessRequirements
  466. status: dandi:OpenAccess
  467. approach:
  468. - name: electrophysiological approach
  469. schemaKey: ApproachType
  470. blobDateModified: '2022-12-02T19:11:53.551693-08:00'
  471. contentSize: 4525045184
  472. contentUrl:
  473. - https://api.dandiarchive.org/api/assets/ef8a7fc0-aafe-4716-bf44-864ced6f107c/download/
  474. - https://dandiarchive.s3.amazonaws.com/blobs/eec/19e/eec19efb-dfe6-4599-ae95-f4e60c88846f
  475. dateModified: '2022-12-02T20:14:50.730539-08:00'
  476. digest:
  477. dandi:dandi-etag: 4b5430400c8e0a72f435846d883ef433-68
  478. dandi:sha2-256: a121e7f268f7bcdb1e2bbf172efbdaed5c75c133e3e58a195ed927e5c4c47aa4
  479. encodingFormat: application/x-nwb
  480. id: dandiasset:ef8a7fc0-aafe-4716-bf44-864ced6f107c
  481. identifier: ef8a7fc0-aafe-4716-bf44-864ced6f107c
  482. measurementTechnique:
  483. - name: multi electrode extracellular electrophysiology recording technique
  484. schemaKey: MeasurementTechniqueType
  485. - name: surgical technique
  486. schemaKey: MeasurementTechniqueType
  487. path: sub-Rat1/sub-Rat1_ses-20200921T124059_ecephys.nwb
  488. schemaKey: Asset
  489. schemaVersion: 0.6.3
  490. variableMeasured:
  491. - schemaKey: PropertyValue
  492. value: ElectrodeGroup
  493. - schemaKey: PropertyValue
  494. value: ElectricalSeries
  495. wasAttributedTo:
  496. - age:
  497. schemaKey: PropertyValue
  498. unitText: ISO-8601 duration
  499. value: P0D
  500. valueReference:
  501. schemaKey: PropertyValue
  502. value: dandi:BirthReference
  503. genotype: nan
  504. identifier: Rat1
  505. schemaKey: Participant
  506. sex:
  507. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  508. name: Male
  509. schemaKey: SexType
  510. species:
  511. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  512. name: Rattus norvegicus - Norway rat
  513. schemaKey: SpeciesType
  514. wasGeneratedBy:
  515. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S13
  516. name: Acquisition session
  517. schemaKey: Session
  518. startDate: '2020-09-21T12:40:59-07:00'
  519. - description: Metadata generated by DANDI cli
  520. id: urn:uuid:0810ad1f-10d0-447e-9fba-fa264071e4a1
  521. name: Metadata generation
  522. schemaKey: Activity
  523. wasAssociatedWith:
  524. - identifier: RRID:SCR_019009
  525. name: DANDI Command Line Interface
  526. schemaKey: Software
  527. url: https://github.com/dandi/dandi-cli
  528. version: 0.46.6
  529. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  530. access:
  531. - schemaKey: AccessRequirements
  532. status: dandi:OpenAccess
  533. approach:
  534. - name: electrophysiological approach
  535. schemaKey: ApproachType
  536. blobDateModified: '2022-12-02T16:50:32.917617-08:00'
  537. contentSize: 258023844
  538. contentUrl:
  539. - https://api.dandiarchive.org/api/assets/02590a8a-2c73-40a7-9fdb-1544e0fa49fa/download/
  540. - https://dandiarchive.s3.amazonaws.com/blobs/873/d63/873d6346-06c3-4cba-be64-ad32ebd24ee4
  541. dateModified: '2022-12-02T20:40:46.164248-08:00'
  542. digest:
  543. dandi:dandi-etag: 41b0f1b3eeed6515cd5fddd0c1e5b892-4
  544. dandi:sha2-256: 4a4233695d11b7cd1f72a81c643b04437d436c2f6dce4e86ff331a8c3e9747fa
  545. encodingFormat: application/x-nwb
  546. id: dandiasset:02590a8a-2c73-40a7-9fdb-1544e0fa49fa
  547. identifier: 02590a8a-2c73-40a7-9fdb-1544e0fa49fa
  548. measurementTechnique:
  549. - name: multi electrode extracellular electrophysiology recording technique
  550. schemaKey: MeasurementTechniqueType
  551. - name: surgical technique
  552. schemaKey: MeasurementTechniqueType
  553. path: sub-San6/sub-San6_ses-20200218T180538_ecephys.nwb
  554. schemaKey: Asset
  555. schemaVersion: 0.6.3
  556. variableMeasured:
  557. - schemaKey: PropertyValue
  558. value: ElectrodeGroup
  559. - schemaKey: PropertyValue
  560. value: ElectricalSeries
  561. wasAttributedTo:
  562. - age:
  563. schemaKey: PropertyValue
  564. unitText: ISO-8601 duration
  565. value: P196DT68738S
  566. valueReference:
  567. schemaKey: PropertyValue
  568. value: dandi:BirthReference
  569. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  570. identifier: San6
  571. schemaKey: Participant
  572. sex:
  573. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  574. name: Male
  575. schemaKey: SexType
  576. species:
  577. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  578. name: Mus musculus - House mouse
  579. schemaKey: SpeciesType
  580. wasGeneratedBy:
  581. - description: Fig 3b, 3c, 3d, 3e, 3f, 3g, 3h, S8, S9
  582. name: Acquisition session
  583. schemaKey: Session
  584. startDate: '2020-02-18T18:05:38-08:00'
  585. - description: Metadata generated by DANDI cli
  586. id: urn:uuid:86a756c6-f9eb-4863-911e-1d947c2a9ade
  587. name: Metadata generation
  588. schemaKey: Activity
  589. wasAssociatedWith:
  590. - identifier: RRID:SCR_019009
  591. name: DANDI Command Line Interface
  592. schemaKey: Software
  593. url: https://github.com/dandi/dandi-cli
  594. version: 0.46.6
  595. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  596. access:
  597. - schemaKey: AccessRequirements
  598. status: dandi:OpenAccess
  599. approach:
  600. - name: electrophysiological approach
  601. schemaKey: ApproachType
  602. blobDateModified: '2022-12-02T16:58:04.621227-08:00'
  603. contentSize: 248561052
  604. contentUrl:
  605. - https://api.dandiarchive.org/api/assets/3d3ecd79-da34-4a86-9f3d-00685fe801a2/download/
  606. - https://dandiarchive.s3.amazonaws.com/blobs/c17/afe/c17afe26-8da1-4b56-9392-b206b445c60a
  607. dateModified: '2022-12-02T20:40:47.442832-08:00'
  608. digest:
  609. dandi:dandi-etag: 0671e78d71296bbc744d05d6cefd260c-4
  610. dandi:sha2-256: e5c3b17fa988708af4f0186dc2cc810604f883667c4fe6d86f065eadcaf8742c
  611. encodingFormat: application/x-nwb
  612. id: dandiasset:3d3ecd79-da34-4a86-9f3d-00685fe801a2
  613. identifier: 3d3ecd79-da34-4a86-9f3d-00685fe801a2
  614. measurementTechnique:
  615. - name: multi electrode extracellular electrophysiology recording technique
  616. schemaKey: MeasurementTechniqueType
  617. - name: surgical technique
  618. schemaKey: MeasurementTechniqueType
  619. path: sub-San6/sub-San6_ses-20200218T181402_ecephys.nwb
  620. schemaKey: Asset
  621. schemaVersion: 0.6.3
  622. variableMeasured:
  623. - schemaKey: PropertyValue
  624. value: ElectrodeGroup
  625. - schemaKey: PropertyValue
  626. value: ElectricalSeries
  627. wasAttributedTo:
  628. - age:
  629. schemaKey: PropertyValue
  630. unitText: ISO-8601 duration
  631. value: P196DT69242S
  632. valueReference:
  633. schemaKey: PropertyValue
  634. value: dandi:BirthReference
  635. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  636. identifier: San6
  637. schemaKey: Participant
  638. sex:
  639. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  640. name: Male
  641. schemaKey: SexType
  642. species:
  643. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  644. name: Mus musculus - House mouse
  645. schemaKey: SpeciesType
  646. wasGeneratedBy:
  647. - description: Fig 3b, 3c, 3d, 3e, 3f, 3g, 3h, S8, S9
  648. name: Acquisition session
  649. schemaKey: Session
  650. startDate: '2020-02-18T18:14:02-08:00'
  651. - description: Metadata generated by DANDI cli
  652. id: urn:uuid:91f6777d-00e0-4393-9b28-4ef45feb5c39
  653. name: Metadata generation
  654. schemaKey: Activity
  655. wasAssociatedWith:
  656. - identifier: RRID:SCR_019009
  657. name: DANDI Command Line Interface
  658. schemaKey: Software
  659. url: https://github.com/dandi/dandi-cli
  660. version: 0.46.6
  661. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  662. access:
  663. - schemaKey: AccessRequirements
  664. status: dandi:OpenAccess
  665. approach:
  666. - name: electrophysiological approach
  667. schemaKey: ApproachType
  668. blobDateModified: '2022-12-02T16:54:36.961737-08:00'
  669. contentSize: 244711397
  670. contentUrl:
  671. - https://api.dandiarchive.org/api/assets/1b895547-a273-449a-a0ca-601694aa32fb/download/
  672. - https://dandiarchive.s3.amazonaws.com/blobs/0a9/307/0a930748-55ea-46a7-8bf3-2ec7004ff35d
  673. dateModified: '2022-12-02T20:40:47.095857-08:00'
  674. digest:
  675. dandi:dandi-etag: 02e336df286d381958fa758d41b8ea88-4
  676. dandi:sha2-256: 0b688bf8b5eb1441e68dd3d9a6a0f945d9cc6e737f939464bc3b2cc7097d431e
  677. encodingFormat: application/x-nwb
  678. id: dandiasset:1b895547-a273-449a-a0ca-601694aa32fb
  679. identifier: 1b895547-a273-449a-a0ca-601694aa32fb
  680. measurementTechnique:
  681. - name: multi electrode extracellular electrophysiology recording technique
  682. schemaKey: MeasurementTechniqueType
  683. - name: surgical technique
  684. schemaKey: MeasurementTechniqueType
  685. path: sub-San6/sub-San6_ses-20200218T181019_ecephys.nwb
  686. schemaKey: Asset
  687. schemaVersion: 0.6.3
  688. variableMeasured:
  689. - schemaKey: PropertyValue
  690. value: ElectrodeGroup
  691. - schemaKey: PropertyValue
  692. value: ElectricalSeries
  693. wasAttributedTo:
  694. - age:
  695. schemaKey: PropertyValue
  696. unitText: ISO-8601 duration
  697. value: P196DT69019S
  698. valueReference:
  699. schemaKey: PropertyValue
  700. value: dandi:BirthReference
  701. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  702. identifier: San6
  703. schemaKey: Participant
  704. sex:
  705. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  706. name: Male
  707. schemaKey: SexType
  708. species:
  709. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  710. name: Mus musculus - House mouse
  711. schemaKey: SpeciesType
  712. wasGeneratedBy:
  713. - description: Fig 3b, 3c, 3d, 3e, 3f, 3g, 3h, S8, S9
  714. name: Acquisition session
  715. schemaKey: Session
  716. startDate: '2020-02-18T18:10:19-08:00'
  717. - description: Metadata generated by DANDI cli
  718. id: urn:uuid:87772d35-7835-489e-a675-ccf03068c97d
  719. name: Metadata generation
  720. schemaKey: Activity
  721. wasAssociatedWith:
  722. - identifier: RRID:SCR_019009
  723. name: DANDI Command Line Interface
  724. schemaKey: Software
  725. url: https://github.com/dandi/dandi-cli
  726. version: 0.46.6
  727. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  728. access:
  729. - schemaKey: AccessRequirements
  730. status: dandi:OpenAccess
  731. approach:
  732. - name: electrophysiological approach
  733. schemaKey: ApproachType
  734. blobDateModified: '2022-12-02T17:12:13.440503-08:00'
  735. contentSize: 238442038
  736. contentUrl:
  737. - https://api.dandiarchive.org/api/assets/1ceec2ff-b201-4b79-83fb-65b66176cd72/download/
  738. - https://dandiarchive.s3.amazonaws.com/blobs/d39/8ac/d398ac16-8be4-4419-976f-ebcd71c4a497
  739. dateModified: '2022-12-02T20:40:47.211210-08:00'
  740. digest:
  741. dandi:dandi-etag: d3f1c6e2de6cb4f0ab55fb14e7567379-4
  742. dandi:sha2-256: 74bfe84cf61fe0acf9c750dbbd0372eb9c11d15942bf700e0dc86bd19713cf5c
  743. encodingFormat: application/x-nwb
  744. id: dandiasset:1ceec2ff-b201-4b79-83fb-65b66176cd72
  745. identifier: 1ceec2ff-b201-4b79-83fb-65b66176cd72
  746. measurementTechnique:
  747. - name: multi electrode extracellular electrophysiology recording technique
  748. schemaKey: MeasurementTechniqueType
  749. - name: surgical technique
  750. schemaKey: MeasurementTechniqueType
  751. path: sub-San6/sub-San6_ses-20200302T151055_ecephys.nwb
  752. schemaKey: Asset
  753. schemaVersion: 0.6.3
  754. variableMeasured:
  755. - schemaKey: PropertyValue
  756. value: ElectrodeGroup
  757. - schemaKey: PropertyValue
  758. value: ElectricalSeries
  759. wasAttributedTo:
  760. - age:
  761. schemaKey: PropertyValue
  762. unitText: ISO-8601 duration
  763. value: P209DT58255S
  764. valueReference:
  765. schemaKey: PropertyValue
  766. value: dandi:BirthReference
  767. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  768. identifier: San6
  769. schemaKey: Participant
  770. sex:
  771. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  772. name: Male
  773. schemaKey: SexType
  774. species:
  775. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  776. name: Mus musculus - House mouse
  777. schemaKey: SpeciesType
  778. wasGeneratedBy:
  779. - description: Fig 3g
  780. name: Acquisition session
  781. schemaKey: Session
  782. startDate: '2020-03-02T15:10:55-08:00'
  783. - description: Metadata generated by DANDI cli
  784. id: urn:uuid:11eae916-9cdd-4af6-b732-ba885af4b6d3
  785. name: Metadata generation
  786. schemaKey: Activity
  787. wasAssociatedWith:
  788. - identifier: RRID:SCR_019009
  789. name: DANDI Command Line Interface
  790. schemaKey: Software
  791. url: https://github.com/dandi/dandi-cli
  792. version: 0.46.6
  793. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  794. access:
  795. - schemaKey: AccessRequirements
  796. status: dandi:OpenAccess
  797. approach:
  798. - name: electrophysiological approach
  799. schemaKey: ApproachType
  800. blobDateModified: '2022-12-02T17:18:29.146880-08:00'
  801. contentSize: 229932524
  802. contentUrl:
  803. - https://api.dandiarchive.org/api/assets/379ba11e-72fe-460e-ad1c-e2de4b2ea6e1/download/
  804. - https://dandiarchive.s3.amazonaws.com/blobs/3fc/904/3fc9042d-ef65-473b-a878-864157a9bbb7
  805. dateModified: '2022-12-02T20:45:28.125366-08:00'
  806. digest:
  807. dandi:dandi-etag: 27baf8a423a2bcaa1b222a3cf32e8a0d-4
  808. dandi:sha2-256: 59b068b12ed15b821ed1ac3c06354102c68ae9e22a2a03a6abeda0a7e9323f79
  809. encodingFormat: application/x-nwb
  810. id: dandiasset:379ba11e-72fe-460e-ad1c-e2de4b2ea6e1
  811. identifier: 379ba11e-72fe-460e-ad1c-e2de4b2ea6e1
  812. measurementTechnique:
  813. - name: multi electrode extracellular electrophysiology recording technique
  814. schemaKey: MeasurementTechniqueType
  815. - name: surgical technique
  816. schemaKey: MeasurementTechniqueType
  817. path: sub-San6/sub-San6_ses-20200302T152233_ecephys.nwb
  818. schemaKey: Asset
  819. schemaVersion: 0.6.3
  820. variableMeasured:
  821. - schemaKey: PropertyValue
  822. value: ElectrodeGroup
  823. - schemaKey: PropertyValue
  824. value: ElectricalSeries
  825. wasAttributedTo:
  826. - age:
  827. schemaKey: PropertyValue
  828. unitText: ISO-8601 duration
  829. value: P209DT58953S
  830. valueReference:
  831. schemaKey: PropertyValue
  832. value: dandi:BirthReference
  833. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  834. identifier: San6
  835. schemaKey: Participant
  836. sex:
  837. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  838. name: Male
  839. schemaKey: SexType
  840. species:
  841. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  842. name: Mus musculus - House mouse
  843. schemaKey: SpeciesType
  844. wasGeneratedBy:
  845. - description: Fig 3g
  846. name: Acquisition session
  847. schemaKey: Session
  848. startDate: '2020-03-02T15:22:33-08:00'
  849. - description: Metadata generated by DANDI cli
  850. id: urn:uuid:0affa4b4-9030-4a7c-9861-f744be000775
  851. name: Metadata generation
  852. schemaKey: Activity
  853. wasAssociatedWith:
  854. - identifier: RRID:SCR_019009
  855. name: DANDI Command Line Interface
  856. schemaKey: Software
  857. url: https://github.com/dandi/dandi-cli
  858. version: 0.46.6
  859. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  860. access:
  861. - schemaKey: AccessRequirements
  862. status: dandi:OpenAccess
  863. approach:
  864. - name: electrophysiological approach
  865. schemaKey: ApproachType
  866. blobDateModified: '2022-12-02T17:15:13.085766-08:00'
  867. contentSize: 232435157
  868. contentUrl:
  869. - https://api.dandiarchive.org/api/assets/3bd43737-da87-4f5e-8332-085fd3189bc8/download/
  870. - https://dandiarchive.s3.amazonaws.com/blobs/7e0/8fe/7e08fe02-35df-4ae9-8951-c1a045c2e177
  871. dateModified: '2022-12-02T20:45:23.405275-08:00'
  872. digest:
  873. dandi:dandi-etag: 6e65b49f2fec52877cbf20a0ac8e646e-4
  874. dandi:sha2-256: ce74806f0d60ee2700d49442abf49f31f55935e05a798ad139213e1ec375d10b
  875. encodingFormat: application/x-nwb
  876. id: dandiasset:3bd43737-da87-4f5e-8332-085fd3189bc8
  877. identifier: 3bd43737-da87-4f5e-8332-085fd3189bc8
  878. measurementTechnique:
  879. - name: multi electrode extracellular electrophysiology recording technique
  880. schemaKey: MeasurementTechniqueType
  881. - name: surgical technique
  882. schemaKey: MeasurementTechniqueType
  883. path: sub-San6/sub-San6_ses-20200302T151530_ecephys.nwb
  884. schemaKey: Asset
  885. schemaVersion: 0.6.3
  886. variableMeasured:
  887. - schemaKey: PropertyValue
  888. value: ElectrodeGroup
  889. - schemaKey: PropertyValue
  890. value: ElectricalSeries
  891. wasAttributedTo:
  892. - age:
  893. schemaKey: PropertyValue
  894. unitText: ISO-8601 duration
  895. value: P209DT58530S
  896. valueReference:
  897. schemaKey: PropertyValue
  898. value: dandi:BirthReference
  899. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  900. identifier: San6
  901. schemaKey: Participant
  902. sex:
  903. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  904. name: Male
  905. schemaKey: SexType
  906. species:
  907. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  908. name: Mus musculus - House mouse
  909. schemaKey: SpeciesType
  910. wasGeneratedBy:
  911. - description: Fig 3g
  912. name: Acquisition session
  913. schemaKey: Session
  914. startDate: '2020-03-02T15:15:30-08:00'
  915. - description: Metadata generated by DANDI cli
  916. id: urn:uuid:1a073591-609c-4ec7-8755-6e82832b58bb
  917. name: Metadata generation
  918. schemaKey: Activity
  919. wasAssociatedWith:
  920. - identifier: RRID:SCR_019009
  921. name: DANDI Command Line Interface
  922. schemaKey: Software
  923. url: https://github.com/dandi/dandi-cli
  924. version: 0.46.6
  925. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  926. access:
  927. - schemaKey: AccessRequirements
  928. status: dandi:OpenAccess
  929. approach:
  930. - name: electrophysiological approach
  931. schemaKey: ApproachType
  932. blobDateModified: '2022-12-03T07:40:02.031464-08:00'
  933. contentSize: 103149575
  934. contentUrl:
  935. - https://api.dandiarchive.org/api/assets/463f0d21-bbe5-4af0-8d63-012ffb1d9a72/download/
  936. - https://dandiarchive.s3.amazonaws.com/blobs/a30/96e/a3096e0f-15c3-44ce-a57a-430ebfaf87db
  937. dateModified: '2022-12-03T17:53:46.259111-08:00'
  938. digest:
  939. dandi:dandi-etag: 8d58078b5e615d6e8a102a73874ee33c-2
  940. dandi:sha2-256: 9c88618de8fc72cec2b2c27e44a1fb7ff416819893aab12ff4e30c71f8cefd29
  941. encodingFormat: application/x-nwb
  942. id: dandiasset:463f0d21-bbe5-4af0-8d63-012ffb1d9a72
  943. identifier: 463f0d21-bbe5-4af0-8d63-012ffb1d9a72
  944. measurementTechnique:
  945. - name: surgical technique
  946. schemaKey: MeasurementTechniqueType
  947. - name: multi electrode extracellular electrophysiology recording technique
  948. schemaKey: MeasurementTechniqueType
  949. path: sub-San2/sub-San2_ses-20190904T115428_ecephys.nwb
  950. schemaKey: Asset
  951. schemaVersion: 0.6.3
  952. variableMeasured:
  953. - schemaKey: PropertyValue
  954. value: ElectrodeGroup
  955. - schemaKey: PropertyValue
  956. value: ElectricalSeries
  957. wasAttributedTo:
  958. - age:
  959. schemaKey: PropertyValue
  960. unitText: ISO-8601 duration
  961. value: P68DT42868S
  962. valueReference:
  963. schemaKey: PropertyValue
  964. value: dandi:BirthReference
  965. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  966. identifier: San2
  967. schemaKey: Participant
  968. sex:
  969. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  970. name: Male
  971. schemaKey: SexType
  972. species:
  973. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  974. name: Mus musculus - House mouse
  975. schemaKey: SpeciesType
  976. wasGeneratedBy:
  977. - description: Fig 2g, 2i
  978. name: Acquisition session
  979. schemaKey: Session
  980. startDate: '2019-09-04T11:54:28-07:00'
  981. - description: Metadata generated by DANDI cli
  982. id: urn:uuid:3492b5b7-b68f-45af-bb31-5c228e4bd3bb
  983. name: Metadata generation
  984. schemaKey: Activity
  985. wasAssociatedWith:
  986. - identifier: RRID:SCR_019009
  987. name: DANDI Command Line Interface
  988. schemaKey: Software
  989. url: https://github.com/dandi/dandi-cli
  990. version: 0.46.6
  991. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  992. access:
  993. - schemaKey: AccessRequirements
  994. status: dandi:OpenAccess
  995. approach:
  996. - name: electrophysiological approach
  997. schemaKey: ApproachType
  998. blobDateModified: '2022-12-03T07:35:22.037724-08:00'
  999. contentSize: 200674136
  1000. contentUrl:
  1001. - https://api.dandiarchive.org/api/assets/5d81ff8b-39c7-4bb1-acbe-582a809db68f/download/
  1002. - https://dandiarchive.s3.amazonaws.com/blobs/32e/77c/32e77cc3-b424-432c-8454-7477e5a46802
  1003. dateModified: '2022-12-03T17:54:27.441815-08:00'
  1004. digest:
  1005. dandi:dandi-etag: 88f752d6547776b2c9759a8ecc73a9ad-3
  1006. dandi:sha2-256: 1b4e544b2dfcbbce6fd30c9190f288ab5913e574cc5e9798847944c14adfdb59
  1007. encodingFormat: application/x-nwb
  1008. id: dandiasset:5d81ff8b-39c7-4bb1-acbe-582a809db68f
  1009. identifier: 5d81ff8b-39c7-4bb1-acbe-582a809db68f
  1010. measurementTechnique:
  1011. - name: surgical technique
  1012. schemaKey: MeasurementTechniqueType
  1013. - name: multi electrode extracellular electrophysiology recording technique
  1014. schemaKey: MeasurementTechniqueType
  1015. path: sub-San4/sub-San4_ses-20191113T154743_ecephys.nwb
  1016. schemaKey: Asset
  1017. schemaVersion: 0.6.3
  1018. variableMeasured:
  1019. - schemaKey: PropertyValue
  1020. value: ElectrodeGroup
  1021. - schemaKey: PropertyValue
  1022. value: ElectricalSeries
  1023. wasAttributedTo:
  1024. - age:
  1025. schemaKey: PropertyValue
  1026. unitText: ISO-8601 duration
  1027. value: P99DT60463S
  1028. valueReference:
  1029. schemaKey: PropertyValue
  1030. value: dandi:BirthReference
  1031. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1032. identifier: San4
  1033. schemaKey: Participant
  1034. sex:
  1035. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1036. name: Male
  1037. schemaKey: SexType
  1038. species:
  1039. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1040. name: Mus musculus - House mouse
  1041. schemaKey: SpeciesType
  1042. wasGeneratedBy:
  1043. - description: Fig 2d, 2e
  1044. name: Acquisition session
  1045. schemaKey: Session
  1046. startDate: '2019-11-13T15:47:43-08:00'
  1047. - description: Metadata generated by DANDI cli
  1048. id: urn:uuid:9d81be12-b6ff-47d9-96a2-1b5e9844d707
  1049. name: Metadata generation
  1050. schemaKey: Activity
  1051. wasAssociatedWith:
  1052. - identifier: RRID:SCR_019009
  1053. name: DANDI Command Line Interface
  1054. schemaKey: Software
  1055. url: https://github.com/dandi/dandi-cli
  1056. version: 0.46.6
  1057. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1058. access:
  1059. - schemaKey: AccessRequirements
  1060. status: dandi:OpenAccess
  1061. approach:
  1062. - name: electrophysiological approach
  1063. schemaKey: ApproachType
  1064. blobDateModified: '2022-12-03T07:32:13.516845-08:00'
  1065. contentSize: 211604672
  1066. contentUrl:
  1067. - https://api.dandiarchive.org/api/assets/2bd009bf-7ab1-417e-becc-218361de5453/download/
  1068. - https://dandiarchive.s3.amazonaws.com/blobs/5f0/e6b/5f0e6b79-99c3-4c0c-85be-50be89ec2f9b
  1069. dateModified: '2022-12-03T17:54:27.697777-08:00'
  1070. digest:
  1071. dandi:dandi-etag: a4f508a3a926456d3b639024b64566e3-4
  1072. dandi:sha2-256: a1f6177d44b7bbe62ec2ad1a4bba4e17be7ab9f8c0a68bc80064f938222fa57f
  1073. encodingFormat: application/x-nwb
  1074. id: dandiasset:2bd009bf-7ab1-417e-becc-218361de5453
  1075. identifier: 2bd009bf-7ab1-417e-becc-218361de5453
  1076. measurementTechnique:
  1077. - name: surgical technique
  1078. schemaKey: MeasurementTechniqueType
  1079. - name: multi electrode extracellular electrophysiology recording technique
  1080. schemaKey: MeasurementTechniqueType
  1081. path: sub-San4/sub-San4_ses-20191107T150118_ecephys.nwb
  1082. schemaKey: Asset
  1083. schemaVersion: 0.6.3
  1084. variableMeasured:
  1085. - schemaKey: PropertyValue
  1086. value: ElectrodeGroup
  1087. - schemaKey: PropertyValue
  1088. value: ElectricalSeries
  1089. wasAttributedTo:
  1090. - age:
  1091. schemaKey: PropertyValue
  1092. unitText: ISO-8601 duration
  1093. value: P93DT57678S
  1094. valueReference:
  1095. schemaKey: PropertyValue
  1096. value: dandi:BirthReference
  1097. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1098. identifier: San4
  1099. schemaKey: Participant
  1100. sex:
  1101. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1102. name: Male
  1103. schemaKey: SexType
  1104. species:
  1105. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1106. name: Mus musculus - House mouse
  1107. schemaKey: SpeciesType
  1108. wasGeneratedBy:
  1109. - description: Fig 2d, 2e
  1110. name: Acquisition session
  1111. schemaKey: Session
  1112. startDate: '2019-11-07T15:01:18-08:00'
  1113. - description: Metadata generated by DANDI cli
  1114. id: urn:uuid:045bbe4b-8fe2-4b8f-abd9-9cb177ff0b2e
  1115. name: Metadata generation
  1116. schemaKey: Activity
  1117. wasAssociatedWith:
  1118. - identifier: RRID:SCR_019009
  1119. name: DANDI Command Line Interface
  1120. schemaKey: Software
  1121. url: https://github.com/dandi/dandi-cli
  1122. version: 0.46.6
  1123. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1124. access:
  1125. - schemaKey: AccessRequirements
  1126. status: dandi:OpenAccess
  1127. approach:
  1128. - name: electrophysiological approach
  1129. schemaKey: ApproachType
  1130. blobDateModified: '2022-12-03T07:38:32.151563-08:00'
  1131. contentSize: 201693897
  1132. contentUrl:
  1133. - https://api.dandiarchive.org/api/assets/2475689e-30ee-4e00-b3fd-5001c162a7f8/download/
  1134. - https://dandiarchive.s3.amazonaws.com/blobs/d84/63e/d8463e81-1560-4e04-befe-2d51bdeb3a0a
  1135. dateModified: '2022-12-03T17:54:54.745716-08:00'
  1136. digest:
  1137. dandi:dandi-etag: d3297375318c5055e077d6b8761ab403-4
  1138. dandi:sha2-256: b1982aca1976ed4e6abbb495de452c26798ead17e5da5e08ef44403fdbd5d139
  1139. encodingFormat: application/x-nwb
  1140. id: dandiasset:2475689e-30ee-4e00-b3fd-5001c162a7f8
  1141. identifier: 2475689e-30ee-4e00-b3fd-5001c162a7f8
  1142. measurementTechnique:
  1143. - name: surgical technique
  1144. schemaKey: MeasurementTechniqueType
  1145. - name: multi electrode extracellular electrophysiology recording technique
  1146. schemaKey: MeasurementTechniqueType
  1147. path: sub-San4/sub-San4_ses-20191127T114535_ecephys.nwb
  1148. schemaKey: Asset
  1149. schemaVersion: 0.6.3
  1150. variableMeasured:
  1151. - schemaKey: PropertyValue
  1152. value: ElectrodeGroup
  1153. - schemaKey: PropertyValue
  1154. value: ElectricalSeries
  1155. wasAttributedTo:
  1156. - age:
  1157. schemaKey: PropertyValue
  1158. unitText: ISO-8601 duration
  1159. value: P113DT45935S
  1160. valueReference:
  1161. schemaKey: PropertyValue
  1162. value: dandi:BirthReference
  1163. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1164. identifier: San4
  1165. schemaKey: Participant
  1166. sex:
  1167. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1168. name: Male
  1169. schemaKey: SexType
  1170. species:
  1171. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1172. name: Mus musculus - House mouse
  1173. schemaKey: SpeciesType
  1174. wasGeneratedBy:
  1175. - description: Fig 2d, 2e
  1176. name: Acquisition session
  1177. schemaKey: Session
  1178. startDate: '2019-11-27T11:45:35-08:00'
  1179. - description: Metadata generated by DANDI cli
  1180. id: urn:uuid:6d579cc2-3abc-4335-b3fe-c143150b7c60
  1181. name: Metadata generation
  1182. schemaKey: Activity
  1183. wasAssociatedWith:
  1184. - identifier: RRID:SCR_019009
  1185. name: DANDI Command Line Interface
  1186. schemaKey: Software
  1187. url: https://github.com/dandi/dandi-cli
  1188. version: 0.46.6
  1189. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1190. access:
  1191. - schemaKey: AccessRequirements
  1192. status: dandi:OpenAccess
  1193. approach:
  1194. - name: electrophysiological approach
  1195. schemaKey: ApproachType
  1196. blobDateModified: '2022-12-03T07:47:27.166239-08:00'
  1197. contentSize: 220212042
  1198. contentUrl:
  1199. - https://api.dandiarchive.org/api/assets/f9df127d-148c-4ebb-8ff9-1966b6a4035a/download/
  1200. - https://dandiarchive.s3.amazonaws.com/blobs/e5a/19e/e5a19ef3-c2f5-4465-af33-c511b1709fff
  1201. dateModified: '2022-12-03T17:57:50.422868-08:00'
  1202. digest:
  1203. dandi:dandi-etag: 5d9e04ac8901cff60636fe9d68d79e32-4
  1204. dandi:sha2-256: 47ba6abf0e569ffca21724ebb2a9a6a38bafcd8a5047f1e507c5ece7bd842597
  1205. encodingFormat: application/x-nwb
  1206. id: dandiasset:f9df127d-148c-4ebb-8ff9-1966b6a4035a
  1207. identifier: f9df127d-148c-4ebb-8ff9-1966b6a4035a
  1208. measurementTechnique:
  1209. - name: surgical technique
  1210. schemaKey: MeasurementTechniqueType
  1211. - name: multi electrode extracellular electrophysiology recording technique
  1212. schemaKey: MeasurementTechniqueType
  1213. path: sub-San4/sub-San4_ses-20200106T151106_ecephys.nwb
  1214. schemaKey: Asset
  1215. schemaVersion: 0.6.3
  1216. variableMeasured:
  1217. - schemaKey: PropertyValue
  1218. value: ElectrodeGroup
  1219. - schemaKey: PropertyValue
  1220. value: ElectricalSeries
  1221. wasAttributedTo:
  1222. - age:
  1223. schemaKey: PropertyValue
  1224. unitText: ISO-8601 duration
  1225. value: P153DT58266S
  1226. valueReference:
  1227. schemaKey: PropertyValue
  1228. value: dandi:BirthReference
  1229. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1230. identifier: San4
  1231. schemaKey: Participant
  1232. sex:
  1233. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1234. name: Male
  1235. schemaKey: SexType
  1236. species:
  1237. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1238. name: Mus musculus - House mouse
  1239. schemaKey: SpeciesType
  1240. wasGeneratedBy:
  1241. - description: Fig 3i, S10
  1242. name: Acquisition session
  1243. schemaKey: Session
  1244. startDate: '2020-01-06T15:11:06-08:00'
  1245. - description: Metadata generated by DANDI cli
  1246. id: urn:uuid:bb9e2c60-b48b-4532-81ee-62236d10d998
  1247. name: Metadata generation
  1248. schemaKey: Activity
  1249. wasAssociatedWith:
  1250. - identifier: RRID:SCR_019009
  1251. name: DANDI Command Line Interface
  1252. schemaKey: Software
  1253. url: https://github.com/dandi/dandi-cli
  1254. version: 0.46.6
  1255. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1256. access:
  1257. - schemaKey: AccessRequirements
  1258. status: dandi:OpenAccess
  1259. approach:
  1260. - name: electrophysiological approach
  1261. schemaKey: ApproachType
  1262. blobDateModified: '2022-12-03T07:55:26.660875-08:00'
  1263. contentSize: 314261901
  1264. contentUrl:
  1265. - https://api.dandiarchive.org/api/assets/dba4ba37-116c-4e0d-b967-cc6aea7ea24d/download/
  1266. - https://dandiarchive.s3.amazonaws.com/blobs/f1c/da4/f1cda499-df43-4871-988f-e05ea5ad7b67
  1267. dateModified: '2022-12-03T17:57:55.106176-08:00'
  1268. digest:
  1269. dandi:dandi-etag: 9a7c1227c061f4d91076ed30c810d069-5
  1270. dandi:sha2-256: 0b7a570af9a6999397d72f082609dec31beceb29c512b8576244c170768c673e
  1271. encodingFormat: application/x-nwb
  1272. id: dandiasset:dba4ba37-116c-4e0d-b967-cc6aea7ea24d
  1273. identifier: dba4ba37-116c-4e0d-b967-cc6aea7ea24d
  1274. measurementTechnique:
  1275. - name: surgical technique
  1276. schemaKey: MeasurementTechniqueType
  1277. - name: multi electrode extracellular electrophysiology recording technique
  1278. schemaKey: MeasurementTechniqueType
  1279. path: sub-San4/sub-San4_ses-20200218T182812_ecephys.nwb
  1280. schemaKey: Asset
  1281. schemaVersion: 0.6.3
  1282. variableMeasured:
  1283. - schemaKey: PropertyValue
  1284. value: ElectrodeGroup
  1285. - schemaKey: PropertyValue
  1286. value: ElectricalSeries
  1287. wasAttributedTo:
  1288. - age:
  1289. schemaKey: PropertyValue
  1290. unitText: ISO-8601 duration
  1291. value: P196DT70092S
  1292. valueReference:
  1293. schemaKey: PropertyValue
  1294. value: dandi:BirthReference
  1295. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1296. identifier: San4
  1297. schemaKey: Participant
  1298. sex:
  1299. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1300. name: Male
  1301. schemaKey: SexType
  1302. species:
  1303. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1304. name: Mus musculus - House mouse
  1305. schemaKey: SpeciesType
  1306. wasGeneratedBy:
  1307. - description: Fig 3i, S10
  1308. name: Acquisition session
  1309. schemaKey: Session
  1310. startDate: '2020-02-18T18:28:12-08:00'
  1311. - description: Metadata generated by DANDI cli
  1312. id: urn:uuid:a755e550-b76b-4916-b526-42da3d0622fd
  1313. name: Metadata generation
  1314. schemaKey: Activity
  1315. wasAssociatedWith:
  1316. - identifier: RRID:SCR_019009
  1317. name: DANDI Command Line Interface
  1318. schemaKey: Software
  1319. url: https://github.com/dandi/dandi-cli
  1320. version: 0.46.6
  1321. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1322. access:
  1323. - schemaKey: AccessRequirements
  1324. status: dandi:OpenAccess
  1325. approach:
  1326. - name: electrophysiological approach
  1327. schemaKey: ApproachType
  1328. blobDateModified: '2022-12-03T07:44:06.277406-08:00'
  1329. contentSize: 228489592
  1330. contentUrl:
  1331. - https://api.dandiarchive.org/api/assets/2465a563-8a82-42f1-9108-b897cbc25e53/download/
  1332. - https://dandiarchive.s3.amazonaws.com/blobs/aef/b23/aefb232b-aaa1-40b2-811e-e4e75e3e6fbc
  1333. dateModified: '2022-12-03T17:57:55.650526-08:00'
  1334. digest:
  1335. dandi:dandi-etag: d502d0d7fbc9abf4817fd2496b23f29c-4
  1336. dandi:sha2-256: f196c402526d525e24f6b3471d286e79361c25b1cb2fe7837b6378f87202c516
  1337. encodingFormat: application/x-nwb
  1338. id: dandiasset:2465a563-8a82-42f1-9108-b897cbc25e53
  1339. identifier: 2465a563-8a82-42f1-9108-b897cbc25e53
  1340. measurementTechnique:
  1341. - name: surgical technique
  1342. schemaKey: MeasurementTechniqueType
  1343. - name: multi electrode extracellular electrophysiology recording technique
  1344. schemaKey: MeasurementTechniqueType
  1345. path: sub-San4/sub-San4_ses-20200430T084358_ecephys.nwb
  1346. schemaKey: Asset
  1347. schemaVersion: 0.6.3
  1348. variableMeasured:
  1349. - schemaKey: PropertyValue
  1350. value: ElectrodeGroup
  1351. - schemaKey: PropertyValue
  1352. value: ElectricalSeries
  1353. wasAttributedTo:
  1354. - age:
  1355. schemaKey: PropertyValue
  1356. unitText: ISO-8601 duration
  1357. value: P268DT31438S
  1358. valueReference:
  1359. schemaKey: PropertyValue
  1360. value: dandi:BirthReference
  1361. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1362. identifier: San4
  1363. schemaKey: Participant
  1364. sex:
  1365. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1366. name: Male
  1367. schemaKey: SexType
  1368. species:
  1369. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1370. name: Mus musculus - House mouse
  1371. schemaKey: SpeciesType
  1372. wasGeneratedBy:
  1373. - description: Fig 2d, 2e
  1374. name: Acquisition session
  1375. schemaKey: Session
  1376. startDate: '2020-04-30T08:43:58-07:00'
  1377. - description: Metadata generated by DANDI cli
  1378. id: urn:uuid:db9c1f62-6a99-4589-a882-47eaaf87da04
  1379. name: Metadata generation
  1380. schemaKey: Activity
  1381. wasAssociatedWith:
  1382. - identifier: RRID:SCR_019009
  1383. name: DANDI Command Line Interface
  1384. schemaKey: Software
  1385. url: https://github.com/dandi/dandi-cli
  1386. version: 0.46.6
  1387. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1388. access:
  1389. - schemaKey: AccessRequirements
  1390. status: dandi:OpenAccess
  1391. approach:
  1392. - name: electrophysiological approach
  1393. schemaKey: ApproachType
  1394. blobDateModified: '2022-12-02T16:46:04.534905-08:00'
  1395. contentSize: 560493788
  1396. contentUrl:
  1397. - https://api.dandiarchive.org/api/assets/77bee3a0-8d98-4283-9a38-6e4e9c1b618f/download/
  1398. - https://dandiarchive.s3.amazonaws.com/blobs/789/b41/789b4127-6d12-4c98-aa2a-8f9826a2cf3d
  1399. dateModified: '2022-12-03T17:58:51.503555-08:00'
  1400. digest:
  1401. dandi:dandi-etag: 021aab2a265d12a758472b67bd067a8f-9
  1402. dandi:sha2-256: fab9a2f2da9aaba3eb00723b9a040a897678c0667b21ac4ddab939eca9d2820a
  1403. encodingFormat: application/x-nwb
  1404. id: dandiasset:77bee3a0-8d98-4283-9a38-6e4e9c1b618f
  1405. identifier: 77bee3a0-8d98-4283-9a38-6e4e9c1b618f
  1406. measurementTechnique:
  1407. - name: surgical technique
  1408. schemaKey: MeasurementTechniqueType
  1409. - name: multi electrode extracellular electrophysiology recording technique
  1410. schemaKey: MeasurementTechniqueType
  1411. path: sub-San6/sub-San6_ses-20200218T175723_ecephys.nwb
  1412. schemaKey: Asset
  1413. schemaVersion: 0.6.3
  1414. variableMeasured:
  1415. - schemaKey: PropertyValue
  1416. value: ElectrodeGroup
  1417. - schemaKey: PropertyValue
  1418. value: ElectricalSeries
  1419. wasAttributedTo:
  1420. - age:
  1421. schemaKey: PropertyValue
  1422. unitText: ISO-8601 duration
  1423. value: P196DT68243S
  1424. valueReference:
  1425. schemaKey: PropertyValue
  1426. value: dandi:BirthReference
  1427. genotype: Emx1-Cre[wt/wt];Ai32[wt/wt]
  1428. identifier: San6
  1429. schemaKey: Participant
  1430. sex:
  1431. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1432. name: Male
  1433. schemaKey: SexType
  1434. species:
  1435. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1436. name: Mus musculus - House mouse
  1437. schemaKey: SpeciesType
  1438. wasGeneratedBy:
  1439. - description: Fig 3b, 3c, 3d, 3e, 3f, 3g, 3h, S8, S9
  1440. name: Acquisition session
  1441. schemaKey: Session
  1442. startDate: '2020-02-18T17:57:23-08:00'
  1443. - description: Metadata generated by DANDI cli
  1444. id: urn:uuid:84877b56-943c-48c5-924c-81837ebdfc5f
  1445. name: Metadata generation
  1446. schemaKey: Activity
  1447. wasAssociatedWith:
  1448. - identifier: RRID:SCR_019009
  1449. name: DANDI Command Line Interface
  1450. schemaKey: Software
  1451. url: https://github.com/dandi/dandi-cli
  1452. version: 0.46.6
  1453. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1454. access:
  1455. - schemaKey: AccessRequirements
  1456. status: dandi:OpenAccess
  1457. approach:
  1458. - name: electrophysiological approach
  1459. schemaKey: ApproachType
  1460. blobDateModified: '2022-12-03T18:04:48.876719-08:00'
  1461. contentSize: 4437051512
  1462. contentUrl:
  1463. - https://api.dandiarchive.org/api/assets/64c34751-6df1-49d8-a787-9175b7eb796d/download/
  1464. - https://dandiarchive.s3.amazonaws.com/blobs/13d/294/13d2941f-6b7e-4993-b974-33ef5648c8f8
  1465. dateModified: '2022-12-03T18:44:49.993816-08:00'
  1466. digest:
  1467. dandi:dandi-etag: c5d9296f6334b0817bd0851eee404c84-67
  1468. dandi:sha2-256: bb0181cf92019063025c2cc00a2f42c57ffe7a1a442a12acd7b1fbc89f8bd16d
  1469. encodingFormat: application/x-nwb
  1470. id: dandiasset:64c34751-6df1-49d8-a787-9175b7eb796d
  1471. identifier: 64c34751-6df1-49d8-a787-9175b7eb796d
  1472. measurementTechnique:
  1473. - name: surgical technique
  1474. schemaKey: MeasurementTechniqueType
  1475. - name: multi electrode extracellular electrophysiology recording technique
  1476. schemaKey: MeasurementTechniqueType
  1477. path: sub-Rat1/sub-Rat1_ses-20200921T131923_ecephys.nwb
  1478. schemaKey: Asset
  1479. schemaVersion: 0.6.3
  1480. variableMeasured:
  1481. - schemaKey: PropertyValue
  1482. value: ElectrodeGroup
  1483. - schemaKey: PropertyValue
  1484. value: ElectricalSeries
  1485. wasAttributedTo:
  1486. - age:
  1487. schemaKey: PropertyValue
  1488. unitText: ISO-8601 duration
  1489. value: P0D
  1490. valueReference:
  1491. schemaKey: PropertyValue
  1492. value: dandi:BirthReference
  1493. genotype: nan
  1494. identifier: Rat1
  1495. schemaKey: Participant
  1496. sex:
  1497. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1498. name: Male
  1499. schemaKey: SexType
  1500. species:
  1501. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1502. name: Rattus norvegicus - Norway rat
  1503. schemaKey: SpeciesType
  1504. wasGeneratedBy:
  1505. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S18
  1506. name: Acquisition session
  1507. schemaKey: Session
  1508. startDate: '2020-09-21T13:19:23-07:00'
  1509. - description: Metadata generated by DANDI cli
  1510. id: urn:uuid:0ae54ce3-7e97-469c-a71e-284218c61ddb
  1511. name: Metadata generation
  1512. schemaKey: Activity
  1513. wasAssociatedWith:
  1514. - identifier: RRID:SCR_019009
  1515. name: DANDI Command Line Interface
  1516. schemaKey: Software
  1517. url: https://github.com/dandi/dandi-cli
  1518. version: 0.46.6
  1519. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1520. access:
  1521. - schemaKey: AccessRequirements
  1522. status: dandi:OpenAccess
  1523. approach:
  1524. - name: electrophysiological approach
  1525. schemaKey: ApproachType
  1526. blobDateModified: '2022-12-02T21:51:01.994336-08:00'
  1527. contentSize: 4540738704
  1528. contentUrl:
  1529. - https://api.dandiarchive.org/api/assets/b5d23556-5a1c-4f43-8ddd-b25df5cadec1/download/
  1530. - https://dandiarchive.s3.amazonaws.com/blobs/55c/819/55c819d2-6aca-492d-9c91-3d4318ba7325
  1531. dateModified: '2022-12-03T19:58:57.805727-08:00'
  1532. digest:
  1533. dandi:dandi-etag: f6470ff171b34dc664a6d3fd1dc1ddff-68
  1534. dandi:sha2-256: fcdc73d457a31e0604f93d8341bbd57458a5ae20db466e53e9faf1eb5e351f6a
  1535. encodingFormat: application/x-nwb
  1536. id: dandiasset:b5d23556-5a1c-4f43-8ddd-b25df5cadec1
  1537. identifier: b5d23556-5a1c-4f43-8ddd-b25df5cadec1
  1538. measurementTechnique:
  1539. - name: surgical technique
  1540. schemaKey: MeasurementTechniqueType
  1541. - name: multi electrode extracellular electrophysiology recording technique
  1542. schemaKey: MeasurementTechniqueType
  1543. path: sub-Rat2/sub-Rat2_ses-20200924T153806_ecephys.nwb
  1544. schemaKey: Asset
  1545. schemaVersion: 0.6.3
  1546. variableMeasured:
  1547. - schemaKey: PropertyValue
  1548. value: ElectrodeGroup
  1549. - schemaKey: PropertyValue
  1550. value: ElectricalSeries
  1551. wasAttributedTo:
  1552. - age:
  1553. schemaKey: PropertyValue
  1554. unitText: ISO-8601 duration
  1555. value: P0D
  1556. valueReference:
  1557. schemaKey: PropertyValue
  1558. value: dandi:BirthReference
  1559. genotype: nan
  1560. identifier: Rat2
  1561. schemaKey: Participant
  1562. sex:
  1563. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1564. name: Male
  1565. schemaKey: SexType
  1566. species:
  1567. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1568. name: Rattus norvegicus - Norway rat
  1569. schemaKey: SpeciesType
  1570. wasGeneratedBy:
  1571. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S19
  1572. name: Acquisition session
  1573. schemaKey: Session
  1574. startDate: '2020-09-24T15:38:06-07:00'
  1575. - description: Metadata generated by DANDI cli
  1576. id: urn:uuid:89fb314c-5b5f-4859-bc6a-25af9c7c66d8
  1577. name: Metadata generation
  1578. schemaKey: Activity
  1579. wasAssociatedWith:
  1580. - identifier: RRID:SCR_019009
  1581. name: DANDI Command Line Interface
  1582. schemaKey: Software
  1583. url: https://github.com/dandi/dandi-cli
  1584. version: 0.46.6
  1585. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1586. access:
  1587. - schemaKey: AccessRequirements
  1588. status: dandi:OpenAccess
  1589. approach:
  1590. - name: electrophysiological approach
  1591. schemaKey: ApproachType
  1592. blobDateModified: '2022-12-03T03:19:19.507790-08:00'
  1593. contentSize: 4544201698
  1594. contentUrl:
  1595. - https://api.dandiarchive.org/api/assets/a44a88d2-2d03-4b33-a823-fe43d98ad6c5/download/
  1596. - https://dandiarchive.s3.amazonaws.com/blobs/743/a30/743a30a7-a09d-42e5-89c2-4dd3f53a2053
  1597. dateModified: '2022-12-03T20:00:37.115473-08:00'
  1598. digest:
  1599. dandi:dandi-etag: b445b7b60e85ebe07d6651ddb80f2186-68
  1600. dandi:sha2-256: d7bac16967b0b261023def8240e377ed0de9bf829710fa919ef9871b93c7975f
  1601. encodingFormat: application/x-nwb
  1602. id: dandiasset:a44a88d2-2d03-4b33-a823-fe43d98ad6c5
  1603. identifier: a44a88d2-2d03-4b33-a823-fe43d98ad6c5
  1604. measurementTechnique:
  1605. - name: surgical technique
  1606. schemaKey: MeasurementTechniqueType
  1607. - name: multi electrode extracellular electrophysiology recording technique
  1608. schemaKey: MeasurementTechniqueType
  1609. path: sub-Rat2/sub-Rat2_ses-20200924T155423_ecephys.nwb
  1610. schemaKey: Asset
  1611. schemaVersion: 0.6.3
  1612. variableMeasured:
  1613. - schemaKey: PropertyValue
  1614. value: ElectrodeGroup
  1615. - schemaKey: PropertyValue
  1616. value: ElectricalSeries
  1617. wasAttributedTo:
  1618. - age:
  1619. schemaKey: PropertyValue
  1620. unitText: ISO-8601 duration
  1621. value: P0D
  1622. valueReference:
  1623. schemaKey: PropertyValue
  1624. value: dandi:BirthReference
  1625. genotype: nan
  1626. identifier: Rat2
  1627. schemaKey: Participant
  1628. sex:
  1629. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1630. name: Male
  1631. schemaKey: SexType
  1632. species:
  1633. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  1634. name: Rattus norvegicus - Norway rat
  1635. schemaKey: SpeciesType
  1636. wasGeneratedBy:
  1637. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S22
  1638. name: Acquisition session
  1639. schemaKey: Session
  1640. startDate: '2020-09-24T15:54:23-07:00'
  1641. - description: Metadata generated by DANDI cli
  1642. id: urn:uuid:a8700929-4c6a-4e55-bf45-e7cd829dac4b
  1643. name: Metadata generation
  1644. schemaKey: Activity
  1645. wasAssociatedWith:
  1646. - identifier: RRID:SCR_019009
  1647. name: DANDI Command Line Interface
  1648. schemaKey: Software
  1649. url: https://github.com/dandi/dandi-cli
  1650. version: 0.46.6
  1651. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1652. access:
  1653. - schemaKey: AccessRequirements
  1654. status: dandi:OpenAccess
  1655. approach:
  1656. - name: electrophysiological approach
  1657. schemaKey: ApproachType
  1658. blobDateModified: '2022-12-03T06:59:11.725890-08:00'
  1659. contentSize: 113044467
  1660. contentUrl:
  1661. - https://api.dandiarchive.org/api/assets/5b5adae9-82e0-44aa-9faa-c827351d117a/download/
  1662. - https://dandiarchive.s3.amazonaws.com/blobs/6bf/abf/6bfabf39-52a6-4281-8022-1dc9c8ef240b
  1663. dateModified: '2022-12-03T21:30:22.154670-08:00'
  1664. digest:
  1665. dandi:dandi-etag: b8b366289610fdaa47098a2fb64322f5-2
  1666. dandi:sha2-256: 64bc121e720f9dd0eef9ae9f48f7760882792afb24ea484b4757e330b5d68db0
  1667. encodingFormat: application/x-nwb
  1668. id: dandiasset:5b5adae9-82e0-44aa-9faa-c827351d117a
  1669. identifier: 5b5adae9-82e0-44aa-9faa-c827351d117a
  1670. measurementTechnique:
  1671. - name: surgical technique
  1672. schemaKey: MeasurementTechniqueType
  1673. - name: multi electrode extracellular electrophysiology recording technique
  1674. schemaKey: MeasurementTechniqueType
  1675. path: sub-San4/sub-San4_ses-20191028T151843_ecephys.nwb
  1676. schemaKey: Asset
  1677. schemaVersion: 0.6.3
  1678. variableMeasured:
  1679. - schemaKey: PropertyValue
  1680. value: ElectrodeGroup
  1681. - schemaKey: PropertyValue
  1682. value: ElectricalSeries
  1683. wasAttributedTo:
  1684. - age:
  1685. schemaKey: PropertyValue
  1686. unitText: ISO-8601 duration
  1687. value: P83DT55123S
  1688. valueReference:
  1689. schemaKey: PropertyValue
  1690. value: dandi:BirthReference
  1691. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1692. identifier: San4
  1693. schemaKey: Participant
  1694. sex:
  1695. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1696. name: Male
  1697. schemaKey: SexType
  1698. species:
  1699. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1700. name: Mus musculus - House mouse
  1701. schemaKey: SpeciesType
  1702. wasGeneratedBy:
  1703. - description: Fig S4a, S4b
  1704. name: Acquisition session
  1705. schemaKey: Session
  1706. startDate: '2019-10-28T15:18:43-07:00'
  1707. - description: Metadata generated by DANDI cli
  1708. id: urn:uuid:78693837-737a-4b72-a1a0-e7d157f11268
  1709. name: Metadata generation
  1710. schemaKey: Activity
  1711. wasAssociatedWith:
  1712. - identifier: RRID:SCR_019009
  1713. name: DANDI Command Line Interface
  1714. schemaKey: Software
  1715. url: https://github.com/dandi/dandi-cli
  1716. version: 0.46.6
  1717. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1718. access:
  1719. - schemaKey: AccessRequirements
  1720. status: dandi:OpenAccess
  1721. approach:
  1722. - name: electrophysiological approach
  1723. schemaKey: ApproachType
  1724. blobDateModified: '2022-12-03T07:02:02.181491-08:00'
  1725. contentSize: 196787782
  1726. contentUrl:
  1727. - https://api.dandiarchive.org/api/assets/2001cf5d-1aa3-4984-8b57-869085e887df/download/
  1728. - https://dandiarchive.s3.amazonaws.com/blobs/2fd/df8/2fddf8fe-dcfc-40ef-87f7-9e5f2c9fdef8
  1729. dateModified: '2022-12-03T21:30:59.781846-08:00'
  1730. digest:
  1731. dandi:dandi-etag: ac23572e9614ba358568cbfcc41b099c-3
  1732. dandi:sha2-256: a3f518b0bc1e7d5c2291f19cf51d8a91088e739781485adee3b713d9851e0ed4
  1733. encodingFormat: application/x-nwb
  1734. id: dandiasset:2001cf5d-1aa3-4984-8b57-869085e887df
  1735. identifier: 2001cf5d-1aa3-4984-8b57-869085e887df
  1736. measurementTechnique:
  1737. - name: surgical technique
  1738. schemaKey: MeasurementTechniqueType
  1739. - name: multi electrode extracellular electrophysiology recording technique
  1740. schemaKey: MeasurementTechniqueType
  1741. path: sub-San4/sub-San4_ses-20191107T150515_ecephys.nwb
  1742. schemaKey: Asset
  1743. schemaVersion: 0.6.3
  1744. variableMeasured:
  1745. - schemaKey: PropertyValue
  1746. value: ElectrodeGroup
  1747. - schemaKey: PropertyValue
  1748. value: ElectricalSeries
  1749. wasAttributedTo:
  1750. - age:
  1751. schemaKey: PropertyValue
  1752. unitText: ISO-8601 duration
  1753. value: P93DT57915S
  1754. valueReference:
  1755. schemaKey: PropertyValue
  1756. value: dandi:BirthReference
  1757. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1758. identifier: San4
  1759. schemaKey: Participant
  1760. sex:
  1761. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1762. name: Male
  1763. schemaKey: SexType
  1764. species:
  1765. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1766. name: Mus musculus - House mouse
  1767. schemaKey: SpeciesType
  1768. wasGeneratedBy:
  1769. - description: Fig S4a, S4b
  1770. name: Acquisition session
  1771. schemaKey: Session
  1772. startDate: '2019-11-07T15:05:15-08:00'
  1773. - description: Metadata generated by DANDI cli
  1774. id: urn:uuid:d7769641-4e73-4ae8-9e4d-640472d9a1de
  1775. name: Metadata generation
  1776. schemaKey: Activity
  1777. wasAssociatedWith:
  1778. - identifier: RRID:SCR_019009
  1779. name: DANDI Command Line Interface
  1780. schemaKey: Software
  1781. url: https://github.com/dandi/dandi-cli
  1782. version: 0.46.6
  1783. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1784. access:
  1785. - schemaKey: AccessRequirements
  1786. status: dandi:OpenAccess
  1787. approach:
  1788. - name: electrophysiological approach
  1789. schemaKey: ApproachType
  1790. blobDateModified: '2022-12-03T07:04:46.464230-08:00'
  1791. contentSize: 202916556
  1792. contentUrl:
  1793. - https://api.dandiarchive.org/api/assets/bbe21e17-3431-423c-9c90-e7209795f774/download/
  1794. - https://dandiarchive.s3.amazonaws.com/blobs/b06/924/b069240b-fd4b-415e-bfc1-369006280f08
  1795. dateModified: '2022-12-03T21:31:44.206913-08:00'
  1796. digest:
  1797. dandi:dandi-etag: 8819c94f7b1cd2564ef29f1dbe2c418e-4
  1798. dandi:sha2-256: b03e9da6089d463f04b7bb52b565fa38e6677fe0d0df48efb89a9d559d73f3b5
  1799. encodingFormat: application/x-nwb
  1800. id: dandiasset:bbe21e17-3431-423c-9c90-e7209795f774
  1801. identifier: bbe21e17-3431-423c-9c90-e7209795f774
  1802. measurementTechnique:
  1803. - name: surgical technique
  1804. schemaKey: MeasurementTechniqueType
  1805. - name: multi electrode extracellular electrophysiology recording technique
  1806. schemaKey: MeasurementTechniqueType
  1807. path: sub-San4/sub-San4_ses-20191127T122703_ecephys.nwb
  1808. schemaKey: Asset
  1809. schemaVersion: 0.6.3
  1810. variableMeasured:
  1811. - schemaKey: PropertyValue
  1812. value: ElectrodeGroup
  1813. - schemaKey: PropertyValue
  1814. value: ElectricalSeries
  1815. wasAttributedTo:
  1816. - age:
  1817. schemaKey: PropertyValue
  1818. unitText: ISO-8601 duration
  1819. value: P113DT48423S
  1820. valueReference:
  1821. schemaKey: PropertyValue
  1822. value: dandi:BirthReference
  1823. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1824. identifier: San4
  1825. schemaKey: Participant
  1826. sex:
  1827. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1828. name: Male
  1829. schemaKey: SexType
  1830. species:
  1831. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1832. name: Mus musculus - House mouse
  1833. schemaKey: SpeciesType
  1834. wasGeneratedBy:
  1835. - description: Fig S4c, S4d
  1836. name: Acquisition session
  1837. schemaKey: Session
  1838. startDate: '2019-11-27T12:27:03-08:00'
  1839. - description: Metadata generated by DANDI cli
  1840. id: urn:uuid:fed5cb88-4c97-44d4-afcf-f3db7e76db44
  1841. name: Metadata generation
  1842. schemaKey: Activity
  1843. wasAssociatedWith:
  1844. - identifier: RRID:SCR_019009
  1845. name: DANDI Command Line Interface
  1846. schemaKey: Software
  1847. url: https://github.com/dandi/dandi-cli
  1848. version: 0.46.6
  1849. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1850. access:
  1851. - schemaKey: AccessRequirements
  1852. status: dandi:OpenAccess
  1853. approach:
  1854. - name: electrophysiological approach
  1855. schemaKey: ApproachType
  1856. blobDateModified: '2022-12-03T07:07:46.891411-08:00'
  1857. contentSize: 215766159
  1858. contentUrl:
  1859. - https://api.dandiarchive.org/api/assets/f3cbb224-19ae-4a26-9d50-ad9aec6fc914/download/
  1860. - https://dandiarchive.s3.amazonaws.com/blobs/8b8/522/8b8522fe-f040-40c5-bd30-ffffe6f18684
  1861. dateModified: '2022-12-03T21:32:38.943932-08:00'
  1862. digest:
  1863. dandi:dandi-etag: ef4a93e7643a990012d7dc597cc607ed-4
  1864. dandi:sha2-256: 776120d7eed47072b7aa22eeb2a37c36fe688f613495f362124a7542709b428e
  1865. encodingFormat: application/x-nwb
  1866. id: dandiasset:f3cbb224-19ae-4a26-9d50-ad9aec6fc914
  1867. identifier: f3cbb224-19ae-4a26-9d50-ad9aec6fc914
  1868. measurementTechnique:
  1869. - name: surgical technique
  1870. schemaKey: MeasurementTechniqueType
  1871. - name: multi electrode extracellular electrophysiology recording technique
  1872. schemaKey: MeasurementTechniqueType
  1873. path: sub-San4/sub-San4_ses-20200106T153513_ecephys.nwb
  1874. schemaKey: Asset
  1875. schemaVersion: 0.6.3
  1876. variableMeasured:
  1877. - schemaKey: PropertyValue
  1878. value: ElectrodeGroup
  1879. - schemaKey: PropertyValue
  1880. value: ElectricalSeries
  1881. wasAttributedTo:
  1882. - age:
  1883. schemaKey: PropertyValue
  1884. unitText: ISO-8601 duration
  1885. value: P153DT59713S
  1886. valueReference:
  1887. schemaKey: PropertyValue
  1888. value: dandi:BirthReference
  1889. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1890. identifier: San4
  1891. schemaKey: Participant
  1892. sex:
  1893. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1894. name: Male
  1895. schemaKey: SexType
  1896. species:
  1897. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1898. name: Mus musculus - House mouse
  1899. schemaKey: SpeciesType
  1900. wasGeneratedBy:
  1901. - description: Fig S4c, S4d
  1902. name: Acquisition session
  1903. schemaKey: Session
  1904. startDate: '2020-01-06T15:35:13-08:00'
  1905. - description: Metadata generated by DANDI cli
  1906. id: urn:uuid:d46fbaf5-3ca6-4cc2-8a4e-a1c3c9e3a402
  1907. name: Metadata generation
  1908. schemaKey: Activity
  1909. wasAssociatedWith:
  1910. - identifier: RRID:SCR_019009
  1911. name: DANDI Command Line Interface
  1912. schemaKey: Software
  1913. url: https://github.com/dandi/dandi-cli
  1914. version: 0.46.6
  1915. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1916. access:
  1917. - schemaKey: AccessRequirements
  1918. status: dandi:OpenAccess
  1919. approach:
  1920. - name: electrophysiological approach
  1921. schemaKey: ApproachType
  1922. blobDateModified: '2022-12-03T07:50:45.780574-08:00'
  1923. contentSize: 229969202
  1924. contentUrl:
  1925. - https://api.dandiarchive.org/api/assets/de229391-9977-4b6e-98ea-bed30cbceb88/download/
  1926. - https://dandiarchive.s3.amazonaws.com/blobs/1c1/df7/1c1df79f-2897-4c2c-b98a-e607ce54cd20
  1927. dateModified: '2022-12-03T21:33:51.718300-08:00'
  1928. digest:
  1929. dandi:dandi-etag: ebfbb82ba370a604f7ab6cbef010c39c-4
  1930. dandi:sha2-256: dfdedad09d5b9fa9c9721c8d614a33e4f2197b94ab010cf494dbff91a9f7a010
  1931. encodingFormat: application/x-nwb
  1932. id: dandiasset:de229391-9977-4b6e-98ea-bed30cbceb88
  1933. identifier: de229391-9977-4b6e-98ea-bed30cbceb88
  1934. measurementTechnique:
  1935. - name: surgical technique
  1936. schemaKey: MeasurementTechniqueType
  1937. - name: multi electrode extracellular electrophysiology recording technique
  1938. schemaKey: MeasurementTechniqueType
  1939. path: sub-San4/sub-San4_ses-20200204T141344_ecephys.nwb
  1940. schemaKey: Asset
  1941. schemaVersion: 0.6.3
  1942. variableMeasured:
  1943. - schemaKey: PropertyValue
  1944. value: ElectrodeGroup
  1945. - schemaKey: PropertyValue
  1946. value: ElectricalSeries
  1947. wasAttributedTo:
  1948. - age:
  1949. schemaKey: PropertyValue
  1950. unitText: ISO-8601 duration
  1951. value: P182DT54824S
  1952. valueReference:
  1953. schemaKey: PropertyValue
  1954. value: dandi:BirthReference
  1955. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  1956. identifier: San4
  1957. schemaKey: Participant
  1958. sex:
  1959. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1960. name: Male
  1961. schemaKey: SexType
  1962. species:
  1963. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1964. name: Mus musculus - House mouse
  1965. schemaKey: SpeciesType
  1966. wasGeneratedBy:
  1967. - description: Fig 3i, S10
  1968. name: Acquisition session
  1969. schemaKey: Session
  1970. startDate: '2020-02-04T14:13:44-08:00'
  1971. - description: Metadata generated by DANDI cli
  1972. id: urn:uuid:70872dce-7eaa-493b-84f1-eec7dd5d113b
  1973. name: Metadata generation
  1974. schemaKey: Activity
  1975. wasAssociatedWith:
  1976. - identifier: RRID:SCR_019009
  1977. name: DANDI Command Line Interface
  1978. schemaKey: Software
  1979. url: https://github.com/dandi/dandi-cli
  1980. version: 0.46.6
  1981. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1982. access:
  1983. - schemaKey: AccessRequirements
  1984. status: dandi:OpenAccess
  1985. approach:
  1986. - name: electrophysiological approach
  1987. schemaKey: ApproachType
  1988. blobDateModified: '2022-12-03T07:10:41.055856-08:00'
  1989. contentSize: 227684683
  1990. contentUrl:
  1991. - https://api.dandiarchive.org/api/assets/f74909f3-93cf-461c-875f-74a770507abf/download/
  1992. - https://dandiarchive.s3.amazonaws.com/blobs/8a5/18b/8a518bff-c5d7-4419-8ca6-c70950936aab
  1993. dateModified: '2022-12-03T21:34:58.991631-08:00'
  1994. digest:
  1995. dandi:dandi-etag: 810593d3b8951a33b38eca3c10523b29-4
  1996. dandi:sha2-256: aa91f456e85a810cd7aa5c033f645a8047e26638afb8c7f4a3c4a247e3b0c27c
  1997. encodingFormat: application/x-nwb
  1998. id: dandiasset:f74909f3-93cf-461c-875f-74a770507abf
  1999. identifier: f74909f3-93cf-461c-875f-74a770507abf
  2000. measurementTechnique:
  2001. - name: surgical technique
  2002. schemaKey: MeasurementTechniqueType
  2003. - name: multi electrode extracellular electrophysiology recording technique
  2004. schemaKey: MeasurementTechniqueType
  2005. path: sub-San4/sub-San4_ses-20200204T141717_ecephys.nwb
  2006. schemaKey: Asset
  2007. schemaVersion: 0.6.3
  2008. variableMeasured:
  2009. - schemaKey: PropertyValue
  2010. value: ElectrodeGroup
  2011. - schemaKey: PropertyValue
  2012. value: ElectricalSeries
  2013. wasAttributedTo:
  2014. - age:
  2015. schemaKey: PropertyValue
  2016. unitText: ISO-8601 duration
  2017. value: P182DT55037S
  2018. valueReference:
  2019. schemaKey: PropertyValue
  2020. value: dandi:BirthReference
  2021. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  2022. identifier: San4
  2023. schemaKey: Participant
  2024. sex:
  2025. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2026. name: Male
  2027. schemaKey: SexType
  2028. species:
  2029. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2030. name: Mus musculus - House mouse
  2031. schemaKey: SpeciesType
  2032. wasGeneratedBy:
  2033. - description: Fig S4c, S4d
  2034. name: Acquisition session
  2035. schemaKey: Session
  2036. startDate: '2020-02-04T14:17:17-08:00'
  2037. - description: Metadata generated by DANDI cli
  2038. id: urn:uuid:4b9b6ce6-d38d-42ef-82b7-c44c2ce7a7b9
  2039. name: Metadata generation
  2040. schemaKey: Activity
  2041. wasAssociatedWith:
  2042. - identifier: RRID:SCR_019009
  2043. name: DANDI Command Line Interface
  2044. schemaKey: Software
  2045. url: https://github.com/dandi/dandi-cli
  2046. version: 0.46.6
  2047. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2048. access:
  2049. - schemaKey: AccessRequirements
  2050. status: dandi:OpenAccess
  2051. approach:
  2052. - name: electrophysiological approach
  2053. schemaKey: ApproachType
  2054. blobDateModified: '2022-12-03T07:14:09.611122-08:00'
  2055. contentSize: 261821711
  2056. contentUrl:
  2057. - https://api.dandiarchive.org/api/assets/551af5b8-4eb8-4ff1-87c6-c2c01799aa2f/download/
  2058. - https://dandiarchive.s3.amazonaws.com/blobs/a19/1a7/a191a7cf-8a6b-4873-9dd7-21d830a3a03f
  2059. dateModified: '2022-12-03T21:36:15.178044-08:00'
  2060. digest:
  2061. dandi:dandi-etag: 66ec5e7c7584f4c65ef9449a718fe666-4
  2062. dandi:sha2-256: bf5e0506460b6dd05ca428a9f7852d546927b4aab6dfb99cdca14ec1e68cbe3d
  2063. encodingFormat: application/x-nwb
  2064. id: dandiasset:551af5b8-4eb8-4ff1-87c6-c2c01799aa2f
  2065. identifier: 551af5b8-4eb8-4ff1-87c6-c2c01799aa2f
  2066. measurementTechnique:
  2067. - name: surgical technique
  2068. schemaKey: MeasurementTechniqueType
  2069. - name: multi electrode extracellular electrophysiology recording technique
  2070. schemaKey: MeasurementTechniqueType
  2071. path: sub-San4/sub-San4_ses-20200218T183658_ecephys.nwb
  2072. schemaKey: Asset
  2073. schemaVersion: 0.6.3
  2074. variableMeasured:
  2075. - schemaKey: PropertyValue
  2076. value: ElectrodeGroup
  2077. - schemaKey: PropertyValue
  2078. value: ElectricalSeries
  2079. wasAttributedTo:
  2080. - age:
  2081. schemaKey: PropertyValue
  2082. unitText: ISO-8601 duration
  2083. value: P196DT70618S
  2084. valueReference:
  2085. schemaKey: PropertyValue
  2086. value: dandi:BirthReference
  2087. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  2088. identifier: San4
  2089. schemaKey: Participant
  2090. sex:
  2091. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2092. name: Male
  2093. schemaKey: SexType
  2094. species:
  2095. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2096. name: Mus musculus - House mouse
  2097. schemaKey: SpeciesType
  2098. wasGeneratedBy:
  2099. - description: Fig S4c, S4d
  2100. name: Acquisition session
  2101. schemaKey: Session
  2102. startDate: '2020-02-18T18:36:58-08:00'
  2103. - description: Metadata generated by DANDI cli
  2104. id: urn:uuid:5fa69c9b-ba52-4dac-88af-79a03fcd52b8
  2105. name: Metadata generation
  2106. schemaKey: Activity
  2107. wasAssociatedWith:
  2108. - identifier: RRID:SCR_019009
  2109. name: DANDI Command Line Interface
  2110. schemaKey: Software
  2111. url: https://github.com/dandi/dandi-cli
  2112. version: 0.46.6
  2113. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2114. access:
  2115. - schemaKey: AccessRequirements
  2116. status: dandi:OpenAccess
  2117. approach:
  2118. - name: electrophysiological approach
  2119. schemaKey: ApproachType
  2120. blobDateModified: '2022-12-03T06:57:39.528539-08:00'
  2121. contentSize: 4545819974
  2122. contentUrl:
  2123. - https://api.dandiarchive.org/api/assets/4fc037fc-68dd-490b-a6b7-f7c466287969/download/
  2124. - https://dandiarchive.s3.amazonaws.com/blobs/722/ac3/722ac34f-f964-46a4-889b-33b8d7f4b47d
  2125. dateModified: '2022-12-03T21:27:13.296401-08:00'
  2126. digest:
  2127. dandi:dandi-etag: 06c7919353a7b39aebc7820d550d1fb4-68
  2128. dandi:sha2-256: d36e5cebc707dfe1bccad636393bd14258209fd4b20fb3805b07d17e08355e91
  2129. encodingFormat: application/x-nwb
  2130. id: dandiasset:4fc037fc-68dd-490b-a6b7-f7c466287969
  2131. identifier: 4fc037fc-68dd-490b-a6b7-f7c466287969
  2132. measurementTechnique:
  2133. - name: surgical technique
  2134. schemaKey: MeasurementTechniqueType
  2135. - name: multi electrode extracellular electrophysiology recording technique
  2136. schemaKey: MeasurementTechniqueType
  2137. path: sub-Rat2/sub-Rat2_ses-20200924T155623_ecephys.nwb
  2138. schemaKey: Asset
  2139. schemaVersion: 0.6.3
  2140. variableMeasured:
  2141. - schemaKey: PropertyValue
  2142. value: ElectrodeGroup
  2143. - schemaKey: PropertyValue
  2144. value: ElectricalSeries
  2145. wasAttributedTo:
  2146. - age:
  2147. schemaKey: PropertyValue
  2148. unitText: ISO-8601 duration
  2149. value: P0D
  2150. valueReference:
  2151. schemaKey: PropertyValue
  2152. value: dandi:BirthReference
  2153. genotype: nan
  2154. identifier: Rat2
  2155. schemaKey: Participant
  2156. sex:
  2157. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2158. name: Male
  2159. schemaKey: SexType
  2160. species:
  2161. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2162. name: Rattus norvegicus - Norway rat
  2163. schemaKey: SpeciesType
  2164. wasGeneratedBy:
  2165. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S24
  2166. name: Acquisition session
  2167. schemaKey: Session
  2168. startDate: '2020-09-24T15:56:23-07:00'
  2169. - description: Metadata generated by DANDI cli
  2170. id: urn:uuid:96d6eaef-4f74-4af1-a284-6831459c827a
  2171. name: Metadata generation
  2172. schemaKey: Activity
  2173. wasAssociatedWith:
  2174. - identifier: RRID:SCR_019009
  2175. name: DANDI Command Line Interface
  2176. schemaKey: Software
  2177. url: https://github.com/dandi/dandi-cli
  2178. version: 0.46.6
  2179. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2180. access:
  2181. - schemaKey: AccessRequirements
  2182. status: dandi:OpenAccess
  2183. approach:
  2184. - name: electrophysiological approach
  2185. schemaKey: ApproachType
  2186. blobDateModified: '2022-12-03T07:20:06.883443-08:00'
  2187. contentSize: 192044036
  2188. contentUrl:
  2189. - https://api.dandiarchive.org/api/assets/cab49395-0512-4bfd-ad77-9d92de66f521/download/
  2190. - https://dandiarchive.s3.amazonaws.com/blobs/2e9/5ab/2e95abdf-ee7c-4422-8571-a79254b916c0
  2191. dateModified: '2022-12-03T21:52:45.061600-08:00'
  2192. digest:
  2193. dandi:dandi-etag: 41da7b4143bef62a7ed700c4204e5892-3
  2194. dandi:sha2-256: 5a4f791fa4a028739d7d2dc867f3ef3fa936330a2b6049fd9dadb690ad2285e9
  2195. encodingFormat: application/x-nwb
  2196. id: dandiasset:cab49395-0512-4bfd-ad77-9d92de66f521
  2197. identifier: cab49395-0512-4bfd-ad77-9d92de66f521
  2198. measurementTechnique:
  2199. - name: surgical technique
  2200. schemaKey: MeasurementTechniqueType
  2201. - name: multi electrode extracellular electrophysiology recording technique
  2202. schemaKey: MeasurementTechniqueType
  2203. path: sub-San4/sub-San4_ses-20200430T090906_ecephys.nwb
  2204. schemaKey: Asset
  2205. schemaVersion: 0.6.3
  2206. variableMeasured:
  2207. - schemaKey: PropertyValue
  2208. value: ElectrodeGroup
  2209. - schemaKey: PropertyValue
  2210. value: ElectricalSeries
  2211. wasAttributedTo:
  2212. - age:
  2213. schemaKey: PropertyValue
  2214. unitText: ISO-8601 duration
  2215. value: P268DT32946S
  2216. valueReference:
  2217. schemaKey: PropertyValue
  2218. value: dandi:BirthReference
  2219. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  2220. identifier: San4
  2221. schemaKey: Participant
  2222. sex:
  2223. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2224. name: Male
  2225. schemaKey: SexType
  2226. species:
  2227. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2228. name: Mus musculus - House mouse
  2229. schemaKey: SpeciesType
  2230. wasGeneratedBy:
  2231. - description: Fig S4f
  2232. name: Acquisition session
  2233. schemaKey: Session
  2234. startDate: '2020-04-30T09:09:06-07:00'
  2235. - description: Metadata generated by DANDI cli
  2236. id: urn:uuid:9a4ffec8-40f4-4f99-adf7-df5b9126e741
  2237. name: Metadata generation
  2238. schemaKey: Activity
  2239. wasAssociatedWith:
  2240. - identifier: RRID:SCR_019009
  2241. name: DANDI Command Line Interface
  2242. schemaKey: Software
  2243. url: https://github.com/dandi/dandi-cli
  2244. version: 0.46.6
  2245. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2246. access:
  2247. - schemaKey: AccessRequirements
  2248. status: dandi:OpenAccess
  2249. approach:
  2250. - name: electrophysiological approach
  2251. schemaKey: ApproachType
  2252. blobDateModified: '2022-12-03T07:17:20.409115-08:00'
  2253. contentSize: 231163300
  2254. contentUrl:
  2255. - https://api.dandiarchive.org/api/assets/4f4dc90c-32df-4c94-b583-ed5ae3b76ca8/download/
  2256. - https://dandiarchive.s3.amazonaws.com/blobs/439/03c/43903cab-4274-4bec-8933-cd574cda8454
  2257. dateModified: '2022-12-03T21:52:43.981715-08:00'
  2258. digest:
  2259. dandi:dandi-etag: c056172f79ea744187677889793aafca-4
  2260. dandi:sha2-256: 5e889bc9a4464f5b777ff9bd8979acef38d0226e2df02923a3948e29fe974d64
  2261. encodingFormat: application/x-nwb
  2262. id: dandiasset:4f4dc90c-32df-4c94-b583-ed5ae3b76ca8
  2263. identifier: 4f4dc90c-32df-4c94-b583-ed5ae3b76ca8
  2264. measurementTechnique:
  2265. - name: surgical technique
  2266. schemaKey: MeasurementTechniqueType
  2267. - name: multi electrode extracellular electrophysiology recording technique
  2268. schemaKey: MeasurementTechniqueType
  2269. path: sub-San4/sub-San4_ses-20200302T142549_ecephys.nwb
  2270. schemaKey: Asset
  2271. schemaVersion: 0.6.3
  2272. variableMeasured:
  2273. - schemaKey: PropertyValue
  2274. value: ElectrodeGroup
  2275. - schemaKey: PropertyValue
  2276. value: ElectricalSeries
  2277. wasAttributedTo:
  2278. - age:
  2279. schemaKey: PropertyValue
  2280. unitText: ISO-8601 duration
  2281. value: P209DT55549S
  2282. valueReference:
  2283. schemaKey: PropertyValue
  2284. value: dandi:BirthReference
  2285. genotype: Emx1-Cre[tg/wt];Ai32[tg/wt]
  2286. identifier: San4
  2287. schemaKey: Participant
  2288. sex:
  2289. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2290. name: Male
  2291. schemaKey: SexType
  2292. species:
  2293. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2294. name: Mus musculus - House mouse
  2295. schemaKey: SpeciesType
  2296. wasGeneratedBy:
  2297. - description: Fig S4c, S4d
  2298. name: Acquisition session
  2299. schemaKey: Session
  2300. startDate: '2020-03-02T14:25:49-08:00'
  2301. - description: Metadata generated by DANDI cli
  2302. id: urn:uuid:ff954532-ec6f-4207-9b38-5e036c4f3eb7
  2303. name: Metadata generation
  2304. schemaKey: Activity
  2305. wasAssociatedWith:
  2306. - identifier: RRID:SCR_019009
  2307. name: DANDI Command Line Interface
  2308. schemaKey: Software
  2309. url: https://github.com/dandi/dandi-cli
  2310. version: 0.46.6
  2311. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2312. access:
  2313. - schemaKey: AccessRequirements
  2314. status: dandi:OpenAccess
  2315. approach:
  2316. - name: electrophysiological approach
  2317. schemaKey: ApproachType
  2318. blobDateModified: '2022-12-03T01:30:08.411542-08:00'
  2319. contentSize: 4545786230
  2320. contentUrl:
  2321. - https://api.dandiarchive.org/api/assets/edcf39cc-b351-407b-9454-3d7edb5a0d0e/download/
  2322. - https://dandiarchive.s3.amazonaws.com/blobs/c8e/f1e/c8ef1e6d-e1b0-4143-b3c0-2ead5a1ea0c6
  2323. dateModified: '2022-12-04T11:32:53.722865-08:00'
  2324. digest:
  2325. dandi:dandi-etag: 4df7ab4a2c1775fa1896f6f9c36a6afd-68
  2326. dandi:sha2-256: dfb6290e1a29dcdf36b8a3fa72223b74677edfe52bef08105d5744c57747e23e
  2327. encodingFormat: application/x-nwb
  2328. id: dandiasset:edcf39cc-b351-407b-9454-3d7edb5a0d0e
  2329. identifier: edcf39cc-b351-407b-9454-3d7edb5a0d0e
  2330. measurementTechnique:
  2331. - name: multi electrode extracellular electrophysiology recording technique
  2332. schemaKey: MeasurementTechniqueType
  2333. - name: surgical technique
  2334. schemaKey: MeasurementTechniqueType
  2335. path: sub-Rat2/sub-Rat2_ses-20200924T154006_ecephys.nwb
  2336. schemaKey: Asset
  2337. schemaVersion: 0.6.3
  2338. variableMeasured:
  2339. - schemaKey: PropertyValue
  2340. value: ElectricalSeries
  2341. - schemaKey: PropertyValue
  2342. value: ElectrodeGroup
  2343. wasAttributedTo:
  2344. - age:
  2345. schemaKey: PropertyValue
  2346. unitText: ISO-8601 duration
  2347. value: P0D
  2348. valueReference:
  2349. schemaKey: PropertyValue
  2350. value: dandi:BirthReference
  2351. genotype: nan
  2352. identifier: Rat2
  2353. schemaKey: Participant
  2354. sex:
  2355. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2356. name: Male
  2357. schemaKey: SexType
  2358. species:
  2359. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2360. name: Rattus norvegicus - Norway rat
  2361. schemaKey: SpeciesType
  2362. wasGeneratedBy:
  2363. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S21
  2364. name: Acquisition session
  2365. schemaKey: Session
  2366. startDate: '2020-09-24T15:40:06-07:00'
  2367. - description: Metadata generated by DANDI cli
  2368. id: urn:uuid:0b2d1ca4-3c63-4eeb-88fa-ffdab93e94d1
  2369. name: Metadata generation
  2370. schemaKey: Activity
  2371. wasAssociatedWith:
  2372. - identifier: RRID:SCR_019009
  2373. name: DANDI Command Line Interface
  2374. schemaKey: Software
  2375. url: https://github.com/dandi/dandi-cli
  2376. version: 0.46.6
  2377. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2378. access:
  2379. - schemaKey: AccessRequirements
  2380. status: dandi:OpenAccess
  2381. approach:
  2382. - name: electrophysiological approach
  2383. schemaKey: ApproachType
  2384. blobDateModified: '2022-12-03T05:08:17.658918-08:00'
  2385. contentSize: 4547157532
  2386. contentUrl:
  2387. - https://api.dandiarchive.org/api/assets/ac25fc93-5cd2-4a86-a4f0-80cf0fa2355e/download/
  2388. - https://dandiarchive.s3.amazonaws.com/blobs/6d2/eea/6d2eead0-dca1-4908-9fe1-0eb69d856725
  2389. dateModified: '2022-12-04T11:33:02.768478-08:00'
  2390. digest:
  2391. dandi:dandi-etag: 9359ef71769aa1d8efc85bbd9f04eeed-68
  2392. dandi:sha2-256: 6ea4d9dde233d7c53cacbcb414c0f71e6f1a13a4fbad889f122572c33253c188
  2393. encodingFormat: application/x-nwb
  2394. id: dandiasset:ac25fc93-5cd2-4a86-a4f0-80cf0fa2355e
  2395. identifier: ac25fc93-5cd2-4a86-a4f0-80cf0fa2355e
  2396. measurementTechnique:
  2397. - name: multi electrode extracellular electrophysiology recording technique
  2398. schemaKey: MeasurementTechniqueType
  2399. - name: surgical technique
  2400. schemaKey: MeasurementTechniqueType
  2401. path: sub-Rat2/sub-Rat2_ses-20200924T155523_ecephys.nwb
  2402. schemaKey: Asset
  2403. schemaVersion: 0.6.3
  2404. variableMeasured:
  2405. - schemaKey: PropertyValue
  2406. value: ElectricalSeries
  2407. - schemaKey: PropertyValue
  2408. value: ElectrodeGroup
  2409. wasAttributedTo:
  2410. - age:
  2411. schemaKey: PropertyValue
  2412. unitText: ISO-8601 duration
  2413. value: P0D
  2414. valueReference:
  2415. schemaKey: PropertyValue
  2416. value: dandi:BirthReference
  2417. genotype: nan
  2418. identifier: Rat2
  2419. schemaKey: Participant
  2420. sex:
  2421. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2422. name: Male
  2423. schemaKey: SexType
  2424. species:
  2425. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2426. name: Rattus norvegicus - Norway rat
  2427. schemaKey: SpeciesType
  2428. wasGeneratedBy:
  2429. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S23
  2430. name: Acquisition session
  2431. schemaKey: Session
  2432. startDate: '2020-09-24T15:55:23-07:00'
  2433. - description: Metadata generated by DANDI cli
  2434. id: urn:uuid:5899f156-3e51-4825-bea1-a4f68b013f64
  2435. name: Metadata generation
  2436. schemaKey: Activity
  2437. wasAssociatedWith:
  2438. - identifier: RRID:SCR_019009
  2439. name: DANDI Command Line Interface
  2440. schemaKey: Software
  2441. url: https://github.com/dandi/dandi-cli
  2442. version: 0.46.6
  2443. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2444. access:
  2445. - schemaKey: AccessRequirements
  2446. status: dandi:OpenAccess
  2447. approach:
  2448. - name: electrophysiological approach
  2449. schemaKey: ApproachType
  2450. blobDateModified: '2022-12-03T09:48:48.804595-08:00'
  2451. contentSize: 4525044634
  2452. contentUrl:
  2453. - https://api.dandiarchive.org/api/assets/0352b5a3-11e7-493a-bdc2-7573146a0321/download/
  2454. - https://dandiarchive.s3.amazonaws.com/blobs/73c/4e7/73c4e7e2-086d-441a-939b-c6035b894013
  2455. dateModified: '2022-12-05T09:36:14.690554-08:00'
  2456. digest:
  2457. dandi:dandi-etag: d6a4add933e072673de436c4ccfebb42-68
  2458. dandi:sha2-256: b3a7d6e45d87e21cc46b9f654a189380954e83b2e4158d7e3bfcd3ed2eaec24c
  2459. encodingFormat: application/x-nwb
  2460. id: dandiasset:0352b5a3-11e7-493a-bdc2-7573146a0321
  2461. identifier: 0352b5a3-11e7-493a-bdc2-7573146a0321
  2462. measurementTechnique:
  2463. - name: multi electrode extracellular electrophysiology recording technique
  2464. schemaKey: MeasurementTechniqueType
  2465. - name: surgical technique
  2466. schemaKey: MeasurementTechniqueType
  2467. path: sub-Rat1/sub-Rat1_ses-20200921T124159_ecephys.nwb
  2468. schemaKey: Asset
  2469. schemaVersion: 0.6.3
  2470. variableMeasured:
  2471. - schemaKey: PropertyValue
  2472. value: ElectricalSeries
  2473. - schemaKey: PropertyValue
  2474. value: ElectrodeGroup
  2475. wasAttributedTo:
  2476. - age:
  2477. schemaKey: PropertyValue
  2478. unitText: ISO-8601 duration
  2479. value: P0D
  2480. valueReference:
  2481. schemaKey: PropertyValue
  2482. value: dandi:BirthReference
  2483. genotype: nan
  2484. identifier: Rat1
  2485. schemaKey: Participant
  2486. sex:
  2487. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2488. name: Male
  2489. schemaKey: SexType
  2490. species:
  2491. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2492. name: Rattus norvegicus - Norway rat
  2493. schemaKey: SpeciesType
  2494. wasGeneratedBy:
  2495. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S14
  2496. name: Acquisition session
  2497. schemaKey: Session
  2498. startDate: '2020-09-21T12:41:59-07:00'
  2499. - description: Metadata generated by DANDI cli
  2500. id: urn:uuid:8b3cd8df-2423-497f-8d84-4276cf7f84f7
  2501. name: Metadata generation
  2502. schemaKey: Activity
  2503. wasAssociatedWith:
  2504. - identifier: RRID:SCR_019009
  2505. name: DANDI Command Line Interface
  2506. schemaKey: Software
  2507. url: https://github.com/dandi/dandi-cli
  2508. version: 0.46.6
  2509. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2510. access:
  2511. - schemaKey: AccessRequirements
  2512. status: dandi:OpenAccess
  2513. approach:
  2514. - name: electrophysiological approach
  2515. schemaKey: ApproachType
  2516. blobDateModified: '2022-12-03T13:44:29.889833-08:00'
  2517. contentSize: 4446996567
  2518. contentUrl:
  2519. - https://api.dandiarchive.org/api/assets/800b8c04-a7db-48bf-8902-21e31e7a55d2/download/
  2520. - https://dandiarchive.s3.amazonaws.com/blobs/230/459/230459b2-6fc2-4acf-b8c8-067c29a206de
  2521. dateModified: '2022-12-05T09:36:14.885257-08:00'
  2522. digest:
  2523. dandi:dandi-etag: 94b6309f104702b4b03b3a2cd0f49d89-67
  2524. dandi:sha2-256: c2e1c0039e4dc675fd95029c34119eb8e53f9f53567fee446bfca4a32f96c7ca
  2525. encodingFormat: application/x-nwb
  2526. id: dandiasset:800b8c04-a7db-48bf-8902-21e31e7a55d2
  2527. identifier: 800b8c04-a7db-48bf-8902-21e31e7a55d2
  2528. measurementTechnique:
  2529. - name: multi electrode extracellular electrophysiology recording technique
  2530. schemaKey: MeasurementTechniqueType
  2531. - name: surgical technique
  2532. schemaKey: MeasurementTechniqueType
  2533. path: sub-Rat1/sub-Rat1_ses-20200921T131723_ecephys.nwb
  2534. schemaKey: Asset
  2535. schemaVersion: 0.6.3
  2536. variableMeasured:
  2537. - schemaKey: PropertyValue
  2538. value: ElectricalSeries
  2539. - schemaKey: PropertyValue
  2540. value: ElectrodeGroup
  2541. wasAttributedTo:
  2542. - age:
  2543. schemaKey: PropertyValue
  2544. unitText: ISO-8601 duration
  2545. value: P0D
  2546. valueReference:
  2547. schemaKey: PropertyValue
  2548. value: dandi:BirthReference
  2549. genotype: nan
  2550. identifier: Rat1
  2551. schemaKey: Participant
  2552. sex:
  2553. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2554. name: Male
  2555. schemaKey: SexType
  2556. species:
  2557. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2558. name: Rattus norvegicus - Norway rat
  2559. schemaKey: SpeciesType
  2560. wasGeneratedBy:
  2561. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S16
  2562. name: Acquisition session
  2563. schemaKey: Session
  2564. startDate: '2020-09-21T13:17:23-07:00'
  2565. - description: Metadata generated by DANDI cli
  2566. id: urn:uuid:08ac63e0-a85b-416a-996a-ad7b9ca09626
  2567. name: Metadata generation
  2568. schemaKey: Activity
  2569. wasAssociatedWith:
  2570. - identifier: RRID:SCR_019009
  2571. name: DANDI Command Line Interface
  2572. schemaKey: Software
  2573. url: https://github.com/dandi/dandi-cli
  2574. version: 0.46.6
  2575. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2576. access:
  2577. - schemaKey: AccessRequirements
  2578. status: dandi:OpenAccess
  2579. approach:
  2580. - name: electrophysiological approach
  2581. schemaKey: ApproachType
  2582. blobDateModified: '2022-12-03T15:53:55.409994-08:00'
  2583. contentSize: 4433748584
  2584. contentUrl:
  2585. - https://api.dandiarchive.org/api/assets/25d3b2e5-e5bc-4724-90d6-fbd37c70db64/download/
  2586. - https://dandiarchive.s3.amazonaws.com/blobs/796/25c/79625ca6-c713-42b7-a806-9393f3fa9868
  2587. dateModified: '2022-12-05T09:36:16.154071-08:00'
  2588. digest:
  2589. dandi:dandi-etag: df50ee8a84d888cb0565afc635d0d9f9-67
  2590. dandi:sha2-256: 731114be8541623a9826a8294c60f3c7a902f14ac15be373981087cdbc45705e
  2591. encodingFormat: application/x-nwb
  2592. id: dandiasset:25d3b2e5-e5bc-4724-90d6-fbd37c70db64
  2593. identifier: 25d3b2e5-e5bc-4724-90d6-fbd37c70db64
  2594. measurementTechnique:
  2595. - name: multi electrode extracellular electrophysiology recording technique
  2596. schemaKey: MeasurementTechniqueType
  2597. - name: surgical technique
  2598. schemaKey: MeasurementTechniqueType
  2599. path: sub-Rat1/sub-Rat1_ses-20200921T131823_ecephys.nwb
  2600. schemaKey: Asset
  2601. schemaVersion: 0.6.3
  2602. variableMeasured:
  2603. - schemaKey: PropertyValue
  2604. value: ElectricalSeries
  2605. - schemaKey: PropertyValue
  2606. value: ElectrodeGroup
  2607. wasAttributedTo:
  2608. - age:
  2609. schemaKey: PropertyValue
  2610. unitText: ISO-8601 duration
  2611. value: P0D
  2612. valueReference:
  2613. schemaKey: PropertyValue
  2614. value: dandi:BirthReference
  2615. genotype: nan
  2616. identifier: Rat1
  2617. schemaKey: Participant
  2618. sex:
  2619. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2620. name: Male
  2621. schemaKey: SexType
  2622. species:
  2623. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2624. name: Rattus norvegicus - Norway rat
  2625. schemaKey: SpeciesType
  2626. wasGeneratedBy:
  2627. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S17
  2628. name: Acquisition session
  2629. schemaKey: Session
  2630. startDate: '2020-09-21T13:18:23-07:00'
  2631. - description: Metadata generated by DANDI cli
  2632. id: urn:uuid:c077322e-239d-4c9b-a63a-3e1ec2f149ef
  2633. name: Metadata generation
  2634. schemaKey: Activity
  2635. wasAssociatedWith:
  2636. - identifier: RRID:SCR_019009
  2637. name: DANDI Command Line Interface
  2638. schemaKey: Software
  2639. url: https://github.com/dandi/dandi-cli
  2640. version: 0.46.6
  2641. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2642. access:
  2643. - schemaKey: AccessRequirements
  2644. status: dandi:OpenAccess
  2645. approach:
  2646. - name: electrophysiological approach
  2647. schemaKey: ApproachType
  2648. blobDateModified: '2022-12-03T11:44:51.102412-08:00'
  2649. contentSize: 4524277995
  2650. contentUrl:
  2651. - https://api.dandiarchive.org/api/assets/3ae348c8-4947-401d-b19f-0dfdd3ca36ae/download/
  2652. - https://dandiarchive.s3.amazonaws.com/blobs/9e9/ca9/9e9ca926-dc14-485a-8366-8c17652db1a2
  2653. dateModified: '2022-12-05T09:36:16.004308-08:00'
  2654. digest:
  2655. dandi:dandi-etag: 9310c3a9a16e475f9cf275bb19f85286-68
  2656. dandi:sha2-256: b3f14c2644561e8ddaaae5fbc31284deaf867198dbb745cdd6efb5ca47689906
  2657. encodingFormat: application/x-nwb
  2658. id: dandiasset:3ae348c8-4947-401d-b19f-0dfdd3ca36ae
  2659. identifier: 3ae348c8-4947-401d-b19f-0dfdd3ca36ae
  2660. measurementTechnique:
  2661. - name: multi electrode extracellular electrophysiology recording technique
  2662. schemaKey: MeasurementTechniqueType
  2663. - name: surgical technique
  2664. schemaKey: MeasurementTechniqueType
  2665. path: sub-Rat1/sub-Rat1_ses-20200921T124259_ecephys.nwb
  2666. schemaKey: Asset
  2667. schemaVersion: 0.6.3
  2668. variableMeasured:
  2669. - schemaKey: PropertyValue
  2670. value: ElectricalSeries
  2671. - schemaKey: PropertyValue
  2672. value: ElectrodeGroup
  2673. wasAttributedTo:
  2674. - age:
  2675. schemaKey: PropertyValue
  2676. unitText: ISO-8601 duration
  2677. value: P0D
  2678. valueReference:
  2679. schemaKey: PropertyValue
  2680. value: dandi:BirthReference
  2681. genotype: nan
  2682. identifier: Rat1
  2683. schemaKey: Participant
  2684. sex:
  2685. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2686. name: Male
  2687. schemaKey: SexType
  2688. species:
  2689. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2690. name: Rattus norvegicus - Norway rat
  2691. schemaKey: SpeciesType
  2692. wasGeneratedBy:
  2693. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S15
  2694. name: Acquisition session
  2695. schemaKey: Session
  2696. startDate: '2020-09-21T12:42:59-07:00'
  2697. - description: Metadata generated by DANDI cli
  2698. id: urn:uuid:d2a9c9b7-0feb-4a48-8c5d-6e89b14593bc
  2699. name: Metadata generation
  2700. schemaKey: Activity
  2701. wasAssociatedWith:
  2702. - identifier: RRID:SCR_019009
  2703. name: DANDI Command Line Interface
  2704. schemaKey: Software
  2705. url: https://github.com/dandi/dandi-cli
  2706. version: 0.46.6
  2707. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2708. access:
  2709. - schemaKey: AccessRequirements
  2710. status: dandi:OpenAccess
  2711. approach:
  2712. - name: electrophysiological approach
  2713. schemaKey: ApproachType
  2714. blobDateModified: '2022-12-02T23:41:03.812846-08:00'
  2715. contentSize: 4545127591
  2716. contentUrl:
  2717. - https://api.dandiarchive.org/api/assets/38fa6e09-6b8e-4ac3-ab6b-25d0f8604af4/download/
  2718. - https://dandiarchive.s3.amazonaws.com/blobs/540/f2f/540f2f8e-2b59-43d3-9877-b42f51b43992
  2719. dateModified: '2022-12-05T09:36:23.024825-08:00'
  2720. digest:
  2721. dandi:dandi-etag: 26cfc0d7acc1f95041a634337ec2d3d3-68
  2722. dandi:sha2-256: 476da4090052ba61779f5eebbb2416a27d6a477dae2ca9742f96feb3e8a00921
  2723. encodingFormat: application/x-nwb
  2724. id: dandiasset:38fa6e09-6b8e-4ac3-ab6b-25d0f8604af4
  2725. identifier: 38fa6e09-6b8e-4ac3-ab6b-25d0f8604af4
  2726. measurementTechnique:
  2727. - name: multi electrode extracellular electrophysiology recording technique
  2728. schemaKey: MeasurementTechniqueType
  2729. - name: surgical technique
  2730. schemaKey: MeasurementTechniqueType
  2731. path: sub-Rat2/sub-Rat2_ses-20200924T153906_ecephys.nwb
  2732. schemaKey: Asset
  2733. schemaVersion: 0.6.3
  2734. variableMeasured:
  2735. - schemaKey: PropertyValue
  2736. value: ElectricalSeries
  2737. - schemaKey: PropertyValue
  2738. value: ElectrodeGroup
  2739. wasAttributedTo:
  2740. - age:
  2741. schemaKey: PropertyValue
  2742. unitText: ISO-8601 duration
  2743. value: P0D
  2744. valueReference:
  2745. schemaKey: PropertyValue
  2746. value: dandi:BirthReference
  2747. genotype: nan
  2748. identifier: Rat2
  2749. schemaKey: Participant
  2750. sex:
  2751. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2752. name: Male
  2753. schemaKey: SexType
  2754. species:
  2755. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10116
  2756. name: Rattus norvegicus - Norway rat
  2757. schemaKey: SpeciesType
  2758. wasGeneratedBy:
  2759. - description: Fig 4e, 4f, 4g, 4h, 4i, 4j, 4k, 4l, S20
  2760. name: Acquisition session
  2761. schemaKey: Session
  2762. startDate: '2020-09-24T15:39:06-07:00'
  2763. - description: Metadata generated by DANDI cli
  2764. id: urn:uuid:8bd25c27-5be2-4d43-964f-406ea05105c1
  2765. name: Metadata generation
  2766. schemaKey: Activity
  2767. wasAssociatedWith:
  2768. - identifier: RRID:SCR_019009
  2769. name: DANDI Command Line Interface
  2770. schemaKey: Software
  2771. url: https://github.com/dandi/dandi-cli
  2772. version: 0.46.6
Tip!

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

Comments

Loading...