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 76 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: microscopy approach; cell population imaging
  7. schemaKey: ApproachType
  8. blobDateModified: '2024-07-10T13:23:20.281018-04:00'
  9. contentSize: 216568
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/6b0c299f-6905-4683-a6f5-3febcc941ef0/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/976/d6a/976d6aa7-c1f1-4caf-b38f-523b5b6f7ffb
  13. dateModified: '2024-07-10T14:46:06.157880-04:00'
  14. digest:
  15. dandi:dandi-etag: 4da308ed89400493ea24ab3f240353a2-1
  16. dandi:sha2-256: 6251eaef4573516fed1780db7f1e453c22f0b9524172b6848cf234e4a7cf33ff
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:6b0c299f-6905-4683-a6f5-3febcc941ef0
  19. identifier: 6b0c299f-6905-4683-a6f5-3febcc941ef0
  20. measurementTechnique:
  21. - name: surgical technique
  22. schemaKey: MeasurementTechniqueType
  23. - name: analytical technique
  24. schemaKey: MeasurementTechniqueType
  25. path: sub-L698/sub-L698_ses-Dendrite1.nwb
  26. schemaKey: Asset
  27. schemaVersion: 0.6.7
  28. variableMeasured:
  29. - schemaKey: PropertyValue
  30. value: ProcessingModule
  31. - schemaKey: PropertyValue
  32. value: ImagingPlane
  33. - schemaKey: PropertyValue
  34. value: PlaneSegmentation
  35. - schemaKey: PropertyValue
  36. value: OpticalChannel
  37. wasAttributedTo:
  38. - age:
  39. schemaKey: PropertyValue
  40. unitText: ISO-8601 duration
  41. value: P14W
  42. valueReference:
  43. schemaKey: PropertyValue
  44. value: dandi:BirthReference
  45. genotype: Thy1-YFP
  46. identifier: L698
  47. schemaKey: Participant
  48. sex:
  49. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  50. name: Female
  51. schemaKey: SexType
  52. species:
  53. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  54. name: Mus musculus - House mouse
  55. schemaKey: SpeciesType
  56. wasGeneratedBy:
  57. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  58. and then segmented in Blender.
  59. name: Acquisition session
  60. schemaKey: Session
  61. startDate: '2024-07-10T13:23:19.699729-04:00'
  62. - description: Metadata generated by DANDI cli
  63. endDate: '2024-07-10T14:46:06.157880-04:00'
  64. id: urn:uuid:ff5cd619-7ebe-4568-9c90-b7e82520ff1d
  65. name: Metadata generation
  66. schemaKey: Activity
  67. startDate: '2024-07-10T14:46:05.530098-04:00'
  68. wasAssociatedWith:
  69. - identifier: RRID:SCR_019009
  70. name: DANDI Command Line Interface
  71. schemaKey: Software
  72. url: https://github.com/dandi/dandi-cli
  73. version: 0.62.2
  74. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  75. access:
  76. - schemaKey: AccessRequirements
  77. status: dandi:OpenAccess
  78. approach:
  79. - name: microscopy approach; cell population imaging
  80. schemaKey: ApproachType
  81. blobDateModified: '2024-07-10T13:22:09.553133-04:00'
  82. contentSize: 304288
  83. contentUrl:
  84. - https://api.dandiarchive.org/api/assets/46fde359-98e7-486a-82f5-b14309a6e3e5/download/
  85. - https://dandiarchive.s3.amazonaws.com/blobs/fc4/938/fc49386a-fedb-4096-8d4e-999c9f88eb45
  86. dateModified: '2024-07-10T14:46:09.391325-04:00'
  87. digest:
  88. dandi:dandi-etag: 062beac724063b62667a67af4bfcc60e-1
  89. dandi:sha2-256: 9c895071fc4ba495943f0057b0b9151471426cff8a70c50e4dbe2a6718118829
  90. encodingFormat: application/x-nwb
  91. id: dandiasset:46fde359-98e7-486a-82f5-b14309a6e3e5
  92. identifier: 46fde359-98e7-486a-82f5-b14309a6e3e5
  93. measurementTechnique:
  94. - name: surgical technique
  95. schemaKey: MeasurementTechniqueType
  96. - name: analytical technique
  97. schemaKey: MeasurementTechniqueType
  98. path: sub-L698/sub-L698_ses-Dendrite2.nwb
  99. schemaKey: Asset
  100. schemaVersion: 0.6.7
  101. variableMeasured:
  102. - schemaKey: PropertyValue
  103. value: ProcessingModule
  104. - schemaKey: PropertyValue
  105. value: ImagingPlane
  106. - schemaKey: PropertyValue
  107. value: PlaneSegmentation
  108. - schemaKey: PropertyValue
  109. value: OpticalChannel
  110. wasAttributedTo:
  111. - age:
  112. schemaKey: PropertyValue
  113. unitText: ISO-8601 duration
  114. value: P14W
  115. valueReference:
  116. schemaKey: PropertyValue
  117. value: dandi:BirthReference
  118. genotype: Thy1-YFP
  119. identifier: L698
  120. schemaKey: Participant
  121. sex:
  122. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  123. name: Female
  124. schemaKey: SexType
  125. species:
  126. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  127. name: Mus musculus - House mouse
  128. schemaKey: SpeciesType
  129. wasGeneratedBy:
  130. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  131. and then segmented in Blender.
  132. name: Acquisition session
  133. schemaKey: Session
  134. startDate: '2024-07-10T13:22:08.783323-04:00'
  135. - description: Metadata generated by DANDI cli
  136. endDate: '2024-07-10T14:46:09.391325-04:00'
  137. id: urn:uuid:82aea01f-0c5c-4180-849d-361354a28bc6
  138. name: Metadata generation
  139. schemaKey: Activity
  140. startDate: '2024-07-10T14:46:07.146581-04:00'
  141. wasAssociatedWith:
  142. - identifier: RRID:SCR_019009
  143. name: DANDI Command Line Interface
  144. schemaKey: Software
  145. url: https://github.com/dandi/dandi-cli
  146. version: 0.62.2
  147. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  148. access:
  149. - schemaKey: AccessRequirements
  150. status: dandi:OpenAccess
  151. approach:
  152. - name: microscopy approach; cell population imaging
  153. schemaKey: ApproachType
  154. blobDateModified: '2024-07-10T13:23:05.630944-04:00'
  155. contentSize: 460248
  156. contentUrl:
  157. - https://api.dandiarchive.org/api/assets/9b200443-425c-40a0-be96-aeb7cfcb9984/download/
  158. - https://dandiarchive.s3.amazonaws.com/blobs/8de/476/8de476fe-a2ff-4d32-be9c-0af011d9bb88
  159. dateModified: '2024-07-10T14:46:15.307860-04:00'
  160. digest:
  161. dandi:dandi-etag: 0ace43a7a788cbbdbe9103b492246c52-1
  162. dandi:sha2-256: f47c73c171cb7b5207b577b6fb76f566ada77f67293900719bc2257743b5332f
  163. encodingFormat: application/x-nwb
  164. id: dandiasset:9b200443-425c-40a0-be96-aeb7cfcb9984
  165. identifier: 9b200443-425c-40a0-be96-aeb7cfcb9984
  166. measurementTechnique:
  167. - name: surgical technique
  168. schemaKey: MeasurementTechniqueType
  169. - name: analytical technique
  170. schemaKey: MeasurementTechniqueType
  171. path: sub-L698/sub-L698_ses-Dendrite2b.nwb
  172. schemaKey: Asset
  173. schemaVersion: 0.6.7
  174. variableMeasured:
  175. - schemaKey: PropertyValue
  176. value: ProcessingModule
  177. - schemaKey: PropertyValue
  178. value: ImagingPlane
  179. - schemaKey: PropertyValue
  180. value: PlaneSegmentation
  181. - schemaKey: PropertyValue
  182. value: OpticalChannel
  183. wasAttributedTo:
  184. - age:
  185. schemaKey: PropertyValue
  186. unitText: ISO-8601 duration
  187. value: P14W
  188. valueReference:
  189. schemaKey: PropertyValue
  190. value: dandi:BirthReference
  191. genotype: Thy1-YFP
  192. identifier: L698
  193. schemaKey: Participant
  194. sex:
  195. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  196. name: Male
  197. schemaKey: SexType
  198. species:
  199. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  200. name: Mus musculus - House mouse
  201. schemaKey: SpeciesType
  202. wasGeneratedBy:
  203. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  204. and then segmented in Blender.
  205. name: Acquisition session
  206. schemaKey: Session
  207. startDate: '2024-07-10T13:23:04.483069-04:00'
  208. - description: Metadata generated by DANDI cli
  209. endDate: '2024-07-10T14:46:15.307860-04:00'
  210. id: urn:uuid:6f30d1b3-78e7-41f1-9db8-967e558e5e1c
  211. name: Metadata generation
  212. schemaKey: Activity
  213. startDate: '2024-07-10T14:46:10.851173-04:00'
  214. wasAssociatedWith:
  215. - identifier: RRID:SCR_019009
  216. name: DANDI Command Line Interface
  217. schemaKey: Software
  218. url: https://github.com/dandi/dandi-cli
  219. version: 0.62.2
  220. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  221. access:
  222. - schemaKey: AccessRequirements
  223. status: dandi:OpenAccess
  224. approach:
  225. - name: microscopy approach; cell population imaging
  226. schemaKey: ApproachType
  227. blobDateModified: '2024-07-10T13:22:35.091666-04:00'
  228. contentSize: 507672
  229. contentUrl:
  230. - https://api.dandiarchive.org/api/assets/07574167-e60d-4d96-9bc7-7513ba75d7d2/download/
  231. - https://dandiarchive.s3.amazonaws.com/blobs/4e3/da7/4e3da782-3aab-4937-afef-4b9576b74e45
  232. dateModified: '2024-07-10T14:46:17.492553-04:00'
  233. digest:
  234. dandi:dandi-etag: 3bee00c991b289a71717bcbc62e6f395-1
  235. dandi:sha2-256: 23d578abde6961b32a83c4a0d48d83f1bbc799c3295bab06ffd8ee4073258d7e
  236. encodingFormat: application/x-nwb
  237. id: dandiasset:07574167-e60d-4d96-9bc7-7513ba75d7d2
  238. identifier: 07574167-e60d-4d96-9bc7-7513ba75d7d2
  239. measurementTechnique:
  240. - name: surgical technique
  241. schemaKey: MeasurementTechniqueType
  242. - name: analytical technique
  243. schemaKey: MeasurementTechniqueType
  244. path: sub-L698/sub-L698_ses-Dendrite2a.nwb
  245. schemaKey: Asset
  246. schemaVersion: 0.6.7
  247. variableMeasured:
  248. - schemaKey: PropertyValue
  249. value: ProcessingModule
  250. - schemaKey: PropertyValue
  251. value: ImagingPlane
  252. - schemaKey: PropertyValue
  253. value: PlaneSegmentation
  254. - schemaKey: PropertyValue
  255. value: OpticalChannel
  256. wasAttributedTo:
  257. - age:
  258. schemaKey: PropertyValue
  259. unitText: ISO-8601 duration
  260. value: P14W
  261. valueReference:
  262. schemaKey: PropertyValue
  263. value: dandi:BirthReference
  264. genotype: Thy1-YFP
  265. identifier: L698
  266. schemaKey: Participant
  267. sex:
  268. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  269. name: Male
  270. schemaKey: SexType
  271. species:
  272. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  273. name: Mus musculus - House mouse
  274. schemaKey: SpeciesType
  275. wasGeneratedBy:
  276. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  277. and then segmented in Blender.
  278. name: Acquisition session
  279. schemaKey: Session
  280. startDate: '2024-07-10T13:22:33.797832-04:00'
  281. - description: Metadata generated by DANDI cli
  282. endDate: '2024-07-10T14:46:17.492553-04:00'
  283. id: urn:uuid:01f4860d-6beb-4de1-a47e-ad4f3adefc25
  284. name: Metadata generation
  285. schemaKey: Activity
  286. startDate: '2024-07-10T14:46:11.950714-04:00'
  287. wasAssociatedWith:
  288. - identifier: RRID:SCR_019009
  289. name: DANDI Command Line Interface
  290. schemaKey: Software
  291. url: https://github.com/dandi/dandi-cli
  292. version: 0.62.2
  293. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  294. access:
  295. - schemaKey: AccessRequirements
  296. status: dandi:OpenAccess
  297. approach:
  298. - name: microscopy approach; cell population imaging
  299. schemaKey: ApproachType
  300. blobDateModified: '2024-07-10T13:19:59.221845-04:00'
  301. contentSize: 97802032
  302. contentUrl:
  303. - https://api.dandiarchive.org/api/assets/6dc28cff-4d60-4f37-84dc-2ee534d0135c/download/
  304. - https://dandiarchive.s3.amazonaws.com/blobs/f44/649/f44649b7-2c3d-4799-938e-2e5f343b289d
  305. dateModified: '2024-07-10T14:46:50.820509-04:00'
  306. digest:
  307. dandi:dandi-etag: 0a961d5d9f3516a2815af5b51f925b4d-2
  308. dandi:sha2-256: adc4acc007713f91845abd0c817cbbb0a85489da99ed2e01acfe793c3de49b0c
  309. encodingFormat: application/x-nwb
  310. id: dandiasset:6dc28cff-4d60-4f37-84dc-2ee534d0135c
  311. identifier: 6dc28cff-4d60-4f37-84dc-2ee534d0135c
  312. measurementTechnique:
  313. - name: surgical technique
  314. schemaKey: MeasurementTechniqueType
  315. - name: analytical technique
  316. schemaKey: MeasurementTechniqueType
  317. path: sub-l691/sub-l691_ses-dendrite1a.nwb
  318. schemaKey: Asset
  319. schemaVersion: 0.6.7
  320. variableMeasured:
  321. - schemaKey: PropertyValue
  322. value: ProcessingModule
  323. - schemaKey: PropertyValue
  324. value: ImagingPlane
  325. - schemaKey: PropertyValue
  326. value: PlaneSegmentation
  327. - schemaKey: PropertyValue
  328. value: OpticalChannel
  329. wasAttributedTo:
  330. - age:
  331. schemaKey: PropertyValue
  332. unitText: ISO-8601 duration
  333. value: P14W
  334. valueReference:
  335. schemaKey: PropertyValue
  336. value: dandi:BirthReference
  337. genotype: Thy1-YFP
  338. identifier: L691
  339. schemaKey: Participant
  340. sex:
  341. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  342. name: Female
  343. schemaKey: SexType
  344. species:
  345. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  346. name: Mus musculus - House mouse
  347. schemaKey: SpeciesType
  348. wasGeneratedBy:
  349. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  350. and then segmented in Blender.
  351. name: Acquisition session
  352. schemaKey: Session
  353. startDate: '2024-07-10T13:19:58.184826-04:00'
  354. - description: Metadata generated by DANDI cli
  355. endDate: '2024-07-10T14:46:50.820509-04:00'
  356. id: urn:uuid:a75e3ef6-2c92-4fc4-aa39-edcddcae04e9
  357. name: Metadata generation
  358. schemaKey: Activity
  359. startDate: '2024-07-10T14:46:49.424882-04:00'
  360. wasAssociatedWith:
  361. - identifier: RRID:SCR_019009
  362. name: DANDI Command Line Interface
  363. schemaKey: Software
  364. url: https://github.com/dandi/dandi-cli
  365. version: 0.62.2
  366. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  367. access:
  368. - schemaKey: AccessRequirements
  369. status: dandi:OpenAccess
  370. approach:
  371. - name: microscopy approach; cell population imaging
  372. schemaKey: ApproachType
  373. blobDateModified: '2024-07-10T13:21:02.638703-04:00'
  374. contentSize: 97913800
  375. contentUrl:
  376. - https://api.dandiarchive.org/api/assets/c80eefda-a3f6-4223-941b-53b74253e854/download/
  377. - https://dandiarchive.s3.amazonaws.com/blobs/00d/d82/00dd829b-f53d-4f9f-ae6a-60ce49ced24a
  378. dateModified: '2024-07-10T14:46:54.145775-04:00'
  379. digest:
  380. dandi:dandi-etag: 5b542c2efc5db55609ca862a074d5db2-2
  381. dandi:sha2-256: fa9172e14cea8ac455b485b9192019b31ac3e108bb49abc026f99c83d7d9fc40
  382. encodingFormat: application/x-nwb
  383. id: dandiasset:c80eefda-a3f6-4223-941b-53b74253e854
  384. identifier: c80eefda-a3f6-4223-941b-53b74253e854
  385. measurementTechnique:
  386. - name: surgical technique
  387. schemaKey: MeasurementTechniqueType
  388. - name: analytical technique
  389. schemaKey: MeasurementTechniqueType
  390. path: sub-l691/sub-l691_ses-dendrite1b.nwb
  391. schemaKey: Asset
  392. schemaVersion: 0.6.7
  393. variableMeasured:
  394. - schemaKey: PropertyValue
  395. value: ProcessingModule
  396. - schemaKey: PropertyValue
  397. value: ImagingPlane
  398. - schemaKey: PropertyValue
  399. value: PlaneSegmentation
  400. - schemaKey: PropertyValue
  401. value: OpticalChannel
  402. wasAttributedTo:
  403. - age:
  404. schemaKey: PropertyValue
  405. unitText: ISO-8601 duration
  406. value: P14W
  407. valueReference:
  408. schemaKey: PropertyValue
  409. value: dandi:BirthReference
  410. genotype: Thy1-YFP
  411. identifier: L691
  412. schemaKey: Participant
  413. sex:
  414. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  415. name: Female
  416. schemaKey: SexType
  417. species:
  418. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  419. name: Mus musculus - House mouse
  420. schemaKey: SpeciesType
  421. wasGeneratedBy:
  422. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  423. and then segmented in Blender.
  424. name: Acquisition session
  425. schemaKey: Session
  426. startDate: '2024-07-10T13:21:01.361640-04:00'
  427. - description: Metadata generated by DANDI cli
  428. endDate: '2024-07-10T14:46:54.145775-04:00'
  429. id: urn:uuid:161b6569-0143-4e48-a827-c7788988011e
  430. name: Metadata generation
  431. schemaKey: Activity
  432. startDate: '2024-07-10T14:46:52.765989-04:00'
  433. wasAssociatedWith:
  434. - identifier: RRID:SCR_019009
  435. name: DANDI Command Line Interface
  436. schemaKey: Software
  437. url: https://github.com/dandi/dandi-cli
  438. version: 0.62.2
  439. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  440. access:
  441. - schemaKey: AccessRequirements
  442. status: dandi:OpenAccess
  443. approach:
  444. - name: microscopy approach; cell population imaging
  445. schemaKey: ApproachType
  446. blobDateModified: '2024-07-10T13:26:52.202610-04:00'
  447. contentSize: 351592
  448. contentUrl:
  449. - https://api.dandiarchive.org/api/assets/3c1e69cd-0a54-4062-9b6b-d2173740534e/download/
  450. - https://dandiarchive.s3.amazonaws.com/blobs/58e/7ee/58e7ee18-6f1b-43f6-98ba-3c5e6b760a81
  451. dateModified: '2024-07-10T15:33:03.007515-04:00'
  452. digest:
  453. dandi:dandi-etag: 31dfee7ea7e5ce49fe46ea8d6dbbb864-1
  454. dandi:sha2-256: 909aa776233a2c88da55ac8a3b59c881884807dd48f77cfcd2b7661b59f5f7ba
  455. encodingFormat: application/x-nwb
  456. id: dandiasset:3c1e69cd-0a54-4062-9b6b-d2173740534e
  457. identifier: 3c1e69cd-0a54-4062-9b6b-d2173740534e
  458. measurementTechnique:
  459. - name: analytical technique
  460. schemaKey: MeasurementTechniqueType
  461. - name: surgical technique
  462. schemaKey: MeasurementTechniqueType
  463. path: sub-L882/sub-L882_ses-Dendrite2a.nwb
  464. schemaKey: Asset
  465. schemaVersion: 0.6.7
  466. variableMeasured:
  467. - schemaKey: PropertyValue
  468. value: OpticalChannel
  469. - schemaKey: PropertyValue
  470. value: ImagingPlane
  471. - schemaKey: PropertyValue
  472. value: PlaneSegmentation
  473. - schemaKey: PropertyValue
  474. value: ProcessingModule
  475. wasAttributedTo:
  476. - age:
  477. schemaKey: PropertyValue
  478. unitText: ISO-8601 duration
  479. value: P14W
  480. valueReference:
  481. schemaKey: PropertyValue
  482. value: dandi:BirthReference
  483. genotype: Thy1-YFP
  484. identifier: L882
  485. schemaKey: Participant
  486. sex:
  487. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  488. name: Female
  489. schemaKey: SexType
  490. species:
  491. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  492. name: Mus musculus - House mouse
  493. schemaKey: SpeciesType
  494. wasGeneratedBy:
  495. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  496. and then segmented in Blender.
  497. name: Acquisition session
  498. schemaKey: Session
  499. startDate: '2024-07-10T13:26:51.243387-04:00'
  500. - description: Metadata generated by DANDI cli
  501. endDate: '2024-07-10T15:33:03.007515-04:00'
  502. id: urn:uuid:991f052c-9a56-4ead-94df-292d3b0c0668
  503. name: Metadata generation
  504. schemaKey: Activity
  505. startDate: '2024-07-10T15:33:00.935791-04:00'
  506. wasAssociatedWith:
  507. - identifier: RRID:SCR_019009
  508. name: DANDI Command Line Interface
  509. schemaKey: Software
  510. url: https://github.com/dandi/dandi-cli
  511. version: 0.62.2
  512. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  513. access:
  514. - schemaKey: AccessRequirements
  515. status: dandi:OpenAccess
  516. approach:
  517. - name: microscopy approach; cell population imaging
  518. schemaKey: ApproachType
  519. blobDateModified: '2024-07-10T13:27:03.083123-04:00'
  520. contentSize: 365632
  521. contentUrl:
  522. - https://api.dandiarchive.org/api/assets/2bf1b8dc-28b5-4bca-8e6d-4e651e2cae53/download/
  523. - https://dandiarchive.s3.amazonaws.com/blobs/931/1f3/9311f361-679c-40f9-9325-fda72f453524
  524. dateModified: '2024-07-10T15:33:05.438317-04:00'
  525. digest:
  526. dandi:dandi-etag: a71cf1252b66d530b9b105767f0191c3-1
  527. dandi:sha2-256: a1a15316fb0698f25f4fc7fb337f3732ea0cf064dd8294ed2fe6aa9bf6710aff
  528. encodingFormat: application/x-nwb
  529. id: dandiasset:2bf1b8dc-28b5-4bca-8e6d-4e651e2cae53
  530. identifier: 2bf1b8dc-28b5-4bca-8e6d-4e651e2cae53
  531. measurementTechnique:
  532. - name: analytical technique
  533. schemaKey: MeasurementTechniqueType
  534. - name: surgical technique
  535. schemaKey: MeasurementTechniqueType
  536. path: sub-L882/sub-L882_ses-Dendrite2b.nwb
  537. schemaKey: Asset
  538. schemaVersion: 0.6.7
  539. variableMeasured:
  540. - schemaKey: PropertyValue
  541. value: OpticalChannel
  542. - schemaKey: PropertyValue
  543. value: ImagingPlane
  544. - schemaKey: PropertyValue
  545. value: PlaneSegmentation
  546. - schemaKey: PropertyValue
  547. value: ProcessingModule
  548. wasAttributedTo:
  549. - age:
  550. schemaKey: PropertyValue
  551. unitText: ISO-8601 duration
  552. value: P14W
  553. valueReference:
  554. schemaKey: PropertyValue
  555. value: dandi:BirthReference
  556. genotype: Thy1-YFP
  557. identifier: L882
  558. schemaKey: Participant
  559. sex:
  560. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  561. name: Female
  562. schemaKey: SexType
  563. species:
  564. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  565. name: Mus musculus - House mouse
  566. schemaKey: SpeciesType
  567. wasGeneratedBy:
  568. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  569. and then segmented in Blender.
  570. name: Acquisition session
  571. schemaKey: Session
  572. startDate: '2024-07-10T13:27:02.137302-04:00'
  573. - description: Metadata generated by DANDI cli
  574. endDate: '2024-07-10T15:33:05.438317-04:00'
  575. id: urn:uuid:7c87b951-b79e-48ba-9c0d-059520550535
  576. name: Metadata generation
  577. schemaKey: Activity
  578. startDate: '2024-07-10T15:33:02.832799-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.62.2
  585. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  586. access:
  587. - schemaKey: AccessRequirements
  588. status: dandi:OpenAccess
  589. approach:
  590. - name: microscopy approach; cell population imaging
  591. schemaKey: ApproachType
  592. blobDateModified: '2024-07-10T13:27:32.615220-04:00'
  593. contentSize: 327280
  594. contentUrl:
  595. - https://api.dandiarchive.org/api/assets/6a318f5f-893b-4b1c-8fcf-0ee0ec11892d/download/
  596. - https://dandiarchive.s3.amazonaws.com/blobs/16c/ad9/16cad92f-174e-4811-9882-42a3e6542086
  597. dateModified: '2024-07-10T15:33:07.312463-04:00'
  598. digest:
  599. dandi:dandi-etag: c63766145a482b65f9f665ae9d529404-1
  600. dandi:sha2-256: 979c0e50634d79c68a4166a8ae28e06750bde6350a310791578a54c0ccb9bbc4
  601. encodingFormat: application/x-nwb
  602. id: dandiasset:6a318f5f-893b-4b1c-8fcf-0ee0ec11892d
  603. identifier: 6a318f5f-893b-4b1c-8fcf-0ee0ec11892d
  604. measurementTechnique:
  605. - name: analytical technique
  606. schemaKey: MeasurementTechniqueType
  607. - name: surgical technique
  608. schemaKey: MeasurementTechniqueType
  609. path: sub-L882/sub-L882_ses-Dendrite4a.nwb
  610. schemaKey: Asset
  611. schemaVersion: 0.6.7
  612. variableMeasured:
  613. - schemaKey: PropertyValue
  614. value: OpticalChannel
  615. - schemaKey: PropertyValue
  616. value: ImagingPlane
  617. - schemaKey: PropertyValue
  618. value: PlaneSegmentation
  619. - schemaKey: PropertyValue
  620. value: ProcessingModule
  621. wasAttributedTo:
  622. - age:
  623. schemaKey: PropertyValue
  624. unitText: ISO-8601 duration
  625. value: P14W
  626. valueReference:
  627. schemaKey: PropertyValue
  628. value: dandi:BirthReference
  629. genotype: Thy1-YFP
  630. identifier: L882
  631. schemaKey: Participant
  632. sex:
  633. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  634. name: Female
  635. schemaKey: SexType
  636. species:
  637. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  638. name: Mus musculus - House mouse
  639. schemaKey: SpeciesType
  640. wasGeneratedBy:
  641. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  642. and then segmented in Blender.
  643. name: Acquisition session
  644. schemaKey: Session
  645. startDate: '2024-07-10T13:27:31.780541-04:00'
  646. - description: Metadata generated by DANDI cli
  647. endDate: '2024-07-10T15:33:07.312463-04:00'
  648. id: urn:uuid:b8a95fd2-bb4b-4e20-ad55-04704acc9feb
  649. name: Metadata generation
  650. schemaKey: Activity
  651. startDate: '2024-07-10T15:33:04.307378-04:00'
  652. wasAssociatedWith:
  653. - identifier: RRID:SCR_019009
  654. name: DANDI Command Line Interface
  655. schemaKey: Software
  656. url: https://github.com/dandi/dandi-cli
  657. version: 0.62.2
  658. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  659. access:
  660. - schemaKey: AccessRequirements
  661. status: dandi:OpenAccess
  662. approach:
  663. - name: microscopy approach; cell population imaging
  664. schemaKey: ApproachType
  665. blobDateModified: '2024-07-10T13:27:19.215406-04:00'
  666. contentSize: 399512
  667. contentUrl:
  668. - https://api.dandiarchive.org/api/assets/47000455-57d3-4e4e-83cb-2c2ed3864328/download/
  669. - https://dandiarchive.s3.amazonaws.com/blobs/a12/893/a128931d-6896-4051-b63e-26c4368d2998
  670. dateModified: '2024-07-10T15:33:08.693661-04:00'
  671. digest:
  672. dandi:dandi-etag: 3dda036676392b8215a450690a9d76e6-1
  673. dandi:sha2-256: 3cd111f6923b2e07fa3fa8b4fbf584ffb04a3c1773fd78c45a5b0adb6c4ae3e9
  674. encodingFormat: application/x-nwb
  675. id: dandiasset:47000455-57d3-4e4e-83cb-2c2ed3864328
  676. identifier: 47000455-57d3-4e4e-83cb-2c2ed3864328
  677. measurementTechnique:
  678. - name: analytical technique
  679. schemaKey: MeasurementTechniqueType
  680. - name: surgical technique
  681. schemaKey: MeasurementTechniqueType
  682. path: sub-L882/sub-L882_ses-Dendrite3b.nwb
  683. schemaKey: Asset
  684. schemaVersion: 0.6.7
  685. variableMeasured:
  686. - schemaKey: PropertyValue
  687. value: OpticalChannel
  688. - schemaKey: PropertyValue
  689. value: ImagingPlane
  690. - schemaKey: PropertyValue
  691. value: PlaneSegmentation
  692. - schemaKey: PropertyValue
  693. value: ProcessingModule
  694. wasAttributedTo:
  695. - age:
  696. schemaKey: PropertyValue
  697. unitText: ISO-8601 duration
  698. value: P14W
  699. valueReference:
  700. schemaKey: PropertyValue
  701. value: dandi:BirthReference
  702. genotype: Thy1-YFP
  703. identifier: L882
  704. schemaKey: Participant
  705. sex:
  706. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  707. name: Female
  708. schemaKey: SexType
  709. species:
  710. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  711. name: Mus musculus - House mouse
  712. schemaKey: SpeciesType
  713. wasGeneratedBy:
  714. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  715. and then segmented in Blender.
  716. name: Acquisition session
  717. schemaKey: Session
  718. startDate: '2024-07-10T13:27:18.209465-04:00'
  719. - description: Metadata generated by DANDI cli
  720. endDate: '2024-07-10T15:33:08.693661-04:00'
  721. id: urn:uuid:f69dd4dd-7bd2-4a8b-8d23-b97ff3a985b6
  722. name: Metadata generation
  723. schemaKey: Activity
  724. startDate: '2024-07-10T15:33:05.453331-04:00'
  725. wasAssociatedWith:
  726. - identifier: RRID:SCR_019009
  727. name: DANDI Command Line Interface
  728. schemaKey: Software
  729. url: https://github.com/dandi/dandi-cli
  730. version: 0.62.2
  731. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  732. access:
  733. - schemaKey: AccessRequirements
  734. status: dandi:OpenAccess
  735. approach:
  736. - name: microscopy approach; cell population imaging
  737. schemaKey: ApproachType
  738. blobDateModified: '2024-07-10T13:26:01.084314-04:00'
  739. contentSize: 648728
  740. contentUrl:
  741. - https://api.dandiarchive.org/api/assets/2f74f708-a814-4217-9c52-b01ae22680a8/download/
  742. - https://dandiarchive.s3.amazonaws.com/blobs/4bc/9bc/4bc9bc13-a0b6-46f4-a09a-853254136f81
  743. dateModified: '2024-07-10T15:33:13.708177-04:00'
  744. digest:
  745. dandi:dandi-etag: eaaece4e267c6f871ba2d4bedb288fef-1
  746. dandi:sha2-256: cd76f3b254151d5c957408577ac3d1483c0995e10caa76509b198e582f097605
  747. encodingFormat: application/x-nwb
  748. id: dandiasset:2f74f708-a814-4217-9c52-b01ae22680a8
  749. identifier: 2f74f708-a814-4217-9c52-b01ae22680a8
  750. measurementTechnique:
  751. - name: analytical technique
  752. schemaKey: MeasurementTechniqueType
  753. - name: surgical technique
  754. schemaKey: MeasurementTechniqueType
  755. path: sub-L882/sub-L882_ses-Dendrite1.nwb
  756. schemaKey: Asset
  757. schemaVersion: 0.6.7
  758. variableMeasured:
  759. - schemaKey: PropertyValue
  760. value: OpticalChannel
  761. - schemaKey: PropertyValue
  762. value: ImagingPlane
  763. - schemaKey: PropertyValue
  764. value: PlaneSegmentation
  765. - schemaKey: PropertyValue
  766. value: ProcessingModule
  767. wasAttributedTo:
  768. - age:
  769. schemaKey: PropertyValue
  770. unitText: ISO-8601 duration
  771. value: P14W
  772. valueReference:
  773. schemaKey: PropertyValue
  774. value: dandi:BirthReference
  775. genotype: Thy1-YFP
  776. identifier: L882
  777. schemaKey: Participant
  778. sex:
  779. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  780. name: Female
  781. schemaKey: SexType
  782. species:
  783. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  784. name: Mus musculus - House mouse
  785. schemaKey: SpeciesType
  786. wasGeneratedBy:
  787. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  788. and then segmented in Blender.
  789. name: Acquisition session
  790. schemaKey: Session
  791. startDate: '2024-07-10T13:25:59.260345-04:00'
  792. - description: Metadata generated by DANDI cli
  793. endDate: '2024-07-10T15:33:13.708177-04:00'
  794. id: urn:uuid:34565c43-673b-47d0-a536-999414d8b7b2
  795. name: Metadata generation
  796. schemaKey: Activity
  797. startDate: '2024-07-10T15:33:06.947318-04:00'
  798. wasAssociatedWith:
  799. - identifier: RRID:SCR_019009
  800. name: DANDI Command Line Interface
  801. schemaKey: Software
  802. url: https://github.com/dandi/dandi-cli
  803. version: 0.62.2
  804. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  805. access:
  806. - schemaKey: AccessRequirements
  807. status: dandi:OpenAccess
  808. approach:
  809. - name: microscopy approach; cell population imaging
  810. schemaKey: ApproachType
  811. blobDateModified: '2024-07-10T13:28:01.498405-04:00'
  812. contentSize: 380520
  813. contentUrl:
  814. - https://api.dandiarchive.org/api/assets/4f64fd61-adc7-4475-aac9-98241f14e858/download/
  815. - https://dandiarchive.s3.amazonaws.com/blobs/8c9/671/8c967157-79f3-4b42-a9e9-8cc728135b9e
  816. dateModified: '2024-07-10T15:33:15.825003-04:00'
  817. digest:
  818. dandi:dandi-etag: 3129d0592249bc40a30cb0f30f9b3f61-1
  819. dandi:sha2-256: 997f0268bd40d1f484ff5422b8f7db774a35a5230d9bda89938307b5b26bb79f
  820. encodingFormat: application/x-nwb
  821. id: dandiasset:4f64fd61-adc7-4475-aac9-98241f14e858
  822. identifier: 4f64fd61-adc7-4475-aac9-98241f14e858
  823. measurementTechnique:
  824. - name: analytical technique
  825. schemaKey: MeasurementTechniqueType
  826. - name: surgical technique
  827. schemaKey: MeasurementTechniqueType
  828. path: sub-L882/sub-L882_ses-Dendrite4c.nwb
  829. schemaKey: Asset
  830. schemaVersion: 0.6.7
  831. variableMeasured:
  832. - schemaKey: PropertyValue
  833. value: OpticalChannel
  834. - schemaKey: PropertyValue
  835. value: ImagingPlane
  836. - schemaKey: PropertyValue
  837. value: PlaneSegmentation
  838. - schemaKey: PropertyValue
  839. value: ProcessingModule
  840. wasAttributedTo:
  841. - age:
  842. schemaKey: PropertyValue
  843. unitText: ISO-8601 duration
  844. value: P14W
  845. valueReference:
  846. schemaKey: PropertyValue
  847. value: dandi:BirthReference
  848. genotype: Thy1-YFP
  849. identifier: L882
  850. schemaKey: Participant
  851. sex:
  852. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  853. name: Female
  854. schemaKey: SexType
  855. species:
  856. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  857. name: Mus musculus - House mouse
  858. schemaKey: SpeciesType
  859. wasGeneratedBy:
  860. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  861. and then segmented in Blender.
  862. name: Acquisition session
  863. schemaKey: Session
  864. startDate: '2024-07-10T13:28:00.529423-04:00'
  865. - description: Metadata generated by DANDI cli
  866. endDate: '2024-07-10T15:33:15.825003-04:00'
  867. id: urn:uuid:dc3e1183-73a1-4101-b311-f1181e9f862b
  868. name: Metadata generation
  869. schemaKey: Activity
  870. startDate: '2024-07-10T15:33:13.360861-04:00'
  871. wasAssociatedWith:
  872. - identifier: RRID:SCR_019009
  873. name: DANDI Command Line Interface
  874. schemaKey: Software
  875. url: https://github.com/dandi/dandi-cli
  876. version: 0.62.2
  877. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  878. access:
  879. - schemaKey: AccessRequirements
  880. status: dandi:OpenAccess
  881. approach:
  882. - name: microscopy approach; cell population imaging
  883. schemaKey: ApproachType
  884. blobDateModified: '2024-07-10T13:28:29.828062-04:00'
  885. contentSize: 365512
  886. contentUrl:
  887. - https://api.dandiarchive.org/api/assets/471b85d3-c639-47f0-a252-2485712e4ff6/download/
  888. - https://dandiarchive.s3.amazonaws.com/blobs/7ba/992/7ba992c1-a9ea-4728-95d0-f0652d226e57
  889. dateModified: '2024-07-10T15:33:16.217637-04:00'
  890. digest:
  891. dandi:dandi-etag: 7077db7fb2a564a35dc1c0eddac7992f-1
  892. dandi:sha2-256: fe96142b7448e2a474c39427da4b04f6f99a153d334739eac9686104487e4b04
  893. encodingFormat: application/x-nwb
  894. id: dandiasset:471b85d3-c639-47f0-a252-2485712e4ff6
  895. identifier: 471b85d3-c639-47f0-a252-2485712e4ff6
  896. measurementTechnique:
  897. - name: analytical technique
  898. schemaKey: MeasurementTechniqueType
  899. - name: surgical technique
  900. schemaKey: MeasurementTechniqueType
  901. path: sub-L882/sub-L882_ses-Dendrite5.nwb
  902. schemaKey: Asset
  903. schemaVersion: 0.6.7
  904. variableMeasured:
  905. - schemaKey: PropertyValue
  906. value: OpticalChannel
  907. - schemaKey: PropertyValue
  908. value: ImagingPlane
  909. - schemaKey: PropertyValue
  910. value: PlaneSegmentation
  911. - schemaKey: PropertyValue
  912. value: ProcessingModule
  913. wasAttributedTo:
  914. - age:
  915. schemaKey: PropertyValue
  916. unitText: ISO-8601 duration
  917. value: P14W
  918. valueReference:
  919. schemaKey: PropertyValue
  920. value: dandi:BirthReference
  921. genotype: Thy1-YFP
  922. identifier: L882
  923. schemaKey: Participant
  924. sex:
  925. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  926. name: Female
  927. schemaKey: SexType
  928. species:
  929. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  930. name: Mus musculus - House mouse
  931. schemaKey: SpeciesType
  932. wasGeneratedBy:
  933. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  934. and then segmented in Blender.
  935. name: Acquisition session
  936. schemaKey: Session
  937. startDate: '2024-07-10T13:28:28.901905-04:00'
  938. - description: Metadata generated by DANDI cli
  939. endDate: '2024-07-10T15:33:16.217637-04:00'
  940. id: urn:uuid:667b8c5f-c8e5-44da-a45f-1bdc47cbb35d
  941. name: Metadata generation
  942. schemaKey: Activity
  943. startDate: '2024-07-10T15:33:13.785090-04:00'
  944. wasAssociatedWith:
  945. - identifier: RRID:SCR_019009
  946. name: DANDI Command Line Interface
  947. schemaKey: Software
  948. url: https://github.com/dandi/dandi-cli
  949. version: 0.62.2
  950. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  951. access:
  952. - schemaKey: AccessRequirements
  953. status: dandi:OpenAccess
  954. approach:
  955. - name: microscopy approach; cell population imaging
  956. schemaKey: ApproachType
  957. blobDateModified: '2024-07-10T13:27:48.214390-04:00'
  958. contentSize: 493392
  959. contentUrl:
  960. - https://api.dandiarchive.org/api/assets/a8dd395a-26e9-48a5-97cc-daeb7d8b9263/download/
  961. - https://dandiarchive.s3.amazonaws.com/blobs/a1d/1e7/a1d1e7c4-5204-45a6-970a-0d8e8e1b0dcc
  962. dateModified: '2024-07-10T15:33:17.379903-04:00'
  963. digest:
  964. dandi:dandi-etag: db33f15a76f1636c00567fc8ae826bb7-1
  965. dandi:sha2-256: 81a63168f2980ab6266659a5550366f3b4538a7f1ed8f0177680bc380cf35a53
  966. encodingFormat: application/x-nwb
  967. id: dandiasset:a8dd395a-26e9-48a5-97cc-daeb7d8b9263
  968. identifier: a8dd395a-26e9-48a5-97cc-daeb7d8b9263
  969. measurementTechnique:
  970. - name: analytical technique
  971. schemaKey: MeasurementTechniqueType
  972. - name: surgical technique
  973. schemaKey: MeasurementTechniqueType
  974. path: sub-L882/sub-L882_ses-Dendrite4b.nwb
  975. schemaKey: Asset
  976. schemaVersion: 0.6.7
  977. variableMeasured:
  978. - schemaKey: PropertyValue
  979. value: OpticalChannel
  980. - schemaKey: PropertyValue
  981. value: ImagingPlane
  982. - schemaKey: PropertyValue
  983. value: PlaneSegmentation
  984. - schemaKey: PropertyValue
  985. value: ProcessingModule
  986. wasAttributedTo:
  987. - age:
  988. schemaKey: PropertyValue
  989. unitText: ISO-8601 duration
  990. value: P14W
  991. valueReference:
  992. schemaKey: PropertyValue
  993. value: dandi:BirthReference
  994. genotype: Thy1-YFP
  995. identifier: L882
  996. schemaKey: Participant
  997. sex:
  998. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  999. name: Female
  1000. schemaKey: SexType
  1001. species:
  1002. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1003. name: Mus musculus - House mouse
  1004. schemaKey: SpeciesType
  1005. wasGeneratedBy:
  1006. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1007. and then segmented in Blender.
  1008. name: Acquisition session
  1009. schemaKey: Session
  1010. startDate: '2024-07-10T13:27:46.854958-04:00'
  1011. - description: Metadata generated by DANDI cli
  1012. endDate: '2024-07-10T15:33:17.379903-04:00'
  1013. id: urn:uuid:3f0698b4-edf6-4308-a2ec-797f0cdf900d
  1014. name: Metadata generation
  1015. schemaKey: Activity
  1016. startDate: '2024-07-10T15:33:13.124892-04:00'
  1017. wasAssociatedWith:
  1018. - identifier: RRID:SCR_019009
  1019. name: DANDI Command Line Interface
  1020. schemaKey: Software
  1021. url: https://github.com/dandi/dandi-cli
  1022. version: 0.62.2
  1023. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1024. access:
  1025. - schemaKey: AccessRequirements
  1026. status: dandi:OpenAccess
  1027. approach:
  1028. - name: microscopy approach; cell population imaging
  1029. schemaKey: ApproachType
  1030. blobDateModified: '2024-07-10T13:28:58.472945-04:00'
  1031. contentSize: 327160
  1032. contentUrl:
  1033. - https://api.dandiarchive.org/api/assets/df67db92-c59a-45cd-97ff-9821f7f20950/download/
  1034. - https://dandiarchive.s3.amazonaws.com/blobs/55e/981/55e9811a-d91b-4d08-bcb0-f09a4af704e4
  1035. dateModified: '2024-07-10T15:33:20.771201-04:00'
  1036. digest:
  1037. dandi:dandi-etag: 003f51c39d58a37b93fd5e09623c4498-1
  1038. dandi:sha2-256: 9369c261c838a9fa6f8196dcdc8de840888fb0ac32510e73188bc2731f81f201
  1039. encodingFormat: application/x-nwb
  1040. id: dandiasset:df67db92-c59a-45cd-97ff-9821f7f20950
  1041. identifier: df67db92-c59a-45cd-97ff-9821f7f20950
  1042. measurementTechnique:
  1043. - name: analytical technique
  1044. schemaKey: MeasurementTechniqueType
  1045. - name: surgical technique
  1046. schemaKey: MeasurementTechniqueType
  1047. path: sub-L882/sub-L882_ses-Dendrite5F3.nwb
  1048. schemaKey: Asset
  1049. schemaVersion: 0.6.7
  1050. variableMeasured:
  1051. - schemaKey: PropertyValue
  1052. value: OpticalChannel
  1053. - schemaKey: PropertyValue
  1054. value: ImagingPlane
  1055. - schemaKey: PropertyValue
  1056. value: PlaneSegmentation
  1057. - schemaKey: PropertyValue
  1058. value: ProcessingModule
  1059. wasAttributedTo:
  1060. - age:
  1061. schemaKey: PropertyValue
  1062. unitText: ISO-8601 duration
  1063. value: P14W
  1064. valueReference:
  1065. schemaKey: PropertyValue
  1066. value: dandi:BirthReference
  1067. genotype: Thy1-YFP
  1068. identifier: L882
  1069. schemaKey: Participant
  1070. sex:
  1071. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1072. name: Female
  1073. schemaKey: SexType
  1074. species:
  1075. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1076. name: Mus musculus - House mouse
  1077. schemaKey: SpeciesType
  1078. wasGeneratedBy:
  1079. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1080. and then segmented in Blender.
  1081. name: Acquisition session
  1082. schemaKey: Session
  1083. startDate: '2024-07-10T13:28:57.605599-04:00'
  1084. - description: Metadata generated by DANDI cli
  1085. endDate: '2024-07-10T15:33:20.771201-04:00'
  1086. id: urn:uuid:d8d2fe6d-aa15-4fbe-9723-ce12572c6cd3
  1087. name: Metadata generation
  1088. schemaKey: Activity
  1089. startDate: '2024-07-10T15:33:19.373442-04:00'
  1090. wasAssociatedWith:
  1091. - identifier: RRID:SCR_019009
  1092. name: DANDI Command Line Interface
  1093. schemaKey: Software
  1094. url: https://github.com/dandi/dandi-cli
  1095. version: 0.62.2
  1096. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1097. access:
  1098. - schemaKey: AccessRequirements
  1099. status: dandi:OpenAccess
  1100. approach:
  1101. - name: microscopy approach; cell population imaging
  1102. schemaKey: ApproachType
  1103. blobDateModified: '2024-07-10T13:28:43.343794-04:00'
  1104. contentSize: 399632
  1105. contentUrl:
  1106. - https://api.dandiarchive.org/api/assets/c5a98f9b-8504-4854-b817-eaf8ad5f9b46/download/
  1107. - https://dandiarchive.s3.amazonaws.com/blobs/1e7/96b/1e796b7f-53a6-4716-998b-63037a43d59a
  1108. dateModified: '2024-07-10T15:33:20.771201-04:00'
  1109. digest:
  1110. dandi:dandi-etag: 3b24b531fdcfb469833301cbed997500-1
  1111. dandi:sha2-256: a377f867d6935607dbff225c8958bb13cf3ae56916cbf35b60931013c5e5cd34
  1112. encodingFormat: application/x-nwb
  1113. id: dandiasset:c5a98f9b-8504-4854-b817-eaf8ad5f9b46
  1114. identifier: c5a98f9b-8504-4854-b817-eaf8ad5f9b46
  1115. measurementTechnique:
  1116. - name: analytical technique
  1117. schemaKey: MeasurementTechniqueType
  1118. - name: surgical technique
  1119. schemaKey: MeasurementTechniqueType
  1120. path: sub-L882/sub-L882_ses-Dendrite5F2.nwb
  1121. schemaKey: Asset
  1122. schemaVersion: 0.6.7
  1123. variableMeasured:
  1124. - schemaKey: PropertyValue
  1125. value: OpticalChannel
  1126. - schemaKey: PropertyValue
  1127. value: ImagingPlane
  1128. - schemaKey: PropertyValue
  1129. value: PlaneSegmentation
  1130. - schemaKey: PropertyValue
  1131. value: ProcessingModule
  1132. wasAttributedTo:
  1133. - age:
  1134. schemaKey: PropertyValue
  1135. unitText: ISO-8601 duration
  1136. value: P14W
  1137. valueReference:
  1138. schemaKey: PropertyValue
  1139. value: dandi:BirthReference
  1140. genotype: Thy1-YFP
  1141. identifier: L882
  1142. schemaKey: Participant
  1143. sex:
  1144. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1145. name: Female
  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: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1153. and then segmented in Blender.
  1154. name: Acquisition session
  1155. schemaKey: Session
  1156. startDate: '2024-07-10T13:28:42.288122-04:00'
  1157. - description: Metadata generated by DANDI cli
  1158. endDate: '2024-07-10T15:33:20.771201-04:00'
  1159. id: urn:uuid:9520c79b-77c6-42f2-9978-4168dc8acba3
  1160. name: Metadata generation
  1161. schemaKey: Activity
  1162. startDate: '2024-07-10T15:33:17.442415-04:00'
  1163. wasAssociatedWith:
  1164. - identifier: RRID:SCR_019009
  1165. name: DANDI Command Line Interface
  1166. schemaKey: Software
  1167. url: https://github.com/dandi/dandi-cli
  1168. version: 0.62.2
  1169. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1170. access:
  1171. - schemaKey: AccessRequirements
  1172. status: dandi:OpenAccess
  1173. approach:
  1174. - name: microscopy approach; cell population imaging
  1175. schemaKey: ApproachType
  1176. blobDateModified: '2024-07-10T13:29:25.687341-04:00'
  1177. contentSize: 437032
  1178. contentUrl:
  1179. - https://api.dandiarchive.org/api/assets/d7c6e979-819b-484c-bbd1-cfcf81af05c9/download/
  1180. - https://dandiarchive.s3.amazonaws.com/blobs/ce2/0b9/ce20b9f1-289d-4b80-ba5c-f8d7a27e5a01
  1181. dateModified: '2024-07-10T15:33:27.207237-04:00'
  1182. digest:
  1183. dandi:dandi-etag: c9667560cfc0da412fbdd7ee646b04d7-1
  1184. dandi:sha2-256: 3d69d1c5d82c040813990b8a58f02834c712126c5b6e1155361ea894135cd5c9
  1185. encodingFormat: application/x-nwb
  1186. id: dandiasset:d7c6e979-819b-484c-bbd1-cfcf81af05c9
  1187. identifier: d7c6e979-819b-484c-bbd1-cfcf81af05c9
  1188. measurementTechnique:
  1189. - name: analytical technique
  1190. schemaKey: MeasurementTechniqueType
  1191. - name: surgical technique
  1192. schemaKey: MeasurementTechniqueType
  1193. path: sub-L882/sub-L882_ses-Dendrite7a.nwb
  1194. schemaKey: Asset
  1195. schemaVersion: 0.6.7
  1196. variableMeasured:
  1197. - schemaKey: PropertyValue
  1198. value: OpticalChannel
  1199. - schemaKey: PropertyValue
  1200. value: ImagingPlane
  1201. - schemaKey: PropertyValue
  1202. value: PlaneSegmentation
  1203. - schemaKey: PropertyValue
  1204. value: ProcessingModule
  1205. wasAttributedTo:
  1206. - age:
  1207. schemaKey: PropertyValue
  1208. unitText: ISO-8601 duration
  1209. value: P14W
  1210. valueReference:
  1211. schemaKey: PropertyValue
  1212. value: dandi:BirthReference
  1213. genotype: Thy1-YFP
  1214. identifier: L882
  1215. schemaKey: Participant
  1216. sex:
  1217. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1218. name: Female
  1219. schemaKey: SexType
  1220. species:
  1221. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1222. name: Mus musculus - House mouse
  1223. schemaKey: SpeciesType
  1224. wasGeneratedBy:
  1225. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1226. and then segmented in Blender.
  1227. name: Acquisition session
  1228. schemaKey: Session
  1229. startDate: '2024-07-10T13:29:24.561427-04:00'
  1230. - description: Metadata generated by DANDI cli
  1231. endDate: '2024-07-10T15:33:27.207237-04:00'
  1232. id: urn:uuid:77ccb46f-f6de-42a2-aad2-692bebfcaa70
  1233. name: Metadata generation
  1234. schemaKey: Activity
  1235. startDate: '2024-07-10T15:33:24.161445-04:00'
  1236. wasAssociatedWith:
  1237. - identifier: RRID:SCR_019009
  1238. name: DANDI Command Line Interface
  1239. schemaKey: Software
  1240. url: https://github.com/dandi/dandi-cli
  1241. version: 0.62.2
  1242. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1243. access:
  1244. - schemaKey: AccessRequirements
  1245. status: dandi:OpenAccess
  1246. approach:
  1247. - name: microscopy approach; cell population imaging
  1248. schemaKey: ApproachType
  1249. blobDateModified: '2024-07-10T13:29:39.669336-04:00'
  1250. contentSize: 561256
  1251. contentUrl:
  1252. - https://api.dandiarchive.org/api/assets/f0a54f78-9d57-4d2e-9314-19f66065b5b0/download/
  1253. - https://dandiarchive.s3.amazonaws.com/blobs/7a7/872/7a787229-c978-47ac-b074-50c9a9ec661f
  1254. dateModified: '2024-07-10T15:33:32.595520-04:00'
  1255. digest:
  1256. dandi:dandi-etag: f809bf9364bcd77d8d9f3009ce213897-1
  1257. dandi:sha2-256: c67dee21a904f46dd483315a5d949b63f5f3f90e6c3005cf2afa94f81602c5e5
  1258. encodingFormat: application/x-nwb
  1259. id: dandiasset:f0a54f78-9d57-4d2e-9314-19f66065b5b0
  1260. identifier: f0a54f78-9d57-4d2e-9314-19f66065b5b0
  1261. measurementTechnique:
  1262. - name: analytical technique
  1263. schemaKey: MeasurementTechniqueType
  1264. - name: surgical technique
  1265. schemaKey: MeasurementTechniqueType
  1266. path: sub-L882/sub-L882_ses-Dendrite7b.nwb
  1267. schemaKey: Asset
  1268. schemaVersion: 0.6.7
  1269. variableMeasured:
  1270. - schemaKey: PropertyValue
  1271. value: OpticalChannel
  1272. - schemaKey: PropertyValue
  1273. value: ImagingPlane
  1274. - schemaKey: PropertyValue
  1275. value: PlaneSegmentation
  1276. - schemaKey: PropertyValue
  1277. value: ProcessingModule
  1278. wasAttributedTo:
  1279. - age:
  1280. schemaKey: PropertyValue
  1281. unitText: ISO-8601 duration
  1282. value: P14W
  1283. valueReference:
  1284. schemaKey: PropertyValue
  1285. value: dandi:BirthReference
  1286. genotype: Thy1-YFP
  1287. identifier: L882
  1288. schemaKey: Participant
  1289. sex:
  1290. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1291. name: Female
  1292. schemaKey: SexType
  1293. species:
  1294. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1295. name: Mus musculus - House mouse
  1296. schemaKey: SpeciesType
  1297. wasGeneratedBy:
  1298. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1299. and then segmented in Blender.
  1300. name: Acquisition session
  1301. schemaKey: Session
  1302. startDate: '2024-07-10T13:29:38.155546-04:00'
  1303. - description: Metadata generated by DANDI cli
  1304. endDate: '2024-07-10T15:33:32.595520-04:00'
  1305. id: urn:uuid:d6bb9ad3-56f4-474c-aa81-832df8b627c6
  1306. name: Metadata generation
  1307. schemaKey: Activity
  1308. startDate: '2024-07-10T15:33:27.081852-04:00'
  1309. wasAssociatedWith:
  1310. - identifier: RRID:SCR_019009
  1311. name: DANDI Command Line Interface
  1312. schemaKey: Software
  1313. url: https://github.com/dandi/dandi-cli
  1314. version: 0.62.2
  1315. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1316. access:
  1317. - schemaKey: AccessRequirements
  1318. status: dandi:OpenAccess
  1319. approach:
  1320. - name: microscopy approach; cell population imaging
  1321. schemaKey: ApproachType
  1322. blobDateModified: '2024-07-10T13:29:50.209634-04:00'
  1323. contentSize: 445440
  1324. contentUrl:
  1325. - https://api.dandiarchive.org/api/assets/91f61267-6a85-460c-91c7-db05ff0e1f9c/download/
  1326. - https://dandiarchive.s3.amazonaws.com/blobs/f8f/ae1/f8fae1bc-31d7-4ad6-95d4-462c0c8161db
  1327. dateModified: '2024-07-10T15:33:32.595520-04:00'
  1328. digest:
  1329. dandi:dandi-etag: f3b1813863aa0ae424081481503ee131-1
  1330. dandi:sha2-256: bd35dbc85d4fee9e696ff3728390c8aef1f8c2ebab04f054ed69e5e619c046ac
  1331. encodingFormat: application/x-nwb
  1332. id: dandiasset:91f61267-6a85-460c-91c7-db05ff0e1f9c
  1333. identifier: 91f61267-6a85-460c-91c7-db05ff0e1f9c
  1334. measurementTechnique:
  1335. - name: analytical technique
  1336. schemaKey: MeasurementTechniqueType
  1337. - name: surgical technique
  1338. schemaKey: MeasurementTechniqueType
  1339. path: sub-L882/sub-L882_ses-Dendrite7c.nwb
  1340. schemaKey: Asset
  1341. schemaVersion: 0.6.7
  1342. variableMeasured:
  1343. - schemaKey: PropertyValue
  1344. value: OpticalChannel
  1345. - schemaKey: PropertyValue
  1346. value: ImagingPlane
  1347. - schemaKey: PropertyValue
  1348. value: PlaneSegmentation
  1349. - schemaKey: PropertyValue
  1350. value: ProcessingModule
  1351. wasAttributedTo:
  1352. - age:
  1353. schemaKey: PropertyValue
  1354. unitText: ISO-8601 duration
  1355. value: P14W
  1356. valueReference:
  1357. schemaKey: PropertyValue
  1358. value: dandi:BirthReference
  1359. genotype: Thy1-YFP
  1360. identifier: L882
  1361. schemaKey: Participant
  1362. sex:
  1363. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1364. name: Female
  1365. schemaKey: SexType
  1366. species:
  1367. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1368. name: Mus musculus - House mouse
  1369. schemaKey: SpeciesType
  1370. wasGeneratedBy:
  1371. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1372. and then segmented in Blender.
  1373. name: Acquisition session
  1374. schemaKey: Session
  1375. startDate: '2024-07-10T13:29:49.060715-04:00'
  1376. - description: Metadata generated by DANDI cli
  1377. endDate: '2024-07-10T15:33:32.595520-04:00'
  1378. id: urn:uuid:ea390283-47cd-4510-8d06-d3f83553c9c2
  1379. name: Metadata generation
  1380. schemaKey: Activity
  1381. startDate: '2024-07-10T15:33:28.745139-04:00'
  1382. wasAssociatedWith:
  1383. - identifier: RRID:SCR_019009
  1384. name: DANDI Command Line Interface
  1385. schemaKey: Software
  1386. url: https://github.com/dandi/dandi-cli
  1387. version: 0.62.2
  1388. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1389. access:
  1390. - schemaKey: AccessRequirements
  1391. status: dandi:OpenAccess
  1392. approach:
  1393. - name: microscopy approach; cell population imaging
  1394. schemaKey: ApproachType
  1395. blobDateModified: '2024-07-10T13:30:01.988567-04:00'
  1396. contentSize: 516280
  1397. contentUrl:
  1398. - https://api.dandiarchive.org/api/assets/965f3bbe-73a1-4658-a15f-0cf159326f1c/download/
  1399. - https://dandiarchive.s3.amazonaws.com/blobs/427/ada/427ada90-ed0b-44bb-bb53-bcdd72b2e0da
  1400. dateModified: '2024-07-10T15:33:34.494688-04:00'
  1401. digest:
  1402. dandi:dandi-etag: 8e2e845fc716042f33aeae0a42fc5a32-1
  1403. dandi:sha2-256: 00cbc0b5c8f86d2aa3209fb3c954bff7c71679d9a449faea767ae4c9cdac8cf9
  1404. encodingFormat: application/x-nwb
  1405. id: dandiasset:965f3bbe-73a1-4658-a15f-0cf159326f1c
  1406. identifier: 965f3bbe-73a1-4658-a15f-0cf159326f1c
  1407. measurementTechnique:
  1408. - name: analytical technique
  1409. schemaKey: MeasurementTechniqueType
  1410. - name: surgical technique
  1411. schemaKey: MeasurementTechniqueType
  1412. path: sub-L884/sub-L884_ses-Dendrite1a.nwb
  1413. schemaKey: Asset
  1414. schemaVersion: 0.6.7
  1415. variableMeasured:
  1416. - schemaKey: PropertyValue
  1417. value: OpticalChannel
  1418. - schemaKey: PropertyValue
  1419. value: ImagingPlane
  1420. - schemaKey: PropertyValue
  1421. value: PlaneSegmentation
  1422. - schemaKey: PropertyValue
  1423. value: ProcessingModule
  1424. wasAttributedTo:
  1425. - age:
  1426. schemaKey: PropertyValue
  1427. unitText: ISO-8601 duration
  1428. value: P14W
  1429. valueReference:
  1430. schemaKey: PropertyValue
  1431. value: dandi:BirthReference
  1432. genotype: Thy1-YFP
  1433. identifier: L884
  1434. schemaKey: Participant
  1435. sex:
  1436. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1437. name: Female
  1438. schemaKey: SexType
  1439. species:
  1440. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1441. name: Mus musculus - House mouse
  1442. schemaKey: SpeciesType
  1443. wasGeneratedBy:
  1444. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1445. and then segmented in Blender.
  1446. name: Acquisition session
  1447. schemaKey: Session
  1448. startDate: '2024-07-10T13:30:00.621250-04:00'
  1449. - description: Metadata generated by DANDI cli
  1450. endDate: '2024-07-10T15:33:34.494688-04:00'
  1451. id: urn:uuid:40dfe4fc-3fe9-409d-8e84-2ca379873440
  1452. name: Metadata generation
  1453. schemaKey: Activity
  1454. startDate: '2024-07-10T15:33:30.575144-04:00'
  1455. wasAssociatedWith:
  1456. - identifier: RRID:SCR_019009
  1457. name: DANDI Command Line Interface
  1458. schemaKey: Software
  1459. url: https://github.com/dandi/dandi-cli
  1460. version: 0.62.2
  1461. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1462. access:
  1463. - schemaKey: AccessRequirements
  1464. status: dandi:OpenAccess
  1465. approach:
  1466. - name: microscopy approach; cell population imaging
  1467. schemaKey: ApproachType
  1468. blobDateModified: '2024-07-10T13:29:12.328782-04:00'
  1469. contentSize: 657096
  1470. contentUrl:
  1471. - https://api.dandiarchive.org/api/assets/1618e1e7-5634-4edd-b22d-6eda38c6ac4f/download/
  1472. - https://dandiarchive.s3.amazonaws.com/blobs/edc/30e/edc30eb3-760c-4d32-8819-de92aa01c556
  1473. dateModified: '2024-07-10T15:33:36.518625-04:00'
  1474. digest:
  1475. dandi:dandi-etag: 9c85ceeeac44b1476db621c96c919901-1
  1476. dandi:sha2-256: f670ab48545e00c6ab0ebf47459f9af7496d1b9c14d9c58d24351ddbbeb5f708
  1477. encodingFormat: application/x-nwb
  1478. id: dandiasset:1618e1e7-5634-4edd-b22d-6eda38c6ac4f
  1479. identifier: 1618e1e7-5634-4edd-b22d-6eda38c6ac4f
  1480. measurementTechnique:
  1481. - name: analytical technique
  1482. schemaKey: MeasurementTechniqueType
  1483. - name: surgical technique
  1484. schemaKey: MeasurementTechniqueType
  1485. path: sub-L882/sub-L882_ses-Dendrite6.nwb
  1486. schemaKey: Asset
  1487. schemaVersion: 0.6.7
  1488. variableMeasured:
  1489. - schemaKey: PropertyValue
  1490. value: OpticalChannel
  1491. - schemaKey: PropertyValue
  1492. value: ImagingPlane
  1493. - schemaKey: PropertyValue
  1494. value: PlaneSegmentation
  1495. - schemaKey: PropertyValue
  1496. value: ProcessingModule
  1497. wasAttributedTo:
  1498. - age:
  1499. schemaKey: PropertyValue
  1500. unitText: ISO-8601 duration
  1501. value: P14W
  1502. valueReference:
  1503. schemaKey: PropertyValue
  1504. value: dandi:BirthReference
  1505. genotype: Thy1-YFP
  1506. identifier: L882
  1507. schemaKey: Participant
  1508. sex:
  1509. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1510. name: Female
  1511. schemaKey: SexType
  1512. species:
  1513. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1514. name: Mus musculus - House mouse
  1515. schemaKey: SpeciesType
  1516. wasGeneratedBy:
  1517. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1518. and then segmented in Blender.
  1519. name: Acquisition session
  1520. schemaKey: Session
  1521. startDate: '2024-07-10T13:29:10.379014-04:00'
  1522. - description: Metadata generated by DANDI cli
  1523. endDate: '2024-07-10T15:33:36.518625-04:00'
  1524. id: urn:uuid:c9417060-cd4e-4d0e-ad7e-9f60295a6adf
  1525. name: Metadata generation
  1526. schemaKey: Activity
  1527. startDate: '2024-07-10T15:33:30.381827-04:00'
  1528. wasAssociatedWith:
  1529. - identifier: RRID:SCR_019009
  1530. name: DANDI Command Line Interface
  1531. schemaKey: Software
  1532. url: https://github.com/dandi/dandi-cli
  1533. version: 0.62.2
  1534. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1535. access:
  1536. - schemaKey: AccessRequirements
  1537. status: dandi:OpenAccess
  1538. approach:
  1539. - name: microscopy approach; cell population imaging
  1540. schemaKey: ApproachType
  1541. blobDateModified: '2024-07-10T13:31:54.531865-04:00'
  1542. contentSize: 468776
  1543. contentUrl:
  1544. - https://api.dandiarchive.org/api/assets/11e2da9a-c560-4136-ac05-52d611f1fd29/download/
  1545. - https://dandiarchive.s3.amazonaws.com/blobs/9e7/994/9e799472-4c3e-4829-98d3-ddf353d45362
  1546. dateModified: '2024-07-10T15:33:44.906288-04:00'
  1547. digest:
  1548. dandi:dandi-etag: 8aade7c308ab98128107cdcc4f749a7f-1
  1549. dandi:sha2-256: bca3f591e1ba7566d78c6821e5dbdb069b62a152613dd2d78da954dc034c5fda
  1550. encodingFormat: application/x-nwb
  1551. id: dandiasset:11e2da9a-c560-4136-ac05-52d611f1fd29
  1552. identifier: 11e2da9a-c560-4136-ac05-52d611f1fd29
  1553. measurementTechnique:
  1554. - name: analytical technique
  1555. schemaKey: MeasurementTechniqueType
  1556. - name: surgical technique
  1557. schemaKey: MeasurementTechniqueType
  1558. path: sub-L902/sub-L902_ses-Dendrite2.nwb
  1559. schemaKey: Asset
  1560. schemaVersion: 0.6.7
  1561. variableMeasured:
  1562. - schemaKey: PropertyValue
  1563. value: OpticalChannel
  1564. - schemaKey: PropertyValue
  1565. value: ImagingPlane
  1566. - schemaKey: PropertyValue
  1567. value: PlaneSegmentation
  1568. - schemaKey: PropertyValue
  1569. value: ProcessingModule
  1570. wasAttributedTo:
  1571. - age:
  1572. schemaKey: PropertyValue
  1573. unitText: ISO-8601 duration
  1574. value: P14W
  1575. valueReference:
  1576. schemaKey: PropertyValue
  1577. value: dandi:BirthReference
  1578. genotype: Thy1-YFP
  1579. identifier: L902
  1580. schemaKey: Participant
  1581. sex:
  1582. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1583. name: Female
  1584. schemaKey: SexType
  1585. species:
  1586. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1587. name: Mus musculus - House mouse
  1588. schemaKey: SpeciesType
  1589. wasGeneratedBy:
  1590. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1591. and then segmented in Blender.
  1592. name: Acquisition session
  1593. schemaKey: Session
  1594. startDate: '2024-07-10T13:31:53.290217-04:00'
  1595. - description: Metadata generated by DANDI cli
  1596. endDate: '2024-07-10T15:33:44.906288-04:00'
  1597. id: urn:uuid:845f2c87-69ce-4f35-b753-7858053c5a95
  1598. name: Metadata generation
  1599. schemaKey: Activity
  1600. startDate: '2024-07-10T15:33:40.863436-04:00'
  1601. wasAssociatedWith:
  1602. - identifier: RRID:SCR_019009
  1603. name: DANDI Command Line Interface
  1604. schemaKey: Software
  1605. url: https://github.com/dandi/dandi-cli
  1606. version: 0.62.2
  1607. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1608. access:
  1609. - schemaKey: AccessRequirements
  1610. status: dandi:OpenAccess
  1611. approach:
  1612. - name: microscopy approach; cell population imaging
  1613. schemaKey: ApproachType
  1614. blobDateModified: '2024-07-10T13:31:34.575359-04:00'
  1615. contentSize: 468776
  1616. contentUrl:
  1617. - https://api.dandiarchive.org/api/assets/229f4c45-76e8-4f38-9fba-60e4082afd52/download/
  1618. - https://dandiarchive.s3.amazonaws.com/blobs/c96/41c/c9641cbb-4389-45b8-8c1e-38f391303923
  1619. dateModified: '2024-07-10T15:33:45.604574-04:00'
  1620. digest:
  1621. dandi:dandi-etag: ecabc0fa5bfa9a6854968aeb35a3c408-1
  1622. dandi:sha2-256: a10466d67a6983216e26ecb1b56ed745bd9491131e908cd070065a094a3d9f46
  1623. encodingFormat: application/x-nwb
  1624. id: dandiasset:229f4c45-76e8-4f38-9fba-60e4082afd52
  1625. identifier: 229f4c45-76e8-4f38-9fba-60e4082afd52
  1626. measurementTechnique:
  1627. - name: analytical technique
  1628. schemaKey: MeasurementTechniqueType
  1629. - name: surgical technique
  1630. schemaKey: MeasurementTechniqueType
  1631. path: sub-L902/sub-L902_ses-Dendrite1.nwb
  1632. schemaKey: Asset
  1633. schemaVersion: 0.6.7
  1634. variableMeasured:
  1635. - schemaKey: PropertyValue
  1636. value: OpticalChannel
  1637. - schemaKey: PropertyValue
  1638. value: ImagingPlane
  1639. - schemaKey: PropertyValue
  1640. value: PlaneSegmentation
  1641. - schemaKey: PropertyValue
  1642. value: ProcessingModule
  1643. wasAttributedTo:
  1644. - age:
  1645. schemaKey: PropertyValue
  1646. unitText: ISO-8601 duration
  1647. value: P14W
  1648. valueReference:
  1649. schemaKey: PropertyValue
  1650. value: dandi:BirthReference
  1651. genotype: Thy1-YFP
  1652. identifier: L902
  1653. schemaKey: Participant
  1654. sex:
  1655. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1656. name: Female
  1657. schemaKey: SexType
  1658. species:
  1659. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1660. name: Mus musculus - House mouse
  1661. schemaKey: SpeciesType
  1662. wasGeneratedBy:
  1663. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1664. and then segmented in Blender.
  1665. name: Acquisition session
  1666. schemaKey: Session
  1667. startDate: '2024-07-10T13:31:30.990679-04:00'
  1668. - description: Metadata generated by DANDI cli
  1669. endDate: '2024-07-10T15:33:45.604574-04:00'
  1670. id: urn:uuid:253fc52e-a95c-4d99-a1f3-6834a3489401
  1671. name: Metadata generation
  1672. schemaKey: Activity
  1673. startDate: '2024-07-10T15:33:42.031434-04:00'
  1674. wasAssociatedWith:
  1675. - identifier: RRID:SCR_019009
  1676. name: DANDI Command Line Interface
  1677. schemaKey: Software
  1678. url: https://github.com/dandi/dandi-cli
  1679. version: 0.62.2
  1680. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1681. access:
  1682. - schemaKey: AccessRequirements
  1683. status: dandi:OpenAccess
  1684. approach:
  1685. - name: microscopy approach; cell population imaging
  1686. schemaKey: ApproachType
  1687. blobDateModified: '2024-07-10T13:30:14.546600-04:00'
  1688. contentSize: 678752
  1689. contentUrl:
  1690. - https://api.dandiarchive.org/api/assets/20cc4983-6876-456e-9e6c-83cea60dfa42/download/
  1691. - https://dandiarchive.s3.amazonaws.com/blobs/15e/843/15e843c5-66a8-4a04-8638-40e58654f367
  1692. dateModified: '2024-07-10T15:33:46.744055-04:00'
  1693. digest:
  1694. dandi:dandi-etag: 841baf9807a42fe5b2223f5ec923373e-1
  1695. dandi:sha2-256: 3c72ecd1d60e487b9efccb1a7f6685f34386c2c72a8ac07b3318066f945bf614
  1696. encodingFormat: application/x-nwb
  1697. id: dandiasset:20cc4983-6876-456e-9e6c-83cea60dfa42
  1698. identifier: 20cc4983-6876-456e-9e6c-83cea60dfa42
  1699. measurementTechnique:
  1700. - name: analytical technique
  1701. schemaKey: MeasurementTechniqueType
  1702. - name: surgical technique
  1703. schemaKey: MeasurementTechniqueType
  1704. path: sub-L884/sub-L884_ses-Dendrite1b.nwb
  1705. schemaKey: Asset
  1706. schemaVersion: 0.6.7
  1707. variableMeasured:
  1708. - schemaKey: PropertyValue
  1709. value: OpticalChannel
  1710. - schemaKey: PropertyValue
  1711. value: ImagingPlane
  1712. - schemaKey: PropertyValue
  1713. value: PlaneSegmentation
  1714. - schemaKey: PropertyValue
  1715. value: ProcessingModule
  1716. wasAttributedTo:
  1717. - age:
  1718. schemaKey: PropertyValue
  1719. unitText: ISO-8601 duration
  1720. value: P14W
  1721. valueReference:
  1722. schemaKey: PropertyValue
  1723. value: dandi:BirthReference
  1724. genotype: Thy1-YFP
  1725. identifier: L884
  1726. schemaKey: Participant
  1727. sex:
  1728. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1729. name: Female
  1730. schemaKey: SexType
  1731. species:
  1732. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1733. name: Mus musculus - House mouse
  1734. schemaKey: SpeciesType
  1735. wasGeneratedBy:
  1736. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1737. and then segmented in Blender.
  1738. name: Acquisition session
  1739. schemaKey: Session
  1740. startDate: '2024-07-10T13:30:12.544184-04:00'
  1741. - description: Metadata generated by DANDI cli
  1742. endDate: '2024-07-10T15:33:46.744055-04:00'
  1743. id: urn:uuid:8c2a8e7e-6b61-4e65-a16d-d16ca2145e38
  1744. name: Metadata generation
  1745. schemaKey: Activity
  1746. startDate: '2024-07-10T15:33:43.556646-04:00'
  1747. wasAssociatedWith:
  1748. - identifier: RRID:SCR_019009
  1749. name: DANDI Command Line Interface
  1750. schemaKey: Software
  1751. url: https://github.com/dandi/dandi-cli
  1752. version: 0.62.2
  1753. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1754. access:
  1755. - schemaKey: AccessRequirements
  1756. status: dandi:OpenAccess
  1757. approach:
  1758. - name: microscopy approach; cell population imaging
  1759. schemaKey: ApproachType
  1760. blobDateModified: '2024-07-10T13:23:39.678619-04:00'
  1761. contentSize: 335584
  1762. contentUrl:
  1763. - https://api.dandiarchive.org/api/assets/71400c75-1a92-427a-8cf6-a5da4389cca5/download/
  1764. - https://dandiarchive.s3.amazonaws.com/blobs/701/cb4/701cb42b-063f-4e86-b7c8-0415115f5ad1
  1765. dateModified: '2024-07-10T15:37:19.054963-04:00'
  1766. digest:
  1767. dandi:dandi-etag: d618cacfd2c63a6b274020529922a6a0-1
  1768. dandi:sha2-256: dc380286e6ffdc9ef6cc571a267d2dd327e1cebc7d7e16175a9522cc5f581529
  1769. encodingFormat: application/x-nwb
  1770. id: dandiasset:71400c75-1a92-427a-8cf6-a5da4389cca5
  1771. identifier: 71400c75-1a92-427a-8cf6-a5da4389cca5
  1772. measurementTechnique:
  1773. - name: analytical technique
  1774. schemaKey: MeasurementTechniqueType
  1775. - name: surgical technique
  1776. schemaKey: MeasurementTechniqueType
  1777. path: sub-L731/sub-L731_ses-Dendrite1b.nwb
  1778. schemaKey: Asset
  1779. schemaVersion: 0.6.7
  1780. variableMeasured:
  1781. - schemaKey: PropertyValue
  1782. value: PlaneSegmentation
  1783. - schemaKey: PropertyValue
  1784. value: ProcessingModule
  1785. - schemaKey: PropertyValue
  1786. value: OpticalChannel
  1787. - schemaKey: PropertyValue
  1788. value: ImagingPlane
  1789. wasAttributedTo:
  1790. - age:
  1791. schemaKey: PropertyValue
  1792. unitText: ISO-8601 duration
  1793. value: P14W
  1794. valueReference:
  1795. schemaKey: PropertyValue
  1796. value: dandi:BirthReference
  1797. genotype: Thy1-YFP
  1798. identifier: L731
  1799. schemaKey: Participant
  1800. sex:
  1801. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1802. name: Male
  1803. schemaKey: SexType
  1804. species:
  1805. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1806. name: Mus musculus - House mouse
  1807. schemaKey: SpeciesType
  1808. wasGeneratedBy:
  1809. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1810. and then segmented in Blender.
  1811. name: Acquisition session
  1812. schemaKey: Session
  1813. startDate: '2024-07-10T13:23:38.829070-04:00'
  1814. - description: Metadata generated by DANDI cli
  1815. endDate: '2024-07-10T15:37:19.054963-04:00'
  1816. id: urn:uuid:f6271380-1cfa-4076-82e5-4450f9c0b3e0
  1817. name: Metadata generation
  1818. schemaKey: Activity
  1819. startDate: '2024-07-10T15:37:17.008369-04:00'
  1820. wasAssociatedWith:
  1821. - identifier: RRID:SCR_019009
  1822. name: DANDI Command Line Interface
  1823. schemaKey: Software
  1824. url: https://github.com/dandi/dandi-cli
  1825. version: 0.62.2
  1826. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1827. access:
  1828. - schemaKey: AccessRequirements
  1829. status: dandi:OpenAccess
  1830. approach:
  1831. - name: microscopy approach; cell population imaging
  1832. schemaKey: ApproachType
  1833. blobDateModified: '2024-07-10T13:24:14.779459-04:00'
  1834. contentSize: 751360
  1835. contentUrl:
  1836. - https://api.dandiarchive.org/api/assets/c9734a98-6fbd-45bd-8229-1500c1162f1b/download/
  1837. - https://dandiarchive.s3.amazonaws.com/blobs/7f3/4a6/7f34a667-fb32-44db-ae49-4120ed2f7892
  1838. dateModified: '2024-07-10T15:37:40.123330-04:00'
  1839. digest:
  1840. dandi:dandi-etag: d6d8186ddefc6a52bdec954b1b81360b-1
  1841. dandi:sha2-256: a43d0e980f6b2ec432b3aeda6678ad158430d832b8d99d3ccddba94766476b36
  1842. encodingFormat: application/x-nwb
  1843. id: dandiasset:c9734a98-6fbd-45bd-8229-1500c1162f1b
  1844. identifier: c9734a98-6fbd-45bd-8229-1500c1162f1b
  1845. measurementTechnique:
  1846. - name: analytical technique
  1847. schemaKey: MeasurementTechniqueType
  1848. - name: surgical technique
  1849. schemaKey: MeasurementTechniqueType
  1850. path: sub-L736/sub-L736_ses-Dendrite1.nwb
  1851. schemaKey: Asset
  1852. schemaVersion: 0.6.7
  1853. variableMeasured:
  1854. - schemaKey: PropertyValue
  1855. value: PlaneSegmentation
  1856. - schemaKey: PropertyValue
  1857. value: ProcessingModule
  1858. - schemaKey: PropertyValue
  1859. value: OpticalChannel
  1860. - schemaKey: PropertyValue
  1861. value: ImagingPlane
  1862. wasAttributedTo:
  1863. - age:
  1864. schemaKey: PropertyValue
  1865. unitText: ISO-8601 duration
  1866. value: P14W
  1867. valueReference:
  1868. schemaKey: PropertyValue
  1869. value: dandi:BirthReference
  1870. genotype: Thy1-YFP
  1871. identifier: L736
  1872. schemaKey: Participant
  1873. sex:
  1874. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1875. name: Female
  1876. schemaKey: SexType
  1877. species:
  1878. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1879. name: Mus musculus - House mouse
  1880. schemaKey: SpeciesType
  1881. wasGeneratedBy:
  1882. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1883. and then segmented in Blender.
  1884. name: Acquisition session
  1885. schemaKey: Session
  1886. startDate: '2024-07-10T13:24:12.593383-04:00'
  1887. - description: Metadata generated by DANDI cli
  1888. endDate: '2024-07-10T15:37:40.123330-04:00'
  1889. id: urn:uuid:fcc55527-615d-4032-be73-6e743233684d
  1890. name: Metadata generation
  1891. schemaKey: Activity
  1892. startDate: '2024-07-10T15:37:28.482591-04:00'
  1893. wasAssociatedWith:
  1894. - identifier: RRID:SCR_019009
  1895. name: DANDI Command Line Interface
  1896. schemaKey: Software
  1897. url: https://github.com/dandi/dandi-cli
  1898. version: 0.62.2
  1899. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1900. access:
  1901. - schemaKey: AccessRequirements
  1902. status: dandi:OpenAccess
  1903. approach:
  1904. - name: microscopy approach; cell population imaging
  1905. schemaKey: ApproachType
  1906. blobDateModified: '2024-07-10T13:23:57.658273-04:00'
  1907. contentSize: 766216
  1908. contentUrl:
  1909. - https://api.dandiarchive.org/api/assets/6de70f12-7acb-4579-a328-c61db6fdfef6/download/
  1910. - https://dandiarchive.s3.amazonaws.com/blobs/09c/2ba/09c2ba14-8dc3-499e-a38e-2f4a0723b32f
  1911. dateModified: '2024-07-10T15:37:40.185900-04:00'
  1912. digest:
  1913. dandi:dandi-etag: 27724a7588cb10d603a04273c3ceb7bc-1
  1914. dandi:sha2-256: e93fc42fd92f2a5200674727d861a975fb1fcb0e1fe8d77c3fd6397402a94e9d
  1915. encodingFormat: application/x-nwb
  1916. id: dandiasset:6de70f12-7acb-4579-a328-c61db6fdfef6
  1917. identifier: 6de70f12-7acb-4579-a328-c61db6fdfef6
  1918. measurementTechnique:
  1919. - name: analytical technique
  1920. schemaKey: MeasurementTechniqueType
  1921. - name: surgical technique
  1922. schemaKey: MeasurementTechniqueType
  1923. path: sub-L734/sub-L734_ses-Dendrite1.nwb
  1924. schemaKey: Asset
  1925. schemaVersion: 0.6.7
  1926. variableMeasured:
  1927. - schemaKey: PropertyValue
  1928. value: PlaneSegmentation
  1929. - schemaKey: PropertyValue
  1930. value: ProcessingModule
  1931. - schemaKey: PropertyValue
  1932. value: OpticalChannel
  1933. - schemaKey: PropertyValue
  1934. value: ImagingPlane
  1935. wasAttributedTo:
  1936. - age:
  1937. schemaKey: PropertyValue
  1938. unitText: ISO-8601 duration
  1939. value: P14W
  1940. valueReference:
  1941. schemaKey: PropertyValue
  1942. value: dandi:BirthReference
  1943. genotype: Thy1-YFP
  1944. identifier: L734
  1945. schemaKey: Participant
  1946. sex:
  1947. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1948. name: Female
  1949. schemaKey: SexType
  1950. species:
  1951. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1952. name: Mus musculus - House mouse
  1953. schemaKey: SpeciesType
  1954. wasGeneratedBy:
  1955. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  1956. and then segmented in Blender.
  1957. name: Acquisition session
  1958. schemaKey: Session
  1959. startDate: '2024-07-10T13:23:55.333547-04:00'
  1960. - description: Metadata generated by DANDI cli
  1961. endDate: '2024-07-10T15:37:40.185900-04:00'
  1962. id: urn:uuid:bd9baf4f-bc58-4fb6-98ef-70255fafa1e6
  1963. name: Metadata generation
  1964. schemaKey: Activity
  1965. startDate: '2024-07-10T15:37:31.518822-04:00'
  1966. wasAssociatedWith:
  1967. - identifier: RRID:SCR_019009
  1968. name: DANDI Command Line Interface
  1969. schemaKey: Software
  1970. url: https://github.com/dandi/dandi-cli
  1971. version: 0.62.2
  1972. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1973. access:
  1974. - schemaKey: AccessRequirements
  1975. status: dandi:OpenAccess
  1976. approach:
  1977. - name: microscopy approach; cell population imaging
  1978. schemaKey: ApproachType
  1979. blobDateModified: '2024-07-10T13:25:48.360842-04:00'
  1980. contentSize: 216568
  1981. contentUrl:
  1982. - https://api.dandiarchive.org/api/assets/20c7e306-a2e9-4e44-a9df-d96ae69d4bd8/download/
  1983. - https://dandiarchive.s3.amazonaws.com/blobs/b76/4ae/b764aec5-6c70-458c-ab83-8a024f7718cc
  1984. dateModified: '2024-07-10T15:44:59.968260-04:00'
  1985. digest:
  1986. dandi:dandi-etag: 24bc9a9b0634462b14ea249fc6a71fc2-1
  1987. dandi:sha2-256: efcdd88652e2dd7698fa9d913f4e80316c37ab5fb95c63b0d02b5f3f8b79b305
  1988. encodingFormat: application/x-nwb
  1989. id: dandiasset:20c7e306-a2e9-4e44-a9df-d96ae69d4bd8
  1990. identifier: 20c7e306-a2e9-4e44-a9df-d96ae69d4bd8
  1991. measurementTechnique:
  1992. - name: analytical technique
  1993. schemaKey: MeasurementTechniqueType
  1994. - name: surgical technique
  1995. schemaKey: MeasurementTechniqueType
  1996. path: sub-L831/sub-L831_ses-Dendrite1b.nwb
  1997. schemaKey: Asset
  1998. schemaVersion: 0.6.7
  1999. variableMeasured:
  2000. - schemaKey: PropertyValue
  2001. value: ProcessingModule
  2002. - schemaKey: PropertyValue
  2003. value: ImagingPlane
  2004. - schemaKey: PropertyValue
  2005. value: PlaneSegmentation
  2006. - schemaKey: PropertyValue
  2007. value: OpticalChannel
  2008. wasAttributedTo:
  2009. - age:
  2010. schemaKey: PropertyValue
  2011. unitText: ISO-8601 duration
  2012. value: P14W
  2013. valueReference:
  2014. schemaKey: PropertyValue
  2015. value: dandi:BirthReference
  2016. genotype: Thy1-YFP
  2017. identifier: L831
  2018. schemaKey: Participant
  2019. sex:
  2020. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2021. name: Female
  2022. schemaKey: SexType
  2023. species:
  2024. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2025. name: Mus musculus - House mouse
  2026. schemaKey: SpeciesType
  2027. wasGeneratedBy:
  2028. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  2029. and then segmented in Blender.
  2030. name: Acquisition session
  2031. schemaKey: Session
  2032. startDate: '2024-07-10T13:25:47.767110-04:00'
  2033. - description: Metadata generated by DANDI cli
  2034. endDate: '2024-07-10T15:44:59.968260-04:00'
  2035. id: urn:uuid:dc65c772-57d1-45e6-a513-abb60bc080d2
  2036. name: Metadata generation
  2037. schemaKey: Activity
  2038. startDate: '2024-07-10T15:44:59.586934-04:00'
  2039. wasAssociatedWith:
  2040. - identifier: RRID:SCR_019009
  2041. name: DANDI Command Line Interface
  2042. schemaKey: Software
  2043. url: https://github.com/dandi/dandi-cli
  2044. version: 0.62.2
  2045. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2046. access:
  2047. - schemaKey: AccessRequirements
  2048. status: dandi:OpenAccess
  2049. approach:
  2050. - name: microscopy approach; cell population imaging
  2051. schemaKey: ApproachType
  2052. blobDateModified: '2024-07-10T13:25:35.460558-04:00'
  2053. contentSize: 265640
  2054. contentUrl:
  2055. - https://api.dandiarchive.org/api/assets/2660c3b5-3c83-48b3-a16b-ec0cfedcf7d5/download/
  2056. - https://dandiarchive.s3.amazonaws.com/blobs/772/992/7729920b-245c-4300-a7a2-1339b60bdea1
  2057. dateModified: '2024-07-10T15:45:00.366435-04:00'
  2058. digest:
  2059. dandi:dandi-etag: d7d03b6f42a6de86f08fcf01b264c413-1
  2060. dandi:sha2-256: c1f807985ad77ef3396b11a3660c00183e807cff9fd485defc1948e61dc2aaa5
  2061. encodingFormat: application/x-nwb
  2062. id: dandiasset:2660c3b5-3c83-48b3-a16b-ec0cfedcf7d5
  2063. identifier: 2660c3b5-3c83-48b3-a16b-ec0cfedcf7d5
  2064. measurementTechnique:
  2065. - name: analytical technique
  2066. schemaKey: MeasurementTechniqueType
  2067. - name: surgical technique
  2068. schemaKey: MeasurementTechniqueType
  2069. path: sub-L831/sub-L831_ses-Dendrite1a.nwb
  2070. schemaKey: Asset
  2071. schemaVersion: 0.6.7
  2072. variableMeasured:
  2073. - schemaKey: PropertyValue
  2074. value: ProcessingModule
  2075. - schemaKey: PropertyValue
  2076. value: ImagingPlane
  2077. - schemaKey: PropertyValue
  2078. value: PlaneSegmentation
  2079. - schemaKey: PropertyValue
  2080. value: OpticalChannel
  2081. wasAttributedTo:
  2082. - age:
  2083. schemaKey: PropertyValue
  2084. unitText: ISO-8601 duration
  2085. value: P14W
  2086. valueReference:
  2087. schemaKey: PropertyValue
  2088. value: dandi:BirthReference
  2089. genotype: Thy1-YFP
  2090. identifier: L831
  2091. schemaKey: Participant
  2092. sex:
  2093. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2094. name: Female
  2095. schemaKey: SexType
  2096. species:
  2097. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2098. name: Mus musculus - House mouse
  2099. schemaKey: SpeciesType
  2100. wasGeneratedBy:
  2101. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  2102. and then segmented in Blender.
  2103. name: Acquisition session
  2104. schemaKey: Session
  2105. startDate: '2024-07-10T13:25:34.789579-04:00'
  2106. - description: Metadata generated by DANDI cli
  2107. endDate: '2024-07-10T15:45:00.366435-04:00'
  2108. id: urn:uuid:334ccb8b-03fe-4157-a6ab-1095078391d6
  2109. name: Metadata generation
  2110. schemaKey: Activity
  2111. startDate: '2024-07-10T15:44:59.539165-04:00'
  2112. wasAssociatedWith:
  2113. - identifier: RRID:SCR_019009
  2114. name: DANDI Command Line Interface
  2115. schemaKey: Software
  2116. url: https://github.com/dandi/dandi-cli
  2117. version: 0.62.2
  2118. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2119. access:
  2120. - schemaKey: AccessRequirements
  2121. status: dandi:OpenAccess
  2122. approach:
  2123. - name: microscopy approach; cell population imaging
  2124. schemaKey: ApproachType
  2125. blobDateModified: '2024-07-10T13:25:02.883325-04:00'
  2126. contentSize: 387976
  2127. contentUrl:
  2128. - https://api.dandiarchive.org/api/assets/66a0d93c-ed4a-408f-ae1e-9ffe1fcdd511/download/
  2129. - https://dandiarchive.s3.amazonaws.com/blobs/3e1/566/3e156652-2e0a-4ff3-8ade-3d54e2a4d34f
  2130. dateModified: '2024-07-10T15:45:06.327577-04:00'
  2131. digest:
  2132. dandi:dandi-etag: 92744e13ef7b7bc72b237ad2229ec425-1
  2133. dandi:sha2-256: 1f0849535202b2809bb59b6ba00f51082114d4e763fd304ffc845e2fc36b5b31
  2134. encodingFormat: application/x-nwb
  2135. id: dandiasset:66a0d93c-ed4a-408f-ae1e-9ffe1fcdd511
  2136. identifier: 66a0d93c-ed4a-408f-ae1e-9ffe1fcdd511
  2137. measurementTechnique:
  2138. - name: analytical technique
  2139. schemaKey: MeasurementTechniqueType
  2140. - name: surgical technique
  2141. schemaKey: MeasurementTechniqueType
  2142. path: sub-L831/sub-L831_ses-Dendrite2.nwb
  2143. schemaKey: Asset
  2144. schemaVersion: 0.6.7
  2145. variableMeasured:
  2146. - schemaKey: PropertyValue
  2147. value: ProcessingModule
  2148. - schemaKey: PropertyValue
  2149. value: ImagingPlane
  2150. - schemaKey: PropertyValue
  2151. value: PlaneSegmentation
  2152. - schemaKey: PropertyValue
  2153. value: OpticalChannel
  2154. wasAttributedTo:
  2155. - age:
  2156. schemaKey: PropertyValue
  2157. unitText: ISO-8601 duration
  2158. value: P14W
  2159. valueReference:
  2160. schemaKey: PropertyValue
  2161. value: dandi:BirthReference
  2162. genotype: Thy1-YFP
  2163. identifier: L831
  2164. schemaKey: Participant
  2165. sex:
  2166. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  2167. name: Female
  2168. schemaKey: SexType
  2169. species:
  2170. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  2171. name: Mus musculus - House mouse
  2172. schemaKey: SpeciesType
  2173. wasGeneratedBy:
  2174. - description: Image stacks of neurons were converted into OBJs, traced in Tilt Brush,
  2175. and then segmented in Blender.
  2176. name: Acquisition session
  2177. schemaKey: Session
  2178. startDate: '2024-07-10T13:25:01.936527-04:00'
  2179. - description: Metadata generated by DANDI cli
  2180. endDate: '2024-07-10T15:45:06.327577-04:00'
  2181. id: urn:uuid:42d2ba26-883e-40e7-8e10-63f5c822cd7a
  2182. name: Metadata generation
  2183. schemaKey: Activity
  2184. startDate: '2024-07-10T15:45:03.131950-04:00'
  2185. wasAssociatedWith:
  2186. - identifier: RRID:SCR_019009
  2187. name: DANDI Command Line Interface
  2188. schemaKey: Software
  2189. url: https://github.com/dandi/dandi-cli
  2190. version: 0.62.2
Tip!

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

Comments

Loading...