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

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: microscopy approach; cell population imaging
  7. schemaKey: ApproachType
  8. blobDateModified: '2023-06-01T22:49:17.919466-04:00'
  9. contentSize: 322050324
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/eba9b9db-5057-48c7-936e-1ebe6f8e0454/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/f20/99e/f2099ec4-cc1c-44be-9d91-a1b215a0d820
  13. dateModified: '2023-06-02T00:49:25.157681-04:00'
  14. datePublished: '2023-06-02T13:07:32.279804+00:00'
  15. digest:
  16. dandi:dandi-etag: 9965b8a3941a6f4315567b4370c282f0-5
  17. dandi:sha2-256: f0dc6835ab0d25649b9703b0e238571479ca4a776252fcf48b5be75448665cd8
  18. encodingFormat: application/x-nwb
  19. id: dandiasset:eba9b9db-5057-48c7-936e-1ebe6f8e0454
  20. identifier: eba9b9db-5057-48c7-936e-1ebe6f8e0454
  21. keywords:
  22. - BPN Zstack
  23. measurementTechnique:
  24. - name: two-photon microscopy technique
  25. schemaKey: MeasurementTechniqueType
  26. - name: analytical technique
  27. schemaKey: MeasurementTechniqueType
  28. - name: surgical technique
  29. schemaKey: MeasurementTechniqueType
  30. path: sub-BPN-M4/sub-BPN-M4_ses-20210524-m1_obj-1c8nyxo_ophys.nwb
  31. publishedBy:
  32. endDate: '2023-06-02T13:07:32.279804+00:00'
  33. id: urn:uuid:c7b80edc-4c0c-40ab-a3d0-6812f31b10db
  34. name: DANDI publish
  35. schemaKey: PublishActivity
  36. startDate: '2023-06-02T13:07:32.279804+00:00'
  37. wasAssociatedWith:
  38. - id: urn:uuid:c10d802e-6bc7-46f9-a42e-d1986a870844
  39. identifier: RRID:SCR_017571
  40. name: DANDI API
  41. schemaKey: Software
  42. version: 0.1.0
  43. schemaKey: Asset
  44. schemaVersion: 0.6.4
  45. variableMeasured:
  46. - schemaKey: PropertyValue
  47. value: TwoPhotonSeries
  48. - schemaKey: PropertyValue
  49. value: ImagingPlane
  50. - schemaKey: PropertyValue
  51. value: OpticalChannel
  52. - schemaKey: PropertyValue
  53. value: ProcessingModule
  54. - schemaKey: PropertyValue
  55. value: PlaneSegmentation
  56. wasAttributedTo:
  57. - age:
  58. schemaKey: PropertyValue
  59. unitText: ISO-8601 duration
  60. value: P97D
  61. valueReference:
  62. schemaKey: PropertyValue
  63. value: dandi:BirthReference
  64. identifier: BPN-M4
  65. schemaKey: Participant
  66. sex:
  67. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  68. name: Male
  69. schemaKey: SexType
  70. species:
  71. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  72. name: Mus musculus - House mouse
  73. schemaKey: SpeciesType
  74. wasGeneratedBy:
  75. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  76. various cortical depths separated by 1 micron) in the upstream segment of a pial
  77. artery from a BPN mouse 41 min after cisterna magna injection
  78. identifier: 20210524-m1
  79. name: 20210524-m1
  80. schemaKey: Session
  81. startDate: '2021-05-24T15:21:41-04:00'
  82. - description: Metadata generated by DANDI cli
  83. endDate: '2023-06-02T00:49:25.157681-04:00'
  84. id: urn:uuid:ba50be40-8e2b-469e-a8ed-03564d174dab
  85. name: Metadata generation
  86. schemaKey: Activity
  87. startDate: '2023-06-02T00:49:24.625452-04:00'
  88. wasAssociatedWith:
  89. - identifier: RRID:SCR_019009
  90. name: DANDI Command Line Interface
  91. schemaKey: Software
  92. url: https://github.com/dandi/dandi-cli
  93. version: 0.54.0
  94. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  95. access:
  96. - schemaKey: AccessRequirements
  97. status: dandi:OpenAccess
  98. approach:
  99. - name: microscopy approach; cell population imaging
  100. schemaKey: ApproachType
  101. blobDateModified: '2023-06-02T00:38:15.880125-04:00'
  102. contentSize: 417172903
  103. contentUrl:
  104. - https://api.dandiarchive.org/api/assets/da4784f4-1906-45bd-8ced-d1210258fa0e/download/
  105. - https://dandiarchive.s3.amazonaws.com/blobs/d8a/223/d8a223be-2bfb-4263-87e6-88b598691385
  106. dateModified: '2023-06-02T00:49:24.469131-04:00'
  107. datePublished: '2023-06-02T13:07:32.286230+00:00'
  108. digest:
  109. dandi:dandi-etag: f91673f67fea52040c36d2a4d8ae6508-7
  110. dandi:sha2-256: 4a918139517a77a71c4492161b69f974b4e9d48799090d53ab9a4de460103c81
  111. encodingFormat: application/x-nwb
  112. id: dandiasset:da4784f4-1906-45bd-8ced-d1210258fa0e
  113. identifier: da4784f4-1906-45bd-8ced-d1210258fa0e
  114. keywords:
  115. - B-act Zstack
  116. measurementTechnique:
  117. - name: two-photon microscopy technique
  118. schemaKey: MeasurementTechniqueType
  119. - name: analytical technique
  120. schemaKey: MeasurementTechniqueType
  121. - name: surgical technique
  122. schemaKey: MeasurementTechniqueType
  123. path: sub-21-09-01-b-act/sub-21-09-01-b-act_ses-20210901-m1_ophys.nwb
  124. publishedBy:
  125. endDate: '2023-06-02T13:07:32.286230+00:00'
  126. id: urn:uuid:15432685-5c4b-4a49-a059-de0690b5abca
  127. name: DANDI publish
  128. schemaKey: PublishActivity
  129. startDate: '2023-06-02T13:07:32.286230+00:00'
  130. wasAssociatedWith:
  131. - id: urn:uuid:6eca904a-87ed-4692-b6bc-1c6d64985982
  132. identifier: RRID:SCR_017571
  133. name: DANDI API
  134. schemaKey: Software
  135. version: 0.1.0
  136. schemaKey: Asset
  137. schemaVersion: 0.6.4
  138. variableMeasured:
  139. - schemaKey: PropertyValue
  140. value: TwoPhotonSeries
  141. - schemaKey: PropertyValue
  142. value: ImagingPlane
  143. - schemaKey: PropertyValue
  144. value: OpticalChannel
  145. - schemaKey: PropertyValue
  146. value: ProcessingModule
  147. - schemaKey: PropertyValue
  148. value: PlaneSegmentation
  149. wasAttributedTo:
  150. - age:
  151. schemaKey: PropertyValue
  152. unitText: ISO-8601 duration
  153. value: P76D
  154. valueReference:
  155. schemaKey: PropertyValue
  156. value: dandi:BirthReference
  157. identifier: 21-09-01_b-act
  158. schemaKey: Participant
  159. sex:
  160. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  161. name: Female
  162. schemaKey: SexType
  163. species:
  164. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  165. name: Mus musculus - House mouse
  166. schemaKey: SpeciesType
  167. wasGeneratedBy:
  168. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  169. various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
  170. mouse under ketamine/xylazine anesthesia and 3 min after atipamezole injection
  171. identifier: 20210901-m1
  172. name: 20210901-m1
  173. schemaKey: Session
  174. startDate: '2021-09-01T13:58:16-04:00'
  175. - description: Metadata generated by DANDI cli
  176. endDate: '2023-06-02T00:49:24.469131-04:00'
  177. id: urn:uuid:866ba823-1300-47f0-aa58-21fc2023cc6c
  178. name: Metadata generation
  179. schemaKey: Activity
  180. startDate: '2023-06-02T00:49:24.359753-04:00'
  181. wasAssociatedWith:
  182. - identifier: RRID:SCR_019009
  183. name: DANDI Command Line Interface
  184. schemaKey: Software
  185. url: https://github.com/dandi/dandi-cli
  186. version: 0.54.0
  187. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  188. access:
  189. - schemaKey: AccessRequirements
  190. status: dandi:OpenAccess
  191. approach:
  192. - name: microscopy approach; cell population imaging
  193. schemaKey: ApproachType
  194. blobDateModified: '2023-06-02T00:47:09.832549-04:00'
  195. contentSize: 593149287
  196. contentUrl:
  197. - https://api.dandiarchive.org/api/assets/415952ef-43f1-4727-9a04-d1bd9a6c3722/download/
  198. - https://dandiarchive.s3.amazonaws.com/blobs/3c5/71a/3c571a78-2e1f-4936-bd1c-97891ced8636
  199. dateModified: '2023-06-02T00:49:25.408499-04:00'
  200. datePublished: '2023-06-02T13:07:32.291342+00:00'
  201. digest:
  202. dandi:dandi-etag: ea5a913328ea9a7e5ddc08b22c717f4e-9
  203. dandi:sha2-256: aa3a13f35c4def367a7774537c0375cb6cbf834e08a357e1357c5e8fa44c1c11
  204. encodingFormat: application/x-nwb
  205. id: dandiasset:415952ef-43f1-4727-9a04-d1bd9a6c3722
  206. identifier: 415952ef-43f1-4727-9a04-d1bd9a6c3722
  207. keywords:
  208. - B-act Zstack
  209. measurementTechnique:
  210. - name: two-photon microscopy technique
  211. schemaKey: MeasurementTechniqueType
  212. - name: analytical technique
  213. schemaKey: MeasurementTechniqueType
  214. - name: surgical technique
  215. schemaKey: MeasurementTechniqueType
  216. path: sub-21-09-20-b-act/sub-21-09-20-b-act_ses-20210920-m1_ophys.nwb
  217. publishedBy:
  218. endDate: '2023-06-02T13:07:32.291342+00:00'
  219. id: urn:uuid:72968e06-3531-4339-996e-de83015baf28
  220. name: DANDI publish
  221. schemaKey: PublishActivity
  222. startDate: '2023-06-02T13:07:32.291342+00:00'
  223. wasAssociatedWith:
  224. - id: urn:uuid:798e9ad9-c1df-440f-a74e-55b80b99be84
  225. identifier: RRID:SCR_017571
  226. name: DANDI API
  227. schemaKey: Software
  228. version: 0.1.0
  229. schemaKey: Asset
  230. schemaVersion: 0.6.4
  231. variableMeasured:
  232. - schemaKey: PropertyValue
  233. value: TwoPhotonSeries
  234. - schemaKey: PropertyValue
  235. value: ImagingPlane
  236. - schemaKey: PropertyValue
  237. value: OpticalChannel
  238. - schemaKey: PropertyValue
  239. value: ProcessingModule
  240. - schemaKey: PropertyValue
  241. value: PlaneSegmentation
  242. wasAttributedTo:
  243. - age:
  244. schemaKey: PropertyValue
  245. unitText: ISO-8601 duration
  246. value: P95D
  247. valueReference:
  248. schemaKey: PropertyValue
  249. value: dandi:BirthReference
  250. identifier: 21-09-20_b-act
  251. schemaKey: Participant
  252. sex:
  253. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  254. name: Female
  255. schemaKey: SexType
  256. species:
  257. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  258. name: Mus musculus - House mouse
  259. schemaKey: SpeciesType
  260. wasGeneratedBy:
  261. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  262. various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
  263. mouse under ketamine/xylazine anesthesia and 31 min after atipamezole injection
  264. identifier: 20210920-m1
  265. name: 20210920-m1
  266. schemaKey: Session
  267. startDate: '2021-09-20T15:29:37-04:00'
  268. - description: Metadata generated by DANDI cli
  269. endDate: '2023-06-02T00:49:25.408499-04:00'
  270. id: urn:uuid:7b68bd7c-d80e-4e6d-a8b3-86a2c11559f8
  271. name: Metadata generation
  272. schemaKey: Activity
  273. startDate: '2023-06-02T00:49:24.828970-04:00'
  274. wasAssociatedWith:
  275. - identifier: RRID:SCR_019009
  276. name: DANDI Command Line Interface
  277. schemaKey: Software
  278. url: https://github.com/dandi/dandi-cli
  279. version: 0.54.0
  280. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  281. access:
  282. - schemaKey: AccessRequirements
  283. status: dandi:OpenAccess
  284. approach:
  285. - name: microscopy approach; cell population imaging
  286. schemaKey: ApproachType
  287. blobDateModified: '2023-06-02T00:34:42.699744-04:00'
  288. contentSize: 542920706
  289. contentUrl:
  290. - https://api.dandiarchive.org/api/assets/6a2c9d5d-8246-41b0-b8e9-3467cf10bb76/download/
  291. - https://dandiarchive.s3.amazonaws.com/blobs/7b0/f97/7b0f976a-b868-4e0c-8460-776599d58e41
  292. dateModified: '2023-06-02T00:49:25.283191-04:00'
  293. datePublished: '2023-06-02T13:07:32.302122+00:00'
  294. digest:
  295. dandi:dandi-etag: 6c3fe2f0805918b741afc1e3fe5e0ae4-9
  296. dandi:sha2-256: 0633c442aecfa0f063589147af058cb04676877ae9f4a8d7ec00b8c5972bbdc3
  297. encodingFormat: application/x-nwb
  298. id: dandiasset:6a2c9d5d-8246-41b0-b8e9-3467cf10bb76
  299. identifier: 6a2c9d5d-8246-41b0-b8e9-3467cf10bb76
  300. keywords:
  301. - B-act Zstack
  302. measurementTechnique:
  303. - name: two-photon microscopy technique
  304. schemaKey: MeasurementTechniqueType
  305. - name: analytical technique
  306. schemaKey: MeasurementTechniqueType
  307. - name: surgical technique
  308. schemaKey: MeasurementTechniqueType
  309. path: sub-21-10-08-b-act/sub-21-10-08-b-act_ses-20211008-m1_ophys.nwb
  310. publishedBy:
  311. endDate: '2023-06-02T13:07:32.302122+00:00'
  312. id: urn:uuid:dc25d7b1-1901-4d81-8050-4726575a9a54
  313. name: DANDI publish
  314. schemaKey: PublishActivity
  315. startDate: '2023-06-02T13:07:32.302122+00:00'
  316. wasAssociatedWith:
  317. - id: urn:uuid:4e4fa8b6-d741-42fa-8305-62740bca3b63
  318. identifier: RRID:SCR_017571
  319. name: DANDI API
  320. schemaKey: Software
  321. version: 0.1.0
  322. schemaKey: Asset
  323. schemaVersion: 0.6.4
  324. variableMeasured:
  325. - schemaKey: PropertyValue
  326. value: TwoPhotonSeries
  327. - schemaKey: PropertyValue
  328. value: ImagingPlane
  329. - schemaKey: PropertyValue
  330. value: OpticalChannel
  331. - schemaKey: PropertyValue
  332. value: ProcessingModule
  333. - schemaKey: PropertyValue
  334. value: PlaneSegmentation
  335. wasAttributedTo:
  336. - age:
  337. schemaKey: PropertyValue
  338. unitText: ISO-8601 duration
  339. value: P113D
  340. valueReference:
  341. schemaKey: PropertyValue
  342. value: dandi:BirthReference
  343. identifier: 21-10-08_b-act
  344. schemaKey: Participant
  345. sex:
  346. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  347. name: Female
  348. schemaKey: SexType
  349. species:
  350. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  351. name: Mus musculus - House mouse
  352. schemaKey: SpeciesType
  353. wasGeneratedBy:
  354. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  355. various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
  356. mouse under ketamine/xylazine anesthesia
  357. identifier: 20211008-m1
  358. name: 20211008-m1
  359. schemaKey: Session
  360. startDate: '2021-10-08T12:59:06-04:00'
  361. - description: Metadata generated by DANDI cli
  362. endDate: '2023-06-02T00:49:25.283191-04:00'
  363. id: urn:uuid:72f82302-bca7-4838-beb1-25f20a8d020d
  364. name: Metadata generation
  365. schemaKey: Activity
  366. startDate: '2023-06-02T00:49:24.735209-04:00'
  367. wasAssociatedWith:
  368. - identifier: RRID:SCR_019009
  369. name: DANDI Command Line Interface
  370. schemaKey: Software
  371. url: https://github.com/dandi/dandi-cli
  372. version: 0.54.0
  373. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  374. access:
  375. - schemaKey: AccessRequirements
  376. status: dandi:OpenAccess
  377. approach:
  378. - name: microscopy approach; cell population imaging
  379. schemaKey: ApproachType
  380. blobDateModified: '2023-06-01T22:58:27.558646-04:00'
  381. contentSize: 331919088
  382. contentUrl:
  383. - https://api.dandiarchive.org/api/assets/8364952c-43e9-4218-b65a-2c09989cce1a/download/
  384. - https://dandiarchive.s3.amazonaws.com/blobs/2f6/5cb/2f65cbff-7bc0-4777-bcb4-5f45454a7b69
  385. dateModified: '2023-06-02T00:59:08.229582-04:00'
  386. datePublished: '2023-06-02T13:07:32.296424+00:00'
  387. digest:
  388. dandi:dandi-etag: 987307aed3be9930ed36f7358a6d437a-5
  389. dandi:sha2-256: 3458a9f35ddce84398602cd5ec0ce85504c90d21bf49a69ccd41e5abb39cf91e
  390. encodingFormat: application/x-nwb
  391. id: dandiasset:8364952c-43e9-4218-b65a-2c09989cce1a
  392. identifier: 8364952c-43e9-4218-b65a-2c09989cce1a
  393. keywords:
  394. - BPN Zstack
  395. measurementTechnique:
  396. - name: two-photon microscopy technique
  397. schemaKey: MeasurementTechniqueType
  398. - name: analytical technique
  399. schemaKey: MeasurementTechniqueType
  400. - name: surgical technique
  401. schemaKey: MeasurementTechniqueType
  402. path: sub-BPN-M4/sub-BPN-M4_ses-20210524-m1_obj-uvnt3v_ophys.nwb
  403. publishedBy:
  404. endDate: '2023-06-02T13:07:32.296424+00:00'
  405. id: urn:uuid:c1af6dbb-f991-4a37-a16c-5ea80c3044b3
  406. name: DANDI publish
  407. schemaKey: PublishActivity
  408. startDate: '2023-06-02T13:07:32.296424+00:00'
  409. wasAssociatedWith:
  410. - id: urn:uuid:d8ae78dc-6185-4b24-af28-7c111497210b
  411. identifier: RRID:SCR_017571
  412. name: DANDI API
  413. schemaKey: Software
  414. version: 0.1.0
  415. schemaKey: Asset
  416. schemaVersion: 0.6.4
  417. variableMeasured:
  418. - schemaKey: PropertyValue
  419. value: TwoPhotonSeries
  420. - schemaKey: PropertyValue
  421. value: ImagingPlane
  422. - schemaKey: PropertyValue
  423. value: OpticalChannel
  424. - schemaKey: PropertyValue
  425. value: ProcessingModule
  426. - schemaKey: PropertyValue
  427. value: PlaneSegmentation
  428. wasAttributedTo:
  429. - age:
  430. schemaKey: PropertyValue
  431. unitText: ISO-8601 duration
  432. value: P97D
  433. valueReference:
  434. schemaKey: PropertyValue
  435. value: dandi:BirthReference
  436. identifier: BPN-M4
  437. schemaKey: Participant
  438. sex:
  439. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  440. name: Male
  441. schemaKey: SexType
  442. species:
  443. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  444. name: Mus musculus - House mouse
  445. schemaKey: SpeciesType
  446. wasGeneratedBy:
  447. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  448. various cortical depths separated by 1 micron) in the downstream segment of a
  449. pial artery from a BPN mouse 25 min after cisterna magna injection
  450. identifier: 20210524-m1
  451. name: 20210524-m1
  452. schemaKey: Session
  453. startDate: '2021-05-24T15:04:16-04:00'
  454. - description: Metadata generated by DANDI cli
  455. endDate: '2023-06-02T00:59:08.229582-04:00'
  456. id: urn:uuid:a4b3ab7c-7543-459e-b898-0404c7f43089
  457. name: Metadata generation
  458. schemaKey: Activity
  459. startDate: '2023-06-02T00:59:08.104354-04:00'
  460. wasAssociatedWith:
  461. - identifier: RRID:SCR_019009
  462. name: DANDI Command Line Interface
  463. schemaKey: Software
  464. url: https://github.com/dandi/dandi-cli
  465. version: 0.54.0
  466. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  467. access:
  468. - schemaKey: AccessRequirements
  469. status: dandi:OpenAccess
  470. approach:
  471. - name: microscopy approach; cell population imaging
  472. schemaKey: ApproachType
  473. blobDateModified: '2023-06-01T23:01:44.033555-04:00'
  474. contentSize: 267292864
  475. contentUrl:
  476. - https://api.dandiarchive.org/api/assets/dbb2321d-ea93-47cd-9254-b55332f5fa10/download/
  477. - https://dandiarchive.s3.amazonaws.com/blobs/379/2ce/3792ce43-3bdb-4236-af0f-007cc1b7b718
  478. dateModified: '2023-06-02T01:05:39.322791-04:00'
  479. datePublished: '2023-06-02T13:07:32.307265+00:00'
  480. digest:
  481. dandi:dandi-etag: 5ba4013d68f3ba6a1e6427cc25f14ecf-4
  482. dandi:sha2-256: bb01c22857c0025cfe193566e3ee6d5cc0728f7735dcc06b9e02cef026006fbb
  483. encodingFormat: application/x-nwb
  484. id: dandiasset:dbb2321d-ea93-47cd-9254-b55332f5fa10
  485. identifier: dbb2321d-ea93-47cd-9254-b55332f5fa10
  486. keywords:
  487. - BPN Zstack
  488. measurementTechnique:
  489. - name: two-photon microscopy technique
  490. schemaKey: MeasurementTechniqueType
  491. - name: analytical technique
  492. schemaKey: MeasurementTechniqueType
  493. - name: surgical technique
  494. schemaKey: MeasurementTechniqueType
  495. path: sub-BPN-M6/sub-BPN-M6_ses-20210526-m1_ophys.nwb
  496. publishedBy:
  497. endDate: '2023-06-02T13:07:32.307265+00:00'
  498. id: urn:uuid:13f9563c-9771-4fdc-b2cf-c5674a735817
  499. name: DANDI publish
  500. schemaKey: PublishActivity
  501. startDate: '2023-06-02T13:07:32.307265+00:00'
  502. wasAssociatedWith:
  503. - id: urn:uuid:abd55bf1-bda2-44cc-bbc2-922303644b64
  504. identifier: RRID:SCR_017571
  505. name: DANDI API
  506. schemaKey: Software
  507. version: 0.1.0
  508. schemaKey: Asset
  509. schemaVersion: 0.6.4
  510. variableMeasured:
  511. - schemaKey: PropertyValue
  512. value: TwoPhotonSeries
  513. - schemaKey: PropertyValue
  514. value: ImagingPlane
  515. - schemaKey: PropertyValue
  516. value: OpticalChannel
  517. - schemaKey: PropertyValue
  518. value: ProcessingModule
  519. - schemaKey: PropertyValue
  520. value: PlaneSegmentation
  521. wasAttributedTo:
  522. - age:
  523. schemaKey: PropertyValue
  524. unitText: ISO-8601 duration
  525. value: P99D
  526. valueReference:
  527. schemaKey: PropertyValue
  528. value: dandi:BirthReference
  529. identifier: BPN-M6
  530. schemaKey: Participant
  531. sex:
  532. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  533. name: Male
  534. schemaKey: SexType
  535. species:
  536. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  537. name: Mus musculus - House mouse
  538. schemaKey: SpeciesType
  539. wasGeneratedBy:
  540. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  541. various cortical depths separated by 1 micron) in the downstream segment of a
  542. pial artery from a BPN mouse 63 min after cisterna magna injection
  543. identifier: 20210526-m1
  544. name: 20210526-m1
  545. schemaKey: Session
  546. startDate: '2021-05-26T11:38:55-04:00'
  547. - description: Metadata generated by DANDI cli
  548. endDate: '2023-06-02T01:05:39.322791-04:00'
  549. id: urn:uuid:ad00411a-c1cc-47a4-a0b2-5b5087d6b14c
  550. name: Metadata generation
  551. schemaKey: Activity
  552. startDate: '2023-06-02T01:05:39.182162-04:00'
  553. wasAssociatedWith:
  554. - identifier: RRID:SCR_019009
  555. name: DANDI Command Line Interface
  556. schemaKey: Software
  557. url: https://github.com/dandi/dandi-cli
  558. version: 0.54.0
  559. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  560. access:
  561. - schemaKey: AccessRequirements
  562. status: dandi:OpenAccess
  563. approach:
  564. - name: microscopy approach; cell population imaging
  565. schemaKey: ApproachType
  566. blobDateModified: '2023-06-01T23:15:59.580002-04:00'
  567. contentSize: 908302040
  568. contentUrl:
  569. - https://api.dandiarchive.org/api/assets/2b69c538-6712-4223-b643-a3b1845f910f/download/
  570. - https://dandiarchive.s3.amazonaws.com/blobs/24b/910/24b9109f-ba63-462f-a2a6-c051e63e4537
  571. dateModified: '2023-06-02T00:49:26.097745-04:00'
  572. datePublished: '2023-06-02T13:07:32.312433+00:00'
  573. digest:
  574. dandi:dandi-etag: 36ab4e2a9697faf4b20bcf3701af416b-14
  575. dandi:sha2-256: a24d0deb263243ecac54de0db95ea2496d8fe5d783c13fd8b0a4edaa4d7b9ab6
  576. encodingFormat: application/x-nwb
  577. id: dandiasset:2b69c538-6712-4223-b643-a3b1845f910f
  578. identifier: 2b69c538-6712-4223-b643-a3b1845f910f
  579. keywords:
  580. - B-act Zstack
  581. measurementTechnique:
  582. - name: two-photon microscopy technique
  583. schemaKey: MeasurementTechniqueType
  584. - name: analytical technique
  585. schemaKey: MeasurementTechniqueType
  586. - name: surgical technique
  587. schemaKey: MeasurementTechniqueType
  588. path: sub-21-07-19-b-act/sub-21-07-19-b-act_ses-20210914-m1_ophys.nwb
  589. publishedBy:
  590. endDate: '2023-06-02T13:07:32.312433+00:00'
  591. id: urn:uuid:c7af76fd-6f78-4f96-83db-a7d8ee082911
  592. name: DANDI publish
  593. schemaKey: PublishActivity
  594. startDate: '2023-06-02T13:07:32.312433+00:00'
  595. wasAssociatedWith:
  596. - id: urn:uuid:e44c58c1-8fc1-4d44-8f0f-132e98772b23
  597. identifier: RRID:SCR_017571
  598. name: DANDI API
  599. schemaKey: Software
  600. version: 0.1.0
  601. schemaKey: Asset
  602. schemaVersion: 0.6.4
  603. variableMeasured:
  604. - schemaKey: PropertyValue
  605. value: TwoPhotonSeries
  606. - schemaKey: PropertyValue
  607. value: ImagingPlane
  608. - schemaKey: PropertyValue
  609. value: OpticalChannel
  610. - schemaKey: PropertyValue
  611. value: ProcessingModule
  612. - schemaKey: PropertyValue
  613. value: PlaneSegmentation
  614. wasAttributedTo:
  615. - age:
  616. schemaKey: PropertyValue
  617. unitText: ISO-8601 duration
  618. value: P91D
  619. valueReference:
  620. schemaKey: PropertyValue
  621. value: dandi:BirthReference
  622. identifier: 21-07-19_b-act
  623. schemaKey: Participant
  624. sex:
  625. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  626. name: Male
  627. schemaKey: SexType
  628. species:
  629. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  630. name: Mus musculus - House mouse
  631. schemaKey: SpeciesType
  632. wasGeneratedBy:
  633. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  634. various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
  635. mouse 15 min after cisterna magna injection
  636. identifier: 20210914-m1
  637. name: 20210914-m1
  638. schemaKey: Session
  639. startDate: '2021-07-19T12:21:54-04:00'
  640. - description: Metadata generated by DANDI cli
  641. endDate: '2023-06-02T00:49:26.097745-04:00'
  642. id: urn:uuid:3175d56a-dfa1-4122-974b-6fc5ad05f94e
  643. name: Metadata generation
  644. schemaKey: Activity
  645. startDate: '2023-06-02T00:49:25.988359-04:00'
  646. wasAssociatedWith:
  647. - identifier: RRID:SCR_019009
  648. name: DANDI Command Line Interface
  649. schemaKey: Software
  650. url: https://github.com/dandi/dandi-cli
  651. version: 0.54.0
  652. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  653. access:
  654. - schemaKey: AccessRequirements
  655. status: dandi:OpenAccess
  656. approach:
  657. - name: microscopy approach; cell population imaging
  658. schemaKey: ApproachType
  659. blobDateModified: '2023-06-01T23:08:26.287866-04:00'
  660. contentSize: 249269831
  661. contentUrl:
  662. - https://api.dandiarchive.org/api/assets/3610bb59-13ea-4f4f-971f-68092354e1fe/download/
  663. - https://dandiarchive.s3.amazonaws.com/blobs/7be/c7e/7bec7e4c-e2a7-4bca-b2a4-17bdb83e8a09
  664. dateModified: '2023-06-02T01:06:05.458182-04:00'
  665. datePublished: '2023-06-02T13:07:32.317525+00:00'
  666. digest:
  667. dandi:dandi-etag: b5bd7bd960f257043d6fdfc09f330523-4
  668. dandi:sha2-256: 49aa285554d0351e5f2ca14691875e9f69d65c4560940c7686b76f595cb6d3e7
  669. encodingFormat: application/x-nwb
  670. id: dandiasset:3610bb59-13ea-4f4f-971f-68092354e1fe
  671. identifier: 3610bb59-13ea-4f4f-971f-68092354e1fe
  672. keywords:
  673. - BPN Zstack
  674. measurementTechnique:
  675. - name: two-photon microscopy technique
  676. schemaKey: MeasurementTechniqueType
  677. - name: analytical technique
  678. schemaKey: MeasurementTechniqueType
  679. - name: surgical technique
  680. schemaKey: MeasurementTechniqueType
  681. path: sub-BPN-M7/sub-BPN-M7_ses-20210527-m1_obj-ertj5n_ophys.nwb
  682. publishedBy:
  683. endDate: '2023-06-02T13:07:32.317525+00:00'
  684. id: urn:uuid:784dcdd9-3ebe-4eee-a1df-e95644167160
  685. name: DANDI publish
  686. schemaKey: PublishActivity
  687. startDate: '2023-06-02T13:07:32.317525+00:00'
  688. wasAssociatedWith:
  689. - id: urn:uuid:d244a5c1-af01-438b-b867-137918f8475a
  690. identifier: RRID:SCR_017571
  691. name: DANDI API
  692. schemaKey: Software
  693. version: 0.1.0
  694. schemaKey: Asset
  695. schemaVersion: 0.6.4
  696. variableMeasured:
  697. - schemaKey: PropertyValue
  698. value: TwoPhotonSeries
  699. - schemaKey: PropertyValue
  700. value: ImagingPlane
  701. - schemaKey: PropertyValue
  702. value: OpticalChannel
  703. - schemaKey: PropertyValue
  704. value: ProcessingModule
  705. - schemaKey: PropertyValue
  706. value: PlaneSegmentation
  707. wasAttributedTo:
  708. - age:
  709. schemaKey: PropertyValue
  710. unitText: ISO-8601 duration
  711. value: P100D
  712. valueReference:
  713. schemaKey: PropertyValue
  714. value: dandi:BirthReference
  715. identifier: BPN-M7
  716. schemaKey: Participant
  717. sex:
  718. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  719. name: Male
  720. schemaKey: SexType
  721. species:
  722. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  723. name: Mus musculus - House mouse
  724. schemaKey: SpeciesType
  725. wasGeneratedBy:
  726. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  727. various cortical depths separated by 1 micron) in the downstream segment of a
  728. pial artery from a BPN mouse 20 min after cisterna magna injection
  729. identifier: 20210527-m1
  730. name: 20210527-m1
  731. schemaKey: Session
  732. startDate: '2021-05-27T11:55:30-04:00'
  733. - description: Metadata generated by DANDI cli
  734. endDate: '2023-06-02T01:06:05.458182-04:00'
  735. id: urn:uuid:8143ab51-5acf-4064-9349-f609665df42f
  736. name: Metadata generation
  737. schemaKey: Activity
  738. startDate: '2023-06-02T01:06:05.262577-04:00'
  739. wasAssociatedWith:
  740. - identifier: RRID:SCR_019009
  741. name: DANDI Command Line Interface
  742. schemaKey: Software
  743. url: https://github.com/dandi/dandi-cli
  744. version: 0.54.0
  745. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  746. access:
  747. - schemaKey: AccessRequirements
  748. status: dandi:OpenAccess
  749. approach:
  750. - name: microscopy approach; cell population imaging
  751. schemaKey: ApproachType
  752. blobDateModified: '2023-06-01T23:10:22.783154-04:00'
  753. contentSize: 334859539
  754. contentUrl:
  755. - https://api.dandiarchive.org/api/assets/baed8d88-726f-48db-ac86-28be110b2e54/download/
  756. - https://dandiarchive.s3.amazonaws.com/blobs/1d5/c59/1d5c597c-b084-441d-8b4e-17576263df32
  757. dateModified: '2023-06-02T01:06:06.943445-04:00'
  758. datePublished: '2023-06-02T13:07:32.322611+00:00'
  759. digest:
  760. dandi:dandi-etag: 9cbe04c03b87357f8d723968f09af32b-5
  761. dandi:sha2-256: 36c5b1f13c0f7f52512523ec8db99ee2721680fa8df7ce19018c554dabfd35f3
  762. encodingFormat: application/x-nwb
  763. id: dandiasset:baed8d88-726f-48db-ac86-28be110b2e54
  764. identifier: baed8d88-726f-48db-ac86-28be110b2e54
  765. keywords:
  766. - BPN Zstack
  767. measurementTechnique:
  768. - name: two-photon microscopy technique
  769. schemaKey: MeasurementTechniqueType
  770. - name: analytical technique
  771. schemaKey: MeasurementTechniqueType
  772. - name: surgical technique
  773. schemaKey: MeasurementTechniqueType
  774. path: sub-BPN-M7/sub-BPN-M7_ses-20210527-m1_obj-wuc3ag_ophys.nwb
  775. publishedBy:
  776. endDate: '2023-06-02T13:07:32.322611+00:00'
  777. id: urn:uuid:456bd7ac-b397-45f0-a76e-727201330861
  778. name: DANDI publish
  779. schemaKey: PublishActivity
  780. startDate: '2023-06-02T13:07:32.322611+00:00'
  781. wasAssociatedWith:
  782. - id: urn:uuid:85e0aed5-127e-4a4c-9820-b328319bf2f1
  783. identifier: RRID:SCR_017571
  784. name: DANDI API
  785. schemaKey: Software
  786. version: 0.1.0
  787. schemaKey: Asset
  788. schemaVersion: 0.6.4
  789. variableMeasured:
  790. - schemaKey: PropertyValue
  791. value: TwoPhotonSeries
  792. - schemaKey: PropertyValue
  793. value: ImagingPlane
  794. - schemaKey: PropertyValue
  795. value: OpticalChannel
  796. - schemaKey: PropertyValue
  797. value: ProcessingModule
  798. - schemaKey: PropertyValue
  799. value: PlaneSegmentation
  800. wasAttributedTo:
  801. - age:
  802. schemaKey: PropertyValue
  803. unitText: ISO-8601 duration
  804. value: P100D
  805. valueReference:
  806. schemaKey: PropertyValue
  807. value: dandi:BirthReference
  808. identifier: BPN-M7
  809. schemaKey: Participant
  810. sex:
  811. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  812. name: Male
  813. schemaKey: SexType
  814. species:
  815. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  816. name: Mus musculus - House mouse
  817. schemaKey: SpeciesType
  818. wasGeneratedBy:
  819. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  820. various cortical depths separated by 1 micron) in the upstream segment of a pial
  821. artery from a BPN mouse 36 min after cisterna magna injection
  822. identifier: 20210527-m1
  823. name: 20210527-m1
  824. schemaKey: Session
  825. startDate: '2021-05-27T12:12:28-04:00'
  826. - description: Metadata generated by DANDI cli
  827. endDate: '2023-06-02T01:06:06.943445-04:00'
  828. id: urn:uuid:65e28891-9eb9-4979-8e98-33ae290baa21
  829. name: Metadata generation
  830. schemaKey: Activity
  831. startDate: '2023-06-02T01:06:06.818163-04:00'
  832. wasAssociatedWith:
  833. - identifier: RRID:SCR_019009
  834. name: DANDI Command Line Interface
  835. schemaKey: Software
  836. url: https://github.com/dandi/dandi-cli
  837. version: 0.54.0
  838. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  839. access:
  840. - schemaKey: AccessRequirements
  841. status: dandi:OpenAccess
  842. approach:
  843. - name: microscopy approach; cell population imaging
  844. schemaKey: ApproachType
  845. blobDateModified: '2023-06-01T23:03:39.719210-04:00'
  846. contentSize: 368731958
  847. contentUrl:
  848. - https://api.dandiarchive.org/api/assets/599edc8d-42d6-4d2c-ba15-e1b7b0f797c2/download/
  849. - https://dandiarchive.s3.amazonaws.com/blobs/f59/119/f5911955-3074-4410-a1da-df8272fd8e1f
  850. dateModified: '2023-06-02T01:06:03.389399-04:00'
  851. datePublished: '2023-06-02T13:07:32.327622+00:00'
  852. digest:
  853. dandi:dandi-etag: 3a0eda8c3c6c336d3abc19449e0c1773-6
  854. dandi:sha2-256: dee558962a1212ed8a33c9242b6c6651736ee4c2af802562c253240bf40fc308
  855. encodingFormat: application/x-nwb
  856. id: dandiasset:599edc8d-42d6-4d2c-ba15-e1b7b0f797c2
  857. identifier: 599edc8d-42d6-4d2c-ba15-e1b7b0f797c2
  858. keywords:
  859. - BPN Zstack
  860. measurementTechnique:
  861. - name: two-photon microscopy technique
  862. schemaKey: MeasurementTechniqueType
  863. - name: analytical technique
  864. schemaKey: MeasurementTechniqueType
  865. - name: surgical technique
  866. schemaKey: MeasurementTechniqueType
  867. path: sub-BPN-M6/sub-BPN-M6_ses-zstack-up-94min_ophys.nwb
  868. publishedBy:
  869. endDate: '2023-06-02T13:07:32.327622+00:00'
  870. id: urn:uuid:414d601b-ef4f-4c1b-b68e-f494550e98e0
  871. name: DANDI publish
  872. schemaKey: PublishActivity
  873. startDate: '2023-06-02T13:07:32.327622+00:00'
  874. wasAssociatedWith:
  875. - id: urn:uuid:ff15acf3-aac3-4798-bfb5-bc48b6b919a7
  876. identifier: RRID:SCR_017571
  877. name: DANDI API
  878. schemaKey: Software
  879. version: 0.1.0
  880. schemaKey: Asset
  881. schemaVersion: 0.6.4
  882. variableMeasured:
  883. - schemaKey: PropertyValue
  884. value: TwoPhotonSeries
  885. - schemaKey: PropertyValue
  886. value: ImagingPlane
  887. - schemaKey: PropertyValue
  888. value: OpticalChannel
  889. - schemaKey: PropertyValue
  890. value: ProcessingModule
  891. - schemaKey: PropertyValue
  892. value: PlaneSegmentation
  893. wasAttributedTo:
  894. - age:
  895. schemaKey: PropertyValue
  896. unitText: ISO-8601 duration
  897. value: P99D
  898. valueReference:
  899. schemaKey: PropertyValue
  900. value: dandi:BirthReference
  901. identifier: BPN-M6
  902. schemaKey: Participant
  903. sex:
  904. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  905. name: Male
  906. schemaKey: SexType
  907. species:
  908. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  909. name: Mus musculus - House mouse
  910. schemaKey: SpeciesType
  911. wasGeneratedBy:
  912. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  913. various cortical depths separated by 1 micron) in the upstream segment of a pial
  914. artery from a BPN mouse 94 min after cisterna magna injection
  915. identifier: zstack-up-94min
  916. name: zstack-up-94min
  917. schemaKey: Session
  918. startDate: '2021-05-26T12:10:09-04:00'
  919. - description: Metadata generated by DANDI cli
  920. endDate: '2023-06-02T01:06:03.389399-04:00'
  921. id: urn:uuid:ca6148f1-0b33-4ee4-a394-8bc08ba224de
  922. name: Metadata generation
  923. schemaKey: Activity
  924. startDate: '2023-06-02T01:06:03.255654-04:00'
  925. wasAssociatedWith:
  926. - identifier: RRID:SCR_019009
  927. name: DANDI Command Line Interface
  928. schemaKey: Software
  929. url: https://github.com/dandi/dandi-cli
  930. version: 0.54.0
  931. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  932. access:
  933. - schemaKey: AccessRequirements
  934. status: dandi:OpenAccess
  935. approach:
  936. - name: microscopy approach; cell population imaging
  937. schemaKey: ApproachType
  938. blobDateModified: '2023-06-01T16:36:22.346624-04:00'
  939. contentSize: 269895298
  940. contentUrl:
  941. - https://api.dandiarchive.org/api/assets/b8ba760c-9819-420d-b20e-0b52abec2875/download/
  942. - https://dandiarchive.s3.amazonaws.com/blobs/baf/fec/baffec1e-82b9-4c9e-b558-feb6a083d70c
  943. dateModified: '2023-06-02T01:13:35.486242-04:00'
  944. datePublished: '2023-06-02T13:07:32.343929+00:00'
  945. digest:
  946. dandi:dandi-etag: cdd1f59642fd763ffc5f675987551fb0-5
  947. dandi:sha2-256: fb1ab4497c829e3d0c866e97603d8ac5bd3edd1ba94e28f9d2514459ebda4b03
  948. encodingFormat: application/x-nwb
  949. id: dandiasset:b8ba760c-9819-420d-b20e-0b52abec2875
  950. identifier: b8ba760c-9819-420d-b20e-0b52abec2875
  951. keywords:
  952. - BPN Zstack
  953. measurementTechnique:
  954. - name: two-photon microscopy technique
  955. schemaKey: MeasurementTechniqueType
  956. - name: analytical technique
  957. schemaKey: MeasurementTechniqueType
  958. - name: surgical technique
  959. schemaKey: MeasurementTechniqueType
  960. path: sub-BPN-OLD-M2/sub-BPN-OLD-M2_ses-20210511-m1_obj-1dyu8zg_ophys.nwb
  961. publishedBy:
  962. endDate: '2023-06-02T13:07:32.343929+00:00'
  963. id: urn:uuid:9cb62339-19ab-4185-8f26-9f6456e7748d
  964. name: DANDI publish
  965. schemaKey: PublishActivity
  966. startDate: '2023-06-02T13:07:32.343929+00:00'
  967. wasAssociatedWith:
  968. - id: urn:uuid:6496047c-3fa6-491a-8bb7-980d7397e0d2
  969. identifier: RRID:SCR_017571
  970. name: DANDI API
  971. schemaKey: Software
  972. version: 0.1.0
  973. schemaKey: Asset
  974. schemaVersion: 0.6.4
  975. variableMeasured:
  976. - schemaKey: PropertyValue
  977. value: TwoPhotonSeries
  978. - schemaKey: PropertyValue
  979. value: ImagingPlane
  980. - schemaKey: PropertyValue
  981. value: OpticalChannel
  982. - schemaKey: PropertyValue
  983. value: ProcessingModule
  984. - schemaKey: PropertyValue
  985. value: PlaneSegmentation
  986. wasAttributedTo:
  987. - age:
  988. schemaKey: PropertyValue
  989. unitText: ISO-8601 duration
  990. value: P573D
  991. valueReference:
  992. schemaKey: PropertyValue
  993. value: dandi:BirthReference
  994. identifier: BPN-OLD-M2
  995. schemaKey: Participant
  996. sex:
  997. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  998. name: Male
  999. schemaKey: SexType
  1000. species:
  1001. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1002. name: Mus musculus - House mouse
  1003. schemaKey: SpeciesType
  1004. wasGeneratedBy:
  1005. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  1006. various cortical depths separated by 1 micron) in the upstream segment of a pial
  1007. artery from a BPN mouse 48 min after cisterna magna injection
  1008. identifier: 20210511-m1
  1009. name: 20210511-m1
  1010. schemaKey: Session
  1011. startDate: '2021-05-11T11:39:53-04:00'
  1012. - description: Metadata generated by DANDI cli
  1013. endDate: '2023-06-02T01:13:35.486242-04:00'
  1014. id: urn:uuid:449e98fe-8beb-4fc6-8e8e-4b9a1b508d22
  1015. name: Metadata generation
  1016. schemaKey: Activity
  1017. startDate: '2023-06-02T01:13:35.352333-04:00'
  1018. wasAssociatedWith:
  1019. - identifier: RRID:SCR_019009
  1020. name: DANDI Command Line Interface
  1021. schemaKey: Software
  1022. url: https://github.com/dandi/dandi-cli
  1023. version: 0.54.0
  1024. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1025. access:
  1026. - schemaKey: AccessRequirements
  1027. status: dandi:OpenAccess
  1028. approach:
  1029. - name: microscopy approach; cell population imaging
  1030. schemaKey: ApproachType
  1031. blobDateModified: '2023-06-01T22:19:41.313948-04:00'
  1032. contentSize: 226756904
  1033. contentUrl:
  1034. - https://api.dandiarchive.org/api/assets/73004a87-e31d-4a85-b1fb-2e17cb35a23e/download/
  1035. - https://dandiarchive.s3.amazonaws.com/blobs/afa/630/afa63045-2afa-42c5-a00b-46040e82a58f
  1036. dateModified: '2023-06-02T01:13:56.488696-04:00'
  1037. datePublished: '2023-06-02T13:07:32.332627+00:00'
  1038. digest:
  1039. dandi:dandi-etag: aad2c72caf20fc7932b4a5a977fdc38b-4
  1040. dandi:sha2-256: 5b06665300a78d5d19c3d4663e07b20c47dc309ab7efe69fb1b9491a1c2f2adf
  1041. encodingFormat: application/x-nwb
  1042. id: dandiasset:73004a87-e31d-4a85-b1fb-2e17cb35a23e
  1043. identifier: 73004a87-e31d-4a85-b1fb-2e17cb35a23e
  1044. keywords:
  1045. - BPN Zstack
  1046. measurementTechnique:
  1047. - name: two-photon microscopy technique
  1048. schemaKey: MeasurementTechniqueType
  1049. - name: analytical technique
  1050. schemaKey: MeasurementTechniqueType
  1051. - name: surgical technique
  1052. schemaKey: MeasurementTechniqueType
  1053. path: sub-BPN-OLD-M2/sub-BPN-OLD-M2_ses-20210511-m1_obj-z4hlsa_ophys.nwb
  1054. publishedBy:
  1055. endDate: '2023-06-02T13:07:32.332627+00:00'
  1056. id: urn:uuid:efab7d91-4d5c-426b-a4de-5c68cebdda0c
  1057. name: DANDI publish
  1058. schemaKey: PublishActivity
  1059. startDate: '2023-06-02T13:07:32.332627+00:00'
  1060. wasAssociatedWith:
  1061. - id: urn:uuid:5f6e9f52-3e32-4721-94c3-b5c20e1c042e
  1062. identifier: RRID:SCR_017571
  1063. name: DANDI API
  1064. schemaKey: Software
  1065. version: 0.1.0
  1066. schemaKey: Asset
  1067. schemaVersion: 0.6.4
  1068. variableMeasured:
  1069. - schemaKey: PropertyValue
  1070. value: TwoPhotonSeries
  1071. - schemaKey: PropertyValue
  1072. value: ImagingPlane
  1073. - schemaKey: PropertyValue
  1074. value: OpticalChannel
  1075. - schemaKey: PropertyValue
  1076. value: ProcessingModule
  1077. - schemaKey: PropertyValue
  1078. value: PlaneSegmentation
  1079. wasAttributedTo:
  1080. - age:
  1081. schemaKey: PropertyValue
  1082. unitText: ISO-8601 duration
  1083. value: P603D
  1084. valueReference:
  1085. schemaKey: PropertyValue
  1086. value: dandi:BirthReference
  1087. identifier: BPN-OLD-M2
  1088. schemaKey: Participant
  1089. sex:
  1090. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1091. name: Male
  1092. schemaKey: SexType
  1093. species:
  1094. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1095. name: Mus musculus - House mouse
  1096. schemaKey: SpeciesType
  1097. wasGeneratedBy:
  1098. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  1099. various cortical depths separated by 1 micron) in the downstream segment of a
  1100. pial artery from a BPN mouse 29 min after cisterna magna injection
  1101. identifier: 20210511-m1
  1102. name: 20210511-m1
  1103. schemaKey: Session
  1104. startDate: '2021-05-11T11:20:40-04:00'
  1105. - description: Metadata generated by DANDI cli
  1106. endDate: '2023-06-02T01:13:56.488696-04:00'
  1107. id: urn:uuid:8c5851e6-37e4-47c7-ba2d-2eba4e046f3e
  1108. name: Metadata generation
  1109. schemaKey: Activity
  1110. startDate: '2023-06-02T01:13:56.378173-04:00'
  1111. wasAssociatedWith:
  1112. - identifier: RRID:SCR_019009
  1113. name: DANDI Command Line Interface
  1114. schemaKey: Software
  1115. url: https://github.com/dandi/dandi-cli
  1116. version: 0.54.0
  1117. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1118. access:
  1119. - schemaKey: AccessRequirements
  1120. status: dandi:OpenAccess
  1121. approach:
  1122. - name: microscopy approach; cell population imaging
  1123. schemaKey: ApproachType
  1124. blobDateModified: '2023-06-01T22:44:38.096815-04:00'
  1125. contentSize: 252287855
  1126. contentUrl:
  1127. - https://api.dandiarchive.org/api/assets/b0fc94b5-48c8-41f8-813f-53cde0b450bd/download/
  1128. - https://dandiarchive.s3.amazonaws.com/blobs/7fe/509/7fe5090d-c82d-4395-998d-4401d7502a9c
  1129. dateModified: '2023-06-02T01:14:15.756229-04:00'
  1130. datePublished: '2023-06-02T13:07:32.348978+00:00'
  1131. digest:
  1132. dandi:dandi-etag: 83d14b62836e1c120ab0ae243e53ac0c-4
  1133. dandi:sha2-256: 3b38fb8b6afc0d644066bf0cd54ccafb2ac0298330729b42a837a6145596588d
  1134. encodingFormat: application/x-nwb
  1135. id: dandiasset:b0fc94b5-48c8-41f8-813f-53cde0b450bd
  1136. identifier: b0fc94b5-48c8-41f8-813f-53cde0b450bd
  1137. keywords:
  1138. - BPN Zstack
  1139. measurementTechnique:
  1140. - name: two-photon microscopy technique
  1141. schemaKey: MeasurementTechniqueType
  1142. - name: analytical technique
  1143. schemaKey: MeasurementTechniqueType
  1144. - name: surgical technique
  1145. schemaKey: MeasurementTechniqueType
  1146. path: sub-BPN-OLD-M3/sub-BPN-OLD-M3_ses-20210513-m1_obj-1ph4cqe_ophys.nwb
  1147. publishedBy:
  1148. endDate: '2023-06-02T13:07:32.348978+00:00'
  1149. id: urn:uuid:a89593b9-2a6e-40a5-9f0b-acda700b945e
  1150. name: DANDI publish
  1151. schemaKey: PublishActivity
  1152. startDate: '2023-06-02T13:07:32.348978+00:00'
  1153. wasAssociatedWith:
  1154. - id: urn:uuid:f9c423fd-9cff-48f6-9d91-1b7408cd83bd
  1155. identifier: RRID:SCR_017571
  1156. name: DANDI API
  1157. schemaKey: Software
  1158. version: 0.1.0
  1159. schemaKey: Asset
  1160. schemaVersion: 0.6.4
  1161. variableMeasured:
  1162. - schemaKey: PropertyValue
  1163. value: TwoPhotonSeries
  1164. - schemaKey: PropertyValue
  1165. value: ImagingPlane
  1166. - schemaKey: PropertyValue
  1167. value: OpticalChannel
  1168. - schemaKey: PropertyValue
  1169. value: ProcessingModule
  1170. - schemaKey: PropertyValue
  1171. value: PlaneSegmentation
  1172. wasAttributedTo:
  1173. - age:
  1174. schemaKey: PropertyValue
  1175. unitText: ISO-8601 duration
  1176. value: P575D
  1177. valueReference:
  1178. schemaKey: PropertyValue
  1179. value: dandi:BirthReference
  1180. identifier: BPN-OLD-M3
  1181. schemaKey: Participant
  1182. sex:
  1183. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1184. name: Male
  1185. schemaKey: SexType
  1186. species:
  1187. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1188. name: Mus musculus - House mouse
  1189. schemaKey: SpeciesType
  1190. wasGeneratedBy:
  1191. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  1192. various cortical depths separated by 1 micron) in the upstream segment of a pial
  1193. artery from a BPN mouse 24 min after cisterna magna injection
  1194. identifier: 20210513-m1
  1195. name: 20210513-m1
  1196. schemaKey: Session
  1197. startDate: '2021-05-13T11:22:01-04:00'
  1198. - description: Metadata generated by DANDI cli
  1199. endDate: '2023-06-02T01:14:15.756229-04:00'
  1200. id: urn:uuid:5fe6df06-6a0e-4c5e-901d-cb768a2465a1
  1201. name: Metadata generation
  1202. schemaKey: Activity
  1203. startDate: '2023-06-02T01:14:15.646509-04:00'
  1204. wasAssociatedWith:
  1205. - identifier: RRID:SCR_019009
  1206. name: DANDI Command Line Interface
  1207. schemaKey: Software
  1208. url: https://github.com/dandi/dandi-cli
  1209. version: 0.54.0
  1210. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1211. access:
  1212. - schemaKey: AccessRequirements
  1213. status: dandi:OpenAccess
  1214. approach:
  1215. - name: microscopy approach; cell population imaging
  1216. schemaKey: ApproachType
  1217. blobDateModified: '2023-06-01T22:46:16.185772-04:00'
  1218. contentSize: 240195065
  1219. contentUrl:
  1220. - https://api.dandiarchive.org/api/assets/a6c04ef2-21d9-451f-bdbe-859636968e5c/download/
  1221. - https://dandiarchive.s3.amazonaws.com/blobs/778/bdf/778bdfc8-f55a-4333-99a9-4d089f71e23c
  1222. dateModified: '2023-06-02T01:14:30.461587-04:00'
  1223. datePublished: '2023-06-02T13:07:32.338674+00:00'
  1224. digest:
  1225. dandi:dandi-etag: 35c357f3e946318b09b000d3efe1317a-4
  1226. dandi:sha2-256: 525ac3d6df6ceec41a09b5ca37a4b3cd16f314779853b9d231613b7f101d4197
  1227. encodingFormat: application/x-nwb
  1228. id: dandiasset:a6c04ef2-21d9-451f-bdbe-859636968e5c
  1229. identifier: a6c04ef2-21d9-451f-bdbe-859636968e5c
  1230. keywords:
  1231. - BPN Zstack
  1232. measurementTechnique:
  1233. - name: two-photon microscopy technique
  1234. schemaKey: MeasurementTechniqueType
  1235. - name: analytical technique
  1236. schemaKey: MeasurementTechniqueType
  1237. - name: surgical technique
  1238. schemaKey: MeasurementTechniqueType
  1239. path: sub-BPN-OLD-M3/sub-BPN-OLD-M3_ses-20210513-m1_obj-1u1mjbm_ophys.nwb
  1240. publishedBy:
  1241. endDate: '2023-06-02T13:07:32.338674+00:00'
  1242. id: urn:uuid:416b9ebc-b4e9-48ef-ab56-b0057a1e8b34
  1243. name: DANDI publish
  1244. schemaKey: PublishActivity
  1245. startDate: '2023-06-02T13:07:32.338674+00:00'
  1246. wasAssociatedWith:
  1247. - id: urn:uuid:68ba08c3-febb-4261-995a-5b63b4cbbdb4
  1248. identifier: RRID:SCR_017571
  1249. name: DANDI API
  1250. schemaKey: Software
  1251. version: 0.1.0
  1252. schemaKey: Asset
  1253. schemaVersion: 0.6.4
  1254. variableMeasured:
  1255. - schemaKey: PropertyValue
  1256. value: TwoPhotonSeries
  1257. - schemaKey: PropertyValue
  1258. value: ImagingPlane
  1259. - schemaKey: PropertyValue
  1260. value: OpticalChannel
  1261. - schemaKey: PropertyValue
  1262. value: ProcessingModule
  1263. - schemaKey: PropertyValue
  1264. value: PlaneSegmentation
  1265. wasAttributedTo:
  1266. - age:
  1267. schemaKey: PropertyValue
  1268. unitText: ISO-8601 duration
  1269. value: P575D
  1270. valueReference:
  1271. schemaKey: PropertyValue
  1272. value: dandi:BirthReference
  1273. identifier: BPN-OLD-M3
  1274. schemaKey: Participant
  1275. sex:
  1276. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1277. name: Male
  1278. schemaKey: SexType
  1279. species:
  1280. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1281. name: Mus musculus - House mouse
  1282. schemaKey: SpeciesType
  1283. wasGeneratedBy:
  1284. - description: Zstack (series of 2D microscopy images acquired with focal planes at
  1285. various cortical depths separated by 1 micron) in the downstream segment of a
  1286. pial artery from a BPN mouse 22 min after cisterna magna injection
  1287. identifier: 20210513-m1
  1288. name: 20210513-m1
  1289. schemaKey: Session
  1290. startDate: '2021-05-13T11:20:52-04:00'
  1291. - description: Metadata generated by DANDI cli
  1292. endDate: '2023-06-02T01:14:30.461587-04:00'
  1293. id: urn:uuid:e107de56-4c4f-4419-8597-739606262289
  1294. name: Metadata generation
  1295. schemaKey: Activity
  1296. startDate: '2023-06-02T01:14:30.333693-04:00'
  1297. wasAssociatedWith:
  1298. - identifier: RRID:SCR_019009
  1299. name: DANDI Command Line Interface
  1300. schemaKey: Software
  1301. url: https://github.com/dandi/dandi-cli
  1302. version: 0.54.0
Tip!

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

Comments

Loading...