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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-02T18:09:31.515000+00:00'
contentSize: 393912173801
contentUrl:
- https://api.dandiarchive.org/api/assets/8fc5cb83-a88f-4455-992e-308c27360cd2/download/
- https://dandiarchive.s3.amazonaws.com/blobs/057/ecb/057ecbef-e732-4e94-8d99-40ebb74d346e
dateModified: '2023-01-03T05:58:43.394065+00:00'
digest:
dandi:dandi-etag: 4a8fd220aeb6d33cb2d642da019b426d-5870
dandi:sha2-256: 10ec17b200879f5b966a6128ae96936ed68a7ab452e177213b3d61dffc2c6203
encodingFormat: application/x-nwb
id: dandiasset:8fc5cb83-a88f-4455-992e-308c27360cd2
identifier: 8fc5cb83-a88f-4455-992e-308c27360cd2
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-20161022-1/sub-20161022-1_ses-20161022T151003_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: ImagingPlane
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20161022_1'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A single-color optic channel recording of either a neuron or a glia
population.
name: Acquisition session
schemaKey: Session
startDate: '2016-10-22T15:10:03-04:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:311aa5db-1537-4bc4-be1e-55def9e45f8d
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-03T23:42:34.482000+00:00'
contentSize: 404316726535
contentUrl:
- https://api.dandiarchive.org/api/assets/2fc82995-03de-40cb-9657-67fd24d51cf7/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5f4/2a8/5f42a87e-bbee-4c06-851b-ceb929e49e0c
dateModified: '2023-01-04T00:26:25.565378+00:00'
digest:
dandi:dandi-etag: 1f0545066b4855b6bc0e871e7da7e930-6025
dandi:sha2-256: 4a7a7e3ac293cd5057198cbb0849d025a7a2d3ecbf822fd90e7053df76acc8a0
encodingFormat: application/x-nwb
id: dandiasset:2fc82995-03de-40cb-9657-67fd24d51cf7
identifier: 2fc82995-03de-40cb-9657-67fd24d51cf7
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-20161206-2/sub-20161206-2_ses-20161206T161111_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20161206_2'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A single-color optic channel recording of either a neuron or a glia
population.
name: Acquisition session
schemaKey: Session
startDate: '2016-12-06T16:11:11-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:ca4ad2cb-ee37-4e1f-9ebb-b91e4c0cfbb3
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-03T20:39:42.798000+00:00'
contentSize: 422868117367
contentUrl:
- https://api.dandiarchive.org/api/assets/05c64266-4424-4b8b-813f-4b292852480f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/cef/984/cef984a5-4c6c-4b9e-b975-e5232ecb4c79
dateModified: '2023-01-04T00:28:10.063794+00:00'
digest:
dandi:dandi-etag: b1660bc92b8045793c5458dbdf120cc6-6302
dandi:sha2-256: 6c50c8886900dfa287a575ff970f0192143f77f4fb0ec0b9d3bd21360ca2b4b5
encodingFormat: application/x-nwb
id: dandiasset:05c64266-4424-4b8b-813f-4b292852480f
identifier: 05c64266-4424-4b8b-813f-4b292852480f
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-20161206-1/sub-20161206-1_ses-20161206T123501_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ImagingPlane
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20161206_1'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A single-color optic channel recording of either a neuron or a glia
population.
name: Acquisition session
schemaKey: Session
startDate: '2016-12-06T12:35:01-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:a4f3dbfd-58ec-49f6-9f50-bd8eb68d6457
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-05T17:13:10.720000+00:00'
contentSize: 150566505823
contentUrl:
- https://api.dandiarchive.org/api/assets/4f898ff7-6084-4e84-a449-f05811c1d951/download/
- https://dandiarchive.s3.amazonaws.com/blobs/e74/44f/e7444f85-9657-4dc7-9690-d57dc7c4b6ba
dateModified: '2023-01-05T20:50:07.990914+00:00'
digest:
dandi:dandi-etag: 649d5cea893b391c18ebc53d4d0b859d-2244
dandi:sha2-256: b04535a3bde5879608cd92931350f7191eb5380eb84e1a723dbbc2bb87012e83
encodingFormat: application/x-nwb
id: dandiasset:4f898ff7-6084-4e84-a449-f05811c1d951
identifier: 4f898ff7-6084-4e84-a449-f05811c1d951
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170113-4/sub-20170113-4_ses-20170113T171241_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170113_4'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A single-color optic channel recording of either a neuron or a glia
population.
name: Acquisition session
schemaKey: Session
startDate: '2017-01-13T17:12:41-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:e8daf6af-fdd0-4489-b641-7d44dc3c4195
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-05T17:14:05.193000+00:00'
contentSize: 333912205586
contentUrl:
- https://api.dandiarchive.org/api/assets/405ef3f6-e254-4f3c-a66e-8201c803940f/download/
- https://dandiarchive.s3.amazonaws.com/blobs/08b/ddf/08bddfeb-86ca-4954-9892-6ebc1295b62e
dateModified: '2023-01-05T21:39:14.667623+00:00'
digest:
dandi:dandi-etag: d3889cb4c401b3a69ffc7fa42e6f44cc-4976
dandi:sha2-256: fba92c3f8983140907fe5bb6ed41fc0d16fd960895bcea74b86fd54b669b4803
encodingFormat: application/x-nwb
id: dandiasset:405ef3f6-e254-4f3c-a66e-8201c803940f
identifier: 405ef3f6-e254-4f3c-a66e-8201c803940f
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170113-2/sub-20170113-2_ses-20170113T124907_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170113_2'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: See the experiment_description.
name: Acquisition session
schemaKey: Session
startDate: '2017-01-13T12:49:07-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:f293375e-7894-489e-bb51-b21a07b9eeaa
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-05T17:13:36.989000+00:00'
contentSize: 415311121036
contentUrl:
- https://api.dandiarchive.org/api/assets/ee89e7b9-d3d0-444e-b8ca-1ef0ab3c0d98/download/
- https://dandiarchive.s3.amazonaws.com/blobs/6b4/f5c/6b4f5cc5-8c24-4322-84c0-50ee03a71b5f
dateModified: '2023-01-05T21:51:33.967685+00:00'
digest:
dandi:dandi-etag: aca095172630bbfb7a85284e545616f1-6189
dandi:sha2-256: d3169d40715fc48eeeb0e681833b9ca2e1d9888d7b8f7ccbf37734a0ef69b284
encodingFormat: application/x-nwb
id: dandiasset:ee89e7b9-d3d0-444e-b8ca-1ef0ab3c0d98
identifier: ee89e7b9-d3d0-444e-b8ca-1ef0ab3c0d98
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170111-1/sub-20170111-1_ses-20170111T123355_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: OpticalChannel
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170111_1'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A single-color optic channel recording of either a neuron or a glia
population.
name: Acquisition session
schemaKey: Session
startDate: '2017-01-11T12:33:55-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:a96d9539-77fe-42be-800f-9c19f9049ede
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-05T17:13:00.052000+00:00'
contentSize: 438281710423
contentUrl:
- https://api.dandiarchive.org/api/assets/8eaff381-7782-4f3d-ba72-e618e9342982/download/
- https://dandiarchive.s3.amazonaws.com/blobs/020/01d/02001da1-c42b-42a7-890f-8ce6dd0abbef
dateModified: '2023-01-05T21:56:12.911233+00:00'
digest:
dandi:dandi-etag: 826a615a9cfe3b416c51fde8f6291f49-6531
dandi:sha2-256: 708d3545ef06e5a281864a67c4bac1928ba2f90f346e478dda6963f0a03b93dc
encodingFormat: application/x-nwb
id: dandiasset:8eaff381-7782-4f3d-ba72-e618e9342982
identifier: 8eaff381-7782-4f3d-ba72-e618e9342982
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170113-3/sub-20170113-3_ses-20170113T150834_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170113_3'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: See the experiment_description.
name: Acquisition session
schemaKey: Session
startDate: '2017-01-13T15:08:34-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:503e2cab-2b91-4f04-9884-1e4076f099c5
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-05T17:13:56.839000+00:00'
contentSize: 610057253769
contentUrl:
- https://api.dandiarchive.org/api/assets/93ce7464-c0f4-4e14-8b7e-3254161efa4b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/4ce/828/4ce82833-0a78-47a7-b4d4-3720d7c11746
dateModified: '2023-01-05T22:20:59.411279+00:00'
digest:
dandi:dandi-etag: 805531fe47d31a4edaf845e37d2109a5-9091
dandi:sha2-256: 0fac960a890e77c7b683364bb3fc88aaf50f3b6999bfd8921a02b802fd8125cd
encodingFormat: application/x-nwb
id: dandiasset:93ce7464-c0f4-4e14-8b7e-3254161efa4b
identifier: 93ce7464-c0f4-4e14-8b7e-3254161efa4b
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170127-1/sub-20170127-1_ses-20170127T111652_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: TwoPhotonSeries
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P7D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170127_1'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A single-color optic channel recording of either a neuron or a glia
population.
name: Acquisition session
schemaKey: Session
startDate: '2017-01-27T11:16:52-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:f07897c2-ec4b-4e28-a7eb-61ad7aa23a07
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-06T22:03:24.396000+00:00'
contentSize: 517199804000
contentUrl:
- https://api.dandiarchive.org/api/assets/dd92d978-b9ea-4c6e-83f7-c0b261897928/download/
- https://dandiarchive.s3.amazonaws.com/blobs/ed9/2b0/ed92b092-f9da-40b9-a9c0-bc2a540f008b
dateModified: '2023-01-07T03:15:20.619264+00:00'
digest:
dandi:dandi-etag: 4967ad9c1a9991551706721d8fe69322-7707
dandi:sha2-256: 75b21806afe03f89c6437cafabf5135cea9d2e7a7213273d24a7769f2f9e291d
encodingFormat: application/x-nwb
id: dandiasset:dd92d978-b9ea-4c6e-83f7-c0b261897928
identifier: dd92d978-b9ea-4c6e-83f7-c0b261897928
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170228-4/sub-20170228-4_ses-20170228T185002_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170228_4'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A dual-color optic channel recording of both neuron and glia populations.
name: Acquisition session
schemaKey: Session
startDate: '2017-02-28T18:50:02-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:0508a766-7622-40f8-9df2-f7d2f27a2a6b
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-06T22:03:11.653000+00:00'
contentSize: 542192548350
contentUrl:
- https://api.dandiarchive.org/api/assets/6266c885-6c4c-4b15-b93d-d609dc5cc568/download/
- https://dandiarchive.s3.amazonaws.com/blobs/3cc/c9e/3ccc9ebb-bdb5-4d6c-9b15-bf11b90d38b1
dateModified: '2023-01-07T03:19:24.859916+00:00'
digest:
dandi:dandi-etag: b1e88a55c3e9defa668b0ce6e54d752c-8080
dandi:sha2-256: 11c830fcd8394962197825968140e1787a569c584d9a0e671d64c78b358ee191
encodingFormat: application/x-nwb
id: dandiasset:6266c885-6c4c-4b15-b93d-d609dc5cc568
identifier: 6266c885-6c4c-4b15-b93d-d609dc5cc568
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170228-3/sub-20170228-3_ses-20170228T165730_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170228_3'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A dual-color optic channel recording of both neuron and glia populations.
name: Acquisition session
schemaKey: Session
startDate: '2017-02-28T16:57:30-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:b572c4f1-6fe7-4c06-a6aa-8ce6340241ba
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-06T22:02:45.347000+00:00'
contentSize: 699032144909
contentUrl:
- https://api.dandiarchive.org/api/assets/c0fecfeb-1fc3-45d5-bf5b-36e3ec83e087/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5b1/6ff/5b16ff5b-2d04-497d-a22e-e2a28906a555
dateModified: '2023-01-07T03:39:23.806013+00:00'
digest:
dandi:dandi-etag: b0505c90b530ab4a62296bfa4e4ec10a-10000
dandi:sha2-256: 85c8f37e29a1fa88143f18eb7290429d21a4f3c87e7c65818a252b50ee90a38a
encodingFormat: application/x-nwb
id: dandiasset:c0fecfeb-1fc3-45d5-bf5b-36e3ec83e087
identifier: c0fecfeb-1fc3-45d5-bf5b-36e3ec83e087
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20170203-1/sub-20170203-1_ses-20170203T122038_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20170203_1'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A dual-color optic channel recording of both neuron and glia populations.
name: Acquisition session
schemaKey: Session
startDate: '2017-02-03T12:20:38-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:c4ff8dd9-29f2-4664-8ad0-6e4d96cff93d
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach:
- name: microscopy approach; cell population imaging
schemaKey: ApproachType
blobDateModified: '2023-01-07T01:18:38.837000+00:00'
contentSize: 938143891298
contentUrl:
- https://api.dandiarchive.org/api/assets/91b8937b-c303-484a-962e-d0ac1e4ae630/download/
- https://dandiarchive.s3.amazonaws.com/blobs/51d/0cb/51d0cbb9-0d29-493e-8871-71364dd3d2dd
dateModified: '2023-01-07T04:19:16.441560+00:00'
digest:
dandi:dandi-etag: ff69a76cb78d48129e85048339d3a241-10000
dandi:sha2-256: b7401f67f39bc5fac9cb9071252d8d6da8d59a9044f59a48de2a69f5493972e6
encodingFormat: application/x-nwb
id: dandiasset:91b8937b-c303-484a-962e-d0ac1e4ae630
identifier: 91b8937b-c303-484a-962e-d0ac1e4ae630
keywords:
- neuroscience
- glia
- astrocytes
- norepinephrine
- noradrenaline
- learned helplessness
- zebrafish
- neuromodulation
- behavioral states
- evidence accumulation
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
- name: surgical technique
schemaKey: MeasurementTechniqueType
- name: two-photon microscopy technique
schemaKey: MeasurementTechniqueType
path: sub-20161109-2/sub-20161109-2_ses-20161109T211950_ophys.nwb
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: PlaneSegmentation
- schemaKey: PropertyValue
value: ImagingPlane
- schemaKey: PropertyValue
value: OpticalChannel
- schemaKey: PropertyValue
value: ProcessingModule
- schemaKey: PropertyValue
value: TwoPhotonSeries
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P6D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '20161109_2'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
name: Danio rerio - Zebra fish
schemaKey: SpeciesType
wasGeneratedBy:
- description: A dual-color optic channel recording of both neuron and glia populations.
name: Acquisition session
schemaKey: Session
startDate: '2016-11-09T21:19:50-05:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:896a828a-70ec-4ad6-b73c-5daaab5d7e64
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
Tip!
Press p or to see the previous file or,
n or to see the next file