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 32 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/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-01-02T18:09:31.515000+00:00'
  9. contentSize: 393912173801
  10. contentUrl:
  11. - https://api.dandiarchive.org/api/assets/8fc5cb83-a88f-4455-992e-308c27360cd2/download/
  12. - https://dandiarchive.s3.amazonaws.com/blobs/057/ecb/057ecbef-e732-4e94-8d99-40ebb74d346e
  13. dateModified: '2023-01-03T05:58:43.394065+00:00'
  14. digest:
  15. dandi:dandi-etag: 4a8fd220aeb6d33cb2d642da019b426d-5870
  16. dandi:sha2-256: 10ec17b200879f5b966a6128ae96936ed68a7ab452e177213b3d61dffc2c6203
  17. encodingFormat: application/x-nwb
  18. id: dandiasset:8fc5cb83-a88f-4455-992e-308c27360cd2
  19. identifier: 8fc5cb83-a88f-4455-992e-308c27360cd2
  20. keywords:
  21. - neuroscience
  22. - glia
  23. - astrocytes
  24. - norepinephrine
  25. - noradrenaline
  26. - learned helplessness
  27. - zebrafish
  28. - neuromodulation
  29. - behavioral states
  30. - evidence accumulation
  31. measurementTechnique:
  32. - name: surgical technique
  33. schemaKey: MeasurementTechniqueType
  34. - name: two-photon microscopy technique
  35. schemaKey: MeasurementTechniqueType
  36. - name: analytical technique
  37. schemaKey: MeasurementTechniqueType
  38. path: sub-20161022-1/sub-20161022-1_ses-20161022T151003_ophys.nwb
  39. schemaKey: Asset
  40. schemaVersion: 0.6.3
  41. variableMeasured:
  42. - schemaKey: PropertyValue
  43. value: TwoPhotonSeries
  44. - schemaKey: PropertyValue
  45. value: OpticalChannel
  46. - schemaKey: PropertyValue
  47. value: ProcessingModule
  48. - schemaKey: PropertyValue
  49. value: ImagingPlane
  50. wasAttributedTo:
  51. - age:
  52. schemaKey: PropertyValue
  53. unitText: ISO-8601 duration
  54. value: P6D
  55. valueReference:
  56. schemaKey: PropertyValue
  57. value: dandi:BirthReference
  58. identifier: '20161022_1'
  59. schemaKey: Participant
  60. sex:
  61. name: Unknown
  62. schemaKey: SexType
  63. species:
  64. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  65. name: Danio rerio - Zebra fish
  66. schemaKey: SpeciesType
  67. wasGeneratedBy:
  68. - description: A single-color optic channel recording of either a neuron or a glia
  69. population.
  70. name: Acquisition session
  71. schemaKey: Session
  72. startDate: '2016-10-22T15:10:03-04:00'
  73. - description: Metadata generated by DANDI cli
  74. id: urn:uuid:311aa5db-1537-4bc4-be1e-55def9e45f8d
  75. name: Metadata generation
  76. schemaKey: Activity
  77. wasAssociatedWith:
  78. - identifier: RRID:SCR_019009
  79. name: DANDI Command Line Interface
  80. schemaKey: Software
  81. url: https://github.com/dandi/dandi-cli
  82. version: 0.48.0
  83. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  84. access:
  85. - schemaKey: AccessRequirements
  86. status: dandi:OpenAccess
  87. approach:
  88. - name: microscopy approach; cell population imaging
  89. schemaKey: ApproachType
  90. blobDateModified: '2023-01-03T23:42:34.482000+00:00'
  91. contentSize: 404316726535
  92. contentUrl:
  93. - https://api.dandiarchive.org/api/assets/2fc82995-03de-40cb-9657-67fd24d51cf7/download/
  94. - https://dandiarchive.s3.amazonaws.com/blobs/5f4/2a8/5f42a87e-bbee-4c06-851b-ceb929e49e0c
  95. dateModified: '2023-01-04T00:26:25.565378+00:00'
  96. digest:
  97. dandi:dandi-etag: 1f0545066b4855b6bc0e871e7da7e930-6025
  98. dandi:sha2-256: 4a7a7e3ac293cd5057198cbb0849d025a7a2d3ecbf822fd90e7053df76acc8a0
  99. encodingFormat: application/x-nwb
  100. id: dandiasset:2fc82995-03de-40cb-9657-67fd24d51cf7
  101. identifier: 2fc82995-03de-40cb-9657-67fd24d51cf7
  102. keywords:
  103. - neuroscience
  104. - glia
  105. - astrocytes
  106. - norepinephrine
  107. - noradrenaline
  108. - learned helplessness
  109. - zebrafish
  110. - neuromodulation
  111. - behavioral states
  112. - evidence accumulation
  113. measurementTechnique:
  114. - name: two-photon microscopy technique
  115. schemaKey: MeasurementTechniqueType
  116. - name: surgical technique
  117. schemaKey: MeasurementTechniqueType
  118. - name: analytical technique
  119. schemaKey: MeasurementTechniqueType
  120. path: sub-20161206-2/sub-20161206-2_ses-20161206T161111_ophys.nwb
  121. schemaKey: Asset
  122. schemaVersion: 0.6.3
  123. variableMeasured:
  124. - schemaKey: PropertyValue
  125. value: OpticalChannel
  126. - schemaKey: PropertyValue
  127. value: ProcessingModule
  128. - schemaKey: PropertyValue
  129. value: TwoPhotonSeries
  130. - schemaKey: PropertyValue
  131. value: ImagingPlane
  132. wasAttributedTo:
  133. - age:
  134. schemaKey: PropertyValue
  135. unitText: ISO-8601 duration
  136. value: P6D
  137. valueReference:
  138. schemaKey: PropertyValue
  139. value: dandi:BirthReference
  140. identifier: '20161206_2'
  141. schemaKey: Participant
  142. sex:
  143. name: Unknown
  144. schemaKey: SexType
  145. species:
  146. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  147. name: Danio rerio - Zebra fish
  148. schemaKey: SpeciesType
  149. wasGeneratedBy:
  150. - description: A single-color optic channel recording of either a neuron or a glia
  151. population.
  152. name: Acquisition session
  153. schemaKey: Session
  154. startDate: '2016-12-06T16:11:11-05:00'
  155. - description: Metadata generated by DANDI cli
  156. id: urn:uuid:ca4ad2cb-ee37-4e1f-9ebb-b91e4c0cfbb3
  157. name: Metadata generation
  158. schemaKey: Activity
  159. wasAssociatedWith:
  160. - identifier: RRID:SCR_019009
  161. name: DANDI Command Line Interface
  162. schemaKey: Software
  163. url: https://github.com/dandi/dandi-cli
  164. version: 0.48.0
  165. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  166. access:
  167. - schemaKey: AccessRequirements
  168. status: dandi:OpenAccess
  169. approach:
  170. - name: microscopy approach; cell population imaging
  171. schemaKey: ApproachType
  172. blobDateModified: '2023-01-03T20:39:42.798000+00:00'
  173. contentSize: 422868117367
  174. contentUrl:
  175. - https://api.dandiarchive.org/api/assets/05c64266-4424-4b8b-813f-4b292852480f/download/
  176. - https://dandiarchive.s3.amazonaws.com/blobs/cef/984/cef984a5-4c6c-4b9e-b975-e5232ecb4c79
  177. dateModified: '2023-01-04T00:28:10.063794+00:00'
  178. digest:
  179. dandi:dandi-etag: b1660bc92b8045793c5458dbdf120cc6-6302
  180. dandi:sha2-256: 6c50c8886900dfa287a575ff970f0192143f77f4fb0ec0b9d3bd21360ca2b4b5
  181. encodingFormat: application/x-nwb
  182. id: dandiasset:05c64266-4424-4b8b-813f-4b292852480f
  183. identifier: 05c64266-4424-4b8b-813f-4b292852480f
  184. keywords:
  185. - neuroscience
  186. - glia
  187. - astrocytes
  188. - norepinephrine
  189. - noradrenaline
  190. - learned helplessness
  191. - zebrafish
  192. - neuromodulation
  193. - behavioral states
  194. - evidence accumulation
  195. measurementTechnique:
  196. - name: two-photon microscopy technique
  197. schemaKey: MeasurementTechniqueType
  198. - name: surgical technique
  199. schemaKey: MeasurementTechniqueType
  200. - name: analytical technique
  201. schemaKey: MeasurementTechniqueType
  202. path: sub-20161206-1/sub-20161206-1_ses-20161206T123501_ophys.nwb
  203. schemaKey: Asset
  204. schemaVersion: 0.6.3
  205. variableMeasured:
  206. - schemaKey: PropertyValue
  207. value: OpticalChannel
  208. - schemaKey: PropertyValue
  209. value: ProcessingModule
  210. - schemaKey: PropertyValue
  211. value: TwoPhotonSeries
  212. - schemaKey: PropertyValue
  213. value: ImagingPlane
  214. wasAttributedTo:
  215. - age:
  216. schemaKey: PropertyValue
  217. unitText: ISO-8601 duration
  218. value: P6D
  219. valueReference:
  220. schemaKey: PropertyValue
  221. value: dandi:BirthReference
  222. identifier: '20161206_1'
  223. schemaKey: Participant
  224. sex:
  225. name: Unknown
  226. schemaKey: SexType
  227. species:
  228. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  229. name: Danio rerio - Zebra fish
  230. schemaKey: SpeciesType
  231. wasGeneratedBy:
  232. - description: A single-color optic channel recording of either a neuron or a glia
  233. population.
  234. name: Acquisition session
  235. schemaKey: Session
  236. startDate: '2016-12-06T12:35:01-05:00'
  237. - description: Metadata generated by DANDI cli
  238. id: urn:uuid:a4f3dbfd-58ec-49f6-9f50-bd8eb68d6457
  239. name: Metadata generation
  240. schemaKey: Activity
  241. wasAssociatedWith:
  242. - identifier: RRID:SCR_019009
  243. name: DANDI Command Line Interface
  244. schemaKey: Software
  245. url: https://github.com/dandi/dandi-cli
  246. version: 0.48.0
  247. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  248. access:
  249. - schemaKey: AccessRequirements
  250. status: dandi:OpenAccess
  251. approach:
  252. - name: microscopy approach; cell population imaging
  253. schemaKey: ApproachType
  254. blobDateModified: '2023-01-05T17:13:10.720000+00:00'
  255. contentSize: 150566505823
  256. contentUrl:
  257. - https://api.dandiarchive.org/api/assets/4f898ff7-6084-4e84-a449-f05811c1d951/download/
  258. - https://dandiarchive.s3.amazonaws.com/blobs/e74/44f/e7444f85-9657-4dc7-9690-d57dc7c4b6ba
  259. dateModified: '2023-01-05T20:50:07.990914+00:00'
  260. digest:
  261. dandi:dandi-etag: 649d5cea893b391c18ebc53d4d0b859d-2244
  262. dandi:sha2-256: b04535a3bde5879608cd92931350f7191eb5380eb84e1a723dbbc2bb87012e83
  263. encodingFormat: application/x-nwb
  264. id: dandiasset:4f898ff7-6084-4e84-a449-f05811c1d951
  265. identifier: 4f898ff7-6084-4e84-a449-f05811c1d951
  266. keywords:
  267. - neuroscience
  268. - glia
  269. - astrocytes
  270. - norepinephrine
  271. - noradrenaline
  272. - learned helplessness
  273. - zebrafish
  274. - neuromodulation
  275. - behavioral states
  276. - evidence accumulation
  277. measurementTechnique:
  278. - name: analytical technique
  279. schemaKey: MeasurementTechniqueType
  280. - name: surgical technique
  281. schemaKey: MeasurementTechniqueType
  282. - name: two-photon microscopy technique
  283. schemaKey: MeasurementTechniqueType
  284. path: sub-20170113-4/sub-20170113-4_ses-20170113T171241_ophys.nwb
  285. schemaKey: Asset
  286. schemaVersion: 0.6.3
  287. variableMeasured:
  288. - schemaKey: PropertyValue
  289. value: TwoPhotonSeries
  290. - schemaKey: PropertyValue
  291. value: PlaneSegmentation
  292. - schemaKey: PropertyValue
  293. value: ImagingPlane
  294. - schemaKey: PropertyValue
  295. value: OpticalChannel
  296. - schemaKey: PropertyValue
  297. value: ProcessingModule
  298. wasAttributedTo:
  299. - age:
  300. schemaKey: PropertyValue
  301. unitText: ISO-8601 duration
  302. value: P7D
  303. valueReference:
  304. schemaKey: PropertyValue
  305. value: dandi:BirthReference
  306. identifier: '20170113_4'
  307. schemaKey: Participant
  308. sex:
  309. name: Unknown
  310. schemaKey: SexType
  311. species:
  312. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  313. name: Danio rerio - Zebra fish
  314. schemaKey: SpeciesType
  315. wasGeneratedBy:
  316. - description: A single-color optic channel recording of either a neuron or a glia
  317. population.
  318. name: Acquisition session
  319. schemaKey: Session
  320. startDate: '2017-01-13T17:12:41-05:00'
  321. - description: Metadata generated by DANDI cli
  322. id: urn:uuid:e8daf6af-fdd0-4489-b641-7d44dc3c4195
  323. name: Metadata generation
  324. schemaKey: Activity
  325. wasAssociatedWith:
  326. - identifier: RRID:SCR_019009
  327. name: DANDI Command Line Interface
  328. schemaKey: Software
  329. url: https://github.com/dandi/dandi-cli
  330. version: 0.48.0
  331. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  332. access:
  333. - schemaKey: AccessRequirements
  334. status: dandi:OpenAccess
  335. approach:
  336. - name: microscopy approach; cell population imaging
  337. schemaKey: ApproachType
  338. blobDateModified: '2023-01-05T17:14:05.193000+00:00'
  339. contentSize: 333912205586
  340. contentUrl:
  341. - https://api.dandiarchive.org/api/assets/405ef3f6-e254-4f3c-a66e-8201c803940f/download/
  342. - https://dandiarchive.s3.amazonaws.com/blobs/08b/ddf/08bddfeb-86ca-4954-9892-6ebc1295b62e
  343. dateModified: '2023-01-05T21:39:14.667623+00:00'
  344. digest:
  345. dandi:dandi-etag: d3889cb4c401b3a69ffc7fa42e6f44cc-4976
  346. dandi:sha2-256: fba92c3f8983140907fe5bb6ed41fc0d16fd960895bcea74b86fd54b669b4803
  347. encodingFormat: application/x-nwb
  348. id: dandiasset:405ef3f6-e254-4f3c-a66e-8201c803940f
  349. identifier: 405ef3f6-e254-4f3c-a66e-8201c803940f
  350. keywords:
  351. - neuroscience
  352. - glia
  353. - astrocytes
  354. - norepinephrine
  355. - noradrenaline
  356. - learned helplessness
  357. - zebrafish
  358. - neuromodulation
  359. - behavioral states
  360. - evidence accumulation
  361. measurementTechnique:
  362. - name: analytical technique
  363. schemaKey: MeasurementTechniqueType
  364. - name: surgical technique
  365. schemaKey: MeasurementTechniqueType
  366. - name: two-photon microscopy technique
  367. schemaKey: MeasurementTechniqueType
  368. path: sub-20170113-2/sub-20170113-2_ses-20170113T124907_ophys.nwb
  369. schemaKey: Asset
  370. schemaVersion: 0.6.3
  371. variableMeasured:
  372. - schemaKey: PropertyValue
  373. value: TwoPhotonSeries
  374. - schemaKey: PropertyValue
  375. value: PlaneSegmentation
  376. - schemaKey: PropertyValue
  377. value: ImagingPlane
  378. - schemaKey: PropertyValue
  379. value: OpticalChannel
  380. - schemaKey: PropertyValue
  381. value: ProcessingModule
  382. wasAttributedTo:
  383. - age:
  384. schemaKey: PropertyValue
  385. unitText: ISO-8601 duration
  386. value: P7D
  387. valueReference:
  388. schemaKey: PropertyValue
  389. value: dandi:BirthReference
  390. identifier: '20170113_2'
  391. schemaKey: Participant
  392. sex:
  393. name: Unknown
  394. schemaKey: SexType
  395. species:
  396. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  397. name: Danio rerio - Zebra fish
  398. schemaKey: SpeciesType
  399. wasGeneratedBy:
  400. - description: See the experiment_description.
  401. name: Acquisition session
  402. schemaKey: Session
  403. startDate: '2017-01-13T12:49:07-05:00'
  404. - description: Metadata generated by DANDI cli
  405. id: urn:uuid:f293375e-7894-489e-bb51-b21a07b9eeaa
  406. name: Metadata generation
  407. schemaKey: Activity
  408. wasAssociatedWith:
  409. - identifier: RRID:SCR_019009
  410. name: DANDI Command Line Interface
  411. schemaKey: Software
  412. url: https://github.com/dandi/dandi-cli
  413. version: 0.48.0
  414. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  415. access:
  416. - schemaKey: AccessRequirements
  417. status: dandi:OpenAccess
  418. approach:
  419. - name: microscopy approach; cell population imaging
  420. schemaKey: ApproachType
  421. blobDateModified: '2023-01-05T17:13:36.989000+00:00'
  422. contentSize: 415311121036
  423. contentUrl:
  424. - https://api.dandiarchive.org/api/assets/ee89e7b9-d3d0-444e-b8ca-1ef0ab3c0d98/download/
  425. - https://dandiarchive.s3.amazonaws.com/blobs/6b4/f5c/6b4f5cc5-8c24-4322-84c0-50ee03a71b5f
  426. dateModified: '2023-01-05T21:51:33.967685+00:00'
  427. digest:
  428. dandi:dandi-etag: aca095172630bbfb7a85284e545616f1-6189
  429. dandi:sha2-256: d3169d40715fc48eeeb0e681833b9ca2e1d9888d7b8f7ccbf37734a0ef69b284
  430. encodingFormat: application/x-nwb
  431. id: dandiasset:ee89e7b9-d3d0-444e-b8ca-1ef0ab3c0d98
  432. identifier: ee89e7b9-d3d0-444e-b8ca-1ef0ab3c0d98
  433. keywords:
  434. - neuroscience
  435. - glia
  436. - astrocytes
  437. - norepinephrine
  438. - noradrenaline
  439. - learned helplessness
  440. - zebrafish
  441. - neuromodulation
  442. - behavioral states
  443. - evidence accumulation
  444. measurementTechnique:
  445. - name: analytical technique
  446. schemaKey: MeasurementTechniqueType
  447. - name: surgical technique
  448. schemaKey: MeasurementTechniqueType
  449. - name: two-photon microscopy technique
  450. schemaKey: MeasurementTechniqueType
  451. path: sub-20170111-1/sub-20170111-1_ses-20170111T123355_ophys.nwb
  452. schemaKey: Asset
  453. schemaVersion: 0.6.3
  454. variableMeasured:
  455. - schemaKey: PropertyValue
  456. value: ImagingPlane
  457. - schemaKey: PropertyValue
  458. value: TwoPhotonSeries
  459. - schemaKey: PropertyValue
  460. value: ProcessingModule
  461. - schemaKey: PropertyValue
  462. value: OpticalChannel
  463. wasAttributedTo:
  464. - age:
  465. schemaKey: PropertyValue
  466. unitText: ISO-8601 duration
  467. value: P6D
  468. valueReference:
  469. schemaKey: PropertyValue
  470. value: dandi:BirthReference
  471. identifier: '20170111_1'
  472. schemaKey: Participant
  473. sex:
  474. name: Unknown
  475. schemaKey: SexType
  476. species:
  477. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  478. name: Danio rerio - Zebra fish
  479. schemaKey: SpeciesType
  480. wasGeneratedBy:
  481. - description: A single-color optic channel recording of either a neuron or a glia
  482. population.
  483. name: Acquisition session
  484. schemaKey: Session
  485. startDate: '2017-01-11T12:33:55-05:00'
  486. - description: Metadata generated by DANDI cli
  487. id: urn:uuid:a96d9539-77fe-42be-800f-9c19f9049ede
  488. name: Metadata generation
  489. schemaKey: Activity
  490. wasAssociatedWith:
  491. - identifier: RRID:SCR_019009
  492. name: DANDI Command Line Interface
  493. schemaKey: Software
  494. url: https://github.com/dandi/dandi-cli
  495. version: 0.48.0
  496. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  497. access:
  498. - schemaKey: AccessRequirements
  499. status: dandi:OpenAccess
  500. approach:
  501. - name: microscopy approach; cell population imaging
  502. schemaKey: ApproachType
  503. blobDateModified: '2023-01-05T17:13:00.052000+00:00'
  504. contentSize: 438281710423
  505. contentUrl:
  506. - https://api.dandiarchive.org/api/assets/8eaff381-7782-4f3d-ba72-e618e9342982/download/
  507. - https://dandiarchive.s3.amazonaws.com/blobs/020/01d/02001da1-c42b-42a7-890f-8ce6dd0abbef
  508. dateModified: '2023-01-05T21:56:12.911233+00:00'
  509. digest:
  510. dandi:dandi-etag: 826a615a9cfe3b416c51fde8f6291f49-6531
  511. dandi:sha2-256: 708d3545ef06e5a281864a67c4bac1928ba2f90f346e478dda6963f0a03b93dc
  512. encodingFormat: application/x-nwb
  513. id: dandiasset:8eaff381-7782-4f3d-ba72-e618e9342982
  514. identifier: 8eaff381-7782-4f3d-ba72-e618e9342982
  515. keywords:
  516. - neuroscience
  517. - glia
  518. - astrocytes
  519. - norepinephrine
  520. - noradrenaline
  521. - learned helplessness
  522. - zebrafish
  523. - neuromodulation
  524. - behavioral states
  525. - evidence accumulation
  526. measurementTechnique:
  527. - name: analytical technique
  528. schemaKey: MeasurementTechniqueType
  529. - name: surgical technique
  530. schemaKey: MeasurementTechniqueType
  531. - name: two-photon microscopy technique
  532. schemaKey: MeasurementTechniqueType
  533. path: sub-20170113-3/sub-20170113-3_ses-20170113T150834_ophys.nwb
  534. schemaKey: Asset
  535. schemaVersion: 0.6.3
  536. variableMeasured:
  537. - schemaKey: PropertyValue
  538. value: TwoPhotonSeries
  539. - schemaKey: PropertyValue
  540. value: PlaneSegmentation
  541. - schemaKey: PropertyValue
  542. value: ImagingPlane
  543. - schemaKey: PropertyValue
  544. value: OpticalChannel
  545. - schemaKey: PropertyValue
  546. value: ProcessingModule
  547. wasAttributedTo:
  548. - age:
  549. schemaKey: PropertyValue
  550. unitText: ISO-8601 duration
  551. value: P7D
  552. valueReference:
  553. schemaKey: PropertyValue
  554. value: dandi:BirthReference
  555. identifier: '20170113_3'
  556. schemaKey: Participant
  557. sex:
  558. name: Unknown
  559. schemaKey: SexType
  560. species:
  561. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  562. name: Danio rerio - Zebra fish
  563. schemaKey: SpeciesType
  564. wasGeneratedBy:
  565. - description: See the experiment_description.
  566. name: Acquisition session
  567. schemaKey: Session
  568. startDate: '2017-01-13T15:08:34-05:00'
  569. - description: Metadata generated by DANDI cli
  570. id: urn:uuid:503e2cab-2b91-4f04-9884-1e4076f099c5
  571. name: Metadata generation
  572. schemaKey: Activity
  573. wasAssociatedWith:
  574. - identifier: RRID:SCR_019009
  575. name: DANDI Command Line Interface
  576. schemaKey: Software
  577. url: https://github.com/dandi/dandi-cli
  578. version: 0.48.0
  579. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  580. access:
  581. - schemaKey: AccessRequirements
  582. status: dandi:OpenAccess
  583. approach:
  584. - name: microscopy approach; cell population imaging
  585. schemaKey: ApproachType
  586. blobDateModified: '2023-01-05T17:13:56.839000+00:00'
  587. contentSize: 610057253769
  588. contentUrl:
  589. - https://api.dandiarchive.org/api/assets/93ce7464-c0f4-4e14-8b7e-3254161efa4b/download/
  590. - https://dandiarchive.s3.amazonaws.com/blobs/4ce/828/4ce82833-0a78-47a7-b4d4-3720d7c11746
  591. dateModified: '2023-01-05T22:20:59.411279+00:00'
  592. digest:
  593. dandi:dandi-etag: 805531fe47d31a4edaf845e37d2109a5-9091
  594. dandi:sha2-256: 0fac960a890e77c7b683364bb3fc88aaf50f3b6999bfd8921a02b802fd8125cd
  595. encodingFormat: application/x-nwb
  596. id: dandiasset:93ce7464-c0f4-4e14-8b7e-3254161efa4b
  597. identifier: 93ce7464-c0f4-4e14-8b7e-3254161efa4b
  598. keywords:
  599. - neuroscience
  600. - glia
  601. - astrocytes
  602. - norepinephrine
  603. - noradrenaline
  604. - learned helplessness
  605. - zebrafish
  606. - neuromodulation
  607. - behavioral states
  608. - evidence accumulation
  609. measurementTechnique:
  610. - name: analytical technique
  611. schemaKey: MeasurementTechniqueType
  612. - name: surgical technique
  613. schemaKey: MeasurementTechniqueType
  614. - name: two-photon microscopy technique
  615. schemaKey: MeasurementTechniqueType
  616. path: sub-20170127-1/sub-20170127-1_ses-20170127T111652_ophys.nwb
  617. schemaKey: Asset
  618. schemaVersion: 0.6.3
  619. variableMeasured:
  620. - schemaKey: PropertyValue
  621. value: TwoPhotonSeries
  622. - schemaKey: PropertyValue
  623. value: PlaneSegmentation
  624. - schemaKey: PropertyValue
  625. value: ImagingPlane
  626. - schemaKey: PropertyValue
  627. value: OpticalChannel
  628. - schemaKey: PropertyValue
  629. value: ProcessingModule
  630. wasAttributedTo:
  631. - age:
  632. schemaKey: PropertyValue
  633. unitText: ISO-8601 duration
  634. value: P7D
  635. valueReference:
  636. schemaKey: PropertyValue
  637. value: dandi:BirthReference
  638. identifier: '20170127_1'
  639. schemaKey: Participant
  640. sex:
  641. name: Unknown
  642. schemaKey: SexType
  643. species:
  644. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  645. name: Danio rerio - Zebra fish
  646. schemaKey: SpeciesType
  647. wasGeneratedBy:
  648. - description: A single-color optic channel recording of either a neuron or a glia
  649. population.
  650. name: Acquisition session
  651. schemaKey: Session
  652. startDate: '2017-01-27T11:16:52-05:00'
  653. - description: Metadata generated by DANDI cli
  654. id: urn:uuid:f07897c2-ec4b-4e28-a7eb-61ad7aa23a07
  655. name: Metadata generation
  656. schemaKey: Activity
  657. wasAssociatedWith:
  658. - identifier: RRID:SCR_019009
  659. name: DANDI Command Line Interface
  660. schemaKey: Software
  661. url: https://github.com/dandi/dandi-cli
  662. version: 0.48.0
  663. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  664. access:
  665. - schemaKey: AccessRequirements
  666. status: dandi:OpenAccess
  667. approach:
  668. - name: microscopy approach; cell population imaging
  669. schemaKey: ApproachType
  670. blobDateModified: '2023-01-06T22:03:24.396000+00:00'
  671. contentSize: 517199804000
  672. contentUrl:
  673. - https://api.dandiarchive.org/api/assets/dd92d978-b9ea-4c6e-83f7-c0b261897928/download/
  674. - https://dandiarchive.s3.amazonaws.com/blobs/ed9/2b0/ed92b092-f9da-40b9-a9c0-bc2a540f008b
  675. dateModified: '2023-01-07T03:15:20.619264+00:00'
  676. digest:
  677. dandi:dandi-etag: 4967ad9c1a9991551706721d8fe69322-7707
  678. dandi:sha2-256: 75b21806afe03f89c6437cafabf5135cea9d2e7a7213273d24a7769f2f9e291d
  679. encodingFormat: application/x-nwb
  680. id: dandiasset:dd92d978-b9ea-4c6e-83f7-c0b261897928
  681. identifier: dd92d978-b9ea-4c6e-83f7-c0b261897928
  682. keywords:
  683. - neuroscience
  684. - glia
  685. - astrocytes
  686. - norepinephrine
  687. - noradrenaline
  688. - learned helplessness
  689. - zebrafish
  690. - neuromodulation
  691. - behavioral states
  692. - evidence accumulation
  693. measurementTechnique:
  694. - name: analytical technique
  695. schemaKey: MeasurementTechniqueType
  696. - name: surgical technique
  697. schemaKey: MeasurementTechniqueType
  698. - name: two-photon microscopy technique
  699. schemaKey: MeasurementTechniqueType
  700. path: sub-20170228-4/sub-20170228-4_ses-20170228T185002_ophys.nwb
  701. schemaKey: Asset
  702. schemaVersion: 0.6.3
  703. variableMeasured:
  704. - schemaKey: PropertyValue
  705. value: PlaneSegmentation
  706. - schemaKey: PropertyValue
  707. value: ImagingPlane
  708. - schemaKey: PropertyValue
  709. value: OpticalChannel
  710. - schemaKey: PropertyValue
  711. value: ProcessingModule
  712. - schemaKey: PropertyValue
  713. value: TwoPhotonSeries
  714. wasAttributedTo:
  715. - age:
  716. schemaKey: PropertyValue
  717. unitText: ISO-8601 duration
  718. value: P6D
  719. valueReference:
  720. schemaKey: PropertyValue
  721. value: dandi:BirthReference
  722. identifier: '20170228_4'
  723. schemaKey: Participant
  724. sex:
  725. name: Unknown
  726. schemaKey: SexType
  727. species:
  728. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  729. name: Danio rerio - Zebra fish
  730. schemaKey: SpeciesType
  731. wasGeneratedBy:
  732. - description: A dual-color optic channel recording of both neuron and glia populations.
  733. name: Acquisition session
  734. schemaKey: Session
  735. startDate: '2017-02-28T18:50:02-05:00'
  736. - description: Metadata generated by DANDI cli
  737. id: urn:uuid:0508a766-7622-40f8-9df2-f7d2f27a2a6b
  738. name: Metadata generation
  739. schemaKey: Activity
  740. wasAssociatedWith:
  741. - identifier: RRID:SCR_019009
  742. name: DANDI Command Line Interface
  743. schemaKey: Software
  744. url: https://github.com/dandi/dandi-cli
  745. version: 0.48.0
  746. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  747. access:
  748. - schemaKey: AccessRequirements
  749. status: dandi:OpenAccess
  750. approach:
  751. - name: microscopy approach; cell population imaging
  752. schemaKey: ApproachType
  753. blobDateModified: '2023-01-06T22:03:11.653000+00:00'
  754. contentSize: 542192548350
  755. contentUrl:
  756. - https://api.dandiarchive.org/api/assets/6266c885-6c4c-4b15-b93d-d609dc5cc568/download/
  757. - https://dandiarchive.s3.amazonaws.com/blobs/3cc/c9e/3ccc9ebb-bdb5-4d6c-9b15-bf11b90d38b1
  758. dateModified: '2023-01-07T03:19:24.859916+00:00'
  759. digest:
  760. dandi:dandi-etag: b1e88a55c3e9defa668b0ce6e54d752c-8080
  761. dandi:sha2-256: 11c830fcd8394962197825968140e1787a569c584d9a0e671d64c78b358ee191
  762. encodingFormat: application/x-nwb
  763. id: dandiasset:6266c885-6c4c-4b15-b93d-d609dc5cc568
  764. identifier: 6266c885-6c4c-4b15-b93d-d609dc5cc568
  765. keywords:
  766. - neuroscience
  767. - glia
  768. - astrocytes
  769. - norepinephrine
  770. - noradrenaline
  771. - learned helplessness
  772. - zebrafish
  773. - neuromodulation
  774. - behavioral states
  775. - evidence accumulation
  776. measurementTechnique:
  777. - name: analytical technique
  778. schemaKey: MeasurementTechniqueType
  779. - name: surgical technique
  780. schemaKey: MeasurementTechniqueType
  781. - name: two-photon microscopy technique
  782. schemaKey: MeasurementTechniqueType
  783. path: sub-20170228-3/sub-20170228-3_ses-20170228T165730_ophys.nwb
  784. schemaKey: Asset
  785. schemaVersion: 0.6.3
  786. variableMeasured:
  787. - schemaKey: PropertyValue
  788. value: PlaneSegmentation
  789. - schemaKey: PropertyValue
  790. value: ImagingPlane
  791. - schemaKey: PropertyValue
  792. value: OpticalChannel
  793. - schemaKey: PropertyValue
  794. value: ProcessingModule
  795. - schemaKey: PropertyValue
  796. value: TwoPhotonSeries
  797. wasAttributedTo:
  798. - age:
  799. schemaKey: PropertyValue
  800. unitText: ISO-8601 duration
  801. value: P6D
  802. valueReference:
  803. schemaKey: PropertyValue
  804. value: dandi:BirthReference
  805. identifier: '20170228_3'
  806. schemaKey: Participant
  807. sex:
  808. name: Unknown
  809. schemaKey: SexType
  810. species:
  811. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  812. name: Danio rerio - Zebra fish
  813. schemaKey: SpeciesType
  814. wasGeneratedBy:
  815. - description: A dual-color optic channel recording of both neuron and glia populations.
  816. name: Acquisition session
  817. schemaKey: Session
  818. startDate: '2017-02-28T16:57:30-05:00'
  819. - description: Metadata generated by DANDI cli
  820. id: urn:uuid:b572c4f1-6fe7-4c06-a6aa-8ce6340241ba
  821. name: Metadata generation
  822. schemaKey: Activity
  823. wasAssociatedWith:
  824. - identifier: RRID:SCR_019009
  825. name: DANDI Command Line Interface
  826. schemaKey: Software
  827. url: https://github.com/dandi/dandi-cli
  828. version: 0.48.0
  829. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  830. access:
  831. - schemaKey: AccessRequirements
  832. status: dandi:OpenAccess
  833. approach:
  834. - name: microscopy approach; cell population imaging
  835. schemaKey: ApproachType
  836. blobDateModified: '2023-01-06T22:02:45.347000+00:00'
  837. contentSize: 699032144909
  838. contentUrl:
  839. - https://api.dandiarchive.org/api/assets/c0fecfeb-1fc3-45d5-bf5b-36e3ec83e087/download/
  840. - https://dandiarchive.s3.amazonaws.com/blobs/5b1/6ff/5b16ff5b-2d04-497d-a22e-e2a28906a555
  841. dateModified: '2023-01-07T03:39:23.806013+00:00'
  842. digest:
  843. dandi:dandi-etag: b0505c90b530ab4a62296bfa4e4ec10a-10000
  844. dandi:sha2-256: 85c8f37e29a1fa88143f18eb7290429d21a4f3c87e7c65818a252b50ee90a38a
  845. encodingFormat: application/x-nwb
  846. id: dandiasset:c0fecfeb-1fc3-45d5-bf5b-36e3ec83e087
  847. identifier: c0fecfeb-1fc3-45d5-bf5b-36e3ec83e087
  848. keywords:
  849. - neuroscience
  850. - glia
  851. - astrocytes
  852. - norepinephrine
  853. - noradrenaline
  854. - learned helplessness
  855. - zebrafish
  856. - neuromodulation
  857. - behavioral states
  858. - evidence accumulation
  859. measurementTechnique:
  860. - name: analytical technique
  861. schemaKey: MeasurementTechniqueType
  862. - name: surgical technique
  863. schemaKey: MeasurementTechniqueType
  864. - name: two-photon microscopy technique
  865. schemaKey: MeasurementTechniqueType
  866. path: sub-20170203-1/sub-20170203-1_ses-20170203T122038_ophys.nwb
  867. schemaKey: Asset
  868. schemaVersion: 0.6.3
  869. variableMeasured:
  870. - schemaKey: PropertyValue
  871. value: PlaneSegmentation
  872. - schemaKey: PropertyValue
  873. value: ImagingPlane
  874. - schemaKey: PropertyValue
  875. value: OpticalChannel
  876. - schemaKey: PropertyValue
  877. value: ProcessingModule
  878. - schemaKey: PropertyValue
  879. value: TwoPhotonSeries
  880. wasAttributedTo:
  881. - age:
  882. schemaKey: PropertyValue
  883. unitText: ISO-8601 duration
  884. value: P8D
  885. valueReference:
  886. schemaKey: PropertyValue
  887. value: dandi:BirthReference
  888. identifier: '20170203_1'
  889. schemaKey: Participant
  890. sex:
  891. name: Unknown
  892. schemaKey: SexType
  893. species:
  894. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  895. name: Danio rerio - Zebra fish
  896. schemaKey: SpeciesType
  897. wasGeneratedBy:
  898. - description: A dual-color optic channel recording of both neuron and glia populations.
  899. name: Acquisition session
  900. schemaKey: Session
  901. startDate: '2017-02-03T12:20:38-05:00'
  902. - description: Metadata generated by DANDI cli
  903. id: urn:uuid:c4ff8dd9-29f2-4664-8ad0-6e4d96cff93d
  904. name: Metadata generation
  905. schemaKey: Activity
  906. wasAssociatedWith:
  907. - identifier: RRID:SCR_019009
  908. name: DANDI Command Line Interface
  909. schemaKey: Software
  910. url: https://github.com/dandi/dandi-cli
  911. version: 0.48.0
  912. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  913. access:
  914. - schemaKey: AccessRequirements
  915. status: dandi:OpenAccess
  916. approach:
  917. - name: microscopy approach; cell population imaging
  918. schemaKey: ApproachType
  919. blobDateModified: '2023-01-07T01:18:38.837000+00:00'
  920. contentSize: 938143891298
  921. contentUrl:
  922. - https://api.dandiarchive.org/api/assets/91b8937b-c303-484a-962e-d0ac1e4ae630/download/
  923. - https://dandiarchive.s3.amazonaws.com/blobs/51d/0cb/51d0cbb9-0d29-493e-8871-71364dd3d2dd
  924. dateModified: '2023-01-07T04:19:16.441560+00:00'
  925. digest:
  926. dandi:dandi-etag: ff69a76cb78d48129e85048339d3a241-10000
  927. dandi:sha2-256: b7401f67f39bc5fac9cb9071252d8d6da8d59a9044f59a48de2a69f5493972e6
  928. encodingFormat: application/x-nwb
  929. id: dandiasset:91b8937b-c303-484a-962e-d0ac1e4ae630
  930. identifier: 91b8937b-c303-484a-962e-d0ac1e4ae630
  931. keywords:
  932. - neuroscience
  933. - glia
  934. - astrocytes
  935. - norepinephrine
  936. - noradrenaline
  937. - learned helplessness
  938. - zebrafish
  939. - neuromodulation
  940. - behavioral states
  941. - evidence accumulation
  942. measurementTechnique:
  943. - name: analytical technique
  944. schemaKey: MeasurementTechniqueType
  945. - name: surgical technique
  946. schemaKey: MeasurementTechniqueType
  947. - name: two-photon microscopy technique
  948. schemaKey: MeasurementTechniqueType
  949. path: sub-20161109-2/sub-20161109-2_ses-20161109T211950_ophys.nwb
  950. schemaKey: Asset
  951. schemaVersion: 0.6.3
  952. variableMeasured:
  953. - schemaKey: PropertyValue
  954. value: PlaneSegmentation
  955. - schemaKey: PropertyValue
  956. value: ImagingPlane
  957. - schemaKey: PropertyValue
  958. value: OpticalChannel
  959. - schemaKey: PropertyValue
  960. value: ProcessingModule
  961. - schemaKey: PropertyValue
  962. value: TwoPhotonSeries
  963. wasAttributedTo:
  964. - age:
  965. schemaKey: PropertyValue
  966. unitText: ISO-8601 duration
  967. value: P6D
  968. valueReference:
  969. schemaKey: PropertyValue
  970. value: dandi:BirthReference
  971. identifier: '20161109_2'
  972. schemaKey: Participant
  973. sex:
  974. name: Unknown
  975. schemaKey: SexType
  976. species:
  977. identifier: http://purl.obolibrary.org/obo/NCBITaxon_7955
  978. name: Danio rerio - Zebra fish
  979. schemaKey: SpeciesType
  980. wasGeneratedBy:
  981. - description: A dual-color optic channel recording of both neuron and glia populations.
  982. name: Acquisition session
  983. schemaKey: Session
  984. startDate: '2016-11-09T21:19:50-05:00'
  985. - description: Metadata generated by DANDI cli
  986. id: urn:uuid:896a828a-70ec-4ad6-b73c-5daaab5d7e64
  987. name: Metadata generation
  988. schemaKey: Activity
  989. wasAssociatedWith:
  990. - identifier: RRID:SCR_019009
  991. name: DANDI Command Line Interface
  992. schemaKey: Software
  993. url: https://github.com/dandi/dandi-cli
  994. version: 0.48.0
Tip!

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

Comments

Loading...