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

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach: []
  6. blobDateModified: '2023-03-14T15:53:19.091000+00:00'
  7. contentSize: 176683197
  8. contentUrl:
  9. - https://api.dandiarchive.org/api/assets/1e31d8ff-dd31-4de4-a033-e766c657feed/download/
  10. - https://dandiarchive.s3.amazonaws.com/blobs/a31/3eb/a313eb8b-15ba-4773-9c28-f4212e52b432
  11. dateModified: '2023-03-14T17:24:29.990641+00:00'
  12. digest:
  13. dandi:dandi-etag: bf51093c4b632bec5aa03c686e332261-3
  14. dandi:sha2-256: 9e6085f640d1333b8ada1924516ece3144df8d2a6129f45a3f62d6006a93be34
  15. encodingFormat: application/x-nwb
  16. id: dandiasset:1e31d8ff-dd31-4de4-a033-e766c657feed
  17. identifier: 1e31d8ff-dd31-4de4-a033-e766c657feed
  18. measurementTechnique: []
  19. path: sub-006-R/sub-006-R_ses-08-05-2022-cell13-R_image.nwb
  20. schemaKey: Asset
  21. schemaVersion: 0.6.4
  22. variableMeasured: []
  23. wasAttributedTo:
  24. - age:
  25. schemaKey: PropertyValue
  26. unitText: ISO-8601 duration
  27. value: P1D
  28. valueReference:
  29. schemaKey: PropertyValue
  30. value: dandi:BirthReference
  31. identifier: 006_R
  32. schemaKey: Participant
  33. sex:
  34. name: Unknown
  35. schemaKey: SexType
  36. species:
  37. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  38. name: Cricetulus griseus - Cricetulus aureus
  39. schemaKey: SpeciesType
  40. wasGeneratedBy:
  41. - description: 'Pulse_shape: unipolar, Recording: reverse (cell13), Cell_line: CHO,
  42. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  43. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  44. identifier: 08_05_2022_cell13_R
  45. name: 08_05_2022_cell13_R
  46. schemaKey: Session
  47. startDate: '2022-08-05T22:12:40+00:00'
  48. - description: Metadata generated by DANDI cli
  49. endDate: '2023-03-14T17:24:29.990615+00:00'
  50. id: urn:uuid:8225307b-7c09-4dd0-8017-1a70b68bdc41
  51. name: Metadata generation
  52. schemaKey: Activity
  53. startDate: '2023-03-14T17:24:13.031863+00:00'
  54. wasAssociatedWith:
  55. - identifier: RRID:SCR_019009
  56. name: DANDI Command Line Interface
  57. schemaKey: Software
  58. url: https://github.com/dandi/dandi-cli
  59. version: 0.51.0
  60. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  61. access:
  62. - schemaKey: AccessRequirements
  63. status: dandi:OpenAccess
  64. approach: []
  65. blobDateModified: '2023-03-14T15:45:38.576000+00:00'
  66. contentSize: 176475786
  67. contentUrl:
  68. - https://api.dandiarchive.org/api/assets/0153d5de-062f-4f2d-81aa-582c6f883c18/download/
  69. - https://dandiarchive.s3.amazonaws.com/blobs/b20/229/b2022942-73fe-413e-8d7c-5616a60b77d3
  70. dateModified: '2023-03-14T17:24:29.040713+00:00'
  71. digest:
  72. dandi:dandi-etag: 98d8bab2e62bfee23e3c47715ee0f303-3
  73. dandi:sha2-256: 32de7d0b4136632bf9dce9fb3ea285b1d03ab9a932fd39544388324f7a793b26
  74. encodingFormat: application/x-nwb
  75. id: dandiasset:0153d5de-062f-4f2d-81aa-582c6f883c18
  76. identifier: 0153d5de-062f-4f2d-81aa-582c6f883c18
  77. measurementTechnique: []
  78. path: sub-002-F/sub-002-F_ses-08-05-2022-cell12-F_image.nwb
  79. schemaKey: Asset
  80. schemaVersion: 0.6.4
  81. variableMeasured: []
  82. wasAttributedTo:
  83. - age:
  84. schemaKey: PropertyValue
  85. unitText: ISO-8601 duration
  86. value: P1D
  87. valueReference:
  88. schemaKey: PropertyValue
  89. value: dandi:BirthReference
  90. identifier: 002_F
  91. schemaKey: Participant
  92. sex:
  93. name: Unknown
  94. schemaKey: SexType
  95. species:
  96. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  97. name: Cricetulus griseus - Cricetulus aureus
  98. schemaKey: SpeciesType
  99. wasGeneratedBy:
  100. - description: 'Pulse_shape: bipolar, Recording: forward (cell12), Cell_line: CHO,
  101. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  102. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  103. identifier: 08_05_2022_cell12_F
  104. name: 08_05_2022_cell12_F
  105. schemaKey: Session
  106. startDate: '2022-08-05T21:54:14+00:00'
  107. - description: Metadata generated by DANDI cli
  108. endDate: '2023-03-14T17:24:29.040689+00:00'
  109. id: urn:uuid:c61a2220-8eac-4176-b47b-9877ab87429d
  110. name: Metadata generation
  111. schemaKey: Activity
  112. startDate: '2023-03-14T17:24:13.048612+00:00'
  113. wasAssociatedWith:
  114. - identifier: RRID:SCR_019009
  115. name: DANDI Command Line Interface
  116. schemaKey: Software
  117. url: https://github.com/dandi/dandi-cli
  118. version: 0.51.0
  119. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  120. access:
  121. - schemaKey: AccessRequirements
  122. status: dandi:OpenAccess
  123. approach: []
  124. blobDateModified: '2023-03-14T15:54:12.349000+00:00'
  125. contentSize: 176328179
  126. contentUrl:
  127. - https://api.dandiarchive.org/api/assets/36e565cf-288c-47c0-a102-bf0f96daa02f/download/
  128. - https://dandiarchive.s3.amazonaws.com/blobs/c49/880/c49880f7-b1d6-4391-a881-b0dd37168b9c
  129. dateModified: '2023-03-14T17:24:30.282689+00:00'
  130. digest:
  131. dandi:dandi-etag: 2a2e4b3ceb64413d904021d583b84393-3
  132. dandi:sha2-256: 992b88f54eb63f9a7c3d5f789bde1028e3f807dcd21f00908a619eccc0eeac38
  133. encodingFormat: application/x-nwb
  134. id: dandiasset:36e565cf-288c-47c0-a102-bf0f96daa02f
  135. identifier: 36e565cf-288c-47c0-a102-bf0f96daa02f
  136. measurementTechnique: []
  137. path: sub-006-F/sub-006-F_ses-08-05-2022-cell13-F_image.nwb
  138. schemaKey: Asset
  139. schemaVersion: 0.6.4
  140. variableMeasured: []
  141. wasAttributedTo:
  142. - age:
  143. schemaKey: PropertyValue
  144. unitText: ISO-8601 duration
  145. value: P1D
  146. valueReference:
  147. schemaKey: PropertyValue
  148. value: dandi:BirthReference
  149. identifier: 006_F
  150. schemaKey: Participant
  151. sex:
  152. name: Unknown
  153. schemaKey: SexType
  154. species:
  155. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  156. name: Cricetulus griseus - Cricetulus aureus
  157. schemaKey: SpeciesType
  158. wasGeneratedBy:
  159. - description: 'Pulse_shape: unipolar, Recording: forward (cell13), Cell_line: CHO,
  160. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  161. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  162. identifier: 08_05_2022_cell13_F
  163. name: 08_05_2022_cell13_F
  164. schemaKey: Session
  165. startDate: '2022-08-05T22:15:21+00:00'
  166. - description: Metadata generated by DANDI cli
  167. endDate: '2023-03-14T17:24:30.282658+00:00'
  168. id: urn:uuid:0e90bb33-7a14-4ef8-b1d6-f82b20fc445e
  169. name: Metadata generation
  170. schemaKey: Activity
  171. startDate: '2023-03-14T17:24:12.844987+00:00'
  172. wasAssociatedWith:
  173. - identifier: RRID:SCR_019009
  174. name: DANDI Command Line Interface
  175. schemaKey: Software
  176. url: https://github.com/dandi/dandi-cli
  177. version: 0.51.0
  178. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  179. access:
  180. - schemaKey: AccessRequirements
  181. status: dandi:OpenAccess
  182. approach: []
  183. blobDateModified: '2023-03-14T15:57:21.526000+00:00'
  184. contentSize: 175989023
  185. contentUrl:
  186. - https://api.dandiarchive.org/api/assets/661878c4-e912-4151-8774-fcd975e8ee21/download/
  187. - https://dandiarchive.s3.amazonaws.com/blobs/b72/52b/b7252b9b-918d-42f1-b8a8-afba4b3af2d8
  188. dateModified: '2023-03-14T17:24:31.650027+00:00'
  189. digest:
  190. dandi:dandi-etag: f7380d110fe55b8157d8b9eb3eb8272a-3
  191. dandi:sha2-256: 95f6dbb3924bfba20010c0c87386c5be9335a5cc91d3efdec3b802530163e042
  192. encodingFormat: application/x-nwb
  193. id: dandiasset:661878c4-e912-4151-8774-fcd975e8ee21
  194. identifier: 661878c4-e912-4151-8774-fcd975e8ee21
  195. measurementTechnique: []
  196. path: sub-008-F/sub-008-F_ses-08-05-2022-cell22-F_image.nwb
  197. schemaKey: Asset
  198. schemaVersion: 0.6.4
  199. variableMeasured: []
  200. wasAttributedTo:
  201. - age:
  202. schemaKey: PropertyValue
  203. unitText: ISO-8601 duration
  204. value: P1D
  205. valueReference:
  206. schemaKey: PropertyValue
  207. value: dandi:BirthReference
  208. identifier: 008_F
  209. schemaKey: Participant
  210. sex:
  211. name: Unknown
  212. schemaKey: SexType
  213. species:
  214. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  215. name: Cricetulus griseus - Cricetulus aureus
  216. schemaKey: SpeciesType
  217. wasGeneratedBy:
  218. - description: 'Pulse_shape: unipolar, Recording: forward (cell22), Cell_line: CHO,
  219. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  220. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  221. identifier: 08_05_2022_cell22_F
  222. name: 08_05_2022_cell22_F
  223. schemaKey: Session
  224. startDate: '2022-08-06T00:05:46+00:00'
  225. - description: Metadata generated by DANDI cli
  226. endDate: '2023-03-14T17:24:31.649995+00:00'
  227. id: urn:uuid:529e9fc2-b381-4581-985d-8aeb03b3ab47
  228. name: Metadata generation
  229. schemaKey: Activity
  230. startDate: '2023-03-14T17:24:13.008669+00:00'
  231. wasAssociatedWith:
  232. - identifier: RRID:SCR_019009
  233. name: DANDI Command Line Interface
  234. schemaKey: Software
  235. url: https://github.com/dandi/dandi-cli
  236. version: 0.51.0
  237. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  238. access:
  239. - schemaKey: AccessRequirements
  240. status: dandi:OpenAccess
  241. approach: []
  242. blobDateModified: '2023-03-14T15:44:32.385000+00:00'
  243. contentSize: 176100025
  244. contentUrl:
  245. - https://api.dandiarchive.org/api/assets/56ad17ab-4a77-4ab1-8b23-cc49ab0a158e/download/
  246. - https://dandiarchive.s3.amazonaws.com/blobs/b2e/393/b2e39349-0494-4ca7-a54d-2e8e8c008f86
  247. dateModified: '2023-03-14T17:24:30.491535+00:00'
  248. digest:
  249. dandi:dandi-etag: 6104d682001e977275023b01a4011738-3
  250. dandi:sha2-256: 6e8a15190ff72e60a21b15ed0833410b6582859014efdf668da134797135c4a3
  251. encodingFormat: application/x-nwb
  252. id: dandiasset:56ad17ab-4a77-4ab1-8b23-cc49ab0a158e
  253. identifier: 56ad17ab-4a77-4ab1-8b23-cc49ab0a158e
  254. measurementTechnique: []
  255. path: sub-002-R/sub-002-R_ses-08-05-2022-cell12-R_image.nwb
  256. schemaKey: Asset
  257. schemaVersion: 0.6.4
  258. variableMeasured: []
  259. wasAttributedTo:
  260. - age:
  261. schemaKey: PropertyValue
  262. unitText: ISO-8601 duration
  263. value: P1D
  264. valueReference:
  265. schemaKey: PropertyValue
  266. value: dandi:BirthReference
  267. identifier: 002_R
  268. schemaKey: Participant
  269. sex:
  270. name: Unknown
  271. schemaKey: SexType
  272. species:
  273. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  274. name: Cricetulus griseus - Cricetulus aureus
  275. schemaKey: SpeciesType
  276. wasGeneratedBy:
  277. - description: 'Pulse_shape: bipolar, Recording: reverse (cell12), Cell_line: CHO,
  278. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  279. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  280. identifier: 08_05_2022_cell12_R
  281. name: 08_05_2022_cell12_R
  282. schemaKey: Session
  283. startDate: '2022-08-05T21:58:24+00:00'
  284. - description: Metadata generated by DANDI cli
  285. endDate: '2023-03-14T17:24:30.491507+00:00'
  286. id: urn:uuid:b67dae06-7025-4fab-b805-68453d1ad464
  287. name: Metadata generation
  288. schemaKey: Activity
  289. startDate: '2023-03-14T17:24:12.984625+00:00'
  290. wasAssociatedWith:
  291. - identifier: RRID:SCR_019009
  292. name: DANDI Command Line Interface
  293. schemaKey: Software
  294. url: https://github.com/dandi/dandi-cli
  295. version: 0.51.0
  296. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  297. access:
  298. - schemaKey: AccessRequirements
  299. status: dandi:OpenAccess
  300. approach: []
  301. blobDateModified: '2023-03-14T15:48:12.265000+00:00'
  302. contentSize: 175895259
  303. contentUrl:
  304. - https://api.dandiarchive.org/api/assets/afe80582-9e7f-4fc3-8e19-2b78f4892b22/download/
  305. - https://dandiarchive.s3.amazonaws.com/blobs/312/db3/312db348-e868-4877-a7a1-bf988156b278
  306. dateModified: '2023-03-14T17:24:40.838197+00:00'
  307. digest:
  308. dandi:dandi-etag: d0db9ecde2614e498eb23820a3f9aa11-3
  309. dandi:sha2-256: 7f724c84e8e51ec376e00b0a9328f206ee421f5fd7007bc2656c0fdbfac88697
  310. encodingFormat: application/x-nwb
  311. id: dandiasset:afe80582-9e7f-4fc3-8e19-2b78f4892b22
  312. identifier: afe80582-9e7f-4fc3-8e19-2b78f4892b22
  313. measurementTechnique: []
  314. path: sub-004-R/sub-004-R_ses-08-05-2022-cell23-R_image.nwb
  315. schemaKey: Asset
  316. schemaVersion: 0.6.4
  317. variableMeasured: []
  318. wasAttributedTo:
  319. - age:
  320. schemaKey: PropertyValue
  321. unitText: ISO-8601 duration
  322. value: P1D
  323. valueReference:
  324. schemaKey: PropertyValue
  325. value: dandi:BirthReference
  326. identifier: 004_R
  327. schemaKey: Participant
  328. sex:
  329. name: Unknown
  330. schemaKey: SexType
  331. species:
  332. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  333. name: Cricetulus griseus - Cricetulus aureus
  334. schemaKey: SpeciesType
  335. wasGeneratedBy:
  336. - description: 'Pulse_shape: bipolar, Recording: reverse (cell23), Cell_line: CHO,
  337. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  338. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  339. identifier: 08_05_2022_cell23_R
  340. name: 08_05_2022_cell23_R
  341. schemaKey: Session
  342. startDate: '2022-08-06T00:15:29+00:00'
  343. - description: Metadata generated by DANDI cli
  344. endDate: '2023-03-14T17:24:40.838164+00:00'
  345. id: urn:uuid:476a87ed-213e-4aec-90e3-eab37cf1f33a
  346. name: Metadata generation
  347. schemaKey: Activity
  348. startDate: '2023-03-14T17:24:40.121781+00:00'
  349. wasAssociatedWith:
  350. - identifier: RRID:SCR_019009
  351. name: DANDI Command Line Interface
  352. schemaKey: Software
  353. url: https://github.com/dandi/dandi-cli
  354. version: 0.51.0
  355. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  356. access:
  357. - schemaKey: AccessRequirements
  358. status: dandi:OpenAccess
  359. approach: []
  360. blobDateModified: '2023-03-14T15:48:58.388000+00:00'
  361. contentSize: 176417694
  362. contentUrl:
  363. - https://api.dandiarchive.org/api/assets/c77945ad-beae-4c7e-a2a9-7efcf42ed0eb/download/
  364. - https://dandiarchive.s3.amazonaws.com/blobs/8ea/dfb/8eadfb1a-ab2d-45fc-9804-5bade4397390
  365. dateModified: '2023-03-14T17:24:41.027873+00:00'
  366. digest:
  367. dandi:dandi-etag: 822ada7715c8211873c63ff62940d4dc-3
  368. dandi:sha2-256: 21a032a7e63f8fb1b739b4e6ad8e15dddf8a9fbbd7b6ccdeeba661ee5089a797
  369. encodingFormat: application/x-nwb
  370. id: dandiasset:c77945ad-beae-4c7e-a2a9-7efcf42ed0eb
  371. identifier: c77945ad-beae-4c7e-a2a9-7efcf42ed0eb
  372. measurementTechnique: []
  373. path: sub-004-F/sub-004-F_ses-08-05-2022-cell23-F_image.nwb
  374. schemaKey: Asset
  375. schemaVersion: 0.6.4
  376. variableMeasured: []
  377. wasAttributedTo:
  378. - age:
  379. schemaKey: PropertyValue
  380. unitText: ISO-8601 duration
  381. value: P1D
  382. valueReference:
  383. schemaKey: PropertyValue
  384. value: dandi:BirthReference
  385. identifier: 004_F
  386. schemaKey: Participant
  387. sex:
  388. name: Unknown
  389. schemaKey: SexType
  390. species:
  391. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  392. name: Cricetulus griseus - Cricetulus aureus
  393. schemaKey: SpeciesType
  394. wasGeneratedBy:
  395. - description: 'Pulse_shape: bipolar, Recording: forward (cell23), Cell_line: CHO,
  396. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  397. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  398. identifier: 08_05_2022_cell23_F
  399. name: 08_05_2022_cell23_F
  400. schemaKey: Session
  401. startDate: '2022-08-06T00:11:45+00:00'
  402. - description: Metadata generated by DANDI cli
  403. endDate: '2023-03-14T17:24:41.027853+00:00'
  404. id: urn:uuid:1398215e-59ce-4137-9fc6-7ae65831251a
  405. name: Metadata generation
  406. schemaKey: Activity
  407. startDate: '2023-03-14T17:24:41.022288+00:00'
  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.51.0
  414. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  415. access:
  416. - schemaKey: AccessRequirements
  417. status: dandi:OpenAccess
  418. approach: []
  419. blobDateModified: '2023-03-14T15:56:46.840000+00:00'
  420. contentSize: 175531946
  421. contentUrl:
  422. - https://api.dandiarchive.org/api/assets/cd18bdef-39be-4e0b-a804-9b43f8f52625/download/
  423. - https://dandiarchive.s3.amazonaws.com/blobs/875/0b0/8750b01b-c63a-4fbb-8cd7-603b014b0f7f
  424. dateModified: '2023-03-14T17:24:41.236742+00:00'
  425. digest:
  426. dandi:dandi-etag: edd51041cd35cd06a9e826448994fab0-3
  427. dandi:sha2-256: 21bbe967e90412796de904ec4ecb19f301d1998d3efdaf83eb7d4be108616edc
  428. encodingFormat: application/x-nwb
  429. id: dandiasset:cd18bdef-39be-4e0b-a804-9b43f8f52625
  430. identifier: cd18bdef-39be-4e0b-a804-9b43f8f52625
  431. measurementTechnique: []
  432. path: sub-008-R/sub-008-R_ses-08-05-2022-cell22-R_image.nwb
  433. schemaKey: Asset
  434. schemaVersion: 0.6.4
  435. variableMeasured: []
  436. wasAttributedTo:
  437. - age:
  438. schemaKey: PropertyValue
  439. unitText: ISO-8601 duration
  440. value: P1D
  441. valueReference:
  442. schemaKey: PropertyValue
  443. value: dandi:BirthReference
  444. identifier: 008_R
  445. schemaKey: Participant
  446. sex:
  447. name: Unknown
  448. schemaKey: SexType
  449. species:
  450. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  451. name: Cricetulus griseus - Cricetulus aureus
  452. schemaKey: SpeciesType
  453. wasGeneratedBy:
  454. - description: 'Pulse_shape: unipolar, Recording: reverse (cell22), Cell_line: CHO,
  455. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  456. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  457. identifier: 08_05_2022_cell22_R
  458. name: 08_05_2022_cell22_R
  459. schemaKey: Session
  460. startDate: '2022-08-06T00:07:59+00:00'
  461. - description: Metadata generated by DANDI cli
  462. endDate: '2023-03-14T17:24:41.236723+00:00'
  463. id: urn:uuid:f5bd933b-1e6e-4480-b60e-c9be29e831d7
  464. name: Metadata generation
  465. schemaKey: Activity
  466. startDate: '2023-03-14T17:24:41.231035+00:00'
  467. wasAssociatedWith:
  468. - identifier: RRID:SCR_019009
  469. name: DANDI Command Line Interface
  470. schemaKey: Software
  471. url: https://github.com/dandi/dandi-cli
  472. version: 0.51.0
  473. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  474. access:
  475. - schemaKey: AccessRequirements
  476. status: dandi:OpenAccess
  477. approach: []
  478. blobDateModified: '2023-03-14T15:47:27.596000+00:00'
  479. contentSize: 174976986
  480. contentUrl:
  481. - https://api.dandiarchive.org/api/assets/a53a46e1-8f16-4fb9-83a8-3fe072f5c103/download/
  482. - https://dandiarchive.s3.amazonaws.com/blobs/5d0/a26/5d0a2652-340f-4ded-8ae9-5da051f7e2b0
  483. dateModified: '2023-03-14T17:24:41.453534+00:00'
  484. digest:
  485. dandi:dandi-etag: 40af2ec828361e4c3d3e793eb04b38e6-3
  486. dandi:sha2-256: 2886754a1c392203de281d9480ac4a6e308f9d1ab64e66fd95b2c01d8972fbd8
  487. encodingFormat: application/x-nwb
  488. id: dandiasset:a53a46e1-8f16-4fb9-83a8-3fe072f5c103
  489. identifier: a53a46e1-8f16-4fb9-83a8-3fe072f5c103
  490. measurementTechnique: []
  491. path: sub-003-R/sub-003-R_ses-08-05-2022-cell19-R_image.nwb
  492. schemaKey: Asset
  493. schemaVersion: 0.6.4
  494. variableMeasured: []
  495. wasAttributedTo:
  496. - age:
  497. schemaKey: PropertyValue
  498. unitText: ISO-8601 duration
  499. value: P1D
  500. valueReference:
  501. schemaKey: PropertyValue
  502. value: dandi:BirthReference
  503. identifier: 003_R
  504. schemaKey: Participant
  505. sex:
  506. name: Unknown
  507. schemaKey: SexType
  508. species:
  509. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  510. name: Cricetulus griseus - Cricetulus aureus
  511. schemaKey: SpeciesType
  512. wasGeneratedBy:
  513. - description: 'Pulse_shape: bipolar, Recording: reverse (cell19), Cell_line: CHO,
  514. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  515. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  516. identifier: 08_05_2022_cell19_R
  517. name: 08_05_2022_cell19_R
  518. schemaKey: Session
  519. startDate: '2022-08-05T23:40:33+00:00'
  520. - description: Metadata generated by DANDI cli
  521. endDate: '2023-03-14T17:24:41.453508+00:00'
  522. id: urn:uuid:379950bc-b831-4179-ab3e-08f689aba190
  523. name: Metadata generation
  524. schemaKey: Activity
  525. startDate: '2023-03-14T17:24:41.352664+00:00'
  526. wasAssociatedWith:
  527. - identifier: RRID:SCR_019009
  528. name: DANDI Command Line Interface
  529. schemaKey: Software
  530. url: https://github.com/dandi/dandi-cli
  531. version: 0.51.0
  532. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  533. access:
  534. - schemaKey: AccessRequirements
  535. status: dandi:OpenAccess
  536. approach: []
  537. blobDateModified: '2023-03-14T15:55:05.211000+00:00'
  538. contentSize: 173644353
  539. contentUrl:
  540. - https://api.dandiarchive.org/api/assets/50f1e8fa-f1c3-48d9-9f62-3fe536daa49e/download/
  541. - https://dandiarchive.s3.amazonaws.com/blobs/033/f11/033f1196-2003-4a85-9a8d-74c8be3f959c
  542. dateModified: '2023-03-14T17:24:41.237280+00:00'
  543. digest:
  544. dandi:dandi-etag: ba946a1d555257744c2cd5d6643cb971-3
  545. dandi:sha2-256: 5f86a490a2cabef86e613df3da9a18f4c6f227773acbda7a6ad22b23fbaa7f7c
  546. encodingFormat: application/x-nwb
  547. id: dandiasset:50f1e8fa-f1c3-48d9-9f62-3fe536daa49e
  548. identifier: 50f1e8fa-f1c3-48d9-9f62-3fe536daa49e
  549. measurementTechnique: []
  550. path: sub-007-F/sub-007-F_ses-08-05-2022-cell16-F_image.nwb
  551. schemaKey: Asset
  552. schemaVersion: 0.6.4
  553. variableMeasured: []
  554. wasAttributedTo:
  555. - age:
  556. schemaKey: PropertyValue
  557. unitText: ISO-8601 duration
  558. value: P1D
  559. valueReference:
  560. schemaKey: PropertyValue
  561. value: dandi:BirthReference
  562. identifier: 007_F
  563. schemaKey: Participant
  564. sex:
  565. name: Unknown
  566. schemaKey: SexType
  567. species:
  568. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  569. name: Cricetulus griseus - Cricetulus aureus
  570. schemaKey: SpeciesType
  571. wasGeneratedBy:
  572. - description: 'Pulse_shape: unipolar, Recording: forward (cell16), Cell_line: CHO,
  573. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  574. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  575. identifier: 08_05_2022_cell16_F
  576. name: 08_05_2022_cell16_F
  577. schemaKey: Session
  578. startDate: '2022-08-05T23:20:16+00:00'
  579. - description: Metadata generated by DANDI cli
  580. endDate: '2023-03-14T17:24:41.237263+00:00'
  581. id: urn:uuid:95668125-7b70-445d-a75a-b52bf8fa2bb2
  582. name: Metadata generation
  583. schemaKey: Activity
  584. startDate: '2023-03-14T17:24:41.195245+00:00'
  585. wasAssociatedWith:
  586. - identifier: RRID:SCR_019009
  587. name: DANDI Command Line Interface
  588. schemaKey: Software
  589. url: https://github.com/dandi/dandi-cli
  590. version: 0.51.0
  591. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  592. access:
  593. - schemaKey: AccessRequirements
  594. status: dandi:OpenAccess
  595. approach: []
  596. blobDateModified: '2023-03-14T15:46:29.258000+00:00'
  597. contentSize: 174549373
  598. contentUrl:
  599. - https://api.dandiarchive.org/api/assets/5ec9485f-fad2-4f94-b7df-61659e0b0441/download/
  600. - https://dandiarchive.s3.amazonaws.com/blobs/21f/ad6/21fad646-5e10-445a-83cd-602d35e2a644
  601. dateModified: '2023-03-14T17:24:49.720759+00:00'
  602. digest:
  603. dandi:dandi-etag: 6bf04f2dd68e69bf9cc445c0ea581549-3
  604. dandi:sha2-256: d74e55dfa1d0b3196fccd14aa8da5578f075a22fdb488112b8b94b9b80bf9434
  605. encodingFormat: application/x-nwb
  606. id: dandiasset:5ec9485f-fad2-4f94-b7df-61659e0b0441
  607. identifier: 5ec9485f-fad2-4f94-b7df-61659e0b0441
  608. measurementTechnique: []
  609. path: sub-003-F/sub-003-F_ses-08-05-2022-cell19-F_image.nwb
  610. schemaKey: Asset
  611. schemaVersion: 0.6.4
  612. variableMeasured: []
  613. wasAttributedTo:
  614. - age:
  615. schemaKey: PropertyValue
  616. unitText: ISO-8601 duration
  617. value: P1D
  618. valueReference:
  619. schemaKey: PropertyValue
  620. value: dandi:BirthReference
  621. identifier: 003_F
  622. schemaKey: Participant
  623. sex:
  624. name: Unknown
  625. schemaKey: SexType
  626. species:
  627. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  628. name: Cricetulus griseus - Cricetulus aureus
  629. schemaKey: SpeciesType
  630. wasGeneratedBy:
  631. - description: 'Pulse_shape: bipolar, Recording: forward (cell19), Cell_line: CHO,
  632. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  633. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  634. identifier: 08_05_2022_cell19_F
  635. name: 08_05_2022_cell19_F
  636. schemaKey: Session
  637. startDate: '2022-08-05T23:42:44+00:00'
  638. - description: Metadata generated by DANDI cli
  639. endDate: '2023-03-14T17:24:49.720725+00:00'
  640. id: urn:uuid:49e24a9f-e540-49d4-b40e-3750dc0f37ec
  641. name: Metadata generation
  642. schemaKey: Activity
  643. startDate: '2023-03-14T17:24:48.751981+00:00'
  644. wasAssociatedWith:
  645. - identifier: RRID:SCR_019009
  646. name: DANDI Command Line Interface
  647. schemaKey: Software
  648. url: https://github.com/dandi/dandi-cli
  649. version: 0.51.0
  650. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  651. access:
  652. - schemaKey: AccessRequirements
  653. status: dandi:OpenAccess
  654. approach: []
  655. blobDateModified: '2023-03-14T15:52:34.710000+00:00'
  656. contentSize: 175834802
  657. contentUrl:
  658. - https://api.dandiarchive.org/api/assets/6db5154c-9ad4-4374-94bb-5c3359158f14/download/
  659. - https://dandiarchive.s3.amazonaws.com/blobs/496/ea5/496ea5de-9c02-4f69-9ba1-1ea803172c0c
  660. dateModified: '2023-03-14T17:24:50.536572+00:00'
  661. digest:
  662. dandi:dandi-etag: 8d84f22b7410adc7ad70c2cbecf1a515-3
  663. dandi:sha2-256: 48bb02f093d65b5f95d81a20b4849b948fc01ab24952fd17b2f947a6ac4d97ec
  664. encodingFormat: application/x-nwb
  665. id: dandiasset:6db5154c-9ad4-4374-94bb-5c3359158f14
  666. identifier: 6db5154c-9ad4-4374-94bb-5c3359158f14
  667. measurementTechnique: []
  668. path: sub-005-R/sub-005-R_ses-08-05-2022-cell08-R_image.nwb
  669. schemaKey: Asset
  670. schemaVersion: 0.6.4
  671. variableMeasured: []
  672. wasAttributedTo:
  673. - age:
  674. schemaKey: PropertyValue
  675. unitText: ISO-8601 duration
  676. value: P1D
  677. valueReference:
  678. schemaKey: PropertyValue
  679. value: dandi:BirthReference
  680. identifier: 005_R
  681. schemaKey: Participant
  682. sex:
  683. name: Unknown
  684. schemaKey: SexType
  685. species:
  686. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  687. name: Cricetulus griseus - Cricetulus aureus
  688. schemaKey: SpeciesType
  689. wasGeneratedBy:
  690. - description: 'Pulse_shape: unipolar, Recording: reverse (cell08), Cell_line: CHO,
  691. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  692. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  693. identifier: 08_05_2022_cell08_R
  694. name: 08_05_2022_cell08_R
  695. schemaKey: Session
  696. startDate: '2022-08-05T21:29:43+00:00'
  697. - description: Metadata generated by DANDI cli
  698. endDate: '2023-03-14T17:24:50.536552+00:00'
  699. id: urn:uuid:b077d430-c0cf-4fe7-aa5e-b5950c7085ab
  700. name: Metadata generation
  701. schemaKey: Activity
  702. startDate: '2023-03-14T17:24:50.440720+00:00'
  703. wasAssociatedWith:
  704. - identifier: RRID:SCR_019009
  705. name: DANDI Command Line Interface
  706. schemaKey: Software
  707. url: https://github.com/dandi/dandi-cli
  708. version: 0.51.0
  709. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  710. access:
  711. - schemaKey: AccessRequirements
  712. status: dandi:OpenAccess
  713. approach: []
  714. blobDateModified: '2023-03-14T15:58:00.865000+00:00'
  715. contentSize: 174494323
  716. contentUrl:
  717. - https://api.dandiarchive.org/api/assets/00b115be-670d-4ee8-b2bb-8fa65aaea6ec/download/
  718. - https://dandiarchive.s3.amazonaws.com/blobs/313/738/31373867-e248-4f7a-8190-a3391da02347
  719. dateModified: '2023-03-14T17:24:50.592553+00:00'
  720. digest:
  721. dandi:dandi-etag: 1da2623a387cb7abc65d61ab583c162c-3
  722. dandi:sha2-256: 52490e6fe85e1c3fb2d6003c9228f8525f3e15c6046a80cefb88f7b8635e45bf
  723. encodingFormat: application/x-nwb
  724. id: dandiasset:00b115be-670d-4ee8-b2bb-8fa65aaea6ec
  725. identifier: 00b115be-670d-4ee8-b2bb-8fa65aaea6ec
  726. measurementTechnique: []
  727. path: sub-009-F/sub-009-F_ses-08-05-2022-cell24-F_image.nwb
  728. schemaKey: Asset
  729. schemaVersion: 0.6.4
  730. variableMeasured: []
  731. wasAttributedTo:
  732. - age:
  733. schemaKey: PropertyValue
  734. unitText: ISO-8601 duration
  735. value: P1D
  736. valueReference:
  737. schemaKey: PropertyValue
  738. value: dandi:BirthReference
  739. identifier: 009_F
  740. schemaKey: Participant
  741. sex:
  742. name: Unknown
  743. schemaKey: SexType
  744. species:
  745. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  746. name: Cricetulus griseus - Cricetulus aureus
  747. schemaKey: SpeciesType
  748. wasGeneratedBy:
  749. - description: 'Pulse_shape: unipolar, Recording: forward (cell24), Cell_line: CHO,
  750. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  751. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  752. identifier: 08_05_2022_cell24_F
  753. name: 08_05_2022_cell24_F
  754. schemaKey: Session
  755. startDate: '2022-08-06T00:22:29+00:00'
  756. - description: Metadata generated by DANDI cli
  757. endDate: '2023-03-14T17:24:50.592533+00:00'
  758. id: urn:uuid:89e09f37-1288-44b6-a4e8-185d2a50d1cb
  759. name: Metadata generation
  760. schemaKey: Activity
  761. startDate: '2023-03-14T17:24:50.514428+00:00'
  762. wasAssociatedWith:
  763. - identifier: RRID:SCR_019009
  764. name: DANDI Command Line Interface
  765. schemaKey: Software
  766. url: https://github.com/dandi/dandi-cli
  767. version: 0.51.0
  768. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  769. access:
  770. - schemaKey: AccessRequirements
  771. status: dandi:OpenAccess
  772. approach: []
  773. blobDateModified: '2023-03-14T15:40:43.689000+00:00'
  774. contentSize: 182664360
  775. contentUrl:
  776. - https://api.dandiarchive.org/api/assets/3283075d-c6ad-478b-be41-e6b6d7a663a7/download/
  777. - https://dandiarchive.s3.amazonaws.com/blobs/539/c3f/539c3f77-a240-4710-81bf-bbeb01260b1e
  778. dateModified: '2023-03-14T17:24:50.658211+00:00'
  779. digest:
  780. dandi:dandi-etag: 33d1f1b8de30f83faeb8de1d3790d61b-3
  781. dandi:sha2-256: 026bdf3d4087eb050ad9c513a2c983ac97447faafbf6b95abcd5c5f03f33e419
  782. encodingFormat: application/x-nwb
  783. id: dandiasset:3283075d-c6ad-478b-be41-e6b6d7a663a7
  784. identifier: 3283075d-c6ad-478b-be41-e6b6d7a663a7
  785. measurementTechnique: []
  786. path: sub-001-F/sub-001-F_ses-08-05-2022-cell09-F_image.nwb
  787. schemaKey: Asset
  788. schemaVersion: 0.6.4
  789. variableMeasured: []
  790. wasAttributedTo:
  791. - age:
  792. schemaKey: PropertyValue
  793. unitText: ISO-8601 duration
  794. value: P1D
  795. valueReference:
  796. schemaKey: PropertyValue
  797. value: dandi:BirthReference
  798. identifier: 001_F
  799. schemaKey: Participant
  800. sex:
  801. name: Unknown
  802. schemaKey: SexType
  803. species:
  804. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  805. name: Cricetulus griseus - Cricetulus aureus
  806. schemaKey: SpeciesType
  807. wasGeneratedBy:
  808. - description: 'Pulse_shape: bipolar, Recording: forward (cell09), Cell_line: CHO,
  809. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  810. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  811. identifier: 08_05_2022_cell09_F
  812. name: 08_05_2022_cell09_F
  813. schemaKey: Session
  814. startDate: '2022-08-05T21:36:26+00:00'
  815. - description: Metadata generated by DANDI cli
  816. endDate: '2023-03-14T17:24:50.658187+00:00'
  817. id: urn:uuid:df420d84-f540-4512-8e3d-e637841899a6
  818. name: Metadata generation
  819. schemaKey: Activity
  820. startDate: '2023-03-14T17:24:50.547334+00:00'
  821. wasAssociatedWith:
  822. - identifier: RRID:SCR_019009
  823. name: DANDI Command Line Interface
  824. schemaKey: Software
  825. url: https://github.com/dandi/dandi-cli
  826. version: 0.51.0
  827. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  828. access:
  829. - schemaKey: AccessRequirements
  830. status: dandi:OpenAccess
  831. approach: []
  832. blobDateModified: '2023-03-14T15:55:46.876000+00:00'
  833. contentSize: 173257690
  834. contentUrl:
  835. - https://api.dandiarchive.org/api/assets/6ef77f9d-da96-4176-9db2-8c71cc3213db/download/
  836. - https://dandiarchive.s3.amazonaws.com/blobs/e27/f83/e27f8353-5c4e-4a16-b28b-94ddba792b23
  837. dateModified: '2023-03-14T17:24:50.593114+00:00'
  838. digest:
  839. dandi:dandi-etag: 6db389572ed9a5c1fbdc2ff6b5b4e2af-3
  840. dandi:sha2-256: 85160f1d04c5d0690992ba5fcde45410fd9686ca33a5b338628644004c5d85ae
  841. encodingFormat: application/x-nwb
  842. id: dandiasset:6ef77f9d-da96-4176-9db2-8c71cc3213db
  843. identifier: 6ef77f9d-da96-4176-9db2-8c71cc3213db
  844. measurementTechnique: []
  845. path: sub-007-R/sub-007-R_ses-08-05-2022-cell16-R_image.nwb
  846. schemaKey: Asset
  847. schemaVersion: 0.6.4
  848. variableMeasured: []
  849. wasAttributedTo:
  850. - age:
  851. schemaKey: PropertyValue
  852. unitText: ISO-8601 duration
  853. value: P1D
  854. valueReference:
  855. schemaKey: PropertyValue
  856. value: dandi:BirthReference
  857. identifier: 007_R
  858. schemaKey: Participant
  859. sex:
  860. name: Unknown
  861. schemaKey: SexType
  862. species:
  863. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  864. name: Cricetulus griseus - Cricetulus aureus
  865. schemaKey: SpeciesType
  866. wasGeneratedBy:
  867. - description: 'Pulse_shape: unipolar, Recording: reverse (cell16), Cell_line: CHO,
  868. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  869. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  870. identifier: 08_05_2022_cell16_R
  871. name: 08_05_2022_cell16_R
  872. schemaKey: Session
  873. startDate: '2022-08-05T23:22:56+00:00'
  874. - description: Metadata generated by DANDI cli
  875. endDate: '2023-03-14T17:24:50.593099+00:00'
  876. id: urn:uuid:303420bb-ef24-4fd7-9f90-ed95a0c07e9b
  877. name: Metadata generation
  878. schemaKey: Activity
  879. startDate: '2023-03-14T17:24:50.477859+00:00'
  880. wasAssociatedWith:
  881. - identifier: RRID:SCR_019009
  882. name: DANDI Command Line Interface
  883. schemaKey: Software
  884. url: https://github.com/dandi/dandi-cli
  885. version: 0.51.0
  886. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  887. access:
  888. - schemaKey: AccessRequirements
  889. status: dandi:OpenAccess
  890. approach: []
  891. blobDateModified: '2023-03-14T15:52:01.332000+00:00'
  892. contentSize: 175985770
  893. contentUrl:
  894. - https://api.dandiarchive.org/api/assets/70aa5c18-0494-4782-93c4-3f0a59f7ff86/download/
  895. - https://dandiarchive.s3.amazonaws.com/blobs/509/8a8/5098a86f-083e-4ead-bbdb-19c5b227f06c
  896. dateModified: '2023-03-14T17:24:57.734214+00:00'
  897. digest:
  898. dandi:dandi-etag: 5e5815e4830c8f04c693a375d21f70c6-3
  899. dandi:sha2-256: 293dadc21d2efc0c16bfa17dc45b150995ce18496803bf863b7bcc60f89a3ee4
  900. encodingFormat: application/x-nwb
  901. id: dandiasset:70aa5c18-0494-4782-93c4-3f0a59f7ff86
  902. identifier: 70aa5c18-0494-4782-93c4-3f0a59f7ff86
  903. measurementTechnique: []
  904. path: sub-005-F/sub-005-F_ses-08-05-2022-cell08-F_image.nwb
  905. schemaKey: Asset
  906. schemaVersion: 0.6.4
  907. variableMeasured: []
  908. wasAttributedTo:
  909. - age:
  910. schemaKey: PropertyValue
  911. unitText: ISO-8601 duration
  912. value: P1D
  913. valueReference:
  914. schemaKey: PropertyValue
  915. value: dandi:BirthReference
  916. identifier: 005_F
  917. schemaKey: Participant
  918. sex:
  919. name: Unknown
  920. schemaKey: SexType
  921. species:
  922. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  923. name: Cricetulus griseus - Cricetulus aureus
  924. schemaKey: SpeciesType
  925. wasGeneratedBy:
  926. - description: 'Pulse_shape: unipolar, Recording: forward (cell08), Cell_line: CHO,
  927. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  928. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  929. identifier: 08_05_2022_cell08_F
  930. name: 08_05_2022_cell08_F
  931. schemaKey: Session
  932. startDate: '2022-08-05T21:26:33+00:00'
  933. - description: Metadata generated by DANDI cli
  934. endDate: '2023-03-14T17:24:57.734194+00:00'
  935. id: urn:uuid:4b058bbf-6674-4e1a-97b7-a5f482c26380
  936. name: Metadata generation
  937. schemaKey: Activity
  938. startDate: '2023-03-14T17:24:57.729315+00:00'
  939. wasAssociatedWith:
  940. - identifier: RRID:SCR_019009
  941. name: DANDI Command Line Interface
  942. schemaKey: Software
  943. url: https://github.com/dandi/dandi-cli
  944. version: 0.51.0
  945. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  946. access:
  947. - schemaKey: AccessRequirements
  948. status: dandi:OpenAccess
  949. approach: []
  950. blobDateModified: '2023-03-14T15:58:55.782000+00:00'
  951. contentSize: 175147177
  952. contentUrl:
  953. - https://api.dandiarchive.org/api/assets/7df3f50a-33ae-486f-b16b-fcffa806f239/download/
  954. - https://dandiarchive.s3.amazonaws.com/blobs/72b/47a/72b47a44-c2eb-4c2a-acf2-345a1cd7c15f
  955. dateModified: '2023-03-14T17:24:58.016786+00:00'
  956. digest:
  957. dandi:dandi-etag: f440f0df8501d24c63935c2b9977daaa-3
  958. dandi:sha2-256: 2120dc0fb0638dd9f35681d15f3561894d51b7f14fafd4f2e6a459bba918e659
  959. encodingFormat: application/x-nwb
  960. id: dandiasset:7df3f50a-33ae-486f-b16b-fcffa806f239
  961. identifier: 7df3f50a-33ae-486f-b16b-fcffa806f239
  962. measurementTechnique: []
  963. path: sub-009-R/sub-009-R_ses-08-05-2022-cell24-R_image.nwb
  964. schemaKey: Asset
  965. schemaVersion: 0.6.4
  966. variableMeasured: []
  967. wasAttributedTo:
  968. - age:
  969. schemaKey: PropertyValue
  970. unitText: ISO-8601 duration
  971. value: P1D
  972. valueReference:
  973. schemaKey: PropertyValue
  974. value: dandi:BirthReference
  975. identifier: 009_R
  976. schemaKey: Participant
  977. sex:
  978. name: Unknown
  979. schemaKey: SexType
  980. species:
  981. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  982. name: Cricetulus griseus - Cricetulus aureus
  983. schemaKey: SpeciesType
  984. wasGeneratedBy:
  985. - description: 'Pulse_shape: unipolar, Recording: reverse (cell24), Cell_line: CHO,
  986. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  987. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  988. identifier: 08_05_2022_cell24_R
  989. name: 08_05_2022_cell24_R
  990. schemaKey: Session
  991. startDate: '2022-08-06T00:19:58+00:00'
  992. - description: Metadata generated by DANDI cli
  993. endDate: '2023-03-14T17:24:58.016766+00:00'
  994. id: urn:uuid:a00271b7-6e89-44dd-a070-c04e85efb70c
  995. name: Metadata generation
  996. schemaKey: Activity
  997. startDate: '2023-03-14T17:24:57.980732+00:00'
  998. wasAssociatedWith:
  999. - identifier: RRID:SCR_019009
  1000. name: DANDI Command Line Interface
  1001. schemaKey: Software
  1002. url: https://github.com/dandi/dandi-cli
  1003. version: 0.51.0
  1004. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.4/context.json
  1005. access:
  1006. - schemaKey: AccessRequirements
  1007. status: dandi:OpenAccess
  1008. approach: []
  1009. blobDateModified: '2023-03-14T15:42:46.018000+00:00'
  1010. contentSize: 183089209
  1011. contentUrl:
  1012. - https://api.dandiarchive.org/api/assets/4bb1e68f-253c-44cc-af68-69559d812097/download/
  1013. - https://dandiarchive.s3.amazonaws.com/blobs/f97/6c0/f976c02d-a079-470a-b62c-97e864e274ae
  1014. dateModified: '2023-03-14T17:24:57.871433+00:00'
  1015. digest:
  1016. dandi:dandi-etag: c8150623a59584499528b927283a5362-3
  1017. dandi:sha2-256: d079dbe37e3c7e668d44e66085bf427cdf22b723e6379a8bc01ae744f151de9c
  1018. encodingFormat: application/x-nwb
  1019. id: dandiasset:4bb1e68f-253c-44cc-af68-69559d812097
  1020. identifier: 4bb1e68f-253c-44cc-af68-69559d812097
  1021. measurementTechnique: []
  1022. path: sub-001-R/sub-001-R_ses-08-05-2022-cell09-R_image.nwb
  1023. schemaKey: Asset
  1024. schemaVersion: 0.6.4
  1025. variableMeasured: []
  1026. wasAttributedTo:
  1027. - age:
  1028. schemaKey: PropertyValue
  1029. unitText: ISO-8601 duration
  1030. value: P1D
  1031. valueReference:
  1032. schemaKey: PropertyValue
  1033. value: dandi:BirthReference
  1034. identifier: 001_R
  1035. schemaKey: Participant
  1036. sex:
  1037. name: Unknown
  1038. schemaKey: SexType
  1039. species:
  1040. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1041. name: Cricetulus griseus - Cricetulus aureus
  1042. schemaKey: SpeciesType
  1043. wasGeneratedBy:
  1044. - description: 'Pulse_shape: bipolar, Recording: reverse (cell09), Cell_line: CHO,
  1045. Pulse_duration: 600ns, Number_of_pulses: 5p, Pulse_repetition_rate: 833kHz, Electric_field:
  1046. 0.3kV/cm, Dye: FluoVolt, Recording_type: strobe imaging'
  1047. identifier: 08_05_2022_cell09_R
  1048. name: 08_05_2022_cell09_R
  1049. schemaKey: Session
  1050. startDate: '2022-08-05T21:33:59+00:00'
  1051. - description: Metadata generated by DANDI cli
  1052. endDate: '2023-03-14T17:24:57.871413+00:00'
  1053. id: urn:uuid:65cfe515-a492-44e2-b96f-388cdc884151
  1054. name: Metadata generation
  1055. schemaKey: Activity
  1056. startDate: '2023-03-14T17:24:57.866296+00:00'
  1057. wasAssociatedWith:
  1058. - identifier: RRID:SCR_019009
  1059. name: DANDI Command Line Interface
  1060. schemaKey: Software
  1061. url: https://github.com/dandi/dandi-cli
  1062. version: 0.51.0
Tip!

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

Comments

Loading...