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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T22:49:17.919466-04:00'
contentSize: 322050324
contentUrl:
- https://api.dandiarchive.org/api/assets/eba9b9db-5057-48c7-936e-1ebe6f8e0454/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f20/99e/f2099ec4-cc1c-44be-9d91-a1b215a0d820
dateModified: '2023-06-02T00:49:25.157681-04:00'
datePublished: '2023-06-02T13:07:32.279804+00:00'
digest:
dandi:dandi-etag: 9965b8a3941a6f4315567b4370c282f0-5
dandi:sha2-256: f0dc6835ab0d25649b9703b0e238571479ca4a776252fcf48b5be75448665cd8
encodingFormat: application/x-nwb
id: dandiasset:eba9b9db-5057-48c7-936e-1ebe6f8e0454
identifier: eba9b9db-5057-48c7-936e-1ebe6f8e0454
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-M4/sub-BPN-M4_ses-20210524-m1_obj-1c8nyxo_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.279804+00:00'
id: urn:uuid:c7b80edc-4c0c-40ab-a3d0-6812f31b10db
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.279804+00:00'
wasAssociatedWith:
- id: urn:uuid:c10d802e-6bc7-46f9-a42e-d1986a870844
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P97D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-M4
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the upstream segment of a pial
artery from a BPN mouse 41 min after cisterna magna injection
identifier: 20210524-m1
name: 20210524-m1
schemaKey: Session
startDate: '2021-05-24T15:21:41-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T00:49:25.157681-04:00'
id: urn:uuid:ba50be40-8e2b-469e-a8ed-03564d174dab
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T00:49:24.625452-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-02T00:38:15.880125-04:00'
contentSize: 417172903
contentUrl:
- https://api.dandiarchive.org/api/assets/da4784f4-1906-45bd-8ced-d1210258fa0e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d8a/223/d8a223be-2bfb-4263-87e6-88b598691385
dateModified: '2023-06-02T00:49:24.469131-04:00'
datePublished: '2023-06-02T13:07:32.286230+00:00'
digest:
dandi:dandi-etag: f91673f67fea52040c36d2a4d8ae6508-7
dandi:sha2-256: 4a918139517a77a71c4492161b69f974b4e9d48799090d53ab9a4de460103c81
encodingFormat: application/x-nwb
id: dandiasset:da4784f4-1906-45bd-8ced-d1210258fa0e
identifier: da4784f4-1906-45bd-8ced-d1210258fa0e
keywords:
- B-act Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-21-09-01-b-act/sub-21-09-01-b-act_ses-20210901-m1_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.286230+00:00'
id: urn:uuid:15432685-5c4b-4a49-a059-de0690b5abca
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.286230+00:00'
wasAssociatedWith:
- id: urn:uuid:6eca904a-87ed-4692-b6bc-1c6d64985982
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P76D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: 21-09-01_b-act
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
mouse under ketamine/xylazine anesthesia and 3 min after atipamezole injection
identifier: 20210901-m1
name: 20210901-m1
schemaKey: Session
startDate: '2021-09-01T13:58:16-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T00:49:24.469131-04:00'
id: urn:uuid:866ba823-1300-47f0-aa58-21fc2023cc6c
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T00:49:24.359753-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-02T00:47:09.832549-04:00'
contentSize: 593149287
contentUrl:
- https://api.dandiarchive.org/api/assets/415952ef-43f1-4727-9a04-d1bd9a6c3722/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3c5/71a/3c571a78-2e1f-4936-bd1c-97891ced8636
dateModified: '2023-06-02T00:49:25.408499-04:00'
datePublished: '2023-06-02T13:07:32.291342+00:00'
digest:
dandi:dandi-etag: ea5a913328ea9a7e5ddc08b22c717f4e-9
dandi:sha2-256: aa3a13f35c4def367a7774537c0375cb6cbf834e08a357e1357c5e8fa44c1c11
encodingFormat: application/x-nwb
id: dandiasset:415952ef-43f1-4727-9a04-d1bd9a6c3722
identifier: 415952ef-43f1-4727-9a04-d1bd9a6c3722
keywords:
- B-act Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-21-09-20-b-act/sub-21-09-20-b-act_ses-20210920-m1_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.291342+00:00'
id: urn:uuid:72968e06-3531-4339-996e-de83015baf28
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.291342+00:00'
wasAssociatedWith:
- id: urn:uuid:798e9ad9-c1df-440f-a74e-55b80b99be84
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P95D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: 21-09-20_b-act
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
mouse under ketamine/xylazine anesthesia and 31 min after atipamezole injection
identifier: 20210920-m1
name: 20210920-m1
schemaKey: Session
startDate: '2021-09-20T15:29:37-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T00:49:25.408499-04:00'
id: urn:uuid:7b68bd7c-d80e-4e6d-a8b3-86a2c11559f8
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T00:49:24.828970-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-02T00:34:42.699744-04:00'
contentSize: 542920706
contentUrl:
- https://api.dandiarchive.org/api/assets/6a2c9d5d-8246-41b0-b8e9-3467cf10bb76/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7b0/f97/7b0f976a-b868-4e0c-8460-776599d58e41
dateModified: '2023-06-02T00:49:25.283191-04:00'
datePublished: '2023-06-02T13:07:32.302122+00:00'
digest:
dandi:dandi-etag: 6c3fe2f0805918b741afc1e3fe5e0ae4-9
dandi:sha2-256: 0633c442aecfa0f063589147af058cb04676877ae9f4a8d7ec00b8c5972bbdc3
encodingFormat: application/x-nwb
id: dandiasset:6a2c9d5d-8246-41b0-b8e9-3467cf10bb76
identifier: 6a2c9d5d-8246-41b0-b8e9-3467cf10bb76
keywords:
- B-act Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-21-10-08-b-act/sub-21-10-08-b-act_ses-20211008-m1_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.302122+00:00'
id: urn:uuid:dc25d7b1-1901-4d81-8050-4726575a9a54
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.302122+00:00'
wasAssociatedWith:
- id: urn:uuid:4e4fa8b6-d741-42fa-8305-62740bca3b63
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P113D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: 21-10-08_b-act
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000383
name: Female
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
mouse under ketamine/xylazine anesthesia
identifier: 20211008-m1
name: 20211008-m1
schemaKey: Session
startDate: '2021-10-08T12:59:06-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T00:49:25.283191-04:00'
id: urn:uuid:72f82302-bca7-4838-beb1-25f20a8d020d
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T00:49:24.735209-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T22:58:27.558646-04:00'
contentSize: 331919088
contentUrl:
- https://api.dandiarchive.org/api/assets/8364952c-43e9-4218-b65a-2c09989cce1a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2f6/5cb/2f65cbff-7bc0-4777-bcb4-5f45454a7b69
dateModified: '2023-06-02T00:59:08.229582-04:00'
datePublished: '2023-06-02T13:07:32.296424+00:00'
digest:
dandi:dandi-etag: 987307aed3be9930ed36f7358a6d437a-5
dandi:sha2-256: 3458a9f35ddce84398602cd5ec0ce85504c90d21bf49a69ccd41e5abb39cf91e
encodingFormat: application/x-nwb
id: dandiasset:8364952c-43e9-4218-b65a-2c09989cce1a
identifier: 8364952c-43e9-4218-b65a-2c09989cce1a
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-M4/sub-BPN-M4_ses-20210524-m1_obj-uvnt3v_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.296424+00:00'
id: urn:uuid:c1af6dbb-f991-4a37-a16c-5ea80c3044b3
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.296424+00:00'
wasAssociatedWith:
- id: urn:uuid:d8ae78dc-6185-4b24-af28-7c111497210b
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P97D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-M4
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the downstream segment of a
pial artery from a BPN mouse 25 min after cisterna magna injection
identifier: 20210524-m1
name: 20210524-m1
schemaKey: Session
startDate: '2021-05-24T15:04:16-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T00:59:08.229582-04:00'
id: urn:uuid:a4b3ab7c-7543-459e-b898-0404c7f43089
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T00:59:08.104354-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T23:01:44.033555-04:00'
contentSize: 267292864
contentUrl:
- https://api.dandiarchive.org/api/assets/dbb2321d-ea93-47cd-9254-b55332f5fa10/download/
- https://dandiarchive.s3.amazonaws.com/blobs/379/2ce/3792ce43-3bdb-4236-af0f-007cc1b7b718
dateModified: '2023-06-02T01:05:39.322791-04:00'
datePublished: '2023-06-02T13:07:32.307265+00:00'
digest:
dandi:dandi-etag: 5ba4013d68f3ba6a1e6427cc25f14ecf-4
dandi:sha2-256: bb01c22857c0025cfe193566e3ee6d5cc0728f7735dcc06b9e02cef026006fbb
encodingFormat: application/x-nwb
id: dandiasset:dbb2321d-ea93-47cd-9254-b55332f5fa10
identifier: dbb2321d-ea93-47cd-9254-b55332f5fa10
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-M6/sub-BPN-M6_ses-20210526-m1_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.307265+00:00'
id: urn:uuid:13f9563c-9771-4fdc-b2cf-c5674a735817
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.307265+00:00'
wasAssociatedWith:
- id: urn:uuid:abd55bf1-bda2-44cc-bbc2-922303644b64
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P99D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-M6
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the downstream segment of a
pial artery from a BPN mouse 63 min after cisterna magna injection
identifier: 20210526-m1
name: 20210526-m1
schemaKey: Session
startDate: '2021-05-26T11:38:55-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:05:39.322791-04:00'
id: urn:uuid:ad00411a-c1cc-47a4-a0b2-5b5087d6b14c
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:05:39.182162-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T23:15:59.580002-04:00'
contentSize: 908302040
contentUrl:
- https://api.dandiarchive.org/api/assets/2b69c538-6712-4223-b643-a3b1845f910f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/24b/910/24b9109f-ba63-462f-a2a6-c051e63e4537
dateModified: '2023-06-02T00:49:26.097745-04:00'
datePublished: '2023-06-02T13:07:32.312433+00:00'
digest:
dandi:dandi-etag: 36ab4e2a9697faf4b20bcf3701af416b-14
dandi:sha2-256: a24d0deb263243ecac54de0db95ea2496d8fe5d783c13fd8b0a4edaa4d7b9ab6
encodingFormat: application/x-nwb
id: dandiasset:2b69c538-6712-4223-b643-a3b1845f910f
identifier: 2b69c538-6712-4223-b643-a3b1845f910f
keywords:
- B-act Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-21-07-19-b-act/sub-21-07-19-b-act_ses-20210914-m1_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.312433+00:00'
id: urn:uuid:c7af76fd-6f78-4f96-83db-a7d8ee082911
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.312433+00:00'
wasAssociatedWith:
- id: urn:uuid:e44c58c1-8fc1-4d44-8f0f-132e98772b23
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P91D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: 21-07-19_b-act
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the pial artery from a bAct-GFP
mouse 15 min after cisterna magna injection
identifier: 20210914-m1
name: 20210914-m1
schemaKey: Session
startDate: '2021-07-19T12:21:54-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T00:49:26.097745-04:00'
id: urn:uuid:3175d56a-dfa1-4122-974b-6fc5ad05f94e
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T00:49:25.988359-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T23:08:26.287866-04:00'
contentSize: 249269831
contentUrl:
- https://api.dandiarchive.org/api/assets/3610bb59-13ea-4f4f-971f-68092354e1fe/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7be/c7e/7bec7e4c-e2a7-4bca-b2a4-17bdb83e8a09
dateModified: '2023-06-02T01:06:05.458182-04:00'
datePublished: '2023-06-02T13:07:32.317525+00:00'
digest:
dandi:dandi-etag: b5bd7bd960f257043d6fdfc09f330523-4
dandi:sha2-256: 49aa285554d0351e5f2ca14691875e9f69d65c4560940c7686b76f595cb6d3e7
encodingFormat: application/x-nwb
id: dandiasset:3610bb59-13ea-4f4f-971f-68092354e1fe
identifier: 3610bb59-13ea-4f4f-971f-68092354e1fe
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-M7/sub-BPN-M7_ses-20210527-m1_obj-ertj5n_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.317525+00:00'
id: urn:uuid:784dcdd9-3ebe-4eee-a1df-e95644167160
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.317525+00:00'
wasAssociatedWith:
- id: urn:uuid:d244a5c1-af01-438b-b867-137918f8475a
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P100D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-M7
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the downstream segment of a
pial artery from a BPN mouse 20 min after cisterna magna injection
identifier: 20210527-m1
name: 20210527-m1
schemaKey: Session
startDate: '2021-05-27T11:55:30-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:06:05.458182-04:00'
id: urn:uuid:8143ab51-5acf-4064-9349-f609665df42f
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:06:05.262577-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T23:10:22.783154-04:00'
contentSize: 334859539
contentUrl:
- https://api.dandiarchive.org/api/assets/baed8d88-726f-48db-ac86-28be110b2e54/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1d5/c59/1d5c597c-b084-441d-8b4e-17576263df32
dateModified: '2023-06-02T01:06:06.943445-04:00'
datePublished: '2023-06-02T13:07:32.322611+00:00'
digest:
dandi:dandi-etag: 9cbe04c03b87357f8d723968f09af32b-5
dandi:sha2-256: 36c5b1f13c0f7f52512523ec8db99ee2721680fa8df7ce19018c554dabfd35f3
encodingFormat: application/x-nwb
id: dandiasset:baed8d88-726f-48db-ac86-28be110b2e54
identifier: baed8d88-726f-48db-ac86-28be110b2e54
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-M7/sub-BPN-M7_ses-20210527-m1_obj-wuc3ag_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.322611+00:00'
id: urn:uuid:456bd7ac-b397-45f0-a76e-727201330861
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.322611+00:00'
wasAssociatedWith:
- id: urn:uuid:85e0aed5-127e-4a4c-9820-b328319bf2f1
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P100D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-M7
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the upstream segment of a pial
artery from a BPN mouse 36 min after cisterna magna injection
identifier: 20210527-m1
name: 20210527-m1
schemaKey: Session
startDate: '2021-05-27T12:12:28-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:06:06.943445-04:00'
id: urn:uuid:65e28891-9eb9-4979-8e98-33ae290baa21
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:06:06.818163-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T23:03:39.719210-04:00'
contentSize: 368731958
contentUrl:
- https://api.dandiarchive.org/api/assets/599edc8d-42d6-4d2c-ba15-e1b7b0f797c2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f59/119/f5911955-3074-4410-a1da-df8272fd8e1f
dateModified: '2023-06-02T01:06:03.389399-04:00'
datePublished: '2023-06-02T13:07:32.327622+00:00'
digest:
dandi:dandi-etag: 3a0eda8c3c6c336d3abc19449e0c1773-6
dandi:sha2-256: dee558962a1212ed8a33c9242b6c6651736ee4c2af802562c253240bf40fc308
encodingFormat: application/x-nwb
id: dandiasset:599edc8d-42d6-4d2c-ba15-e1b7b0f797c2
identifier: 599edc8d-42d6-4d2c-ba15-e1b7b0f797c2
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-M6/sub-BPN-M6_ses-zstack-up-94min_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.327622+00:00'
id: urn:uuid:414d601b-ef4f-4c1b-b68e-f494550e98e0
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.327622+00:00'
wasAssociatedWith:
- id: urn:uuid:ff15acf3-aac3-4798-bfb5-bc48b6b919a7
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P99D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-M6
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the upstream segment of a pial
artery from a BPN mouse 94 min after cisterna magna injection
identifier: zstack-up-94min
name: zstack-up-94min
schemaKey: Session
startDate: '2021-05-26T12:10:09-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:06:03.389399-04:00'
id: urn:uuid:ca6148f1-0b33-4ee4-a394-8bc08ba224de
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:06:03.255654-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T16:36:22.346624-04:00'
contentSize: 269895298
contentUrl:
- https://api.dandiarchive.org/api/assets/b8ba760c-9819-420d-b20e-0b52abec2875/download/
- https://dandiarchive.s3.amazonaws.com/blobs/baf/fec/baffec1e-82b9-4c9e-b558-feb6a083d70c
dateModified: '2023-06-02T01:13:35.486242-04:00'
datePublished: '2023-06-02T13:07:32.343929+00:00'
digest:
dandi:dandi-etag: cdd1f59642fd763ffc5f675987551fb0-5
dandi:sha2-256: fb1ab4497c829e3d0c866e97603d8ac5bd3edd1ba94e28f9d2514459ebda4b03
encodingFormat: application/x-nwb
id: dandiasset:b8ba760c-9819-420d-b20e-0b52abec2875
identifier: b8ba760c-9819-420d-b20e-0b52abec2875
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-OLD-M2/sub-BPN-OLD-M2_ses-20210511-m1_obj-1dyu8zg_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.343929+00:00'
id: urn:uuid:9cb62339-19ab-4185-8f26-9f6456e7748d
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.343929+00:00'
wasAssociatedWith:
- id: urn:uuid:6496047c-3fa6-491a-8bb7-980d7397e0d2
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P573D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-OLD-M2
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the upstream segment of a pial
artery from a BPN mouse 48 min after cisterna magna injection
identifier: 20210511-m1
name: 20210511-m1
schemaKey: Session
startDate: '2021-05-11T11:39:53-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:13:35.486242-04:00'
id: urn:uuid:449e98fe-8beb-4fc6-8e8e-4b9a1b508d22
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:13:35.352333-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T22:19:41.313948-04:00'
contentSize: 226756904
contentUrl:
- https://api.dandiarchive.org/api/assets/73004a87-e31d-4a85-b1fb-2e17cb35a23e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/afa/630/afa63045-2afa-42c5-a00b-46040e82a58f
dateModified: '2023-06-02T01:13:56.488696-04:00'
datePublished: '2023-06-02T13:07:32.332627+00:00'
digest:
dandi:dandi-etag: aad2c72caf20fc7932b4a5a977fdc38b-4
dandi:sha2-256: 5b06665300a78d5d19c3d4663e07b20c47dc309ab7efe69fb1b9491a1c2f2adf
encodingFormat: application/x-nwb
id: dandiasset:73004a87-e31d-4a85-b1fb-2e17cb35a23e
identifier: 73004a87-e31d-4a85-b1fb-2e17cb35a23e
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-OLD-M2/sub-BPN-OLD-M2_ses-20210511-m1_obj-z4hlsa_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.332627+00:00'
id: urn:uuid:efab7d91-4d5c-426b-a4de-5c68cebdda0c
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.332627+00:00'
wasAssociatedWith:
- id: urn:uuid:5f6e9f52-3e32-4721-94c3-b5c20e1c042e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P603D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-OLD-M2
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the downstream segment of a
pial artery from a BPN mouse 29 min after cisterna magna injection
identifier: 20210511-m1
name: 20210511-m1
schemaKey: Session
startDate: '2021-05-11T11:20:40-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:13:56.488696-04:00'
id: urn:uuid:8c5851e6-37e4-47c7-ba2d-2eba4e046f3e
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:13:56.378173-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T22:44:38.096815-04:00'
contentSize: 252287855
contentUrl:
- https://api.dandiarchive.org/api/assets/b0fc94b5-48c8-41f8-813f-53cde0b450bd/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7fe/509/7fe5090d-c82d-4395-998d-4401d7502a9c
dateModified: '2023-06-02T01:14:15.756229-04:00'
datePublished: '2023-06-02T13:07:32.348978+00:00'
digest:
dandi:dandi-etag: 83d14b62836e1c120ab0ae243e53ac0c-4
dandi:sha2-256: 3b38fb8b6afc0d644066bf0cd54ccafb2ac0298330729b42a837a6145596588d
encodingFormat: application/x-nwb
id: dandiasset:b0fc94b5-48c8-41f8-813f-53cde0b450bd
identifier: b0fc94b5-48c8-41f8-813f-53cde0b450bd
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-OLD-M3/sub-BPN-OLD-M3_ses-20210513-m1_obj-1ph4cqe_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.348978+00:00'
id: urn:uuid:a89593b9-2a6e-40a5-9f0b-acda700b945e
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.348978+00:00'
wasAssociatedWith:
- id: urn:uuid:f9c423fd-9cff-48f6-9d91-1b7408cd83bd
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P575D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-OLD-M3
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the upstream segment of a pial
artery from a BPN mouse 24 min after cisterna magna injection
identifier: 20210513-m1
name: 20210513-m1
schemaKey: Session
startDate: '2021-05-13T11:22:01-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:14:15.756229-04:00'
id: urn:uuid:5fe6df06-6a0e-4c5e-901d-cb768a2465a1
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:14:15.646509-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-06-01T22:46:16.185772-04:00'
contentSize: 240195065
contentUrl:
- https://api.dandiarchive.org/api/assets/a6c04ef2-21d9-451f-bdbe-859636968e5c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/778/bdf/778bdfc8-f55a-4333-99a9-4d089f71e23c
dateModified: '2023-06-02T01:14:30.461587-04:00'
datePublished: '2023-06-02T13:07:32.338674+00:00'
digest:
dandi:dandi-etag: 35c357f3e946318b09b000d3efe1317a-4
dandi:sha2-256: 525ac3d6df6ceec41a09b5ca37a4b3cd16f314779853b9d231613b7f101d4197
encodingFormat: application/x-nwb
id: dandiasset:a6c04ef2-21d9-451f-bdbe-859636968e5c
identifier: a6c04ef2-21d9-451f-bdbe-859636968e5c
keywords:
- BPN Zstack
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
path: sub-BPN-OLD-M3/sub-BPN-OLD-M3_ses-20210513-m1_obj-1u1mjbm_ophys.nwb
publishedBy:
endDate: '2023-06-02T13:07:32.338674+00:00'
id: urn:uuid:416b9ebc-b4e9-48ef-ab56-b0057a1e8b34
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-02T13:07:32.338674+00:00'
wasAssociatedWith:
- id: urn:uuid:68ba08c3-febb-4261-995a-5b63b4cbbdb4
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.4
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: PlaneSegmentation
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P575D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: BPN-OLD-M3
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
name: Mus musculus - House mouse
schemaKey: SpeciesType
wasGeneratedBy:
- description: Zstack (series of 2D microscopy images acquired with focal planes at
various cortical depths separated by 1 micron) in the downstream segment of a
pial artery from a BPN mouse 22 min after cisterna magna injection
identifier: 20210513-m1
name: 20210513-m1
schemaKey: Session
startDate: '2021-05-13T11:20:52-04:00'
- description: Metadata generated by DANDI cli
endDate: '2023-06-02T01:14:30.461587-04:00'
id: urn:uuid:e107de56-4c4f-4419-8597-739606262289
name: Metadata generation
schemaKey: Activity
startDate: '2023-06-02T01:14:30.333693-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.54.0
Tip!
Press p or to see the previous file or,
n or to see the next file