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 77 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:EmbargoedAccess
  5. approach:
  6. - name: electrophysiological approach
  7. schemaKey: ApproachType
  8. blobDateModified: '2025-04-23T14:44:51.709502-04:00'
  9. contentSize: 33979648
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/931af49d-2755-4402-b329-1139ba120cda/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/a1a/37c/a1a37c68-6501-4235-9483-df5f09c843c6
  13. dateModified: '2025-04-23T15:32:48.717422-04:00'
  14. digest:
  15. dandi:dandi-etag: f73c49c88ea37bcbcb04b92329f8f976-1
  16. dandi:sha2-256: 548d31ba8352b6038a2f5bb10a8ed2bbe2d80e0919bcc05a9fd6252f7ce50b3e
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:931af49d-2755-4402-b329-1139ba120cda
  19. identifier: 931af49d-2755-4402-b329-1139ba120cda
  20. keywords:
  21. - mouse
  22. - intracellular recording
  23. - channelrhodopsins
  24. - pathway tracing
  25. - auditory cortex
  26. - auditory thalamus
  27. - medial geniculate
  28. - inferior colliculus
  29. - brachium of the inferior colliculus
  30. - cochlear nucleus
  31. - dorsal cochlear nucleus
  32. - AAV
  33. - synaptic potentials
  34. - optogenetics
  35. measurementTechnique:
  36. - name: current clamp technique
  37. schemaKey: MeasurementTechniqueType
  38. path: sub-CRH-001/sub-CRH-001_ses-HK-CRH-Cre~2024-10-16~S00C01_icephys.nwb
  39. schemaKey: Asset
  40. schemaVersion: 0.6.9
  41. variableMeasured:
  42. - schemaKey: PropertyValue
  43. value: CurrentClampStimulusSeries
  44. - schemaKey: PropertyValue
  45. value: CurrentClampSeries
  46. wasAttributedTo:
  47. - age:
  48. schemaKey: PropertyValue
  49. unitText: ISO-8601 duration
  50. value: P4DT49132.232921S
  51. valueReference:
  52. schemaKey: PropertyValue
  53. value: dandi:BirthReference
  54. genotype: hemi
  55. identifier: CRH-001
  56. schemaKey: Participant
  57. sex:
  58. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  59. name: Male
  60. schemaKey: SexType
  61. species:
  62. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  63. name: Mus musculus - House mouse
  64. schemaKey: SpeciesType
  65. wasGeneratedBy:
  66. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  67. Sliced thalamus/cortex cold
  68. NA 3334702'
  69. identifier: HK_CRH-Cre~2024.10.16~S00C01
  70. name: HK_CRH-Cre~2024.10.16~S00C01
  71. schemaKey: Session
  72. startDate: '2024-10-16T13:38:52.232921-04:00'
  73. - description: Metadata generated by DANDI cli
  74. endDate: '2025-04-23T15:32:48.717410-04:00'
  75. id: urn:uuid:6a2f835d-3b4c-414c-b28d-0b15d4eb3485
  76. name: Metadata generation
  77. schemaKey: Activity
  78. startDate: '2025-04-23T15:32:48.701197-04:00'
  79. wasAssociatedWith:
  80. - identifier: RRID:SCR_019009
  81. name: DANDI Command Line Interface
  82. schemaKey: Software
  83. url: https://github.com/dandi/dandi-cli
  84. version: 0.67.3
  85. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  86. access:
  87. - schemaKey: AccessRequirements
  88. status: dandi:EmbargoedAccess
  89. approach:
  90. - name: electrophysiological approach
  91. schemaKey: ApproachType
  92. blobDateModified: '2025-04-23T14:45:12.397975-04:00'
  93. contentSize: 33979648
  94. contentUrl:
  95. - https://api.dandiarchive.org/api/assets/bcdde8fb-fcf3-44bd-a8a0-7d7781834466/download/
  96. - https://dandiarchive.s3.amazonaws.com/blobs/b31/d23/b31d23d8-d428-4f4f-911e-0eda0b2851d1
  97. dateModified: '2025-04-23T15:32:48.759574-04:00'
  98. digest:
  99. dandi:dandi-etag: a5b249e80ee8785e1308e7c2fbe2178c-1
  100. dandi:sha2-256: a2923c02d26a3eb04fe875d8b29f3a877749885acd69c29fb984d16af167e0ad
  101. encodingFormat: application/x-nwb
  102. id: dandiasset:bcdde8fb-fcf3-44bd-a8a0-7d7781834466
  103. identifier: bcdde8fb-fcf3-44bd-a8a0-7d7781834466
  104. keywords:
  105. - mouse
  106. - intracellular recording
  107. - channelrhodopsins
  108. - pathway tracing
  109. - auditory cortex
  110. - auditory thalamus
  111. - medial geniculate
  112. - inferior colliculus
  113. - brachium of the inferior colliculus
  114. - cochlear nucleus
  115. - dorsal cochlear nucleus
  116. - AAV
  117. - synaptic potentials
  118. - optogenetics
  119. measurementTechnique:
  120. - name: current clamp technique
  121. schemaKey: MeasurementTechniqueType
  122. path: sub-CRH-002/sub-CRH-002_ses-HK-CRH-Cre~2024-10-18~S00C01_icephys.nwb
  123. schemaKey: Asset
  124. schemaVersion: 0.6.9
  125. variableMeasured:
  126. - schemaKey: PropertyValue
  127. value: CurrentClampStimulusSeries
  128. - schemaKey: PropertyValue
  129. value: CurrentClampSeries
  130. wasAttributedTo:
  131. - age:
  132. schemaKey: PropertyValue
  133. unitText: ISO-8601 duration
  134. value: P999DT44874.671698S
  135. valueReference:
  136. schemaKey: PropertyValue
  137. value: dandi:BirthReference
  138. genotype: hemi
  139. identifier: CRH-002
  140. schemaKey: Participant
  141. sex:
  142. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  143. name: Male
  144. schemaKey: SexType
  145. species:
  146. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  147. name: Mus musculus - House mouse
  148. schemaKey: SpeciesType
  149. wasGeneratedBy:
  150. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  151. Sliced CN and thalamus WARM'
  152. identifier: HK_CRH-Cre~2024.10.18~S00C01
  153. name: HK_CRH-Cre~2024.10.18~S00C01
  154. schemaKey: Session
  155. startDate: '2024-10-18T13:27:54.671698-04:00'
  156. - description: Metadata generated by DANDI cli
  157. endDate: '2025-04-23T15:32:48.759564-04:00'
  158. id: urn:uuid:27037601-60e0-42fa-88ad-a31bd6129529
  159. name: Metadata generation
  160. schemaKey: Activity
  161. startDate: '2025-04-23T15:32:48.757742-04:00'
  162. wasAssociatedWith:
  163. - identifier: RRID:SCR_019009
  164. name: DANDI Command Line Interface
  165. schemaKey: Software
  166. url: https://github.com/dandi/dandi-cli
  167. version: 0.67.3
  168. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  169. access:
  170. - schemaKey: AccessRequirements
  171. status: dandi:EmbargoedAccess
  172. approach:
  173. - name: electrophysiological approach
  174. schemaKey: ApproachType
  175. blobDateModified: '2025-04-23T14:44:50.155909-04:00'
  176. contentSize: 33979648
  177. contentUrl:
  178. - https://api.dandiarchive.org/api/assets/f8527fc7-d774-473f-912d-c43d5b8aac9b/download/
  179. - https://dandiarchive.s3.amazonaws.com/blobs/d5c/571/d5c571ab-6df2-48b9-98d5-101ef5013876
  180. dateModified: '2025-04-23T15:32:48.779450-04:00'
  181. digest:
  182. dandi:dandi-etag: ae430f8ea7bfc5d741579ca42a6d81ce-1
  183. dandi:sha2-256: f81455f684e5134c63d90f67a5a40bf8bcd02b249156d121a069931de20e126c
  184. encodingFormat: application/x-nwb
  185. id: dandiasset:f8527fc7-d774-473f-912d-c43d5b8aac9b
  186. identifier: f8527fc7-d774-473f-912d-c43d5b8aac9b
  187. keywords:
  188. - mouse
  189. - intracellular recording
  190. - channelrhodopsins
  191. - pathway tracing
  192. - auditory cortex
  193. - auditory thalamus
  194. - medial geniculate
  195. - inferior colliculus
  196. - brachium of the inferior colliculus
  197. - cochlear nucleus
  198. - dorsal cochlear nucleus
  199. - AAV
  200. - synaptic potentials
  201. - optogenetics
  202. measurementTechnique:
  203. - name: current clamp technique
  204. schemaKey: MeasurementTechniqueType
  205. path: sub-CRH-001/sub-CRH-001_ses-HK-CRH-Cre~2024-10-16~S00C00_icephys.nwb
  206. schemaKey: Asset
  207. schemaVersion: 0.6.9
  208. variableMeasured:
  209. - schemaKey: PropertyValue
  210. value: CurrentClampStimulusSeries
  211. - schemaKey: PropertyValue
  212. value: CurrentClampSeries
  213. wasAttributedTo:
  214. - age:
  215. schemaKey: PropertyValue
  216. unitText: ISO-8601 duration
  217. value: P4DT49132.232921S
  218. valueReference:
  219. schemaKey: PropertyValue
  220. value: dandi:BirthReference
  221. genotype: hemi
  222. identifier: CRH-001
  223. schemaKey: Participant
  224. sex:
  225. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  226. name: Male
  227. schemaKey: SexType
  228. species:
  229. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  230. name: Mus musculus - House mouse
  231. schemaKey: SpeciesType
  232. wasGeneratedBy:
  233. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  234. Sliced thalamus/cortex cold
  235. NA 3334702'
  236. identifier: HK_CRH-Cre~2024.10.16~S00C00
  237. name: HK_CRH-Cre~2024.10.16~S00C00
  238. schemaKey: Session
  239. startDate: '2024-10-16T13:38:52.232921-04:00'
  240. - description: Metadata generated by DANDI cli
  241. endDate: '2025-04-23T15:32:48.779443-04:00'
  242. id: urn:uuid:d5ef9947-c064-40ef-ad52-d1b1d200c749
  243. name: Metadata generation
  244. schemaKey: Activity
  245. startDate: '2025-04-23T15:32:48.777021-04:00'
  246. wasAssociatedWith:
  247. - identifier: RRID:SCR_019009
  248. name: DANDI Command Line Interface
  249. schemaKey: Software
  250. url: https://github.com/dandi/dandi-cli
  251. version: 0.67.3
  252. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  253. access:
  254. - schemaKey: AccessRequirements
  255. status: dandi:EmbargoedAccess
  256. approach:
  257. - name: electrophysiological approach
  258. schemaKey: ApproachType
  259. blobDateModified: '2025-04-23T14:44:59.023129-04:00'
  260. contentSize: 252731216
  261. contentUrl:
  262. - https://api.dandiarchive.org/api/assets/25619c60-90e3-4af5-a952-b0ba2cef8beb/download/
  263. - https://dandiarchive.s3.amazonaws.com/blobs/fac/551/fac55127-792c-49f4-9a78-612556b0dd2d
  264. dateModified: '2025-04-23T15:32:59.739470-04:00'
  265. digest:
  266. dandi:dandi-etag: a9e6d1d2fab57695f7fe8c72cde22208-4
  267. dandi:sha2-256: 3663c9588ffc0db26b1f658564df221ddb7ea66a3de5f27333053fd395f319fa
  268. encodingFormat: application/x-nwb
  269. id: dandiasset:25619c60-90e3-4af5-a952-b0ba2cef8beb
  270. identifier: 25619c60-90e3-4af5-a952-b0ba2cef8beb
  271. keywords:
  272. - mouse
  273. - intracellular recording
  274. - channelrhodopsins
  275. - pathway tracing
  276. - auditory cortex
  277. - auditory thalamus
  278. - medial geniculate
  279. - inferior colliculus
  280. - brachium of the inferior colliculus
  281. - cochlear nucleus
  282. - dorsal cochlear nucleus
  283. - AAV
  284. - synaptic potentials
  285. - optogenetics
  286. measurementTechnique:
  287. - name: current clamp technique
  288. schemaKey: MeasurementTechniqueType
  289. path: sub-CRH-001/sub-CRH-001_ses-HK-CRH-Cre~2024-10-16~S00C02_icephys.nwb
  290. schemaKey: Asset
  291. schemaVersion: 0.6.9
  292. variableMeasured:
  293. - schemaKey: PropertyValue
  294. value: CurrentClampStimulusSeries
  295. - schemaKey: PropertyValue
  296. value: CurrentClampSeries
  297. wasAttributedTo:
  298. - age:
  299. schemaKey: PropertyValue
  300. unitText: ISO-8601 duration
  301. value: P4DT49132.232921S
  302. valueReference:
  303. schemaKey: PropertyValue
  304. value: dandi:BirthReference
  305. genotype: hemi
  306. identifier: CRH-001
  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: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  318. Sliced thalamus/cortex cold
  319. NA 3334702'
  320. identifier: HK_CRH-Cre~2024.10.16~S00C02
  321. name: HK_CRH-Cre~2024.10.16~S00C02
  322. schemaKey: Session
  323. startDate: '2024-10-16T13:38:52.232921-04:00'
  324. - description: Metadata generated by DANDI cli
  325. endDate: '2025-04-23T15:32:59.739454-04:00'
  326. id: urn:uuid:6f63410b-ad31-4667-93de-42e6ae2b9641
  327. name: Metadata generation
  328. schemaKey: Activity
  329. startDate: '2025-04-23T15:32:59.713800-04:00'
  330. wasAssociatedWith:
  331. - identifier: RRID:SCR_019009
  332. name: DANDI Command Line Interface
  333. schemaKey: Software
  334. url: https://github.com/dandi/dandi-cli
  335. version: 0.67.3
  336. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  337. access:
  338. - schemaKey: AccessRequirements
  339. status: dandi:EmbargoedAccess
  340. approach:
  341. - name: electrophysiological approach
  342. schemaKey: ApproachType
  343. blobDateModified: '2025-04-23T14:45:10.759849-04:00'
  344. contentSize: 521402672
  345. contentUrl:
  346. - https://api.dandiarchive.org/api/assets/1dbb2bef-2ab2-40cc-a029-1a6cc8226d45/download/
  347. - https://dandiarchive.s3.amazonaws.com/blobs/234/ea0/234ea03b-f79f-4704-ad14-44c1d51af896
  348. dateModified: '2025-04-23T15:33:05.079144-04:00'
  349. digest:
  350. dandi:dandi-etag: d2f46a9cdd3e449f1762980272fc4f67-8
  351. dandi:sha2-256: 88a3a08da324fe1baaaf776c1615efb6b2cfc6ff81f7c4ad4507c5104c57565b
  352. encodingFormat: application/x-nwb
  353. id: dandiasset:1dbb2bef-2ab2-40cc-a029-1a6cc8226d45
  354. identifier: 1dbb2bef-2ab2-40cc-a029-1a6cc8226d45
  355. keywords:
  356. - mouse
  357. - intracellular recording
  358. - channelrhodopsins
  359. - pathway tracing
  360. - auditory cortex
  361. - auditory thalamus
  362. - medial geniculate
  363. - inferior colliculus
  364. - brachium of the inferior colliculus
  365. - cochlear nucleus
  366. - dorsal cochlear nucleus
  367. - AAV
  368. - synaptic potentials
  369. - optogenetics
  370. measurementTechnique:
  371. - name: current clamp technique
  372. schemaKey: MeasurementTechniqueType
  373. path: sub-CRH-002/sub-CRH-002_ses-HK-CRH-Cre~2024-10-18~S00C00_icephys.nwb
  374. schemaKey: Asset
  375. schemaVersion: 0.6.9
  376. variableMeasured:
  377. - schemaKey: PropertyValue
  378. value: CurrentClampStimulusSeries
  379. - schemaKey: PropertyValue
  380. value: CurrentClampSeries
  381. wasAttributedTo:
  382. - age:
  383. schemaKey: PropertyValue
  384. unitText: ISO-8601 duration
  385. value: P999DT44874.671698S
  386. valueReference:
  387. schemaKey: PropertyValue
  388. value: dandi:BirthReference
  389. genotype: hemi
  390. identifier: CRH-002
  391. schemaKey: Participant
  392. sex:
  393. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  394. name: Male
  395. schemaKey: SexType
  396. species:
  397. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  398. name: Mus musculus - House mouse
  399. schemaKey: SpeciesType
  400. wasGeneratedBy:
  401. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  402. Sliced CN and thalamus WARM'
  403. identifier: HK_CRH-Cre~2024.10.18~S00C00
  404. name: HK_CRH-Cre~2024.10.18~S00C00
  405. schemaKey: Session
  406. startDate: '2024-10-18T13:27:54.671698-04:00'
  407. - description: Metadata generated by DANDI cli
  408. endDate: '2025-04-23T15:33:05.079134-04:00'
  409. id: urn:uuid:b9d7d157-d597-4211-beab-2b5ec363f4da
  410. name: Metadata generation
  411. schemaKey: Activity
  412. startDate: '2025-04-23T15:33:05.049991-04:00'
  413. wasAssociatedWith:
  414. - identifier: RRID:SCR_019009
  415. name: DANDI Command Line Interface
  416. schemaKey: Software
  417. url: https://github.com/dandi/dandi-cli
  418. version: 0.67.3
  419. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  420. access:
  421. - schemaKey: AccessRequirements
  422. status: dandi:EmbargoedAccess
  423. approach:
  424. - name: electrophysiological approach
  425. schemaKey: ApproachType
  426. blobDateModified: '2025-04-23T14:45:27.393646-04:00'
  427. contentSize: 218966280
  428. contentUrl:
  429. - https://api.dandiarchive.org/api/assets/025e9754-518c-4622-ab6e-e6ba9f42bedb/download/
  430. - https://dandiarchive.s3.amazonaws.com/blobs/232/964/2329648a-e676-42ba-ba9a-a75ba8b17f55
  431. dateModified: '2025-04-23T15:33:16.114406-04:00'
  432. digest:
  433. dandi:dandi-etag: d9e3e7b6791088637f66eaa05e7e6057-4
  434. dandi:sha2-256: 10d524b61d5b7c6851957f722f7dc1dbb1dc7b219cb364a43688246e173b824f
  435. encodingFormat: application/x-nwb
  436. id: dandiasset:025e9754-518c-4622-ab6e-e6ba9f42bedb
  437. identifier: 025e9754-518c-4622-ab6e-e6ba9f42bedb
  438. keywords:
  439. - mouse
  440. - intracellular recording
  441. - channelrhodopsins
  442. - pathway tracing
  443. - auditory cortex
  444. - auditory thalamus
  445. - medial geniculate
  446. - inferior colliculus
  447. - brachium of the inferior colliculus
  448. - cochlear nucleus
  449. - dorsal cochlear nucleus
  450. - AAV
  451. - synaptic potentials
  452. - optogenetics
  453. measurementTechnique:
  454. - name: current clamp technique
  455. schemaKey: MeasurementTechniqueType
  456. path: sub-CRH-002/sub-CRH-002_ses-HK-CRH-Cre~2024-10-18~S01C00_icephys.nwb
  457. schemaKey: Asset
  458. schemaVersion: 0.6.9
  459. variableMeasured:
  460. - schemaKey: PropertyValue
  461. value: CurrentClampStimulusSeries
  462. - schemaKey: PropertyValue
  463. value: CurrentClampSeries
  464. wasAttributedTo:
  465. - age:
  466. schemaKey: PropertyValue
  467. unitText: ISO-8601 duration
  468. value: P999DT44874.671698S
  469. valueReference:
  470. schemaKey: PropertyValue
  471. value: dandi:BirthReference
  472. genotype: hemi
  473. identifier: CRH-002
  474. schemaKey: Participant
  475. sex:
  476. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  477. name: Male
  478. schemaKey: SexType
  479. species:
  480. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  481. name: Mus musculus - House mouse
  482. schemaKey: SpeciesType
  483. wasGeneratedBy:
  484. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  485. Sliced CN and thalamus WARM'
  486. identifier: HK_CRH-Cre~2024.10.18~S01C00
  487. name: HK_CRH-Cre~2024.10.18~S01C00
  488. schemaKey: Session
  489. startDate: '2024-10-18T13:27:54.671698-04:00'
  490. - description: Metadata generated by DANDI cli
  491. endDate: '2025-04-23T15:33:16.114397-04:00'
  492. id: urn:uuid:a9250154-57b1-4bc4-9451-255d8d50b186
  493. name: Metadata generation
  494. schemaKey: Activity
  495. startDate: '2025-04-23T15:33:16.046133-04:00'
  496. wasAssociatedWith:
  497. - identifier: RRID:SCR_019009
  498. name: DANDI Command Line Interface
  499. schemaKey: Software
  500. url: https://github.com/dandi/dandi-cli
  501. version: 0.67.3
  502. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  503. access:
  504. - schemaKey: AccessRequirements
  505. status: dandi:EmbargoedAccess
  506. approach:
  507. - name: electrophysiological approach
  508. schemaKey: ApproachType
  509. blobDateModified: '2025-04-23T14:45:19.965580-04:00'
  510. contentSize: 252731232
  511. contentUrl:
  512. - https://api.dandiarchive.org/api/assets/2b411866-6d62-494f-9189-149309238a14/download/
  513. - https://dandiarchive.s3.amazonaws.com/blobs/8a2/e79/8a2e79ec-647c-4730-abf6-eb750abb5b2c
  514. dateModified: '2025-04-23T15:33:16.114871-04:00'
  515. digest:
  516. dandi:dandi-etag: 581d2b45ca871702622101fe466d68a3-4
  517. dandi:sha2-256: b0b644cda3fa5d701a999267087038badb12efe084080ca599fd484c8fd8566c
  518. encodingFormat: application/x-nwb
  519. id: dandiasset:2b411866-6d62-494f-9189-149309238a14
  520. identifier: 2b411866-6d62-494f-9189-149309238a14
  521. keywords:
  522. - mouse
  523. - intracellular recording
  524. - channelrhodopsins
  525. - pathway tracing
  526. - auditory cortex
  527. - auditory thalamus
  528. - medial geniculate
  529. - inferior colliculus
  530. - brachium of the inferior colliculus
  531. - cochlear nucleus
  532. - dorsal cochlear nucleus
  533. - AAV
  534. - synaptic potentials
  535. - optogenetics
  536. measurementTechnique:
  537. - name: current clamp technique
  538. schemaKey: MeasurementTechniqueType
  539. path: sub-CRH-002/sub-CRH-002_ses-HK-CRH-Cre~2024-10-18~S00C02_icephys.nwb
  540. schemaKey: Asset
  541. schemaVersion: 0.6.9
  542. variableMeasured:
  543. - schemaKey: PropertyValue
  544. value: CurrentClampStimulusSeries
  545. - schemaKey: PropertyValue
  546. value: CurrentClampSeries
  547. wasAttributedTo:
  548. - age:
  549. schemaKey: PropertyValue
  550. unitText: ISO-8601 duration
  551. value: P999DT44874.671698S
  552. valueReference:
  553. schemaKey: PropertyValue
  554. value: dandi:BirthReference
  555. genotype: hemi
  556. identifier: CRH-002
  557. schemaKey: Participant
  558. sex:
  559. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  560. name: Male
  561. schemaKey: SexType
  562. species:
  563. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  564. name: Mus musculus - House mouse
  565. schemaKey: SpeciesType
  566. wasGeneratedBy:
  567. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  568. Sliced CN and thalamus WARM'
  569. identifier: HK_CRH-Cre~2024.10.18~S00C02
  570. name: HK_CRH-Cre~2024.10.18~S00C02
  571. schemaKey: Session
  572. startDate: '2024-10-18T13:27:54.671698-04:00'
  573. - description: Metadata generated by DANDI cli
  574. endDate: '2025-04-23T15:33:16.114866-04:00'
  575. id: urn:uuid:2aed5cd6-bb24-4787-93a5-d81d9e4a9785
  576. name: Metadata generation
  577. schemaKey: Activity
  578. startDate: '2025-04-23T15:33:16.081473-04:00'
  579. wasAssociatedWith:
  580. - identifier: RRID:SCR_019009
  581. name: DANDI Command Line Interface
  582. schemaKey: Software
  583. url: https://github.com/dandi/dandi-cli
  584. version: 0.67.3
  585. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  586. access:
  587. - schemaKey: AccessRequirements
  588. status: dandi:EmbargoedAccess
  589. approach:
  590. - name: electrophysiological approach
  591. schemaKey: ApproachType
  592. blobDateModified: '2025-04-23T14:45:49.507362-04:00'
  593. contentSize: 33979624
  594. contentUrl:
  595. - https://api.dandiarchive.org/api/assets/6e5525cf-cf20-4085-8c1e-fe730651c78c/download/
  596. - https://dandiarchive.s3.amazonaws.com/blobs/fe6/1bc/fe61bc2a-c73d-4dab-931c-e580cedf5fce
  597. dateModified: '2025-04-23T15:33:30.291620-04:00'
  598. digest:
  599. dandi:dandi-etag: 1c1dd93412ec85870742db6bdc0a65eb-1
  600. dandi:sha2-256: c36f3be71d28b4858a7972e5a1bdd543f52d04a668b72e194cb6613d7981c02e
  601. encodingFormat: application/x-nwb
  602. id: dandiasset:6e5525cf-cf20-4085-8c1e-fe730651c78c
  603. identifier: 6e5525cf-cf20-4085-8c1e-fe730651c78c
  604. keywords:
  605. - mouse
  606. - intracellular recording
  607. - channelrhodopsins
  608. - pathway tracing
  609. - auditory cortex
  610. - auditory thalamus
  611. - medial geniculate
  612. - inferior colliculus
  613. - brachium of the inferior colliculus
  614. - cochlear nucleus
  615. - dorsal cochlear nucleus
  616. - AAV
  617. - synaptic potentials
  618. - optogenetics
  619. measurementTechnique:
  620. - name: current clamp technique
  621. schemaKey: MeasurementTechniqueType
  622. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S00C01_icephys.nwb
  623. schemaKey: Asset
  624. schemaVersion: 0.6.9
  625. variableMeasured:
  626. - schemaKey: PropertyValue
  627. value: CurrentClampStimulusSeries
  628. - schemaKey: PropertyValue
  629. value: CurrentClampSeries
  630. wasAttributedTo:
  631. - age:
  632. schemaKey: PropertyValue
  633. unitText: ISO-8601 duration
  634. value: P7DT49371.480213S
  635. valueReference:
  636. schemaKey: PropertyValue
  637. value: dandi:BirthReference
  638. genotype: het
  639. identifier: CRH-003
  640. schemaKey: Participant
  641. sex:
  642. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  643. name: Male
  644. schemaKey: SexType
  645. species:
  646. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  647. name: Mus musculus - House mouse
  648. schemaKey: SpeciesType
  649. wasGeneratedBy:
  650. - description: 'Crh-cre:ai9 on cadherin23k background?
  651. cadh23
  652. DOB 9/3/24'
  653. identifier: HK_CRH-Cre~2024.11.11~S00C01
  654. name: HK_CRH-Cre~2024.11.11~S00C01
  655. schemaKey: Session
  656. startDate: '2024-11-11T13:42:51.480213-05:00'
  657. - description: Metadata generated by DANDI cli
  658. endDate: '2025-04-23T15:33:30.291607-04:00'
  659. id: urn:uuid:fe88a50b-497a-4335-b868-22789ca0ea4d
  660. name: Metadata generation
  661. schemaKey: Activity
  662. startDate: '2025-04-23T15:33:30.221255-04:00'
  663. wasAssociatedWith:
  664. - identifier: RRID:SCR_019009
  665. name: DANDI Command Line Interface
  666. schemaKey: Software
  667. url: https://github.com/dandi/dandi-cli
  668. version: 0.67.3
  669. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  670. access:
  671. - schemaKey: AccessRequirements
  672. status: dandi:EmbargoedAccess
  673. approach:
  674. - name: electrophysiological approach
  675. schemaKey: ApproachType
  676. blobDateModified: '2025-04-23T14:45:42.309148-04:00'
  677. contentSize: 185201416
  678. contentUrl:
  679. - https://api.dandiarchive.org/api/assets/c1989785-25e2-48ac-95ec-40555036f738/download/
  680. - https://dandiarchive.s3.amazonaws.com/blobs/1da/c68/1dac6897-9d6a-4e9e-921e-4ddafd25ad59
  681. dateModified: '2025-04-23T15:33:26.951457-04:00'
  682. digest:
  683. dandi:dandi-etag: d2bd987eb92a4f6278fe31e775ec47ee-3
  684. dandi:sha2-256: 8214a3d9de7c9083af82ba024168cb935039d7e33a64822740ed76990ba0c7ad
  685. encodingFormat: application/x-nwb
  686. id: dandiasset:c1989785-25e2-48ac-95ec-40555036f738
  687. identifier: c1989785-25e2-48ac-95ec-40555036f738
  688. keywords:
  689. - mouse
  690. - intracellular recording
  691. - channelrhodopsins
  692. - pathway tracing
  693. - auditory cortex
  694. - auditory thalamus
  695. - medial geniculate
  696. - inferior colliculus
  697. - brachium of the inferior colliculus
  698. - cochlear nucleus
  699. - dorsal cochlear nucleus
  700. - AAV
  701. - synaptic potentials
  702. - optogenetics
  703. measurementTechnique:
  704. - name: current clamp technique
  705. schemaKey: MeasurementTechniqueType
  706. path: sub-CRH-002/sub-CRH-002_ses-HK-CRH-Cre~2024-10-18~S01C02_icephys.nwb
  707. schemaKey: Asset
  708. schemaVersion: 0.6.9
  709. variableMeasured:
  710. - schemaKey: PropertyValue
  711. value: CurrentClampStimulusSeries
  712. - schemaKey: PropertyValue
  713. value: CurrentClampSeries
  714. wasAttributedTo:
  715. - age:
  716. schemaKey: PropertyValue
  717. unitText: ISO-8601 duration
  718. value: P999DT44874.671698S
  719. valueReference:
  720. schemaKey: PropertyValue
  721. value: dandi:BirthReference
  722. genotype: hemi
  723. identifier: CRH-002
  724. schemaKey: Participant
  725. sex:
  726. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  727. name: Male
  728. schemaKey: SexType
  729. species:
  730. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  731. name: Mus musculus - House mouse
  732. schemaKey: SpeciesType
  733. wasGeneratedBy:
  734. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  735. Sliced CN and thalamus WARM'
  736. identifier: HK_CRH-Cre~2024.10.18~S01C02
  737. name: HK_CRH-Cre~2024.10.18~S01C02
  738. schemaKey: Session
  739. startDate: '2024-10-18T13:27:54.671698-04:00'
  740. - description: Metadata generated by DANDI cli
  741. endDate: '2025-04-23T15:33:26.951446-04:00'
  742. id: urn:uuid:9eea1724-2505-461e-9c6e-c48453b70cc5
  743. name: Metadata generation
  744. schemaKey: Activity
  745. startDate: '2025-04-23T15:33:26.811200-04:00'
  746. wasAssociatedWith:
  747. - identifier: RRID:SCR_019009
  748. name: DANDI Command Line Interface
  749. schemaKey: Software
  750. url: https://github.com/dandi/dandi-cli
  751. version: 0.67.3
  752. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  753. access:
  754. - schemaKey: AccessRequirements
  755. status: dandi:EmbargoedAccess
  756. approach:
  757. - name: electrophysiological approach
  758. schemaKey: ApproachType
  759. blobDateModified: '2025-04-23T14:45:37.175068-04:00'
  760. contentSize: 370184240
  761. contentUrl:
  762. - https://api.dandiarchive.org/api/assets/eeeab23a-8123-4faa-820b-2d8f9285c429/download/
  763. - https://dandiarchive.s3.amazonaws.com/blobs/a16/af7/a16af779-d6c6-44a7-af84-73536b69b86d
  764. dateModified: '2025-04-23T15:33:27.396102-04:00'
  765. digest:
  766. dandi:dandi-etag: 81e88d54b4434c049ea8e92c99499e5c-6
  767. dandi:sha2-256: 65401c34a2a747e3918be5907f63bdcaf87b8dba9d9929ae7948418726ceabc1
  768. encodingFormat: application/x-nwb
  769. id: dandiasset:eeeab23a-8123-4faa-820b-2d8f9285c429
  770. identifier: eeeab23a-8123-4faa-820b-2d8f9285c429
  771. keywords:
  772. - mouse
  773. - intracellular recording
  774. - channelrhodopsins
  775. - pathway tracing
  776. - auditory cortex
  777. - auditory thalamus
  778. - medial geniculate
  779. - inferior colliculus
  780. - brachium of the inferior colliculus
  781. - cochlear nucleus
  782. - dorsal cochlear nucleus
  783. - AAV
  784. - synaptic potentials
  785. - optogenetics
  786. measurementTechnique:
  787. - name: current clamp technique
  788. schemaKey: MeasurementTechniqueType
  789. path: sub-CRH-002/sub-CRH-002_ses-HK-CRH-Cre~2024-10-18~S01C01_icephys.nwb
  790. schemaKey: Asset
  791. schemaVersion: 0.6.9
  792. variableMeasured:
  793. - schemaKey: PropertyValue
  794. value: CurrentClampStimulusSeries
  795. - schemaKey: PropertyValue
  796. value: CurrentClampSeries
  797. wasAttributedTo:
  798. - age:
  799. schemaKey: PropertyValue
  800. unitText: ISO-8601 duration
  801. value: P999DT44874.671698S
  802. valueReference:
  803. schemaKey: PropertyValue
  804. value: dandi:BirthReference
  805. genotype: hemi
  806. identifier: CRH-002
  807. schemaKey: Participant
  808. sex:
  809. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  810. name: Male
  811. schemaKey: SexType
  812. species:
  813. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  814. name: Mus musculus - House mouse
  815. schemaKey: SpeciesType
  816. wasGeneratedBy:
  817. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  818. Sliced CN and thalamus WARM'
  819. identifier: HK_CRH-Cre~2024.10.18~S01C01
  820. name: HK_CRH-Cre~2024.10.18~S01C01
  821. schemaKey: Session
  822. startDate: '2024-10-18T13:27:54.671698-04:00'
  823. - description: Metadata generated by DANDI cli
  824. endDate: '2025-04-23T15:33:27.396090-04:00'
  825. id: urn:uuid:ad37a9d9-3c4a-4684-a736-5fea99f85d17
  826. name: Metadata generation
  827. schemaKey: Activity
  828. startDate: '2025-04-23T15:33:27.319882-04:00'
  829. wasAssociatedWith:
  830. - identifier: RRID:SCR_019009
  831. name: DANDI Command Line Interface
  832. schemaKey: Software
  833. url: https://github.com/dandi/dandi-cli
  834. version: 0.67.3
  835. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  836. access:
  837. - schemaKey: AccessRequirements
  838. status: dandi:EmbargoedAccess
  839. approach:
  840. - name: electrophysiological approach
  841. schemaKey: ApproachType
  842. blobDateModified: '2025-04-23T14:45:56.467495-04:00'
  843. contentSize: 218964632
  844. contentUrl:
  845. - https://api.dandiarchive.org/api/assets/07092be1-5524-402d-9335-429a73711d3c/download/
  846. - https://dandiarchive.s3.amazonaws.com/blobs/1a3/30e/1a330eb6-4f99-44df-9787-363a5318a8e1
  847. dateModified: '2025-04-23T15:33:38.789687-04:00'
  848. digest:
  849. dandi:dandi-etag: 6556200cd1d6ce59a9299f4b70a0d42d-4
  850. dandi:sha2-256: 0cb8a65729954a9899da20d2c5e4e0c20727674000c378328bafdd9b8fa36b35
  851. encodingFormat: application/x-nwb
  852. id: dandiasset:07092be1-5524-402d-9335-429a73711d3c
  853. identifier: 07092be1-5524-402d-9335-429a73711d3c
  854. keywords:
  855. - mouse
  856. - intracellular recording
  857. - channelrhodopsins
  858. - pathway tracing
  859. - auditory cortex
  860. - auditory thalamus
  861. - medial geniculate
  862. - inferior colliculus
  863. - brachium of the inferior colliculus
  864. - cochlear nucleus
  865. - dorsal cochlear nucleus
  866. - AAV
  867. - synaptic potentials
  868. - optogenetics
  869. measurementTechnique:
  870. - name: current clamp technique
  871. schemaKey: MeasurementTechniqueType
  872. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S00C02_icephys.nwb
  873. schemaKey: Asset
  874. schemaVersion: 0.6.9
  875. variableMeasured:
  876. - schemaKey: PropertyValue
  877. value: CurrentClampStimulusSeries
  878. - schemaKey: PropertyValue
  879. value: CurrentClampSeries
  880. wasAttributedTo:
  881. - age:
  882. schemaKey: PropertyValue
  883. unitText: ISO-8601 duration
  884. value: P7DT49371.480213S
  885. valueReference:
  886. schemaKey: PropertyValue
  887. value: dandi:BirthReference
  888. genotype: het
  889. identifier: CRH-003
  890. schemaKey: Participant
  891. sex:
  892. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  893. name: Male
  894. schemaKey: SexType
  895. species:
  896. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  897. name: Mus musculus - House mouse
  898. schemaKey: SpeciesType
  899. wasGeneratedBy:
  900. - description: 'Crh-cre:ai9 on cadherin23k background?
  901. cadh23
  902. DOB 9/3/24'
  903. identifier: HK_CRH-Cre~2024.11.11~S00C02
  904. name: HK_CRH-Cre~2024.11.11~S00C02
  905. schemaKey: Session
  906. startDate: '2024-11-11T13:42:51.480213-05:00'
  907. - description: Metadata generated by DANDI cli
  908. endDate: '2025-04-23T15:33:38.789671-04:00'
  909. id: urn:uuid:e6cc82b9-5435-4a5d-987c-298211ab0573
  910. name: Metadata generation
  911. schemaKey: Activity
  912. startDate: '2025-04-23T15:33:38.737914-04:00'
  913. wasAssociatedWith:
  914. - identifier: RRID:SCR_019009
  915. name: DANDI Command Line Interface
  916. schemaKey: Software
  917. url: https://github.com/dandi/dandi-cli
  918. version: 0.67.3
  919. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  920. access:
  921. - schemaKey: AccessRequirements
  922. status: dandi:EmbargoedAccess
  923. approach:
  924. - name: electrophysiological approach
  925. schemaKey: ApproachType
  926. blobDateModified: '2025-04-23T14:45:47.700790-04:00'
  927. contentSize: 185201416
  928. contentUrl:
  929. - https://api.dandiarchive.org/api/assets/479e14df-4753-45d5-8297-cac988bbdc3b/download/
  930. - https://dandiarchive.s3.amazonaws.com/blobs/7ae/69f/7ae69f4c-4e01-43e0-8d42-4123992ed43c
  931. dateModified: '2025-04-23T15:33:32.538394-04:00'
  932. digest:
  933. dandi:dandi-etag: ba85dd4c41d20ab6fbabd11b246a2d90-3
  934. dandi:sha2-256: 8563df26e243475ef1807b39945a2f3cb04f672029cf9810baa199f325109df2
  935. encodingFormat: application/x-nwb
  936. id: dandiasset:479e14df-4753-45d5-8297-cac988bbdc3b
  937. identifier: 479e14df-4753-45d5-8297-cac988bbdc3b
  938. keywords:
  939. - mouse
  940. - intracellular recording
  941. - channelrhodopsins
  942. - pathway tracing
  943. - auditory cortex
  944. - auditory thalamus
  945. - medial geniculate
  946. - inferior colliculus
  947. - brachium of the inferior colliculus
  948. - cochlear nucleus
  949. - dorsal cochlear nucleus
  950. - AAV
  951. - synaptic potentials
  952. - optogenetics
  953. measurementTechnique:
  954. - name: current clamp technique
  955. schemaKey: MeasurementTechniqueType
  956. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S00C00_icephys.nwb
  957. schemaKey: Asset
  958. schemaVersion: 0.6.9
  959. variableMeasured:
  960. - schemaKey: PropertyValue
  961. value: CurrentClampStimulusSeries
  962. - schemaKey: PropertyValue
  963. value: CurrentClampSeries
  964. wasAttributedTo:
  965. - age:
  966. schemaKey: PropertyValue
  967. unitText: ISO-8601 duration
  968. value: P7DT49371.480213S
  969. valueReference:
  970. schemaKey: PropertyValue
  971. value: dandi:BirthReference
  972. genotype: het
  973. identifier: CRH-003
  974. schemaKey: Participant
  975. sex:
  976. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  977. name: Male
  978. schemaKey: SexType
  979. species:
  980. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  981. name: Mus musculus - House mouse
  982. schemaKey: SpeciesType
  983. wasGeneratedBy:
  984. - description: 'Crh-cre:ai9 on cadherin23k background?
  985. cadh23
  986. DOB 9/3/24'
  987. identifier: HK_CRH-Cre~2024.11.11~S00C00
  988. name: HK_CRH-Cre~2024.11.11~S00C00
  989. schemaKey: Session
  990. startDate: '2024-11-11T13:42:51.480213-05:00'
  991. - description: Metadata generated by DANDI cli
  992. endDate: '2025-04-23T15:33:32.538384-04:00'
  993. id: urn:uuid:be986cb9-0648-4726-9c8a-2534e4947daf
  994. name: Metadata generation
  995. schemaKey: Activity
  996. startDate: '2025-04-23T15:33:32.473523-04:00'
  997. wasAssociatedWith:
  998. - identifier: RRID:SCR_019009
  999. name: DANDI Command Line Interface
  1000. schemaKey: Software
  1001. url: https://github.com/dandi/dandi-cli
  1002. version: 0.67.3
  1003. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1004. access:
  1005. - schemaKey: AccessRequirements
  1006. status: dandi:EmbargoedAccess
  1007. approach:
  1008. - name: electrophysiological approach
  1009. schemaKey: ApproachType
  1010. blobDateModified: '2025-04-23T14:46:07.297192-04:00'
  1011. contentSize: 370183384
  1012. contentUrl:
  1013. - https://api.dandiarchive.org/api/assets/af6dd598-dd95-478e-b8a4-edde694180cd/download/
  1014. - https://dandiarchive.s3.amazonaws.com/blobs/451/4bb/4514bb1d-d0a8-4624-8273-2b606bc5e1b0
  1015. dateModified: '2025-04-23T15:33:44.884784-04:00'
  1016. digest:
  1017. dandi:dandi-etag: b1569067cf5b63c1ad29971f39b265f3-6
  1018. dandi:sha2-256: dbf25a0895c57f2f79dceca9a995084500e72e6d4da2bddccf97871372741ac4
  1019. encodingFormat: application/x-nwb
  1020. id: dandiasset:af6dd598-dd95-478e-b8a4-edde694180cd
  1021. identifier: af6dd598-dd95-478e-b8a4-edde694180cd
  1022. keywords:
  1023. - mouse
  1024. - intracellular recording
  1025. - channelrhodopsins
  1026. - pathway tracing
  1027. - auditory cortex
  1028. - auditory thalamus
  1029. - medial geniculate
  1030. - inferior colliculus
  1031. - brachium of the inferior colliculus
  1032. - cochlear nucleus
  1033. - dorsal cochlear nucleus
  1034. - AAV
  1035. - synaptic potentials
  1036. - optogenetics
  1037. measurementTechnique:
  1038. - name: current clamp technique
  1039. schemaKey: MeasurementTechniqueType
  1040. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S00C04_icephys.nwb
  1041. schemaKey: Asset
  1042. schemaVersion: 0.6.9
  1043. variableMeasured:
  1044. - schemaKey: PropertyValue
  1045. value: CurrentClampStimulusSeries
  1046. - schemaKey: PropertyValue
  1047. value: CurrentClampSeries
  1048. wasAttributedTo:
  1049. - age:
  1050. schemaKey: PropertyValue
  1051. unitText: ISO-8601 duration
  1052. value: P7DT49371.480213S
  1053. valueReference:
  1054. schemaKey: PropertyValue
  1055. value: dandi:BirthReference
  1056. genotype: het
  1057. identifier: CRH-003
  1058. schemaKey: Participant
  1059. sex:
  1060. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1061. name: Male
  1062. schemaKey: SexType
  1063. species:
  1064. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1065. name: Mus musculus - House mouse
  1066. schemaKey: SpeciesType
  1067. wasGeneratedBy:
  1068. - description: 'Crh-cre:ai9 on cadherin23k background?
  1069. cadh23
  1070. DOB 9/3/24'
  1071. identifier: HK_CRH-Cre~2024.11.11~S00C04
  1072. name: HK_CRH-Cre~2024.11.11~S00C04
  1073. schemaKey: Session
  1074. startDate: '2024-11-11T13:42:51.480213-05:00'
  1075. - description: Metadata generated by DANDI cli
  1076. endDate: '2025-04-23T15:33:44.884775-04:00'
  1077. id: urn:uuid:5e55dc24-89a0-4600-a46e-a1f0cb38ddba
  1078. name: Metadata generation
  1079. schemaKey: Activity
  1080. startDate: '2025-04-23T15:33:44.856610-04:00'
  1081. wasAssociatedWith:
  1082. - identifier: RRID:SCR_019009
  1083. name: DANDI Command Line Interface
  1084. schemaKey: Software
  1085. url: https://github.com/dandi/dandi-cli
  1086. version: 0.67.3
  1087. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1088. access:
  1089. - schemaKey: AccessRequirements
  1090. status: dandi:EmbargoedAccess
  1091. approach:
  1092. - name: electrophysiological approach
  1093. schemaKey: ApproachType
  1094. blobDateModified: '2025-04-23T14:46:12.226024-04:00'
  1095. contentSize: 185201416
  1096. contentUrl:
  1097. - https://api.dandiarchive.org/api/assets/c217895c-694f-47ad-a382-36ff5c367578/download/
  1098. - https://dandiarchive.s3.amazonaws.com/blobs/7f6/e01/7f6e01dc-182f-41c3-a369-a10b3be115a6
  1099. dateModified: '2025-04-23T15:33:48.529833-04:00'
  1100. digest:
  1101. dandi:dandi-etag: 65964a0a2d2aa1245821ec882b15e022-3
  1102. dandi:sha2-256: a060201ca0f190f26121d49c82fb8cc0f3c3aef7d1579a517e9965f91ed95477
  1103. encodingFormat: application/x-nwb
  1104. id: dandiasset:c217895c-694f-47ad-a382-36ff5c367578
  1105. identifier: c217895c-694f-47ad-a382-36ff5c367578
  1106. keywords:
  1107. - mouse
  1108. - intracellular recording
  1109. - channelrhodopsins
  1110. - pathway tracing
  1111. - auditory cortex
  1112. - auditory thalamus
  1113. - medial geniculate
  1114. - inferior colliculus
  1115. - brachium of the inferior colliculus
  1116. - cochlear nucleus
  1117. - dorsal cochlear nucleus
  1118. - AAV
  1119. - synaptic potentials
  1120. - optogenetics
  1121. measurementTechnique:
  1122. - name: current clamp technique
  1123. schemaKey: MeasurementTechniqueType
  1124. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S01C00_icephys.nwb
  1125. schemaKey: Asset
  1126. schemaVersion: 0.6.9
  1127. variableMeasured:
  1128. - schemaKey: PropertyValue
  1129. value: CurrentClampStimulusSeries
  1130. - schemaKey: PropertyValue
  1131. value: CurrentClampSeries
  1132. wasAttributedTo:
  1133. - age:
  1134. schemaKey: PropertyValue
  1135. unitText: ISO-8601 duration
  1136. value: P7DT49371.480213S
  1137. valueReference:
  1138. schemaKey: PropertyValue
  1139. value: dandi:BirthReference
  1140. genotype: het
  1141. identifier: CRH-003
  1142. schemaKey: Participant
  1143. sex:
  1144. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1145. name: Male
  1146. schemaKey: SexType
  1147. species:
  1148. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1149. name: Mus musculus - House mouse
  1150. schemaKey: SpeciesType
  1151. wasGeneratedBy:
  1152. - description: 'Crh-cre:ai9 on cadherin23k background?
  1153. cadh23
  1154. DOB 9/3/24'
  1155. identifier: HK_CRH-Cre~2024.11.11~S01C00
  1156. name: HK_CRH-Cre~2024.11.11~S01C00
  1157. schemaKey: Session
  1158. startDate: '2024-11-11T13:42:51.480213-05:00'
  1159. - description: Metadata generated by DANDI cli
  1160. endDate: '2025-04-23T15:33:48.529823-04:00'
  1161. id: urn:uuid:f3ad4b44-c544-4f61-a630-6225912d2b50
  1162. name: Metadata generation
  1163. schemaKey: Activity
  1164. startDate: '2025-04-23T15:33:48.501933-04:00'
  1165. wasAssociatedWith:
  1166. - identifier: RRID:SCR_019009
  1167. name: DANDI Command Line Interface
  1168. schemaKey: Software
  1169. url: https://github.com/dandi/dandi-cli
  1170. version: 0.67.3
  1171. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1172. access:
  1173. - schemaKey: AccessRequirements
  1174. status: dandi:EmbargoedAccess
  1175. approach:
  1176. - name: electrophysiological approach
  1177. schemaKey: ApproachType
  1178. blobDateModified: '2025-04-23T14:46:15.468738-04:00'
  1179. contentSize: 67755400
  1180. contentUrl:
  1181. - https://api.dandiarchive.org/api/assets/8baedb51-cd3d-4d4e-aae0-88cec49b19bd/download/
  1182. - https://dandiarchive.s3.amazonaws.com/blobs/b21/d80/b21d8093-1002-40ac-b6a5-50332ff7abc8
  1183. dateModified: '2025-04-23T15:33:50.997589-04:00'
  1184. digest:
  1185. dandi:dandi-etag: a6e672a558743f3b90979ae00dd8dc78-2
  1186. dandi:sha2-256: 01163f097209ef40343a3c0a0470f800aa2bf98ee5031e74c91704c9e7fc6316
  1187. encodingFormat: application/x-nwb
  1188. id: dandiasset:8baedb51-cd3d-4d4e-aae0-88cec49b19bd
  1189. identifier: 8baedb51-cd3d-4d4e-aae0-88cec49b19bd
  1190. keywords:
  1191. - mouse
  1192. - intracellular recording
  1193. - channelrhodopsins
  1194. - pathway tracing
  1195. - auditory cortex
  1196. - auditory thalamus
  1197. - medial geniculate
  1198. - inferior colliculus
  1199. - brachium of the inferior colliculus
  1200. - cochlear nucleus
  1201. - dorsal cochlear nucleus
  1202. - AAV
  1203. - synaptic potentials
  1204. - optogenetics
  1205. measurementTechnique:
  1206. - name: current clamp technique
  1207. schemaKey: MeasurementTechniqueType
  1208. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S01C01_icephys.nwb
  1209. schemaKey: Asset
  1210. schemaVersion: 0.6.9
  1211. variableMeasured:
  1212. - schemaKey: PropertyValue
  1213. value: CurrentClampStimulusSeries
  1214. - schemaKey: PropertyValue
  1215. value: CurrentClampSeries
  1216. wasAttributedTo:
  1217. - age:
  1218. schemaKey: PropertyValue
  1219. unitText: ISO-8601 duration
  1220. value: P7DT49371.480213S
  1221. valueReference:
  1222. schemaKey: PropertyValue
  1223. value: dandi:BirthReference
  1224. genotype: het
  1225. identifier: CRH-003
  1226. schemaKey: Participant
  1227. sex:
  1228. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1229. name: Male
  1230. schemaKey: SexType
  1231. species:
  1232. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1233. name: Mus musculus - House mouse
  1234. schemaKey: SpeciesType
  1235. wasGeneratedBy:
  1236. - description: 'Crh-cre:ai9 on cadherin23k background?
  1237. cadh23
  1238. DOB 9/3/24'
  1239. identifier: HK_CRH-Cre~2024.11.11~S01C01
  1240. name: HK_CRH-Cre~2024.11.11~S01C01
  1241. schemaKey: Session
  1242. startDate: '2024-11-11T13:42:51.480213-05:00'
  1243. - description: Metadata generated by DANDI cli
  1244. endDate: '2025-04-23T15:33:50.997580-04:00'
  1245. id: urn:uuid:147057f1-c280-453d-b03c-658664a6277e
  1246. name: Metadata generation
  1247. schemaKey: Activity
  1248. startDate: '2025-04-23T15:33:50.959509-04:00'
  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.67.3
  1255. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1256. access:
  1257. - schemaKey: AccessRequirements
  1258. status: dandi:EmbargoedAccess
  1259. approach:
  1260. - name: electrophysiological approach
  1261. schemaKey: ApproachType
  1262. blobDateModified: '2025-04-23T14:46:20.670072-04:00'
  1263. contentSize: 185201416
  1264. contentUrl:
  1265. - https://api.dandiarchive.org/api/assets/274bab8e-561f-4896-a5dd-851529a84852/download/
  1266. - https://dandiarchive.s3.amazonaws.com/blobs/ef1/1c2/ef11c27c-915a-4aef-93b0-f7ab279e9a97
  1267. dateModified: '2025-04-23T15:33:58.619123-04:00'
  1268. digest:
  1269. dandi:dandi-etag: 9618d2e033b78f21634f806373e1bce0-3
  1270. dandi:sha2-256: bf0423393b8f7c5bd88561a80a8f5ec69670a4cb73c79cb8c2fccd44351f1e75
  1271. encodingFormat: application/x-nwb
  1272. id: dandiasset:274bab8e-561f-4896-a5dd-851529a84852
  1273. identifier: 274bab8e-561f-4896-a5dd-851529a84852
  1274. keywords:
  1275. - mouse
  1276. - intracellular recording
  1277. - channelrhodopsins
  1278. - pathway tracing
  1279. - auditory cortex
  1280. - auditory thalamus
  1281. - medial geniculate
  1282. - inferior colliculus
  1283. - brachium of the inferior colliculus
  1284. - cochlear nucleus
  1285. - dorsal cochlear nucleus
  1286. - AAV
  1287. - synaptic potentials
  1288. - optogenetics
  1289. measurementTechnique:
  1290. - name: current clamp technique
  1291. schemaKey: MeasurementTechniqueType
  1292. path: sub-CRH-003/sub-CRH-003_ses-HK-CRH-Cre~2024-11-11~S01C02_icephys.nwb
  1293. schemaKey: Asset
  1294. schemaVersion: 0.6.9
  1295. variableMeasured:
  1296. - schemaKey: PropertyValue
  1297. value: CurrentClampStimulusSeries
  1298. - schemaKey: PropertyValue
  1299. value: CurrentClampSeries
  1300. wasAttributedTo:
  1301. - age:
  1302. schemaKey: PropertyValue
  1303. unitText: ISO-8601 duration
  1304. value: P7DT49371.480213S
  1305. valueReference:
  1306. schemaKey: PropertyValue
  1307. value: dandi:BirthReference
  1308. genotype: het
  1309. identifier: CRH-003
  1310. schemaKey: Participant
  1311. sex:
  1312. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1313. name: Male
  1314. schemaKey: SexType
  1315. species:
  1316. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1317. name: Mus musculus - House mouse
  1318. schemaKey: SpeciesType
  1319. wasGeneratedBy:
  1320. - description: 'Crh-cre:ai9 on cadherin23k background?
  1321. cadh23
  1322. DOB 9/3/24'
  1323. identifier: HK_CRH-Cre~2024.11.11~S01C02
  1324. name: HK_CRH-Cre~2024.11.11~S01C02
  1325. schemaKey: Session
  1326. startDate: '2024-11-11T13:42:51.480213-05:00'
  1327. - description: Metadata generated by DANDI cli
  1328. endDate: '2025-04-23T15:33:58.619115-04:00'
  1329. id: urn:uuid:6862e409-13dc-48bf-a219-14bb7a073b9d
  1330. name: Metadata generation
  1331. schemaKey: Activity
  1332. startDate: '2025-04-23T15:33:58.618319-04:00'
  1333. wasAssociatedWith:
  1334. - identifier: RRID:SCR_019009
  1335. name: DANDI Command Line Interface
  1336. schemaKey: Software
  1337. url: https://github.com/dandi/dandi-cli
  1338. version: 0.67.3
  1339. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1340. access:
  1341. - schemaKey: AccessRequirements
  1342. status: dandi:EmbargoedAccess
  1343. approach:
  1344. - name: electrophysiological approach
  1345. schemaKey: ApproachType
  1346. blobDateModified: '2025-04-23T14:46:26.740590-04:00'
  1347. contentSize: 108401760
  1348. contentUrl:
  1349. - https://api.dandiarchive.org/api/assets/398d30fd-0fad-4f8b-be44-25da60ae6f53/download/
  1350. - https://dandiarchive.s3.amazonaws.com/blobs/c4c/e3b/c4ce3bb7-7ab9-4328-9490-4515beaeb52c
  1351. dateModified: '2025-04-23T15:34:02.643958-04:00'
  1352. digest:
  1353. dandi:dandi-etag: 0d47838ec176baaa7e5c8fc7c4f56944-2
  1354. dandi:sha2-256: 47a8e550e903a778deef11c9abbce3e230f8f9b3460a6e52b64a759753189d7c
  1355. encodingFormat: application/x-nwb
  1356. id: dandiasset:398d30fd-0fad-4f8b-be44-25da60ae6f53
  1357. identifier: 398d30fd-0fad-4f8b-be44-25da60ae6f53
  1358. keywords:
  1359. - mouse
  1360. - intracellular recording
  1361. - channelrhodopsins
  1362. - pathway tracing
  1363. - auditory cortex
  1364. - auditory thalamus
  1365. - medial geniculate
  1366. - inferior colliculus
  1367. - brachium of the inferior colliculus
  1368. - cochlear nucleus
  1369. - dorsal cochlear nucleus
  1370. - AAV
  1371. - synaptic potentials
  1372. - optogenetics
  1373. measurementTechnique:
  1374. - name: current clamp technique
  1375. schemaKey: MeasurementTechniqueType
  1376. path: sub-CRH-004/sub-CRH-004_ses-HK-CRH-Cre~2024-12-20~S02C00_icephys.nwb
  1377. schemaKey: Asset
  1378. schemaVersion: 0.6.9
  1379. variableMeasured:
  1380. - schemaKey: PropertyValue
  1381. value: CurrentClampStimulusSeries
  1382. - schemaKey: PropertyValue
  1383. value: CurrentClampSeries
  1384. wasAttributedTo:
  1385. - age:
  1386. schemaKey: PropertyValue
  1387. unitText: ISO-8601 duration
  1388. value: P10DT48491.908474S
  1389. valueReference:
  1390. schemaKey: PropertyValue
  1391. value: dandi:BirthReference
  1392. genotype: hemi
  1393. identifier: CRH-004
  1394. schemaKey: Participant
  1395. sex:
  1396. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1397. name: Male
  1398. schemaKey: SexType
  1399. species:
  1400. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1401. name: Mus musculus - House mouse
  1402. schemaKey: SpeciesType
  1403. wasGeneratedBy:
  1404. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  1405. Sliced thalamus WARM'
  1406. identifier: HK_CRH-Cre~2024.12.20~S02C00
  1407. name: HK_CRH-Cre~2024.12.20~S02C00
  1408. schemaKey: Session
  1409. startDate: '2024-12-20T13:28:11.908474-05:00'
  1410. - description: Metadata generated by DANDI cli
  1411. endDate: '2025-04-23T15:34:02.643933-04:00'
  1412. id: urn:uuid:d155024d-7970-4bba-ae98-8ff91b0768ed
  1413. name: Metadata generation
  1414. schemaKey: Activity
  1415. startDate: '2025-04-23T15:34:02.611928-04:00'
  1416. wasAssociatedWith:
  1417. - identifier: RRID:SCR_019009
  1418. name: DANDI Command Line Interface
  1419. schemaKey: Software
  1420. url: https://github.com/dandi/dandi-cli
  1421. version: 0.67.3
  1422. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1423. access:
  1424. - schemaKey: AccessRequirements
  1425. status: dandi:EmbargoedAccess
  1426. approach:
  1427. - name: electrophysiological approach
  1428. schemaKey: ApproachType
  1429. blobDateModified: '2025-04-23T14:46:41.602200-04:00'
  1430. contentSize: 33979648
  1431. contentUrl:
  1432. - https://api.dandiarchive.org/api/assets/9b5f4d69-3c99-4559-b355-d68b3bd5a23b/download/
  1433. - https://dandiarchive.s3.amazonaws.com/blobs/a8e/532/a8e5322c-58e4-4ebd-a671-c3f68d1ed376
  1434. dateModified: '2025-04-23T15:34:10.513097-04:00'
  1435. digest:
  1436. dandi:dandi-etag: 8f374a33eb085899a80e6615beabfb5f-1
  1437. dandi:sha2-256: a9e38dd9dda1e717c54de470d01b4a5e207206b7693379f7d139294585ebb67e
  1438. encodingFormat: application/x-nwb
  1439. id: dandiasset:9b5f4d69-3c99-4559-b355-d68b3bd5a23b
  1440. identifier: 9b5f4d69-3c99-4559-b355-d68b3bd5a23b
  1441. keywords:
  1442. - mouse
  1443. - intracellular recording
  1444. - channelrhodopsins
  1445. - pathway tracing
  1446. - auditory cortex
  1447. - auditory thalamus
  1448. - medial geniculate
  1449. - inferior colliculus
  1450. - brachium of the inferior colliculus
  1451. - cochlear nucleus
  1452. - dorsal cochlear nucleus
  1453. - AAV
  1454. - synaptic potentials
  1455. - optogenetics
  1456. measurementTechnique:
  1457. - name: current clamp technique
  1458. schemaKey: MeasurementTechniqueType
  1459. path: sub-CRH-006/sub-CRH-006_ses-HK-CRH-Cre~2025-03-21~S01C00_icephys.nwb
  1460. schemaKey: Asset
  1461. schemaVersion: 0.6.9
  1462. variableMeasured:
  1463. - schemaKey: PropertyValue
  1464. value: CurrentClampStimulusSeries
  1465. - schemaKey: PropertyValue
  1466. value: CurrentClampSeries
  1467. wasAttributedTo:
  1468. - age:
  1469. schemaKey: PropertyValue
  1470. unitText: ISO-8601 duration
  1471. value: P9DT53662.682694S
  1472. valueReference:
  1473. schemaKey: PropertyValue
  1474. value: dandi:BirthReference
  1475. genotype: het
  1476. identifier: CRH-006
  1477. schemaKey: Participant
  1478. sex:
  1479. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1480. name: Male
  1481. schemaKey: SexType
  1482. species:
  1483. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1484. name: Mus musculus - House mouse
  1485. schemaKey: SpeciesType
  1486. wasGeneratedBy:
  1487. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  1488. Sliced thalamus WARM
  1489. 32g, 0.35 mL ket/xyl'
  1490. identifier: HK_CRH-Cre~2025.03.21~S01C00
  1491. name: HK_CRH-Cre~2025.03.21~S01C00
  1492. schemaKey: Session
  1493. startDate: '2025-03-21T14:54:22.682694-04:00'
  1494. - description: Metadata generated by DANDI cli
  1495. endDate: '2025-04-23T15:34:10.513088-04:00'
  1496. id: urn:uuid:05ba3040-b831-4694-af82-b6af26da49d0
  1497. name: Metadata generation
  1498. schemaKey: Activity
  1499. startDate: '2025-04-23T15:34:10.512225-04:00'
  1500. wasAssociatedWith:
  1501. - identifier: RRID:SCR_019009
  1502. name: DANDI Command Line Interface
  1503. schemaKey: Software
  1504. url: https://github.com/dandi/dandi-cli
  1505. version: 0.67.3
  1506. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1507. access:
  1508. - schemaKey: AccessRequirements
  1509. status: dandi:EmbargoedAccess
  1510. approach:
  1511. - name: electrophysiological approach
  1512. schemaKey: ApproachType
  1513. blobDateModified: '2025-04-23T14:46:34.823996-04:00'
  1514. contentSize: 111442400
  1515. contentUrl:
  1516. - https://api.dandiarchive.org/api/assets/e92b6d92-490c-4836-a51f-427b80f45494/download/
  1517. - https://dandiarchive.s3.amazonaws.com/blobs/71c/11c/71c11c15-1e75-4f01-a965-dff1e9f76633
  1518. dateModified: '2025-04-23T15:34:02.346946-04:00'
  1519. digest:
  1520. dandi:dandi-etag: 84d6b0071eda1f8d0f0dc24b1e1f5efe-2
  1521. dandi:sha2-256: 801a2c857e1e472874abd13db5a4d93670b2ed00b79903210bbe308733a0ed1f
  1522. encodingFormat: application/x-nwb
  1523. id: dandiasset:e92b6d92-490c-4836-a51f-427b80f45494
  1524. identifier: e92b6d92-490c-4836-a51f-427b80f45494
  1525. keywords:
  1526. - mouse
  1527. - intracellular recording
  1528. - channelrhodopsins
  1529. - pathway tracing
  1530. - auditory cortex
  1531. - auditory thalamus
  1532. - medial geniculate
  1533. - inferior colliculus
  1534. - brachium of the inferior colliculus
  1535. - cochlear nucleus
  1536. - dorsal cochlear nucleus
  1537. - AAV
  1538. - synaptic potentials
  1539. - optogenetics
  1540. measurementTechnique:
  1541. - name: current clamp technique
  1542. schemaKey: MeasurementTechniqueType
  1543. path: sub-CRH-004/sub-CRH-004_ses-HK-CRH-Cre~2024-12-20~S02C02_icephys.nwb
  1544. schemaKey: Asset
  1545. schemaVersion: 0.6.9
  1546. variableMeasured:
  1547. - schemaKey: PropertyValue
  1548. value: CurrentClampStimulusSeries
  1549. - schemaKey: PropertyValue
  1550. value: CurrentClampSeries
  1551. wasAttributedTo:
  1552. - age:
  1553. schemaKey: PropertyValue
  1554. unitText: ISO-8601 duration
  1555. value: P10DT48491.908474S
  1556. valueReference:
  1557. schemaKey: PropertyValue
  1558. value: dandi:BirthReference
  1559. genotype: hemi
  1560. identifier: CRH-004
  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_10090
  1568. name: Mus musculus - House mouse
  1569. schemaKey: SpeciesType
  1570. wasGeneratedBy:
  1571. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  1572. Sliced thalamus WARM'
  1573. identifier: HK_CRH-Cre~2024.12.20~S02C02
  1574. name: HK_CRH-Cre~2024.12.20~S02C02
  1575. schemaKey: Session
  1576. startDate: '2024-12-20T13:28:11.908474-05:00'
  1577. - description: Metadata generated by DANDI cli
  1578. endDate: '2025-04-23T15:34:02.346937-04:00'
  1579. id: urn:uuid:0696d945-d75e-44ab-9ece-bc674c2b5d8c
  1580. name: Metadata generation
  1581. schemaKey: Activity
  1582. startDate: '2025-04-23T15:34:02.282557-04:00'
  1583. wasAssociatedWith:
  1584. - identifier: RRID:SCR_019009
  1585. name: DANDI Command Line Interface
  1586. schemaKey: Software
  1587. url: https://github.com/dandi/dandi-cli
  1588. version: 0.67.3
  1589. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1590. access:
  1591. - schemaKey: AccessRequirements
  1592. status: dandi:EmbargoedAccess
  1593. approach:
  1594. - name: electrophysiological approach
  1595. schemaKey: ApproachType
  1596. blobDateModified: '2025-04-23T14:46:31.421234-04:00'
  1597. contentSize: 101527640
  1598. contentUrl:
  1599. - https://api.dandiarchive.org/api/assets/6d718626-fddd-42ad-ab3a-bdf6183dc565/download/
  1600. - https://dandiarchive.s3.amazonaws.com/blobs/e82/760/e82760f7-8384-4267-b7a8-929d8464edc1
  1601. dateModified: '2025-04-23T15:34:08.100862-04:00'
  1602. digest:
  1603. dandi:dandi-etag: 26f73bda291bac0d82863bb4bd0b776e-2
  1604. dandi:sha2-256: 578302cffc2de99b8ceb5029e40c5e10abe99e3b731f761e30079f43048f1c8a
  1605. encodingFormat: application/x-nwb
  1606. id: dandiasset:6d718626-fddd-42ad-ab3a-bdf6183dc565
  1607. identifier: 6d718626-fddd-42ad-ab3a-bdf6183dc565
  1608. keywords:
  1609. - mouse
  1610. - intracellular recording
  1611. - channelrhodopsins
  1612. - pathway tracing
  1613. - auditory cortex
  1614. - auditory thalamus
  1615. - medial geniculate
  1616. - inferior colliculus
  1617. - brachium of the inferior colliculus
  1618. - cochlear nucleus
  1619. - dorsal cochlear nucleus
  1620. - AAV
  1621. - synaptic potentials
  1622. - optogenetics
  1623. measurementTechnique:
  1624. - name: current clamp technique
  1625. schemaKey: MeasurementTechniqueType
  1626. path: sub-CRH-004/sub-CRH-004_ses-HK-CRH-Cre~2024-12-20~S02C01_icephys.nwb
  1627. schemaKey: Asset
  1628. schemaVersion: 0.6.9
  1629. variableMeasured:
  1630. - schemaKey: PropertyValue
  1631. value: CurrentClampStimulusSeries
  1632. - schemaKey: PropertyValue
  1633. value: CurrentClampSeries
  1634. wasAttributedTo:
  1635. - age:
  1636. schemaKey: PropertyValue
  1637. unitText: ISO-8601 duration
  1638. value: P10DT48491.908474S
  1639. valueReference:
  1640. schemaKey: PropertyValue
  1641. value: dandi:BirthReference
  1642. genotype: hemi
  1643. identifier: CRH-004
  1644. schemaKey: Participant
  1645. sex:
  1646. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1647. name: Male
  1648. schemaKey: SexType
  1649. species:
  1650. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1651. name: Mus musculus - House mouse
  1652. schemaKey: SpeciesType
  1653. wasGeneratedBy:
  1654. - description: 'Crh-cre:ai9 mouse, DOB 9/3/2024
  1655. Sliced thalamus WARM'
  1656. identifier: HK_CRH-Cre~2024.12.20~S02C01
  1657. name: HK_CRH-Cre~2024.12.20~S02C01
  1658. schemaKey: Session
  1659. startDate: '2024-12-20T13:28:11.908474-05:00'
  1660. - description: Metadata generated by DANDI cli
  1661. endDate: '2025-04-23T15:34:08.100854-04:00'
  1662. id: urn:uuid:4ca0265b-a569-4f1d-bccc-7c382ded9f7f
  1663. name: Metadata generation
  1664. schemaKey: Activity
  1665. startDate: '2025-04-23T15:34:07.972238-04:00'
  1666. wasAssociatedWith:
  1667. - identifier: RRID:SCR_019009
  1668. name: DANDI Command Line Interface
  1669. schemaKey: Software
  1670. url: https://github.com/dandi/dandi-cli
  1671. version: 0.67.3
  1672. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1673. access:
  1674. - schemaKey: AccessRequirements
  1675. status: dandi:EmbargoedAccess
  1676. approach:
  1677. - name: electrophysiological approach
  1678. schemaKey: ApproachType
  1679. blobDateModified: '2025-04-23T14:46:39.851310-04:00'
  1680. contentSize: 185201416
  1681. contentUrl:
  1682. - https://api.dandiarchive.org/api/assets/2c24c945-5c23-4c97-9183-081f6a56644b/download/
  1683. - https://dandiarchive.s3.amazonaws.com/blobs/ad8/266/ad82665e-d92c-449f-88f7-e50947812834
  1684. dateModified: '2025-04-23T15:34:09.611787-04:00'
  1685. digest:
  1686. dandi:dandi-etag: 53a06497af31ce6ada1042f83cf2b846-3
  1687. dandi:sha2-256: 3e05fb27df872774c46334398ae3280591d98cd814cde62f649a906f1bb2b68e
  1688. encodingFormat: application/x-nwb
  1689. id: dandiasset:2c24c945-5c23-4c97-9183-081f6a56644b
  1690. identifier: 2c24c945-5c23-4c97-9183-081f6a56644b
  1691. keywords:
  1692. - mouse
  1693. - intracellular recording
  1694. - channelrhodopsins
  1695. - pathway tracing
  1696. - auditory cortex
  1697. - auditory thalamus
  1698. - medial geniculate
  1699. - inferior colliculus
  1700. - brachium of the inferior colliculus
  1701. - cochlear nucleus
  1702. - dorsal cochlear nucleus
  1703. - AAV
  1704. - synaptic potentials
  1705. - optogenetics
  1706. measurementTechnique:
  1707. - name: current clamp technique
  1708. schemaKey: MeasurementTechniqueType
  1709. path: sub-CRH-006/sub-CRH-006_ses-HK-CRH-Cre~2025-03-21~S00C00_icephys.nwb
  1710. schemaKey: Asset
  1711. schemaVersion: 0.6.9
  1712. variableMeasured:
  1713. - schemaKey: PropertyValue
  1714. value: CurrentClampStimulusSeries
  1715. - schemaKey: PropertyValue
  1716. value: CurrentClampSeries
  1717. wasAttributedTo:
  1718. - age:
  1719. schemaKey: PropertyValue
  1720. unitText: ISO-8601 duration
  1721. value: P9DT53662.682694S
  1722. valueReference:
  1723. schemaKey: PropertyValue
  1724. value: dandi:BirthReference
  1725. genotype: het
  1726. identifier: CRH-006
  1727. schemaKey: Participant
  1728. sex:
  1729. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1730. name: Male
  1731. schemaKey: SexType
  1732. species:
  1733. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1734. name: Mus musculus - House mouse
  1735. schemaKey: SpeciesType
  1736. wasGeneratedBy:
  1737. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  1738. Sliced thalamus WARM
  1739. 32g, 0.35 mL ket/xyl'
  1740. identifier: HK_CRH-Cre~2025.03.21~S00C00
  1741. name: HK_CRH-Cre~2025.03.21~S00C00
  1742. schemaKey: Session
  1743. startDate: '2025-03-21T14:54:22.682694-04:00'
  1744. - description: Metadata generated by DANDI cli
  1745. endDate: '2025-04-23T15:34:09.611778-04:00'
  1746. id: urn:uuid:316518c7-4f0f-472b-a4cc-a9e9fb8ff7b0
  1747. name: Metadata generation
  1748. schemaKey: Activity
  1749. startDate: '2025-04-23T15:34:09.543338-04:00'
  1750. wasAssociatedWith:
  1751. - identifier: RRID:SCR_019009
  1752. name: DANDI Command Line Interface
  1753. schemaKey: Software
  1754. url: https://github.com/dandi/dandi-cli
  1755. version: 0.67.3
  1756. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1757. access:
  1758. - schemaKey: AccessRequirements
  1759. status: dandi:EmbargoedAccess
  1760. approach:
  1761. - name: electrophysiological approach
  1762. schemaKey: ApproachType
  1763. blobDateModified: '2025-04-23T14:46:54.669790-04:00'
  1764. contentSize: 33979648
  1765. contentUrl:
  1766. - https://api.dandiarchive.org/api/assets/19b98bd8-e2d9-4fc2-9933-f234cd0d7088/download/
  1767. - https://dandiarchive.s3.amazonaws.com/blobs/56d/498/56d49841-8790-49b0-9000-7984757bb959
  1768. dateModified: '2025-04-23T15:34:20.909028-04:00'
  1769. digest:
  1770. dandi:dandi-etag: effdaa77f4833edd4ce4c6a988a60921-1
  1771. dandi:sha2-256: 41117a82df2fa1411baaf10dc0cfd267939d18a57d439eaa8e21e7e9a16e326b
  1772. encodingFormat: application/x-nwb
  1773. id: dandiasset:19b98bd8-e2d9-4fc2-9933-f234cd0d7088
  1774. identifier: 19b98bd8-e2d9-4fc2-9933-f234cd0d7088
  1775. keywords:
  1776. - mouse
  1777. - intracellular recording
  1778. - channelrhodopsins
  1779. - pathway tracing
  1780. - auditory cortex
  1781. - auditory thalamus
  1782. - medial geniculate
  1783. - inferior colliculus
  1784. - brachium of the inferior colliculus
  1785. - cochlear nucleus
  1786. - dorsal cochlear nucleus
  1787. - AAV
  1788. - synaptic potentials
  1789. - optogenetics
  1790. measurementTechnique:
  1791. - name: current clamp technique
  1792. schemaKey: MeasurementTechniqueType
  1793. path: sub-CRH-006/sub-CRH-006_ses-HK-CRH-Cre~2025-03-21~S01C04_icephys.nwb
  1794. schemaKey: Asset
  1795. schemaVersion: 0.6.9
  1796. variableMeasured:
  1797. - schemaKey: PropertyValue
  1798. value: CurrentClampStimulusSeries
  1799. - schemaKey: PropertyValue
  1800. value: CurrentClampSeries
  1801. wasAttributedTo:
  1802. - age:
  1803. schemaKey: PropertyValue
  1804. unitText: ISO-8601 duration
  1805. value: P9DT53662.682694S
  1806. valueReference:
  1807. schemaKey: PropertyValue
  1808. value: dandi:BirthReference
  1809. genotype: het
  1810. identifier: CRH-006
  1811. schemaKey: Participant
  1812. sex:
  1813. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1814. name: Male
  1815. schemaKey: SexType
  1816. species:
  1817. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1818. name: Mus musculus - House mouse
  1819. schemaKey: SpeciesType
  1820. wasGeneratedBy:
  1821. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  1822. Sliced thalamus WARM
  1823. 32g, 0.35 mL ket/xyl'
  1824. identifier: HK_CRH-Cre~2025.03.21~S01C04
  1825. name: HK_CRH-Cre~2025.03.21~S01C04
  1826. schemaKey: Session
  1827. startDate: '2025-03-21T14:54:22.682694-04:00'
  1828. - description: Metadata generated by DANDI cli
  1829. endDate: '2025-04-23T15:34:20.909018-04:00'
  1830. id: urn:uuid:85d0f05c-63ea-48a8-84f6-d9dfcd73b36d
  1831. name: Metadata generation
  1832. schemaKey: Activity
  1833. startDate: '2025-04-23T15:34:20.861481-04:00'
  1834. wasAssociatedWith:
  1835. - identifier: RRID:SCR_019009
  1836. name: DANDI Command Line Interface
  1837. schemaKey: Software
  1838. url: https://github.com/dandi/dandi-cli
  1839. version: 0.67.3
  1840. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1841. access:
  1842. - schemaKey: AccessRequirements
  1843. status: dandi:EmbargoedAccess
  1844. approach:
  1845. - name: electrophysiological approach
  1846. schemaKey: ApproachType
  1847. blobDateModified: '2025-04-23T14:46:48.183029-04:00'
  1848. contentSize: 33979648
  1849. contentUrl:
  1850. - https://api.dandiarchive.org/api/assets/8b221110-0641-4eff-98a1-ca630e1fd22c/download/
  1851. - https://dandiarchive.s3.amazonaws.com/blobs/c17/a45/c17a4521-62ad-4ca9-9e24-6249a0b12942
  1852. dateModified: '2025-04-23T15:34:15.816234-04:00'
  1853. digest:
  1854. dandi:dandi-etag: 5ab8d1665c3d9be2ae680c71002d798e-1
  1855. dandi:sha2-256: 87df3b267a6a7c64e33b0b02d145a734b658f616f916461d3b421a8c4b96f5eb
  1856. encodingFormat: application/x-nwb
  1857. id: dandiasset:8b221110-0641-4eff-98a1-ca630e1fd22c
  1858. identifier: 8b221110-0641-4eff-98a1-ca630e1fd22c
  1859. keywords:
  1860. - mouse
  1861. - intracellular recording
  1862. - channelrhodopsins
  1863. - pathway tracing
  1864. - auditory cortex
  1865. - auditory thalamus
  1866. - medial geniculate
  1867. - inferior colliculus
  1868. - brachium of the inferior colliculus
  1869. - cochlear nucleus
  1870. - dorsal cochlear nucleus
  1871. - AAV
  1872. - synaptic potentials
  1873. - optogenetics
  1874. measurementTechnique:
  1875. - name: current clamp technique
  1876. schemaKey: MeasurementTechniqueType
  1877. path: sub-CRH-006/sub-CRH-006_ses-HK-CRH-Cre~2025-03-21~S01C02_icephys.nwb
  1878. schemaKey: Asset
  1879. schemaVersion: 0.6.9
  1880. variableMeasured:
  1881. - schemaKey: PropertyValue
  1882. value: CurrentClampStimulusSeries
  1883. - schemaKey: PropertyValue
  1884. value: CurrentClampSeries
  1885. wasAttributedTo:
  1886. - age:
  1887. schemaKey: PropertyValue
  1888. unitText: ISO-8601 duration
  1889. value: P9DT53662.682694S
  1890. valueReference:
  1891. schemaKey: PropertyValue
  1892. value: dandi:BirthReference
  1893. genotype: het
  1894. identifier: CRH-006
  1895. schemaKey: Participant
  1896. sex:
  1897. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1898. name: Male
  1899. schemaKey: SexType
  1900. species:
  1901. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1902. name: Mus musculus - House mouse
  1903. schemaKey: SpeciesType
  1904. wasGeneratedBy:
  1905. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  1906. Sliced thalamus WARM
  1907. 32g, 0.35 mL ket/xyl'
  1908. identifier: HK_CRH-Cre~2025.03.21~S01C02
  1909. name: HK_CRH-Cre~2025.03.21~S01C02
  1910. schemaKey: Session
  1911. startDate: '2025-03-21T14:54:22.682694-04:00'
  1912. - description: Metadata generated by DANDI cli
  1913. endDate: '2025-04-23T15:34:15.816226-04:00'
  1914. id: urn:uuid:c8ab6512-4b05-45d3-8017-f9bb1ac04b06
  1915. name: Metadata generation
  1916. schemaKey: Activity
  1917. startDate: '2025-04-23T15:34:15.802214-04:00'
  1918. wasAssociatedWith:
  1919. - identifier: RRID:SCR_019009
  1920. name: DANDI Command Line Interface
  1921. schemaKey: Software
  1922. url: https://github.com/dandi/dandi-cli
  1923. version: 0.67.3
  1924. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  1925. access:
  1926. - schemaKey: AccessRequirements
  1927. status: dandi:EmbargoedAccess
  1928. approach:
  1929. - name: electrophysiological approach
  1930. schemaKey: ApproachType
  1931. blobDateModified: '2025-04-23T14:46:46.494573-04:00'
  1932. contentSize: 185201416
  1933. contentUrl:
  1934. - https://api.dandiarchive.org/api/assets/35c2d0d1-25d2-4408-abad-d009fbec2536/download/
  1935. - https://dandiarchive.s3.amazonaws.com/blobs/001/e2f/001e2fc8-c79f-466c-bcac-5aec1f325c8e
  1936. dateModified: '2025-04-23T15:34:16.410227-04:00'
  1937. digest:
  1938. dandi:dandi-etag: b9dbe7c9485ee2b262b107597c08dea7-3
  1939. dandi:sha2-256: b7d5da07718c58e64f48db651bcbced9388093dcb6ee5edf3977b65aee2d672b
  1940. encodingFormat: application/x-nwb
  1941. id: dandiasset:35c2d0d1-25d2-4408-abad-d009fbec2536
  1942. identifier: 35c2d0d1-25d2-4408-abad-d009fbec2536
  1943. keywords:
  1944. - mouse
  1945. - intracellular recording
  1946. - channelrhodopsins
  1947. - pathway tracing
  1948. - auditory cortex
  1949. - auditory thalamus
  1950. - medial geniculate
  1951. - inferior colliculus
  1952. - brachium of the inferior colliculus
  1953. - cochlear nucleus
  1954. - dorsal cochlear nucleus
  1955. - AAV
  1956. - synaptic potentials
  1957. - optogenetics
  1958. measurementTechnique:
  1959. - name: current clamp technique
  1960. schemaKey: MeasurementTechniqueType
  1961. path: sub-CRH-006/sub-CRH-006_ses-HK-CRH-Cre~2025-03-21~S01C01_icephys.nwb
  1962. schemaKey: Asset
  1963. schemaVersion: 0.6.9
  1964. variableMeasured:
  1965. - schemaKey: PropertyValue
  1966. value: CurrentClampStimulusSeries
  1967. - schemaKey: PropertyValue
  1968. value: CurrentClampSeries
  1969. wasAttributedTo:
  1970. - age:
  1971. schemaKey: PropertyValue
  1972. unitText: ISO-8601 duration
  1973. value: P9DT53662.682694S
  1974. valueReference:
  1975. schemaKey: PropertyValue
  1976. value: dandi:BirthReference
  1977. genotype: het
  1978. identifier: CRH-006
  1979. schemaKey: Participant
  1980. sex:
  1981. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1982. name: Male
  1983. schemaKey: SexType
  1984. species:
  1985. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1986. name: Mus musculus - House mouse
  1987. schemaKey: SpeciesType
  1988. wasGeneratedBy:
  1989. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  1990. Sliced thalamus WARM
  1991. 32g, 0.35 mL ket/xyl'
  1992. identifier: HK_CRH-Cre~2025.03.21~S01C01
  1993. name: HK_CRH-Cre~2025.03.21~S01C01
  1994. schemaKey: Session
  1995. startDate: '2025-03-21T14:54:22.682694-04:00'
  1996. - description: Metadata generated by DANDI cli
  1997. endDate: '2025-04-23T15:34:16.410218-04:00'
  1998. id: urn:uuid:b0a11859-cc19-495d-8962-126a92dce433
  1999. name: Metadata generation
  2000. schemaKey: Activity
  2001. startDate: '2025-04-23T15:34:16.276600-04:00'
  2002. wasAssociatedWith:
  2003. - identifier: RRID:SCR_019009
  2004. name: DANDI Command Line Interface
  2005. schemaKey: Software
  2006. url: https://github.com/dandi/dandi-cli
  2007. version: 0.67.3
  2008. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2009. access:
  2010. - schemaKey: AccessRequirements
  2011. status: dandi:EmbargoedAccess
  2012. approach:
  2013. - name: electrophysiological approach
  2014. schemaKey: ApproachType
  2015. blobDateModified: '2025-04-23T14:46:52.989983-04:00'
  2016. contentSize: 185201416
  2017. contentUrl:
  2018. - https://api.dandiarchive.org/api/assets/222c13f6-e753-493d-ac6b-eb99cdaaf3db/download/
  2019. - https://dandiarchive.s3.amazonaws.com/blobs/eff/cb1/effcb1b5-dc33-42ca-8fb5-d8f73204a519
  2020. dateModified: '2025-04-23T15:34:20.045432-04:00'
  2021. digest:
  2022. dandi:dandi-etag: 9a65979059024652a38503ce206487f9-3
  2023. dandi:sha2-256: 1d915b636d352a7d9ebe9fa85c9cdd19090f4fc53ca193b021abddac91d6f9a5
  2024. encodingFormat: application/x-nwb
  2025. id: dandiasset:222c13f6-e753-493d-ac6b-eb99cdaaf3db
  2026. identifier: 222c13f6-e753-493d-ac6b-eb99cdaaf3db
  2027. keywords:
  2028. - mouse
  2029. - intracellular recording
  2030. - channelrhodopsins
  2031. - pathway tracing
  2032. - auditory cortex
  2033. - auditory thalamus
  2034. - medial geniculate
  2035. - inferior colliculus
  2036. - brachium of the inferior colliculus
  2037. - cochlear nucleus
  2038. - dorsal cochlear nucleus
  2039. - AAV
  2040. - synaptic potentials
  2041. - optogenetics
  2042. measurementTechnique:
  2043. - name: current clamp technique
  2044. schemaKey: MeasurementTechniqueType
  2045. path: sub-CRH-006/sub-CRH-006_ses-HK-CRH-Cre~2025-03-21~S01C03_icephys.nwb
  2046. schemaKey: Asset
  2047. schemaVersion: 0.6.9
  2048. variableMeasured:
  2049. - schemaKey: PropertyValue
  2050. value: CurrentClampStimulusSeries
  2051. - schemaKey: PropertyValue
  2052. value: CurrentClampSeries
  2053. wasAttributedTo:
  2054. - age:
  2055. schemaKey: PropertyValue
  2056. unitText: ISO-8601 duration
  2057. value: P9DT53662.682694S
  2058. valueReference:
  2059. schemaKey: PropertyValue
  2060. value: dandi:BirthReference
  2061. genotype: het
  2062. identifier: CRH-006
  2063. schemaKey: Participant
  2064. sex:
  2065. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2066. name: Male
  2067. schemaKey: SexType
  2068. species:
  2069. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2070. name: Mus musculus - House mouse
  2071. schemaKey: SpeciesType
  2072. wasGeneratedBy:
  2073. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  2074. Sliced thalamus WARM
  2075. 32g, 0.35 mL ket/xyl'
  2076. identifier: HK_CRH-Cre~2025.03.21~S01C03
  2077. name: HK_CRH-Cre~2025.03.21~S01C03
  2078. schemaKey: Session
  2079. startDate: '2025-03-21T14:54:22.682694-04:00'
  2080. - description: Metadata generated by DANDI cli
  2081. endDate: '2025-04-23T15:34:20.045422-04:00'
  2082. id: urn:uuid:f49ae3c9-e7ea-4135-b3e9-c12a3ea9d62a
  2083. name: Metadata generation
  2084. schemaKey: Activity
  2085. startDate: '2025-04-23T15:34:19.942153-04:00'
  2086. wasAssociatedWith:
  2087. - identifier: RRID:SCR_019009
  2088. name: DANDI Command Line Interface
  2089. schemaKey: Software
  2090. url: https://github.com/dandi/dandi-cli
  2091. version: 0.67.3
  2092. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2093. access:
  2094. - schemaKey: AccessRequirements
  2095. status: dandi:EmbargoedAccess
  2096. approach:
  2097. - name: electrophysiological approach
  2098. schemaKey: ApproachType
  2099. blobDateModified: '2025-04-23T14:47:06.390803-04:00'
  2100. contentSize: 185201416
  2101. contentUrl:
  2102. - https://api.dandiarchive.org/api/assets/dc92e84e-9903-46a0-8238-913fe0444674/download/
  2103. - https://dandiarchive.s3.amazonaws.com/blobs/408/899/4088995d-b5bd-4fa6-a5e1-8625d4e57806
  2104. dateModified: '2025-04-23T15:34:33.041624-04:00'
  2105. digest:
  2106. dandi:dandi-etag: 658a1b5159240cc8bcc9b8488da8499e-3
  2107. dandi:sha2-256: 71b85e89864ca2b238fb22c91a5b29329b90ed1f178e44000dfd8a3a90c2fdda
  2108. encodingFormat: application/x-nwb
  2109. id: dandiasset:dc92e84e-9903-46a0-8238-913fe0444674
  2110. identifier: dc92e84e-9903-46a0-8238-913fe0444674
  2111. keywords:
  2112. - mouse
  2113. - intracellular recording
  2114. - channelrhodopsins
  2115. - pathway tracing
  2116. - auditory cortex
  2117. - auditory thalamus
  2118. - medial geniculate
  2119. - inferior colliculus
  2120. - brachium of the inferior colliculus
  2121. - cochlear nucleus
  2122. - dorsal cochlear nucleus
  2123. - AAV
  2124. - synaptic potentials
  2125. - optogenetics
  2126. measurementTechnique:
  2127. - name: current clamp technique
  2128. schemaKey: MeasurementTechniqueType
  2129. path: sub-CRH-007/sub-CRH-007_ses-HK-CRH-Cre~2025-03-27~S01C00_icephys.nwb
  2130. schemaKey: Asset
  2131. schemaVersion: 0.6.9
  2132. variableMeasured:
  2133. - schemaKey: PropertyValue
  2134. value: CurrentClampStimulusSeries
  2135. - schemaKey: PropertyValue
  2136. value: CurrentClampSeries
  2137. wasAttributedTo:
  2138. - age:
  2139. schemaKey: PropertyValue
  2140. unitText: ISO-8601 duration
  2141. value: P9DT55991.669253S
  2142. valueReference:
  2143. schemaKey: PropertyValue
  2144. value: dandi:BirthReference
  2145. genotype: hemi
  2146. identifier: CRH-007
  2147. schemaKey: Participant
  2148. sex:
  2149. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2150. name: Male
  2151. schemaKey: SexType
  2152. species:
  2153. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2154. name: Mus musculus - House mouse
  2155. schemaKey: SpeciesType
  2156. wasGeneratedBy:
  2157. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  2158. Sliced thalamus WARM
  2159. 34g, 0.35 mL ket/xyl'
  2160. identifier: HK_CRH-Cre~2025.03.27~S01C00
  2161. name: HK_CRH-Cre~2025.03.27~S01C00
  2162. schemaKey: Session
  2163. startDate: '2025-03-27T15:33:11.669253-04:00'
  2164. - description: Metadata generated by DANDI cli
  2165. endDate: '2025-04-23T15:34:33.041615-04:00'
  2166. id: urn:uuid:78bca4a0-015b-4a95-a3ab-cb4cc1654426
  2167. name: Metadata generation
  2168. schemaKey: Activity
  2169. startDate: '2025-04-23T15:34:33.040858-04:00'
  2170. wasAssociatedWith:
  2171. - identifier: RRID:SCR_019009
  2172. name: DANDI Command Line Interface
  2173. schemaKey: Software
  2174. url: https://github.com/dandi/dandi-cli
  2175. version: 0.67.3
  2176. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2177. access:
  2178. - schemaKey: AccessRequirements
  2179. status: dandi:EmbargoedAccess
  2180. approach:
  2181. - name: electrophysiological approach
  2182. schemaKey: ApproachType
  2183. blobDateModified: '2025-04-23T14:47:11.399439-04:00'
  2184. contentSize: 185201416
  2185. contentUrl:
  2186. - https://api.dandiarchive.org/api/assets/3818dc39-b0b0-4225-85c6-e3e94f9bc8ad/download/
  2187. - https://dandiarchive.s3.amazonaws.com/blobs/e73/c27/e73c2731-c5ea-4188-a877-47234a54f61f
  2188. dateModified: '2025-04-23T15:34:33.304585-04:00'
  2189. digest:
  2190. dandi:dandi-etag: 0ebe5a4cd82298428bc1459e9ce5fc96-3
  2191. dandi:sha2-256: 83771051497087fdbe274d6f481ee1af925f0728ba22ea4e9d3fdd89036316fb
  2192. encodingFormat: application/x-nwb
  2193. id: dandiasset:3818dc39-b0b0-4225-85c6-e3e94f9bc8ad
  2194. identifier: 3818dc39-b0b0-4225-85c6-e3e94f9bc8ad
  2195. keywords:
  2196. - mouse
  2197. - intracellular recording
  2198. - channelrhodopsins
  2199. - pathway tracing
  2200. - auditory cortex
  2201. - auditory thalamus
  2202. - medial geniculate
  2203. - inferior colliculus
  2204. - brachium of the inferior colliculus
  2205. - cochlear nucleus
  2206. - dorsal cochlear nucleus
  2207. - AAV
  2208. - synaptic potentials
  2209. - optogenetics
  2210. measurementTechnique:
  2211. - name: current clamp technique
  2212. schemaKey: MeasurementTechniqueType
  2213. path: sub-CRH-007/sub-CRH-007_ses-HK-CRH-Cre~2025-03-27~S01C01_icephys.nwb
  2214. schemaKey: Asset
  2215. schemaVersion: 0.6.9
  2216. variableMeasured:
  2217. - schemaKey: PropertyValue
  2218. value: CurrentClampStimulusSeries
  2219. - schemaKey: PropertyValue
  2220. value: CurrentClampSeries
  2221. wasAttributedTo:
  2222. - age:
  2223. schemaKey: PropertyValue
  2224. unitText: ISO-8601 duration
  2225. value: P9DT55991.669253S
  2226. valueReference:
  2227. schemaKey: PropertyValue
  2228. value: dandi:BirthReference
  2229. genotype: hemi
  2230. identifier: CRH-007
  2231. schemaKey: Participant
  2232. sex:
  2233. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2234. name: Male
  2235. schemaKey: SexType
  2236. species:
  2237. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2238. name: Mus musculus - House mouse
  2239. schemaKey: SpeciesType
  2240. wasGeneratedBy:
  2241. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  2242. Sliced thalamus WARM
  2243. 34g, 0.35 mL ket/xyl'
  2244. identifier: HK_CRH-Cre~2025.03.27~S01C01
  2245. name: HK_CRH-Cre~2025.03.27~S01C01
  2246. schemaKey: Session
  2247. startDate: '2025-03-27T15:33:11.669253-04:00'
  2248. - description: Metadata generated by DANDI cli
  2249. endDate: '2025-04-23T15:34:33.304576-04:00'
  2250. id: urn:uuid:053e10c4-5401-4e38-baa3-90f3b5b96d1d
  2251. name: Metadata generation
  2252. schemaKey: Activity
  2253. startDate: '2025-04-23T15:34:33.303807-04:00'
  2254. wasAssociatedWith:
  2255. - identifier: RRID:SCR_019009
  2256. name: DANDI Command Line Interface
  2257. schemaKey: Software
  2258. url: https://github.com/dandi/dandi-cli
  2259. version: 0.67.3
  2260. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.9/context.json
  2261. access:
  2262. - schemaKey: AccessRequirements
  2263. status: dandi:EmbargoedAccess
  2264. approach:
  2265. - name: electrophysiological approach
  2266. schemaKey: ApproachType
  2267. blobDateModified: '2025-04-23T14:47:01.300846-04:00'
  2268. contentSize: 262649952
  2269. contentUrl:
  2270. - https://api.dandiarchive.org/api/assets/245c055a-d63a-4e5c-a942-f0ffa012e79d/download/
  2271. - https://dandiarchive.s3.amazonaws.com/blobs/c34/0ba/c340baa7-4a82-43d1-bc17-c7ccff1f49c9
  2272. dateModified: '2025-04-23T15:34:26.449575-04:00'
  2273. digest:
  2274. dandi:dandi-etag: 8c0282d33cd0267c9b0be9ad54a38d81-4
  2275. dandi:sha2-256: 4c386f9673dece631b4b84cb79ba0c22a85b6fb9be463025b270512ca773b0ca
  2276. encodingFormat: application/x-nwb
  2277. id: dandiasset:245c055a-d63a-4e5c-a942-f0ffa012e79d
  2278. identifier: 245c055a-d63a-4e5c-a942-f0ffa012e79d
  2279. keywords:
  2280. - mouse
  2281. - intracellular recording
  2282. - channelrhodopsins
  2283. - pathway tracing
  2284. - auditory cortex
  2285. - auditory thalamus
  2286. - medial geniculate
  2287. - inferior colliculus
  2288. - brachium of the inferior colliculus
  2289. - cochlear nucleus
  2290. - dorsal cochlear nucleus
  2291. - AAV
  2292. - synaptic potentials
  2293. - optogenetics
  2294. measurementTechnique:
  2295. - name: current clamp technique
  2296. schemaKey: MeasurementTechniqueType
  2297. path: sub-CRH-007/sub-CRH-007_ses-HK-CRH-Cre~2025-03-27~S00C00_icephys.nwb
  2298. schemaKey: Asset
  2299. schemaVersion: 0.6.9
  2300. variableMeasured:
  2301. - schemaKey: PropertyValue
  2302. value: CurrentClampStimulusSeries
  2303. - schemaKey: PropertyValue
  2304. value: CurrentClampSeries
  2305. wasAttributedTo:
  2306. - age:
  2307. schemaKey: PropertyValue
  2308. unitText: ISO-8601 duration
  2309. value: P9DT55991.669253S
  2310. valueReference:
  2311. schemaKey: PropertyValue
  2312. value: dandi:BirthReference
  2313. genotype: hemi
  2314. identifier: CRH-007
  2315. schemaKey: Participant
  2316. sex:
  2317. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  2318. name: Male
  2319. schemaKey: SexType
  2320. species:
  2321. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2322. name: Mus musculus - House mouse
  2323. schemaKey: SpeciesType
  2324. wasGeneratedBy:
  2325. - description: 'Crh-cre:ai9 mouse, DOB 12/22/2024
  2326. Sliced thalamus WARM
  2327. 34g, 0.35 mL ket/xyl'
  2328. identifier: HK_CRH-Cre~2025.03.27~S00C00
  2329. name: HK_CRH-Cre~2025.03.27~S00C00
  2330. schemaKey: Session
  2331. startDate: '2025-03-27T15:33:11.669253-04:00'
  2332. - description: Metadata generated by DANDI cli
  2333. endDate: '2025-04-23T15:34:26.449564-04:00'
  2334. id: urn:uuid:88c1b259-7b5a-430c-81c9-dddff4fdde00
  2335. name: Metadata generation
  2336. schemaKey: Activity
  2337. startDate: '2025-04-23T15:34:26.384076-04:00'
  2338. wasAssociatedWith:
  2339. - identifier: RRID:SCR_019009
  2340. name: DANDI Command Line Interface
  2341. schemaKey: Software
  2342. url: https://github.com/dandi/dandi-cli
  2343. version: 0.67.3
Tip!

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

Comments

Loading...