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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:23.200000-08:00'
contentSize: 324360
contentUrl:
- https://api.dandiarchive.org/api/assets/c879482c-63e6-48da-9799-4dc3b20e1424/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d70/551/d7055193-8bdc-457c-9335-b23cc5e00169
dateModified: '2023-12-23T00:52:53.105551-08:00'
digest:
dandi:dandi-etag: f75fb733ed91d23e88bf4fc55cdba67d-1
dandi:sha2-256: 3a3591b16420f27704122545060082e53b0c3482bcab2f0dba2357efe22b93ce
encodingFormat: application/x-nwb
id: dandiasset:c879482c-63e6-48da-9799-4dc3b20e1424
identifier: c879482c-63e6-48da-9799-4dc3b20e1424
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-1ckep1j.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (7month_2950_Or2_7m.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:25.189649-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:53.105529-08:00'
id: urn:uuid:77356ec0-0e2f-4e8f-8980-7635bcc190c4
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:52.214386-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:42.280000-08:00'
contentSize: 285768
contentUrl:
- https://api.dandiarchive.org/api/assets/c551aeb9-4b51-44c3-853d-c619abd32f12/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b48/fbf/b48fbf7e-e9ce-44bd-a008-505fa7833fa0
dateModified: '2023-12-23T00:52:52.645033-08:00'
digest:
dandi:dandi-etag: 76aae45101c53d3287684d563d6f3a7f-1
dandi:sha2-256: 968e659947f748f25ae9ff5f9be187ad8f18b76ec4b991c1bd3f157541e63997
encodingFormat: application/x-nwb
id: dandiasset:c551aeb9-4b51-44c3-853d-c619abd32f12
identifier: c551aeb9-4b51-44c3-853d-c619abd32f12
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-1ivyiyb.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (Or2_6m_sorted.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:49.644403-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:52.645010-08:00'
id: urn:uuid:27d9f004-1eea-47fe-b29e-05339d4e5983
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:52.073491-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:34:49.210000-08:00'
contentSize: 989344
contentUrl:
- https://api.dandiarchive.org/api/assets/c0cc688a-bb8c-4c40-8f35-c66c48971b85/download/
- https://dandiarchive.s3.amazonaws.com/blobs/8ee/a96/8eea9607-9f6f-49d4-9038-a1dc1f1e8607
dateModified: '2023-12-23T00:52:52.476460-08:00'
digest:
dandi:dandi-etag: 10e6c4bfddbb6194c46b866c910a382e-1
dandi:sha2-256: 429653a5791acecd200c1f2fbbd6e4c773c3c2f350c0798635009c52f678556d
encodingFormat: application/x-nwb
id: dandiasset:c0cc688a-bb8c-4c40-8f35-c66c48971b85
identifier: c0cc688a-bb8c-4c40-8f35-c66c48971b85
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-15pbd0g.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (M3S2_sorted.mat kilosort2
output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:47.720151-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:52.476426-08:00'
id: urn:uuid:435431b2-a0b2-4ef8-8219-c7034069e905
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:51.454483-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:53.170000-08:00'
contentSize: 235800
contentUrl:
- https://api.dandiarchive.org/api/assets/ac632a6f-17d2-45e0-ab58-d56837290b85/download/
- https://dandiarchive.s3.amazonaws.com/blobs/abe/eb5/abeeb5af-3b5f-4a91-b699-1df771013e92
dateModified: '2023-12-23T00:52:52.962958-08:00'
digest:
dandi:dandi-etag: 5adbddac66b0be3bd540568b0b302490-1
dandi:sha2-256: e485ae161b7f2367730a7e811d7d28438d13d229ddc5701badb511181d67f271
encodingFormat: application/x-nwb
id: dandiasset:ac632a6f-17d2-45e0-ab58-d56837290b85
identifier: ac632a6f-17d2-45e0-ab58-d56837290b85
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-1c83gxr.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (Or3_6m_sorted.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:50.459282-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:52.962936-08:00'
id: urn:uuid:64bcd56f-7295-4585-9211-a3225ea4b898
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:52.168602-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:32:22.060000-08:00'
contentSize: 6475920
contentUrl:
- https://api.dandiarchive.org/api/assets/015cd48c-9dfd-4486-972c-cbf8da87c041/download/
- https://dandiarchive.s3.amazonaws.com/blobs/068/d43/068d4385-de6f-4f44-86e3-dfdc2388df9e
dateModified: '2023-12-23T00:52:52.795852-08:00'
digest:
dandi:dandi-etag: 95f47ceb36de650dcd21cded0125decd-1
dandi:sha2-256: 244f878a846f81365304293b51d70d13be72d781958ca7e2755b4d5cff4e9a33
encodingFormat: application/x-nwb
id: dandiasset:015cd48c-9dfd-4486-972c-cbf8da87c041
identifier: 015cd48c-9dfd-4486-972c-cbf8da87c041
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-18rqaiu.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (M2S2_sorted.mat kilosort2
output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:33.358131-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:52.795831-08:00'
id: urn:uuid:1b0d89b8-0952-4573-9fe2-e544f563e588
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:51.853126-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:16.200000-08:00'
contentSize: 353808
contentUrl:
- https://api.dandiarchive.org/api/assets/4f85b277-5c16-4ce2-83ac-f48884320bef/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bfe/ebd/bfeebdfa-a290-4448-8601-f08f17fed5f9
dateModified: '2023-12-23T00:52:58.231245-08:00'
digest:
dandi:dandi-etag: cac8df11a524f343021303068cfe9e78-1
dandi:sha2-256: 9100c0333fa222968b429c996b5c1e08da92983804be7c974f44d9dcaeeaae56
encodingFormat: application/x-nwb
id: dandiasset:4f85b277-5c16-4ce2-83ac-f48884320bef
identifier: 4f85b277-5c16-4ce2-83ac-f48884320bef
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-1u8n1k8.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (Development_2953_8month_Or1_8m.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:29.094293-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:58.231224-08:00'
id: urn:uuid:f4c07e55-f93c-47fb-85b7-3a48aae996f7
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:57.323343-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:16.190000-08:00'
contentSize: 292992
contentUrl:
- https://api.dandiarchive.org/api/assets/eebf46d7-ac41-4d5c-99fe-300c14c08f32/download/
- https://dandiarchive.s3.amazonaws.com/blobs/243/eaf/243eaf61-af39-4b27-bca9-b7bd8adf682b
dateModified: '2023-12-23T00:52:58.555648-08:00'
digest:
dandi:dandi-etag: be6a46261b115deb15b5240d79d56942-1
dandi:sha2-256: a04f1300869929fb55fb1b8eab0ed3d528d662f5de4a2933c31a3b6a20c481dd
encodingFormat: application/x-nwb
id: dandiasset:eebf46d7-ac41-4d5c-99fe-300c14c08f32
identifier: eebf46d7-ac41-4d5c-99fe-300c14c08f32
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-1m4ijjf.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (Development_2953_7month_Or1_7m.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:28.342153-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:58.555626-08:00'
id: urn:uuid:1ca36690-59ba-4747-8335-9561f9e40603
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:57.972961-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:23.230000-08:00'
contentSize: 304320
contentUrl:
- https://api.dandiarchive.org/api/assets/996b37d7-0c0e-4d03-8849-6aec55ebca31/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d4e/2b5/d4e2b53b-825e-408a-ad49-2f49ba20cbf8
dateModified: '2023-12-23T00:52:59.096515-08:00'
digest:
dandi:dandi-etag: 00ab056f73c8b947b4debd3b6865249e-1
dandi:sha2-256: e05bf635a631a2a5274d741b48b4c4b0c8f6900c67990551ccff50768157de1a
encodingFormat: application/x-nwb
id: dandiasset:996b37d7-0c0e-4d03-8849-6aec55ebca31
identifier: 996b37d7-0c0e-4d03-8849-6aec55ebca31
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-2pivir.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (7month_5116_Or4_7m.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:26.891604-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:59.096492-08:00'
id: urn:uuid:5710cf4d-4450-4b9c-a1ae-2c71fe6c1643
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:58.144855-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:16.210000-08:00'
contentSize: 440720
contentUrl:
- https://api.dandiarchive.org/api/assets/b98f22b9-1cf2-4f07-a3fe-228eec7c5cb0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a6d/8c0/a6d8c066-d7fb-40b8-86b8-81853434a85a
dateModified: '2023-12-23T00:52:59.318650-08:00'
digest:
dandi:dandi-etag: 42e5139f3ade90dd21290d854058bf9c-1
dandi:sha2-256: 4a8ee3899c43611fbeb3cb00f6d30d00690e23abad14a32cdca622413d097e75
encodingFormat: application/x-nwb
id: dandiasset:b98f22b9-1cf2-4f07-a3fe-228eec7c5cb0
identifier: b98f22b9-1cf2-4f07-a3fe-228eec7c5cb0
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-702tte.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (Drug_control_2953_Or1.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:29.983936-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:52:59.318628-08:00'
id: urn:uuid:f4f51579-fd86-454f-814e-de85238a41c0
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:52:58.199687-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:23.220000-08:00'
contentSize: 281280
contentUrl:
- https://api.dandiarchive.org/api/assets/e46da05c-611f-4074-9f75-fc0a44d1e6be/download/
- https://dandiarchive.s3.amazonaws.com/blobs/8ed/c89/8edc8925-c256-4ea9-9e10-71c8a47a87e6
dateModified: '2023-12-23T00:53:00.188417-08:00'
digest:
dandi:dandi-etag: 6f74554fb16b32684f32af574efe67ad-1
dandi:sha2-256: 126ceb04671c40707ba406cb766dc3c325acd7c2679e2ec3966744db0257f131
encodingFormat: application/x-nwb
id: dandiasset:e46da05c-611f-4074-9f75-fc0a44d1e6be
identifier: e46da05c-611f-4074-9f75-fc0a44d1e6be
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-90vd33.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (7month_2957_Or3_7m.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:26.086414-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:00.188394-08:00'
id: urn:uuid:c973b07a-7aee-4ab1-9f89-ebe18bcc78af
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:00.110083-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:33:18.680000-08:00'
contentSize: 2179984
contentUrl:
- https://api.dandiarchive.org/api/assets/294a21c7-1d11-4f6e-a14e-ef4d8ec027c8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/216/a79/216a7943-cd01-4b5f-aac6-de3b552c160c
dateModified: '2023-12-23T00:53:04.056324-08:00'
digest:
dandi:dandi-etag: 34e95d087159ad442ff32313d915cb7c-1
dandi:sha2-256: 1b6475ce42acf61dc9878d39e5b79101c4655b3f5ba0504d826f1877b5d1d6cc
encodingFormat: application/x-nwb
id: dandiasset:294a21c7-1d11-4f6e-a14e-ef4d8ec027c8
identifier: 294a21c7-1d11-4f6e-a14e-ef4d8ec027c8
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-w5m5b3.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (M3S1_sorted.mat kilosort2
output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:43.763917-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:04.056279-08:00'
id: urn:uuid:93d6499c-a13e-4f67-bcaf-174c87319b2a
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:01.914062-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:06.250000-08:00'
contentSize: 226584
contentUrl:
- https://api.dandiarchive.org/api/assets/1df9451b-80fb-449c-af23-7216c193bbae/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e21/811/e2181186-2672-4d26-8f09-ad6d7b5fb5ef
dateModified: '2023-12-23T00:53:04.811706-08:00'
digest:
dandi:dandi-etag: 86288a0220f1503ea3c28d17f8ef58a0-1
dandi:sha2-256: 9b1d84eeb3f3c01f7720ce2c7905325a0f66c1d048a3cf0e1beb1c49fca1561d
encodingFormat: application/x-nwb
id: dandiasset:1df9451b-80fb-449c-af23-7216c193bbae
identifier: 1df9451b-80fb-449c-af23-7216c193bbae
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-ze8ua9.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (Development_2953_6month_Or1_6m.mat
kilosort2 output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:27.698400-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:04.811680-08:00'
id: urn:uuid:179048f4-7673-446e-9371-63946b746466
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:03.789257-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:35:44.350000-08:00'
contentSize: 713344
contentUrl:
- https://api.dandiarchive.org/api/assets/30303be3-32be-4691-911c-487db2766db4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5f5/362/5f536213-9c2e-4381-9c52-4802f5340c11
dateModified: '2023-12-23T00:53:05.066152-08:00'
digest:
dandi:dandi-etag: e56ce4cbaf0e3d25537942287bb4c8b4-1
dandi:sha2-256: e16a7fb87800f47dd7d26938eee03b059496f324a3adb8c7dee1c658839cd988
encodingFormat: application/x-nwb
id: dandiasset:30303be3-32be-4691-911c-487db2766db4
identifier: 30303be3-32be-4691-911c-487db2766db4
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-zm6has.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (M1S1_sorted.mat kilosort2
output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:30.941786-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:05.066129-08:00'
id: urn:uuid:78178d17-b273-4c27-be35-d00bc0de2839
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:04.012970-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:06.240000-08:00'
contentSize: 503528
contentUrl:
- https://api.dandiarchive.org/api/assets/87173d6a-cfe8-422b-b8e1-7207173f7f50/download/
- https://dandiarchive.s3.amazonaws.com/blobs/297/190/297190a0-1eed-4ad7-9be6-608885ca8b88
dateModified: '2023-12-23T00:53:04.583426-08:00'
digest:
dandi:dandi-etag: 105b7bd9ef32628afe66defe4bb18ceb-1
dandi:sha2-256: 9747ecb8443c2afa37ffe89f7662bc5442ed16990b18abab1b669ae5b73a9e78
encodingFormat: application/x-nwb
id: dandiasset:87173d6a-cfe8-422b-b8e1-7207173f7f50
identifier: 87173d6a-cfe8-422b-b8e1-7207173f7f50
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: spike sorting technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-001_obj-wrl2d3.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: Units
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Intrinsic activity in human brain organoid slice (M1S2_sorted.mat kilosort2
output).
identifier: '001'
name: '001'
schemaKey: Session
startDate: '2023-11-27T16:09:32.301944-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:04.583402-08:00'
id: urn:uuid:21d4f9ab-37c5-4299-b22e-9c497e008cb9
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:03.475089-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:48.960000-08:00'
contentSize: 1899530676
contentUrl:
- https://api.dandiarchive.org/api/assets/99fe7873-f6e1-4c04-b6a5-f99849ddb5d1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e6a/e29/e6ae29d7-66ea-49fd-a8c7-e9f3e2bf4740
dateModified: '2023-12-23T00:53:18.604016-08:00'
digest:
dandi:dandi-etag: 1951bf77dda994cc3e0a12ff97044908-29
dandi:sha2-256: 89274309d692a5870db80541df55fb6a635e2a42021a807f0ce2eafa93a691b4
encodingFormat: application/x-nwb
id: dandiasset:99fe7873-f6e1-4c04-b6a5-f99849ddb5d1
identifier: 99fe7873-f6e1-4c04-b6a5-f99849ddb5d1
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-10ij0mg_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:18.603991-08:00'
id: urn:uuid:1f2ce7f4-66a6-4a18-9d37-77f396a4cf05
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:18.495239-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:42.270000-08:00'
contentSize: 1992039521
contentUrl:
- https://api.dandiarchive.org/api/assets/75b799a7-6839-4a11-8e9a-93afc9feb6d1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/fb5/cfd/fb5cfd75-1a0b-4fbb-be63-b0c81de6442e
dateModified: '2023-12-23T00:53:28.807388-08:00'
digest:
dandi:dandi-etag: d8e3ea926c8c104a3b488cd65588f9bf-30
dandi:sha2-256: 3d2ab9f8bd6dd89a0fb308a14ba5f7f402bf7ae89e6ba2f8be95a2b3ec62ddb5
encodingFormat: application/x-nwb
id: dandiasset:75b799a7-6839-4a11-8e9a-93afc9feb6d1
identifier: 75b799a7-6839-4a11-8e9a-93afc9feb6d1
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-195c1dk_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:28.807363-08:00'
id: urn:uuid:b1b0e095-2dcf-47da-b566-e7cfb844abb5
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:28.436218-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:37:19.720000-08:00'
contentSize: 2052342901
contentUrl:
- https://api.dandiarchive.org/api/assets/7f23ced9-2a65-43b5-8cc1-2c1eb6cfdfd4/download/
- https://dandiarchive.s3.amazonaws.com/blobs/715/eef/715eefc8-79b9-4436-bd3a-1ab951a0c460
dateModified: '2023-12-23T00:53:28.264028-08:00'
digest:
dandi:dandi-etag: 8bc2460a236984d5ccf9f82ca5a09f84-31
dandi:sha2-256: 8c4c246070c759afd2dac2d42caf3116b5eb858ba7e88e6c398dac6523fa0fe9
encodingFormat: application/x-nwb
id: dandiasset:7f23ced9-2a65-43b5-8cc1-2c1eb6cfdfd4
identifier: 7f23ced9-2a65-43b5-8cc1-2c1eb6cfdfd4
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-13gb78s_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:28.264005-08:00'
id: urn:uuid:0ee3054d-7a65-4358-8c4a-7b158bb6f16c
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:28.130143-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:23.180000-08:00'
contentSize: 2077946050
contentUrl:
- https://api.dandiarchive.org/api/assets/2ffb702a-773e-4ab5-bb02-b9dc9e108799/download/
- https://dandiarchive.s3.amazonaws.com/blobs/752/759/7527594a-39bf-424c-87ef-786f0e8f31e3
dateModified: '2023-12-23T00:53:29.152736-08:00'
digest:
dandi:dandi-etag: 29af2be861f08e07aa72cf4e5a9a5d58-31
dandi:sha2-256: 814c6949a511fdb5bc77ba2109c0e1d8f83492ce184c039d387f83049e0a6210
encodingFormat: application/x-nwb
id: dandiasset:2ffb702a-773e-4ab5-bb02-b9dc9e108799
identifier: 2ffb702a-773e-4ab5-bb02-b9dc9e108799
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1cs0t8m_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:53:29.152712-08:00'
id: urn:uuid:47682298-9bd0-494a-83c6-125cf8c9dacc
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:53:28.770721-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:38:02.010000-08:00'
contentSize: 1918951487
contentUrl:
- https://api.dandiarchive.org/api/assets/431513f6-ae87-4190-8e67-9552607e91ab/download/
- https://dandiarchive.s3.amazonaws.com/blobs/dde/9af/dde9afe8-abe6-455a-b5cf-ed575e63c742
dateModified: '2023-12-23T01:24:55.184303-08:00'
digest:
dandi:dandi-etag: 276fa3aa872ed9a03400966062b9c018-29
dandi:sha2-256: 9d6fcede31c7b3cf7dc9c4699e5b514b4c2d6daefe324cf736093303250e9032
encodingFormat: application/x-nwb
id: dandiasset:431513f6-ae87-4190-8e67-9552607e91ab
identifier: 431513f6-ae87-4190-8e67-9552607e91ab
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1e5gdym_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T01:24:55.184253-08:00'
id: urn:uuid:5c867215-254d-4d9c-8baa-ea792fb00d1e
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T01:24:55.042308-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:13.420000-08:00'
contentSize: 2001701300
contentUrl:
- https://api.dandiarchive.org/api/assets/39a94bc5-faef-4721-9ec7-10739dc88f63/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e93/546/e935460d-a9db-4509-afda-1ede1715843b
dateModified: '2023-12-23T01:26:22.210791-08:00'
digest:
dandi:dandi-etag: 28e6ae762684807f99607903bb951583-30
dandi:sha2-256: 9917816d488e39b54502d6404c008e3dd912310e5013b146d8acfb579cdd2a3f
encodingFormat: application/x-nwb
id: dandiasset:39a94bc5-faef-4721-9ec7-10739dc88f63
identifier: 39a94bc5-faef-4721-9ec7-10739dc88f63
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1q4jnyp_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T01:26:22.210764-08:00'
id: urn:uuid:a9ef5a4e-3d84-4bd7-856e-dbd7b4f22488
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T01:26:21.949239-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:26.180000-08:00'
contentSize: 1883111557
contentUrl:
- https://api.dandiarchive.org/api/assets/01d8d47c-a215-4d8b-b47e-21e23ce643a1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c72/f8e/c72f8e7c-3fc8-4c58-9ae8-ddb343efa69c
dateModified: '2023-12-23T01:55:15.363569-08:00'
digest:
dandi:dandi-etag: f80974d80e0a14af0564a0d71a8a0b3a-29
dandi:sha2-256: 81372fd5db48526370724b8c273687f06e81be89fa09cd9eedebaa97d6796eba
encodingFormat: application/x-nwb
id: dandiasset:01d8d47c-a215-4d8b-b47e-21e23ce643a1
identifier: 01d8d47c-a215-4d8b-b47e-21e23ce643a1
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1yigkds_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T01:55:15.363547-08:00'
id: urn:uuid:05737657-8a7b-4cd0-80b9-e5820e35bcc7
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T01:55:15.263878-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:32.120000-08:00'
contentSize: 1918951487
contentUrl:
- https://api.dandiarchive.org/api/assets/583168f1-6e9c-4b31-8a80-db4ff6d4f8b6/download/
- https://dandiarchive.s3.amazonaws.com/blobs/120/9b2/1209b2b4-a1fe-48fa-b469-a846062b3d01
dateModified: '2023-12-23T02:30:31.211851-08:00'
digest:
dandi:dandi-etag: d2b36af59d6594ead6e0347ac0a142db-29
dandi:sha2-256: 1db7e9b2f15b66214dd18a57c38ef0a689074236d1d02f8f58cae4a08fa4ebca
encodingFormat: application/x-nwb
id: dandiasset:583168f1-6e9c-4b31-8a80-db4ff6d4f8b6
identifier: 583168f1-6e9c-4b31-8a80-db4ff6d4f8b6
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-7c50zw_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T02:30:31.211829-08:00'
id: urn:uuid:5c452f78-9ba6-4e0b-bd5c-6cdcc00813de
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T02:30:31.108384-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:06.220000-08:00'
contentSize: 4186303737
contentUrl:
- https://api.dandiarchive.org/api/assets/3e0e4d6d-393f-4a17-993e-aa97ed332940/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c36/a7c/c36a7cd5-c8e1-4f1d-bfaf-396361b33d32
dateModified: '2023-12-23T01:58:41.408238-08:00'
digest:
dandi:dandi-etag: eedc9c7ccc797c4cc1c790185db7e410-63
dandi:sha2-256: 08b5dbe1929aefcc21c5ac602ed851ee0130ef25c2c24cf7996315eacb29f053
encodingFormat: application/x-nwb
id: dandiasset:3e0e4d6d-393f-4a17-993e-aa97ed332940
identifier: 3e0e4d6d-393f-4a17-993e-aa97ed332940
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1ywxnj8_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T01:58:41.408213-08:00'
id: urn:uuid:8a9177a0-8463-4e0c-9689-504c8646fdff
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T01:58:41.309210-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:37:52-08:00'
contentSize: 2077946050
contentUrl:
- https://api.dandiarchive.org/api/assets/956ddb28-d220-49b8-8ea0-1b90be44ae2b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/abf/286/abf2866d-8082-4986-af1e-247693a5a082
dateModified: '2023-12-23T03:05:57.449576-08:00'
digest:
dandi:dandi-etag: 37e1da9922b14163f8fce19910332751-31
dandi:sha2-256: 7953dcf9ed82438f5241e3e9db503bf9c757e614e2c17574545084fdf0670227
encodingFormat: application/x-nwb
id: dandiasset:956ddb28-d220-49b8-8ea0-1b90be44ae2b
identifier: 956ddb28-d220-49b8-8ea0-1b90be44ae2b
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-at6hmv_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T03:05:57.449553-08:00'
id: urn:uuid:4199205c-a529-4314-9806-c8e03ecbb34b
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T03:05:57.348000-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:35:44.320000-08:00'
contentSize: 10508501887
contentUrl:
- https://api.dandiarchive.org/api/assets/a9dc4b61-d71c-4506-8cfd-34732f6be5ad/download/
- https://dandiarchive.s3.amazonaws.com/blobs/de4/320/de4320f9-39e5-4de4-b24f-4f16b926cb19
dateModified: '2023-12-23T00:54:05.013035-08:00'
digest:
dandi:dandi-etag: 38358e214f4ec308296ae3804d506dc1-157
dandi:sha2-256: 8dbd4d944691282ec14f9e6e9ce51857a27d017a6d5086281678e96d28e01c75
encodingFormat: application/x-nwb
id: dandiasset:a9dc4b61-d71c-4506-8cfd-34732f6be5ad
identifier: a9dc4b61-d71c-4506-8cfd-34732f6be5ad
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-15bpqpa_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T00:54:05.013013-08:00'
id: urn:uuid:5ade2d8f-e3b7-4516-a4b0-12a57ff63222
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T00:54:04.898087-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:37:30.530000-08:00'
contentSize: 2063385171
contentUrl:
- https://api.dandiarchive.org/api/assets/142ba7c3-c2b3-4691-89b7-43c01f3c6e1d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/253/bcc/253bcc13-667a-449d-bcc1-e27031e2e360
dateModified: '2023-12-23T03:14:05.633799-08:00'
digest:
dandi:dandi-etag: 0402429c9079faf4857bd0442d351563-31
dandi:sha2-256: f99680b96ad8d6afbc9b41d301bf741d6eaf6ed6557d8ec14e1368090a7a93bc
encodingFormat: application/x-nwb
id: dandiasset:142ba7c3-c2b3-4691-89b7-43c01f3c6e1d
identifier: 142ba7c3-c2b3-4691-89b7-43c01f3c6e1d
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-cjtijx_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T03:14:05.633778-08:00'
id: urn:uuid:7ea92455-36c7-45d1-a1eb-c340db2cd3e7
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T03:14:05.532733-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:37:41-08:00'
contentSize: 2001701300
contentUrl:
- https://api.dandiarchive.org/api/assets/57cbde01-c57b-4440-970f-058d9d5b9e56/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1ba/f50/1baf50b7-de10-441f-a276-c3861fdbee52
dateModified: '2023-12-23T03:43:10.645523-08:00'
digest:
dandi:dandi-etag: f76c12b17223513a1479608ef4ac751f-30
dandi:sha2-256: 0688cbc6979b185a74efcbb3cb4070807884ad7604f04934ceda6f0c25adad3d
encodingFormat: application/x-nwb
id: dandiasset:57cbde01-c57b-4440-970f-058d9d5b9e56
identifier: 57cbde01-c57b-4440-970f-058d9d5b9e56
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-en3uzn_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T03:43:10.645501-08:00'
id: urn:uuid:532058fa-3a87-41dd-b608-a0ed0caa45da
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T03:43:10.532369-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:37:08.970000-08:00'
contentSize: 1905070308
contentUrl:
- https://api.dandiarchive.org/api/assets/6a9e4623-b397-4be8-a61b-327d463b8e72/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5eb/abc/5ebabc1e-78a5-4aaa-94db-f583961ce094
dateModified: '2023-12-23T03:46:43.149425-08:00'
digest:
dandi:dandi-etag: 1da879077904ba74ee032a0eca49a73c-29
dandi:sha2-256: 9dde0286d69f6cec6a0b20390d7891f7ca71d23b5fedaf5bfa1adb62e6615ea9
encodingFormat: application/x-nwb
id: dandiasset:6a9e4623-b397-4be8-a61b-327d463b8e72
identifier: 6a9e4623-b397-4be8-a61b-327d463b8e72
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-fvpkkt_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T03:46:43.149403-08:00'
id: urn:uuid:5e9df6dd-5f77-4bcd-967f-92ecb05d32ad
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T03:46:43.048348-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:30:53.140000-08:00'
contentSize: 2086297303
contentUrl:
- https://api.dandiarchive.org/api/assets/fdc32930-fd65-4d7d-a4dd-67342db5ad2c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3b0/3ba/3b03ba42-c774-4935-9e8b-76ddc8972914
dateModified: '2023-12-23T03:49:12.599440-08:00'
digest:
dandi:dandi-etag: 6a24fd11015508d60a31aaab858c01b2-32
dandi:sha2-256: f69f5b9d7c6eccdaca896c6eb5dc79ba7bc9a8a14339bf908115fb37347f55c7
encodingFormat: application/x-nwb
id: dandiasset:fdc32930-fd65-4d7d-a4dd-67342db5ad2c
identifier: fdc32930-fd65-4d7d-a4dd-67342db5ad2c
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-hom2cn_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T03:49:12.599418-08:00'
id: urn:uuid:7a3f1db3-5df3-4761-b326-efefcc1bada5
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T03:49:12.491439-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:16.180000-08:00'
contentSize: 1902722371
contentUrl:
- https://api.dandiarchive.org/api/assets/6e2c48ba-8881-44f3-a23d-4560c2a178fe/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b95/0bc/b950bc13-4134-45bb-b623-287ce63f41be
dateModified: '2023-12-23T04:18:18.748066-08:00'
digest:
dandi:dandi-etag: 203b3bb19c9b8339dc5a725e21add1f1-29
dandi:sha2-256: e6788a8ac22099c7b818b6758ca440d2fedcdeff38a8135915aabc34552a74d4
encodingFormat: application/x-nwb
id: dandiasset:6e2c48ba-8881-44f3-a23d-4560c2a178fe
identifier: 6e2c48ba-8881-44f3-a23d-4560c2a178fe
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-oqeor8_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T04:18:18.748039-08:00'
id: urn:uuid:69ab1298-6fe8-4b55-a017-a18161c1e193
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T04:18:18.639971-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:58.990000-08:00'
contentSize: 1910675103
contentUrl:
- https://api.dandiarchive.org/api/assets/fa317b31-aeeb-459a-a12c-6fafad0e72ee/download/
- https://dandiarchive.s3.amazonaws.com/blobs/37e/b44/37eb4480-0ca5-4b3f-aab1-a071a8b04d98
dateModified: '2023-12-23T04:49:46.639388-08:00'
digest:
dandi:dandi-etag: 2ede90d75829e2f64f2b84017207cfe3-29
dandi:sha2-256: 029a5af7dd0b7ed67fc836a0037a4ab70a4d1f99d43de81567c03f18ee2f802a
encodingFormat: application/x-nwb
id: dandiasset:fa317b31-aeeb-459a-a12c-6fafad0e72ee
identifier: fa317b31-aeeb-459a-a12c-6fafad0e72ee
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-skejyf_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T04:49:46.639366-08:00'
id: urn:uuid:1920488b-0608-4aa6-93f2-03d710bb3246
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T04:49:46.531068-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:36:38.960000-08:00'
contentSize: 2433881300
contentUrl:
- https://api.dandiarchive.org/api/assets/a152ea8c-f828-4ea9-8b58-5edbb93f20a8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c4d/2e4/c4d2e4bb-e08b-4e35-847f-97e9f14751f5
dateModified: '2023-12-23T05:22:08.871451-08:00'
digest:
dandi:dandi-etag: 967eb5615e84c84ddb97870bbe9dc101-37
dandi:sha2-256: f6c9bc9d686dacdf71719de307c3cc6e2bc9164290f56bba3a39c76aee13f215
encodingFormat: application/x-nwb
id: dandiasset:a152ea8c-f828-4ea9-8b58-5edbb93f20a8
identifier: a152ea8c-f828-4ea9-8b58-5edbb93f20a8
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-zvgjcc_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T05:22:08.871429-08:00'
id: urn:uuid:041ff43a-31c0-4e6d-937d-2d66f6668ed2
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T05:22:08.768570-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:34:49.210000-08:00'
contentSize: 17246205000
contentUrl:
- https://api.dandiarchive.org/api/assets/209fccc1-79d3-4981-9123-b85444bece8c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cb5/dd4/cb5dd4a2-9cf2-4965-8e60-ce55d6a79f9a
dateModified: '2023-12-23T01:26:37.010873-08:00'
digest:
dandi:dandi-etag: 3b938e6e8b2c015220f5b94a3cddbe30-257
dandi:sha2-256: d18e9b3f603fb08c490707a8d8ca45a5c71bf71fc95543aad76c9d09f1d8e6f3
encodingFormat: application/x-nwb
id: dandiasset:209fccc1-79d3-4981-9123-b85444bece8c
identifier: 209fccc1-79d3-4981-9123-b85444bece8c
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1kcinv8_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T01:26:37.010846-08:00'
id: urn:uuid:1acb60a0-1011-48d7-881a-e2e471322b4b
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T01:26:36.846301-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:33:18.660000-08:00'
contentSize: 10821851570
contentUrl:
- https://api.dandiarchive.org/api/assets/552ee8bb-1801-44f4-b2f3-fa39ae27c2c1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5fc/9ba/5fc9ba4d-48fd-4d9a-9c66-f369bcfd6e42
dateModified: '2023-12-23T04:15:03.518195-08:00'
digest:
dandi:dandi-etag: a1c74a4efb68488095f4fb5825cc1495-162
dandi:sha2-256: 653296c968f1d6ae6a0261510991989f7ec6c131fcb6d33de547087fcfa522f0
encodingFormat: application/x-nwb
id: dandiasset:552ee8bb-1801-44f4-b2f3-fa39ae27c2c1
identifier: 552ee8bb-1801-44f4-b2f3-fa39ae27c2c1
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-m6lpfz_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T04:15:03.518173-08:00'
id: urn:uuid:ab3026c3-218b-4a96-831a-51032451b221
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T04:15:03.411743-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:39:52.420000-08:00'
contentSize: 21014152609
contentUrl:
- https://api.dandiarchive.org/api/assets/04b89d5d-d03e-4038-b75e-ba2dc5e2610d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/368/28d/36828d92-1207-4686-99b1-2ac4117db98e
dateModified: '2023-12-23T01:29:26.653625-08:00'
digest:
dandi:dandi-etag: e80d3ed8a56fe16bb561f7d1b85e171f-314
dandi:sha2-256: 4ce8ad79ad7bc95be570b2b093ff0ed8b212bca7b14777cc4ac3214f61f3b1e5
encodingFormat: application/x-nwb
id: dandiasset:04b89d5d-d03e-4038-b75e-ba2dc5e2610d
identifier: 04b89d5d-d03e-4038-b75e-ba2dc5e2610d
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-1wcxx1y_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T01:29:26.653602-08:00'
id: urn:uuid:7a61ebd4-b5db-4c4b-bbcc-4e7a05aa1066
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T01:29:26.548980-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: electrophysiological approach
schemaKey: ApproachType
blobDateModified: '2023-12-23T00:32:22.020000-08:00'
contentSize: 16894892756
contentUrl:
- https://api.dandiarchive.org/api/assets/b96b962d-fd6f-4249-b075-d87d2f67728c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/a86/d3f/a86d3fc5-3bf4-4234-97d5-4609ddc45b42
dateModified: '2023-12-23T04:25:32.041404-08:00'
digest:
dandi:dandi-etag: 86aea6e25ce5500abb29d317f4606da9-252
dandi:sha2-256: 10514538f2b6e7a3a609eebb2930e2ab74003d3e34690656f00f2f265c191df9
encodingFormat: application/x-nwb
id: dandiasset:b96b962d-fd6f-4249-b075-d87d2f67728c
identifier: b96b962d-fd6f-4249-b075-d87d2f67728c
keywords:
- extracellular
- ephys
- maxwell
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: multi electrode extracellular electrophysiology recording technique
schemaKey: MeasurementTechniqueType
path: sub-U/sub-U_ses-20231119T113000_obj-paunmv_ecephys.nwb
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: ElectrodeGroup
- schemaKey: PropertyValue
value: ElectricalSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D/P100Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: U
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9606
name: Homo sapiens - Human
schemaKey: SpeciesType
wasGeneratedBy:
- description: Auto-generated by neuroconv
name: Acquisition session
schemaKey: Session
startDate: '2023-11-19T11:30:00-08:00'
- description: Metadata generated by DANDI cli
endDate: '2023-12-23T04:25:32.041381-08:00'
id: urn:uuid:5917d9d8-843f-44ce-9f66-fcaceb72fb2d
name: Metadata generation
schemaKey: Activity
startDate: '2023-12-23T04:25:31.910361-08:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.56.0
Tip!
Press p or to see the previous file or,
n or to see the next file