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 36 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach: []
  6. blobDateModified: '2024-06-05T15:26:36.821053-04:00'
  7. contentSize: 944432790
  8. contentUrl:
  9. - https://api.dandiarchive.org/api/assets/bc5e7d71-3983-4fd3-aa0a-ffb573ba2820/download/
  10. - https://dandiarchive.s3.amazonaws.com/blobs/2b4/ad7/2b4ad7eb-4aaf-4eb4-8692-804815fb7bcd
  11. dateModified: '2024-06-05T15:50:23.572552-04:00'
  12. datePublished: '2024-06-05T19:54:28.806975+00:00'
  13. digest:
  14. dandi:dandi-etag: 0157d04706a5633b280b9dab8edfbffe-15
  15. dandi:sha2-256: ec53eaca22bc32ad1815205b56e9337ba4c2fe5ada82d1dc5959a6af7b0cfe91
  16. encodingFormat: application/x-nwb
  17. id: dandiasset:bc5e7d71-3983-4fd3-aa0a-ffb573ba2820
  18. identifier: bc5e7d71-3983-4fd3-aa0a-ffb573ba2820
  19. measurementTechnique: []
  20. path: sub-04/sub-04_image.nwb
  21. publishedBy:
  22. endDate: '2024-06-05T19:54:28.806975+00:00'
  23. id: urn:uuid:ffe62875-756d-48e6-9ef6-e0374eda6e4d
  24. name: DANDI publish
  25. schemaKey: PublishActivity
  26. startDate: '2024-06-05T19:54:28.806975+00:00'
  27. wasAssociatedWith:
  28. - id: urn:uuid:42438b27-8556-413b-8fc3-e0a73c50b4de
  29. identifier: RRID:SCR_017571
  30. name: DANDI API
  31. schemaKey: Software
  32. version: 0.1.0
  33. schemaKey: Asset
  34. schemaVersion: 0.6.7
  35. variableMeasured: []
  36. wasAttributedTo:
  37. - age:
  38. schemaKey: PropertyValue
  39. unitText: ISO-8601 duration
  40. value: P1D
  41. valueReference:
  42. schemaKey: PropertyValue
  43. value: dandi:BirthReference
  44. identifier: '04'
  45. schemaKey: Participant
  46. sex:
  47. name: Unknown
  48. schemaKey: SexType
  49. species:
  50. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  51. name: Cricetulus griseus - Cricetulus aureus
  52. schemaKey: SpeciesType
  53. wasGeneratedBy:
  54. - description: 04. Experiments were conducted in a 4 electrodes setup. Electrodes
  55. before pulsing were precisely lifted by 0mm. CanCan protocol applied at 6.4kV
  56. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  57. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  58. was shifted and then electrode 2 was starting electrode with noted amplitude of
  59. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  60. Detailed information on pulsing parameters, electrodes, and procedures can be
  61. found in 10.1016/j.bioelechem.2023.108437.
  62. identifier: single_time_point
  63. name: single_time_point
  64. schemaKey: Session
  65. startDate: '2021-05-20T13:17:02-04:00'
  66. - description: Metadata generated by DANDI cli
  67. endDate: '2024-06-05T15:50:23.572552-04:00'
  68. id: urn:uuid:5900279d-c1fa-4aa9-8609-9b0e73eea8bc
  69. name: Metadata generation
  70. schemaKey: Activity
  71. startDate: '2024-06-05T15:50:22.819090-04:00'
  72. wasAssociatedWith:
  73. - identifier: RRID:SCR_019009
  74. name: DANDI Command Line Interface
  75. schemaKey: Software
  76. url: https://github.com/dandi/dandi-cli
  77. version: 0.62.0
  78. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  79. access:
  80. - schemaKey: AccessRequirements
  81. status: dandi:OpenAccess
  82. approach: []
  83. blobDateModified: '2024-06-05T15:29:01.875318-04:00'
  84. contentSize: 851250018
  85. contentUrl:
  86. - https://api.dandiarchive.org/api/assets/1723c2f0-fcfc-4315-b5ea-eea72d437520/download/
  87. - https://dandiarchive.s3.amazonaws.com/blobs/764/517/7645173b-e9ea-41cd-a4a1-8ce9970a16d3
  88. dateModified: '2024-06-05T15:50:24.157089-04:00'
  89. datePublished: '2024-06-05T19:54:28.814101+00:00'
  90. digest:
  91. dandi:dandi-etag: 725850f7498fcf5b2f2ea774d52c6dd8-13
  92. dandi:sha2-256: 15f3ad39de0ef11aee534835555f7cfc6562effc26d6410a5f0239eb98d2d344
  93. encodingFormat: application/x-nwb
  94. id: dandiasset:1723c2f0-fcfc-4315-b5ea-eea72d437520
  95. identifier: 1723c2f0-fcfc-4315-b5ea-eea72d437520
  96. measurementTechnique: []
  97. path: sub-06/sub-06_image.nwb
  98. publishedBy:
  99. endDate: '2024-06-05T19:54:28.814101+00:00'
  100. id: urn:uuid:16d7f4ea-42dd-4ea7-82a8-28cf1eb53364
  101. name: DANDI publish
  102. schemaKey: PublishActivity
  103. startDate: '2024-06-05T19:54:28.814101+00:00'
  104. wasAssociatedWith:
  105. - id: urn:uuid:9d831c15-ff19-4d3c-b163-f4c87737b478
  106. identifier: RRID:SCR_017571
  107. name: DANDI API
  108. schemaKey: Software
  109. version: 0.1.0
  110. schemaKey: Asset
  111. schemaVersion: 0.6.7
  112. variableMeasured: []
  113. wasAttributedTo:
  114. - age:
  115. schemaKey: PropertyValue
  116. unitText: ISO-8601 duration
  117. value: P1D
  118. valueReference:
  119. schemaKey: PropertyValue
  120. value: dandi:BirthReference
  121. identifier: '06'
  122. schemaKey: Participant
  123. sex:
  124. name: Unknown
  125. schemaKey: SexType
  126. species:
  127. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  128. name: Cricetulus griseus - Cricetulus aureus
  129. schemaKey: SpeciesType
  130. wasGeneratedBy:
  131. - description: 06. Experiments were conducted in a 4 electrodes setup. Electrodes
  132. before pulsing were precisely lifted by 3mm. CanCan protocol applied at 6.4kV
  133. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  134. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  135. was shifted and then electrode 2 was starting electrode with noted amplitude of
  136. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  137. Detailed information on pulsing parameters, electrodes, and procedures can be
  138. found in 10.1016/j.bioelechem.2023.108437.
  139. identifier: single_time_point
  140. name: single_time_point
  141. schemaKey: Session
  142. startDate: '2021-05-20T13:33:47-04:00'
  143. - description: Metadata generated by DANDI cli
  144. endDate: '2024-06-05T15:50:24.157089-04:00'
  145. id: urn:uuid:72ef2bf1-d1d9-41bb-832d-4c42fcb3d18c
  146. name: Metadata generation
  147. schemaKey: Activity
  148. startDate: '2024-06-05T15:50:23.316618-04:00'
  149. wasAssociatedWith:
  150. - identifier: RRID:SCR_019009
  151. name: DANDI Command Line Interface
  152. schemaKey: Software
  153. url: https://github.com/dandi/dandi-cli
  154. version: 0.62.0
  155. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  156. access:
  157. - schemaKey: AccessRequirements
  158. status: dandi:OpenAccess
  159. approach: []
  160. blobDateModified: '2024-06-05T15:25:19.587162-04:00'
  161. contentSize: 929884473
  162. contentUrl:
  163. - https://api.dandiarchive.org/api/assets/002e77a2-ef3b-4eaf-8691-ed6e2b48d7aa/download/
  164. - https://dandiarchive.s3.amazonaws.com/blobs/191/043/1910431f-f4a6-4c58-8621-78f2b9d4be52
  165. dateModified: '2024-06-05T15:50:24.449000-04:00'
  166. datePublished: '2024-06-05T19:54:28.820613+00:00'
  167. digest:
  168. dandi:dandi-etag: 69ac95cec070172355497b199d20c545-14
  169. dandi:sha2-256: d6ecf4a44117fe75c8b46260b4373c28df82f642b088e4aa5bc6fada5315661a
  170. encodingFormat: application/x-nwb
  171. id: dandiasset:002e77a2-ef3b-4eaf-8691-ed6e2b48d7aa
  172. identifier: 002e77a2-ef3b-4eaf-8691-ed6e2b48d7aa
  173. measurementTechnique: []
  174. path: sub-03/sub-03_image.nwb
  175. publishedBy:
  176. endDate: '2024-06-05T19:54:28.820613+00:00'
  177. id: urn:uuid:a7b83bf4-bd8d-4c9f-854f-403e8ef92665
  178. name: DANDI publish
  179. schemaKey: PublishActivity
  180. startDate: '2024-06-05T19:54:28.820613+00:00'
  181. wasAssociatedWith:
  182. - id: urn:uuid:83d12a40-8f0f-4daa-a083-8789abb48155
  183. identifier: RRID:SCR_017571
  184. name: DANDI API
  185. schemaKey: Software
  186. version: 0.1.0
  187. schemaKey: Asset
  188. schemaVersion: 0.6.7
  189. variableMeasured: []
  190. wasAttributedTo:
  191. - age:
  192. schemaKey: PropertyValue
  193. unitText: ISO-8601 duration
  194. value: P1D
  195. valueReference:
  196. schemaKey: PropertyValue
  197. value: dandi:BirthReference
  198. identifier: '03'
  199. schemaKey: Participant
  200. sex:
  201. name: Unknown
  202. schemaKey: SexType
  203. species:
  204. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  205. name: Cricetulus griseus - Cricetulus aureus
  206. schemaKey: SpeciesType
  207. wasGeneratedBy:
  208. - description: 03. Experiments were conducted in a 4 electrodes setup. Electrodes
  209. before pulsing were precisely lifted by 1mm. CanCan protocol applied at 6.4kV
  210. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  211. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  212. was shifted and then electrode 2 was starting electrode with noted amplitude of
  213. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  214. Detailed information on pulsing parameters, electrodes, and procedures can be
  215. found in 10.1016/j.bioelechem.2023.108437.
  216. identifier: single_time_point
  217. name: single_time_point
  218. schemaKey: Session
  219. startDate: '2021-05-20T12:58:50-04:00'
  220. - description: Metadata generated by DANDI cli
  221. endDate: '2024-06-05T15:50:24.449000-04:00'
  222. id: urn:uuid:b137f9e2-27c8-463e-ae12-f4480c85a6c1
  223. name: Metadata generation
  224. schemaKey: Activity
  225. startDate: '2024-06-05T15:50:23.462416-04:00'
  226. wasAssociatedWith:
  227. - identifier: RRID:SCR_019009
  228. name: DANDI Command Line Interface
  229. schemaKey: Software
  230. url: https://github.com/dandi/dandi-cli
  231. version: 0.62.0
  232. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  233. access:
  234. - schemaKey: AccessRequirements
  235. status: dandi:OpenAccess
  236. approach: []
  237. blobDateModified: '2024-06-05T15:30:22.115879-04:00'
  238. contentSize: 946166674
  239. contentUrl:
  240. - https://api.dandiarchive.org/api/assets/5b4343bc-8654-4500-850f-e22513b93e6d/download/
  241. - https://dandiarchive.s3.amazonaws.com/blobs/617/282/61728271-1779-41af-9968-71dac517ca62
  242. dateModified: '2024-06-05T15:50:23.878757-04:00'
  243. datePublished: '2024-06-05T19:54:28.828068+00:00'
  244. digest:
  245. dandi:dandi-etag: 7ea0514d7bae7fed0b567c56345ef1c5-15
  246. dandi:sha2-256: e3c2c61a8ffdf430123715f3c663b7d142d1ff7784ed5219c7c1342f26f5b3ab
  247. encodingFormat: application/x-nwb
  248. id: dandiasset:5b4343bc-8654-4500-850f-e22513b93e6d
  249. identifier: 5b4343bc-8654-4500-850f-e22513b93e6d
  250. measurementTechnique: []
  251. path: sub-07/sub-07_image.nwb
  252. publishedBy:
  253. endDate: '2024-06-05T19:54:28.828068+00:00'
  254. id: urn:uuid:c14b815f-0b4f-4aa7-9711-1e88b60d6b9d
  255. name: DANDI publish
  256. schemaKey: PublishActivity
  257. startDate: '2024-06-05T19:54:28.828068+00:00'
  258. wasAssociatedWith:
  259. - id: urn:uuid:ab2052c2-f17e-4977-bfa5-dc3e8972fd75
  260. identifier: RRID:SCR_017571
  261. name: DANDI API
  262. schemaKey: Software
  263. version: 0.1.0
  264. schemaKey: Asset
  265. schemaVersion: 0.6.7
  266. variableMeasured: []
  267. wasAttributedTo:
  268. - age:
  269. schemaKey: PropertyValue
  270. unitText: ISO-8601 duration
  271. value: P1D
  272. valueReference:
  273. schemaKey: PropertyValue
  274. value: dandi:BirthReference
  275. identifier: '07'
  276. schemaKey: Participant
  277. sex:
  278. name: Unknown
  279. schemaKey: SexType
  280. species:
  281. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  282. name: Cricetulus griseus - Cricetulus aureus
  283. schemaKey: SpeciesType
  284. wasGeneratedBy:
  285. - description: 07. Experiments were conducted in a 4 electrodes setup. Electrodes
  286. before pulsing were precisely lifted by 0mm. CanCan protocol applied at 6.4kV
  287. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  288. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  289. was shifted and then electrode 2 was starting electrode with noted amplitude of
  290. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  291. Detailed information on pulsing parameters, electrodes, and procedures can be
  292. found in 10.1016/j.bioelechem.2023.108437.
  293. identifier: single_time_point
  294. name: single_time_point
  295. schemaKey: Session
  296. startDate: '2021-05-20T14:40:14-04:00'
  297. - description: Metadata generated by DANDI cli
  298. endDate: '2024-06-05T15:50:23.878757-04:00'
  299. id: urn:uuid:ea20a24e-a2bb-4420-bd72-b23c2402d291
  300. name: Metadata generation
  301. schemaKey: Activity
  302. startDate: '2024-06-05T15:50:23.692989-04:00'
  303. wasAssociatedWith:
  304. - identifier: RRID:SCR_019009
  305. name: DANDI Command Line Interface
  306. schemaKey: Software
  307. url: https://github.com/dandi/dandi-cli
  308. version: 0.62.0
  309. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  310. access:
  311. - schemaKey: AccessRequirements
  312. status: dandi:OpenAccess
  313. approach: []
  314. blobDateModified: '2024-06-05T15:27:49.354878-04:00'
  315. contentSize: 891624968
  316. contentUrl:
  317. - https://api.dandiarchive.org/api/assets/f9728289-eb36-44e9-b7a7-de5f957435b1/download/
  318. - https://dandiarchive.s3.amazonaws.com/blobs/535/816/5358162c-409e-403e-bde5-ff6effad1238
  319. dateModified: '2024-06-05T15:50:23.783031-04:00'
  320. datePublished: '2024-06-05T19:54:28.834760+00:00'
  321. digest:
  322. dandi:dandi-etag: 9db1042fa39e751dbbbd75c5b6abded8-14
  323. dandi:sha2-256: 8ca71107f2d0bed61140aebe48b962c7de001eec1bee7a8c2b822a7c29903e6c
  324. encodingFormat: application/x-nwb
  325. id: dandiasset:f9728289-eb36-44e9-b7a7-de5f957435b1
  326. identifier: f9728289-eb36-44e9-b7a7-de5f957435b1
  327. measurementTechnique: []
  328. path: sub-05/sub-05_image.nwb
  329. publishedBy:
  330. endDate: '2024-06-05T19:54:28.834760+00:00'
  331. id: urn:uuid:9d3ea262-375c-4a39-82ca-6d217d7f8f5a
  332. name: DANDI publish
  333. schemaKey: PublishActivity
  334. startDate: '2024-06-05T19:54:28.834760+00:00'
  335. wasAssociatedWith:
  336. - id: urn:uuid:42d354e9-4489-46b1-8877-7f5c9cd17011
  337. identifier: RRID:SCR_017571
  338. name: DANDI API
  339. schemaKey: Software
  340. version: 0.1.0
  341. schemaKey: Asset
  342. schemaVersion: 0.6.7
  343. variableMeasured: []
  344. wasAttributedTo:
  345. - age:
  346. schemaKey: PropertyValue
  347. unitText: ISO-8601 duration
  348. value: P1D
  349. valueReference:
  350. schemaKey: PropertyValue
  351. value: dandi:BirthReference
  352. identifier: '05'
  353. schemaKey: Participant
  354. sex:
  355. name: Unknown
  356. schemaKey: SexType
  357. species:
  358. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  359. name: Cricetulus griseus - Cricetulus aureus
  360. schemaKey: SpeciesType
  361. wasGeneratedBy:
  362. - description: 05. Experiments were conducted in a 4 electrodes setup. Electrodes
  363. before pulsing were precisely lifted by 2mm. CanCan protocol applied at 6.4kV
  364. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  365. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  366. was shifted and then electrode 2 was starting electrode with noted amplitude of
  367. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  368. Detailed information on pulsing parameters, electrodes, and procedures can be
  369. found in 10.1016/j.bioelechem.2023.108437.
  370. identifier: single_time_point
  371. name: single_time_point
  372. schemaKey: Session
  373. startDate: '2021-05-20T13:23:55-04:00'
  374. - description: Metadata generated by DANDI cli
  375. endDate: '2024-06-05T15:50:23.783031-04:00'
  376. id: urn:uuid:0961897e-3347-473e-ba6f-797bfd295e94
  377. name: Metadata generation
  378. schemaKey: Activity
  379. startDate: '2024-06-05T15:50:23.042352-04:00'
  380. wasAssociatedWith:
  381. - identifier: RRID:SCR_019009
  382. name: DANDI Command Line Interface
  383. schemaKey: Software
  384. url: https://github.com/dandi/dandi-cli
  385. version: 0.62.0
  386. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  387. access:
  388. - schemaKey: AccessRequirements
  389. status: dandi:OpenAccess
  390. approach: []
  391. blobDateModified: '2024-06-05T15:31:22.373833-04:00'
  392. contentSize: 922186029
  393. contentUrl:
  394. - https://api.dandiarchive.org/api/assets/0d21d16c-f4cd-4a66-a0fd-c879df86da49/download/
  395. - https://dandiarchive.s3.amazonaws.com/blobs/05a/b6e/05ab6ee7-a2f8-4969-8bb7-476dd494609b
  396. dateModified: '2024-06-05T15:51:37.441246-04:00'
  397. datePublished: '2024-06-05T19:54:28.850246+00:00'
  398. digest:
  399. dandi:dandi-etag: 49653680d5219aff89b2c2828c67be5c-14
  400. dandi:sha2-256: 34c4b732eb03a22882931ba0668217a4e31f509dd9801c316babe2e18db2476c
  401. encodingFormat: application/x-nwb
  402. id: dandiasset:0d21d16c-f4cd-4a66-a0fd-c879df86da49
  403. identifier: 0d21d16c-f4cd-4a66-a0fd-c879df86da49
  404. measurementTechnique: []
  405. path: sub-08/sub-08_image.nwb
  406. publishedBy:
  407. endDate: '2024-06-05T19:54:28.850246+00:00'
  408. id: urn:uuid:cf5826fa-7aef-407d-9e90-69f8343bd044
  409. name: DANDI publish
  410. schemaKey: PublishActivity
  411. startDate: '2024-06-05T19:54:28.850246+00:00'
  412. wasAssociatedWith:
  413. - id: urn:uuid:b5c8d3c2-2558-479e-8703-77ecbe4766c4
  414. identifier: RRID:SCR_017571
  415. name: DANDI API
  416. schemaKey: Software
  417. version: 0.1.0
  418. schemaKey: Asset
  419. schemaVersion: 0.6.7
  420. variableMeasured: []
  421. wasAttributedTo:
  422. - age:
  423. schemaKey: PropertyValue
  424. unitText: ISO-8601 duration
  425. value: P1D
  426. valueReference:
  427. schemaKey: PropertyValue
  428. value: dandi:BirthReference
  429. identifier: 08
  430. schemaKey: Participant
  431. sex:
  432. name: Unknown
  433. schemaKey: SexType
  434. species:
  435. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  436. name: Cricetulus griseus - Cricetulus aureus
  437. schemaKey: SpeciesType
  438. wasGeneratedBy:
  439. - description: 08. Experiments were conducted in a 4 electrodes setup. Electrodes
  440. before pulsing were precisely lifted by 1mm. CanCan protocol applied at 6.4kV
  441. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  442. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  443. was shifted and then electrode 2 was starting electrode with noted amplitude of
  444. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  445. Detailed information on pulsing parameters, electrodes, and procedures can be
  446. found in 10.1016/j.bioelechem.2023.108437.
  447. identifier: single_time_point
  448. name: single_time_point
  449. schemaKey: Session
  450. startDate: '2021-05-20T14:46:54-04:00'
  451. - description: Metadata generated by DANDI cli
  452. endDate: '2024-06-05T15:51:37.441246-04:00'
  453. id: urn:uuid:067d51ae-0a2a-46e0-a2ee-470de821d18e
  454. name: Metadata generation
  455. schemaKey: Activity
  456. startDate: '2024-06-05T15:51:37.369585-04:00'
  457. wasAssociatedWith:
  458. - identifier: RRID:SCR_019009
  459. name: DANDI Command Line Interface
  460. schemaKey: Software
  461. url: https://github.com/dandi/dandi-cli
  462. version: 0.62.0
  463. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  464. access:
  465. - schemaKey: AccessRequirements
  466. status: dandi:OpenAccess
  467. approach: []
  468. blobDateModified: '2024-06-05T15:33:24.170327-04:00'
  469. contentSize: 864348645
  470. contentUrl:
  471. - https://api.dandiarchive.org/api/assets/6cd35a2a-72ee-4379-84b6-3c5ab47e9e52/download/
  472. - https://dandiarchive.s3.amazonaws.com/blobs/b06/a8d/b06a8d68-e93c-4a6e-ba0b-061a6a10802e
  473. dateModified: '2024-06-05T15:51:48.952289-04:00'
  474. datePublished: '2024-06-05T19:54:28.856933+00:00'
  475. digest:
  476. dandi:dandi-etag: 7136d86b7dc73abb64dee299b3640652-13
  477. dandi:sha2-256: 09b255233b22b792323a7e8633ebb4cd1e622dcac26371af2ae68113768023f6
  478. encodingFormat: application/x-nwb
  479. id: dandiasset:6cd35a2a-72ee-4379-84b6-3c5ab47e9e52
  480. identifier: 6cd35a2a-72ee-4379-84b6-3c5ab47e9e52
  481. measurementTechnique: []
  482. path: sub-10/sub-10_image.nwb
  483. publishedBy:
  484. endDate: '2024-06-05T19:54:28.856933+00:00'
  485. id: urn:uuid:55cd217b-f8c6-4142-b051-0e83e3a02eb1
  486. name: DANDI publish
  487. schemaKey: PublishActivity
  488. startDate: '2024-06-05T19:54:28.856933+00:00'
  489. wasAssociatedWith:
  490. - id: urn:uuid:fd8a1bd1-3197-4ac5-8bca-a9d6022742e4
  491. identifier: RRID:SCR_017571
  492. name: DANDI API
  493. schemaKey: Software
  494. version: 0.1.0
  495. schemaKey: Asset
  496. schemaVersion: 0.6.7
  497. variableMeasured: []
  498. wasAttributedTo:
  499. - age:
  500. schemaKey: PropertyValue
  501. unitText: ISO-8601 duration
  502. value: P1D
  503. valueReference:
  504. schemaKey: PropertyValue
  505. value: dandi:BirthReference
  506. identifier: '10'
  507. schemaKey: Participant
  508. sex:
  509. name: Unknown
  510. schemaKey: SexType
  511. species:
  512. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  513. name: Cricetulus griseus - Cricetulus aureus
  514. schemaKey: SpeciesType
  515. wasGeneratedBy:
  516. - description: 10. Experiments were conducted in a 4 electrodes setup. Electrodes
  517. before pulsing were precisely lifted by 3mm. CanCan protocol applied at 6.4kV
  518. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  519. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  520. was shifted and then electrode 2 was starting electrode with noted amplitude of
  521. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  522. Detailed information on pulsing parameters, electrodes, and procedures can be
  523. found in 10.1016/j.bioelechem.2023.108437.
  524. identifier: single_time_point
  525. name: single_time_point
  526. schemaKey: Session
  527. startDate: '2021-05-20T15:07:03-04:00'
  528. - description: Metadata generated by DANDI cli
  529. endDate: '2024-06-05T15:51:48.952289-04:00'
  530. id: urn:uuid:65028dd7-2fe8-470f-a067-f02d7040a4e8
  531. name: Metadata generation
  532. schemaKey: Activity
  533. startDate: '2024-06-05T15:51:48.710419-04:00'
  534. wasAssociatedWith:
  535. - identifier: RRID:SCR_019009
  536. name: DANDI Command Line Interface
  537. schemaKey: Software
  538. url: https://github.com/dandi/dandi-cli
  539. version: 0.62.0
  540. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  541. access:
  542. - schemaKey: AccessRequirements
  543. status: dandi:OpenAccess
  544. approach: []
  545. blobDateModified: '2024-06-05T15:35:30.464246-04:00'
  546. contentSize: 932578477
  547. contentUrl:
  548. - https://api.dandiarchive.org/api/assets/ab7377ee-942a-4884-9bdc-194d49ae367d/download/
  549. - https://dandiarchive.s3.amazonaws.com/blobs/1f2/0ef/1f20ef73-d72d-444d-b975-c83391989687
  550. dateModified: '2024-06-05T15:51:49.405428-04:00'
  551. datePublished: '2024-06-05T19:54:28.863297+00:00'
  552. digest:
  553. dandi:dandi-etag: 6dd718d50e2111c600847c2439b217db-14
  554. dandi:sha2-256: e45ffe7a88d94bda48dd0181f24d5f719ecd52356a8bfadc16326b01bb38b375
  555. encodingFormat: application/x-nwb
  556. id: dandiasset:ab7377ee-942a-4884-9bdc-194d49ae367d
  557. identifier: ab7377ee-942a-4884-9bdc-194d49ae367d
  558. measurementTechnique: []
  559. path: sub-12/sub-12_image.nwb
  560. publishedBy:
  561. endDate: '2024-06-05T19:54:28.863297+00:00'
  562. id: urn:uuid:4ab1c5c7-a2fa-434a-a195-fb41aeedbc22
  563. name: DANDI publish
  564. schemaKey: PublishActivity
  565. startDate: '2024-06-05T19:54:28.863297+00:00'
  566. wasAssociatedWith:
  567. - id: urn:uuid:0fb7a955-8c0c-449f-a940-22932325f47a
  568. identifier: RRID:SCR_017571
  569. name: DANDI API
  570. schemaKey: Software
  571. version: 0.1.0
  572. schemaKey: Asset
  573. schemaVersion: 0.6.7
  574. variableMeasured: []
  575. wasAttributedTo:
  576. - age:
  577. schemaKey: PropertyValue
  578. unitText: ISO-8601 duration
  579. value: P1D
  580. valueReference:
  581. schemaKey: PropertyValue
  582. value: dandi:BirthReference
  583. identifier: '12'
  584. schemaKey: Participant
  585. sex:
  586. name: Unknown
  587. schemaKey: SexType
  588. species:
  589. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  590. name: Cricetulus griseus - Cricetulus aureus
  591. schemaKey: SpeciesType
  592. wasGeneratedBy:
  593. - description: 12. Experiments were conducted in a 4 electrodes setup. Electrodes
  594. before pulsing were precisely lifted by 1mm. CanCan protocol applied at 6.4kV
  595. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  596. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  597. was shifted and then electrode 2 was starting electrode with noted amplitude of
  598. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  599. Detailed information on pulsing parameters, electrodes, and procedures can be
  600. found in 10.1016/j.bioelechem.2023.108437.
  601. identifier: single_time_point
  602. name: single_time_point
  603. schemaKey: Session
  604. startDate: '2021-05-20T15:23:48-04:00'
  605. - description: Metadata generated by DANDI cli
  606. endDate: '2024-06-05T15:51:49.405428-04:00'
  607. id: urn:uuid:ccffafd7-6ab1-40e4-966a-07669916f181
  608. name: Metadata generation
  609. schemaKey: Activity
  610. startDate: '2024-06-05T15:51:48.833607-04:00'
  611. wasAssociatedWith:
  612. - identifier: RRID:SCR_019009
  613. name: DANDI Command Line Interface
  614. schemaKey: Software
  615. url: https://github.com/dandi/dandi-cli
  616. version: 0.62.0
  617. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  618. access:
  619. - schemaKey: AccessRequirements
  620. status: dandi:OpenAccess
  621. approach: []
  622. blobDateModified: '2024-06-05T15:34:26.614157-04:00'
  623. contentSize: 949868521
  624. contentUrl:
  625. - https://api.dandiarchive.org/api/assets/4fce0e28-f715-4ea6-9af8-b23a90ee6959/download/
  626. - https://dandiarchive.s3.amazonaws.com/blobs/cc9/eca/cc9eca01-1fb8-4225-baa9-7163d45779ae
  627. dateModified: '2024-06-05T15:51:49.596064-04:00'
  628. datePublished: '2024-06-05T19:54:28.869584+00:00'
  629. digest:
  630. dandi:dandi-etag: bc78ae7e64608c0b8e0757fb860f73b8-15
  631. dandi:sha2-256: a56ba0cc6d5860aeec37e771f2baf4acb4eb36522e6ea62c1890e810df98775d
  632. encodingFormat: application/x-nwb
  633. id: dandiasset:4fce0e28-f715-4ea6-9af8-b23a90ee6959
  634. identifier: 4fce0e28-f715-4ea6-9af8-b23a90ee6959
  635. measurementTechnique: []
  636. path: sub-11/sub-11_image.nwb
  637. publishedBy:
  638. endDate: '2024-06-05T19:54:28.869584+00:00'
  639. id: urn:uuid:75db5993-82d9-40e1-82ce-7c0e34fd727b
  640. name: DANDI publish
  641. schemaKey: PublishActivity
  642. startDate: '2024-06-05T19:54:28.869584+00:00'
  643. wasAssociatedWith:
  644. - id: urn:uuid:858e739c-57f3-4dfe-97b6-893358767138
  645. identifier: RRID:SCR_017571
  646. name: DANDI API
  647. schemaKey: Software
  648. version: 0.1.0
  649. schemaKey: Asset
  650. schemaVersion: 0.6.7
  651. variableMeasured: []
  652. wasAttributedTo:
  653. - age:
  654. schemaKey: PropertyValue
  655. unitText: ISO-8601 duration
  656. value: P1D
  657. valueReference:
  658. schemaKey: PropertyValue
  659. value: dandi:BirthReference
  660. identifier: '11'
  661. schemaKey: Participant
  662. sex:
  663. name: Unknown
  664. schemaKey: SexType
  665. species:
  666. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  667. name: Cricetulus griseus - Cricetulus aureus
  668. schemaKey: SpeciesType
  669. wasGeneratedBy:
  670. - description: 11. Experiments were conducted in a 4 electrodes setup. Electrodes
  671. before pulsing were precisely lifted by 0mm. CanCan protocol applied at 6.4kV
  672. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  673. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  674. was shifted and then electrode 2 was starting electrode with noted amplitude of
  675. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  676. Detailed information on pulsing parameters, electrodes, and procedures can be
  677. found in 10.1016/j.bioelechem.2023.108437.
  678. identifier: single_time_point
  679. name: single_time_point
  680. schemaKey: Session
  681. startDate: '2021-05-20T15:15:58-04:00'
  682. - description: Metadata generated by DANDI cli
  683. endDate: '2024-06-05T15:51:49.596064-04:00'
  684. id: urn:uuid:ff42c98d-23e6-4b66-8a31-dd6cbacb922f
  685. name: Metadata generation
  686. schemaKey: Activity
  687. startDate: '2024-06-05T15:51:49.175499-04:00'
  688. wasAssociatedWith:
  689. - identifier: RRID:SCR_019009
  690. name: DANDI Command Line Interface
  691. schemaKey: Software
  692. url: https://github.com/dandi/dandi-cli
  693. version: 0.62.0
  694. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  695. access:
  696. - schemaKey: AccessRequirements
  697. status: dandi:OpenAccess
  698. approach: []
  699. blobDateModified: '2024-06-05T15:32:24.865252-04:00'
  700. contentSize: 882490721
  701. contentUrl:
  702. - https://api.dandiarchive.org/api/assets/6e1a3126-db9b-48f7-8ac0-913c3932d442/download/
  703. - https://dandiarchive.s3.amazonaws.com/blobs/3be/26e/3be26ecb-c427-48ef-8b35-ac7acb139278
  704. dateModified: '2024-06-05T15:51:49.432391-04:00'
  705. datePublished: '2024-06-05T19:54:28.875690+00:00'
  706. digest:
  707. dandi:dandi-etag: d5a1ee87e229b7cb1440a0f813bf4a7e-14
  708. dandi:sha2-256: 15bca2c7654d6b9f7bb7979dc6164a570d55265d89afab1f18aad74f620deb4e
  709. encodingFormat: application/x-nwb
  710. id: dandiasset:6e1a3126-db9b-48f7-8ac0-913c3932d442
  711. identifier: 6e1a3126-db9b-48f7-8ac0-913c3932d442
  712. measurementTechnique: []
  713. path: sub-09/sub-09_image.nwb
  714. publishedBy:
  715. endDate: '2024-06-05T19:54:28.875690+00:00'
  716. id: urn:uuid:daea3a89-6f55-40cc-bee9-89182aece1c7
  717. name: DANDI publish
  718. schemaKey: PublishActivity
  719. startDate: '2024-06-05T19:54:28.875690+00:00'
  720. wasAssociatedWith:
  721. - id: urn:uuid:2c63fc2e-41a2-4cff-8a00-8f28fbb7f46e
  722. identifier: RRID:SCR_017571
  723. name: DANDI API
  724. schemaKey: Software
  725. version: 0.1.0
  726. schemaKey: Asset
  727. schemaVersion: 0.6.7
  728. variableMeasured: []
  729. wasAttributedTo:
  730. - age:
  731. schemaKey: PropertyValue
  732. unitText: ISO-8601 duration
  733. value: P1D
  734. valueReference:
  735. schemaKey: PropertyValue
  736. value: dandi:BirthReference
  737. identifier: 09
  738. schemaKey: Participant
  739. sex:
  740. name: Unknown
  741. schemaKey: SexType
  742. species:
  743. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  744. name: Cricetulus griseus - Cricetulus aureus
  745. schemaKey: SpeciesType
  746. wasGeneratedBy:
  747. - description: 09. Experiments were conducted in a 4 electrodes setup. Electrodes
  748. before pulsing were precisely lifted by 2mm. CanCan protocol applied at 6.4kV
  749. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  750. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  751. was shifted and then electrode 2 was starting electrode with noted amplitude of
  752. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  753. Detailed information on pulsing parameters, electrodes, and procedures can be
  754. found in 10.1016/j.bioelechem.2023.108437.
  755. identifier: single_time_point
  756. name: single_time_point
  757. schemaKey: Session
  758. startDate: '2021-05-20T14:56:41-04:00'
  759. - description: Metadata generated by DANDI cli
  760. endDate: '2024-06-05T15:51:49.432391-04:00'
  761. id: urn:uuid:cfd22666-1e98-4702-b3e4-af794d574459
  762. name: Metadata generation
  763. schemaKey: Activity
  764. startDate: '2024-06-05T15:51:48.875493-04:00'
  765. wasAssociatedWith:
  766. - identifier: RRID:SCR_019009
  767. name: DANDI Command Line Interface
  768. schemaKey: Software
  769. url: https://github.com/dandi/dandi-cli
  770. version: 0.62.0
  771. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  772. access:
  773. - schemaKey: AccessRequirements
  774. status: dandi:OpenAccess
  775. approach: []
  776. blobDateModified: '2024-06-05T15:36:29.973796-04:00'
  777. contentSize: 898771725
  778. contentUrl:
  779. - https://api.dandiarchive.org/api/assets/2d1a970b-6b8a-4316-bf82-fc1b4b7a52ed/download/
  780. - https://dandiarchive.s3.amazonaws.com/blobs/c51/410/c51410e0-faba-436b-bb86-c1be5661bf9d
  781. dateModified: '2024-06-05T15:52:15.170644-04:00'
  782. datePublished: '2024-06-05T19:54:28.881989+00:00'
  783. digest:
  784. dandi:dandi-etag: 48883a5c2b6d6400813b5750eae83561-14
  785. dandi:sha2-256: c23c7a72f649c126af63e2007f3a4e21656fcef24f8b06827b017dfcfc9fec43
  786. encodingFormat: application/x-nwb
  787. id: dandiasset:2d1a970b-6b8a-4316-bf82-fc1b4b7a52ed
  788. identifier: 2d1a970b-6b8a-4316-bf82-fc1b4b7a52ed
  789. measurementTechnique: []
  790. path: sub-13/sub-13_image.nwb
  791. publishedBy:
  792. endDate: '2024-06-05T19:54:28.881989+00:00'
  793. id: urn:uuid:12d650d7-ab27-48c0-8ea2-8f07cd782b0a
  794. name: DANDI publish
  795. schemaKey: PublishActivity
  796. startDate: '2024-06-05T19:54:28.881989+00:00'
  797. wasAssociatedWith:
  798. - id: urn:uuid:298c36ba-af51-4339-ab54-dde2e097b905
  799. identifier: RRID:SCR_017571
  800. name: DANDI API
  801. schemaKey: Software
  802. version: 0.1.0
  803. schemaKey: Asset
  804. schemaVersion: 0.6.7
  805. variableMeasured: []
  806. wasAttributedTo:
  807. - age:
  808. schemaKey: PropertyValue
  809. unitText: ISO-8601 duration
  810. value: P1D
  811. valueReference:
  812. schemaKey: PropertyValue
  813. value: dandi:BirthReference
  814. identifier: '13'
  815. schemaKey: Participant
  816. sex:
  817. name: Unknown
  818. schemaKey: SexType
  819. species:
  820. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  821. name: Cricetulus griseus - Cricetulus aureus
  822. schemaKey: SpeciesType
  823. wasGeneratedBy:
  824. - description: 13. Experiments were conducted in a 4 electrodes setup. Electrodes
  825. before pulsing were precisely lifted by 2mm. CanCan protocol applied at 6.4kV
  826. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  827. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  828. was shifted and then electrode 2 was starting electrode with noted amplitude of
  829. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  830. Detailed information on pulsing parameters, electrodes, and procedures can be
  831. found in 10.1016/j.bioelechem.2023.108437.
  832. identifier: single_time_point
  833. name: single_time_point
  834. schemaKey: Session
  835. startDate: '2021-05-20T15:33:42-04:00'
  836. - description: Metadata generated by DANDI cli
  837. endDate: '2024-06-05T15:52:15.170644-04:00'
  838. id: urn:uuid:362b3e0e-1655-4559-a04c-72858fe7292e
  839. name: Metadata generation
  840. schemaKey: Activity
  841. startDate: '2024-06-05T15:52:15.098354-04:00'
  842. wasAssociatedWith:
  843. - identifier: RRID:SCR_019009
  844. name: DANDI Command Line Interface
  845. schemaKey: Software
  846. url: https://github.com/dandi/dandi-cli
  847. version: 0.62.0
  848. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  849. access:
  850. - schemaKey: AccessRequirements
  851. status: dandi:OpenAccess
  852. approach: []
  853. blobDateModified: '2024-06-05T15:37:26.146640-04:00'
  854. contentSize: 856302220
  855. contentUrl:
  856. - https://api.dandiarchive.org/api/assets/65083881-5bb4-482a-9528-fad483122c1b/download/
  857. - https://dandiarchive.s3.amazonaws.com/blobs/df6/52b/df652b2a-9f54-4a81-bf19-07c028523f05
  858. dateModified: '2024-06-05T15:52:58.864057-04:00'
  859. datePublished: '2024-06-05T19:54:28.888250+00:00'
  860. digest:
  861. dandi:dandi-etag: 9a9049f3200af23a56760a822c49a599-13
  862. dandi:sha2-256: 076923258d4eefec8ec3bc5c146cccdfead0e25251b9fd48f9493901d4375da1
  863. encodingFormat: application/x-nwb
  864. id: dandiasset:65083881-5bb4-482a-9528-fad483122c1b
  865. identifier: 65083881-5bb4-482a-9528-fad483122c1b
  866. measurementTechnique: []
  867. path: sub-14/sub-14_image.nwb
  868. publishedBy:
  869. endDate: '2024-06-05T19:54:28.888250+00:00'
  870. id: urn:uuid:1955a21f-7168-4da0-9b0d-78e388b64d3f
  871. name: DANDI publish
  872. schemaKey: PublishActivity
  873. startDate: '2024-06-05T19:54:28.888250+00:00'
  874. wasAssociatedWith:
  875. - id: urn:uuid:41548e3f-9431-474a-8fa8-ee6731f81b17
  876. identifier: RRID:SCR_017571
  877. name: DANDI API
  878. schemaKey: Software
  879. version: 0.1.0
  880. schemaKey: Asset
  881. schemaVersion: 0.6.7
  882. variableMeasured: []
  883. wasAttributedTo:
  884. - age:
  885. schemaKey: PropertyValue
  886. unitText: ISO-8601 duration
  887. value: P1D
  888. valueReference:
  889. schemaKey: PropertyValue
  890. value: dandi:BirthReference
  891. identifier: '14'
  892. schemaKey: Participant
  893. sex:
  894. name: Unknown
  895. schemaKey: SexType
  896. species:
  897. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  898. name: Cricetulus griseus - Cricetulus aureus
  899. schemaKey: SpeciesType
  900. wasGeneratedBy:
  901. - description: 14. Experiments were conducted in a 4 electrodes setup. Electrodes
  902. before pulsing were precisely lifted by 3mm. CanCan protocol applied at 6.4kV
  903. (first pulse) with the subsequent canceling pulses 12.5% lower than pulses before.
  904. Packets were repeated 10 times at 1Hz frequency. Then also at 1Hz frequency protocol
  905. was shifted and then electrode 2 was starting electrode with noted amplitude of
  906. the first pulse. Protocol finished when all 4 electrodes were active pulse electrodes.
  907. Detailed information on pulsing parameters, electrodes, and procedures can be
  908. found in 10.1016/j.bioelechem.2023.108437.
  909. identifier: single_time_point
  910. name: single_time_point
  911. schemaKey: Session
  912. startDate: '2021-05-20T15:42:23-04:00'
  913. - description: Metadata generated by DANDI cli
  914. endDate: '2024-06-05T15:52:58.864057-04:00'
  915. id: urn:uuid:99555be8-39c5-42a5-9feb-ba0e701ebcb0
  916. name: Metadata generation
  917. schemaKey: Activity
  918. startDate: '2024-06-05T15:52:58.749874-04:00'
  919. wasAssociatedWith:
  920. - identifier: RRID:SCR_019009
  921. name: DANDI Command Line Interface
  922. schemaKey: Software
  923. url: https://github.com/dandi/dandi-cli
  924. version: 0.62.0
Tip!

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

Comments

Loading...