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 62 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
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
  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-05T14:06:08.129275-04:00'
  7. contentSize: 377713602
  8. contentUrl:
  9. - https://api.dandiarchive.org/api/assets/7120b514-55e5-4667-bff6-531f40ccb45e/download/
  10. - https://dandiarchive.s3.amazonaws.com/blobs/bcf/c8a/bcfc8a79-38e1-48f9-88b2-184496e4e70d
  11. dateModified: '2024-06-05T14:15:57.950772-04:00'
  12. datePublished: '2024-06-05T18:26:43.511155+00:00'
  13. digest:
  14. dandi:dandi-etag: e097958a5776e2dc61125510e7321121-6
  15. dandi:sha2-256: d1254958dde3f2e20acf07b2ec0a81af2b4a9527e175c99d6027112d782a213f
  16. encodingFormat: application/x-nwb
  17. id: dandiasset:7120b514-55e5-4667-bff6-531f40ccb45e
  18. identifier: 7120b514-55e5-4667-bff6-531f40ccb45e
  19. measurementTechnique: []
  20. path: sub-03/sub-03_image.nwb
  21. publishedBy:
  22. endDate: '2024-06-05T18:26:43.511155+00:00'
  23. id: urn:uuid:f0c81553-0e4b-45da-865a-8ada7a9a06fe
  24. name: DANDI publish
  25. schemaKey: PublishActivity
  26. startDate: '2024-06-05T18:26:43.511155+00:00'
  27. wasAssociatedWith:
  28. - id: urn:uuid:9779c7d4-8afe-487e-a93f-9e9860db50b1
  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: '03'
  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: 03. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  55. applied at 4.0kV (first pulse) with the subsequent canceling pulses 12.5% lower
  56. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  57. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  58. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  59. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  60. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  61. identifier: single_time_point
  62. name: single_time_point
  63. schemaKey: Session
  64. startDate: '2021-02-16T13:25:04-05:00'
  65. - description: Metadata generated by DANDI cli
  66. endDate: '2024-06-05T14:15:57.950772-04:00'
  67. id: urn:uuid:c87d65cd-ad1f-4f80-a727-32fe62e0c4eb
  68. name: Metadata generation
  69. schemaKey: Activity
  70. startDate: '2024-06-05T14:15:56.726442-04:00'
  71. wasAssociatedWith:
  72. - identifier: RRID:SCR_019009
  73. name: DANDI Command Line Interface
  74. schemaKey: Software
  75. url: https://github.com/dandi/dandi-cli
  76. version: 0.62.0
  77. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  78. access:
  79. - schemaKey: AccessRequirements
  80. status: dandi:OpenAccess
  81. approach: []
  82. blobDateModified: '2024-06-05T14:07:24.260613-04:00'
  83. contentSize: 389920086
  84. contentUrl:
  85. - https://api.dandiarchive.org/api/assets/61ef6724-fb2f-4681-b03a-6efdedeaaffc/download/
  86. - https://dandiarchive.s3.amazonaws.com/blobs/c8c/69b/c8c69b8f-6820-4092-95de-ecee425b1255
  87. dateModified: '2024-06-05T14:15:57.950772-04:00'
  88. datePublished: '2024-06-05T18:26:43.522228+00:00'
  89. digest:
  90. dandi:dandi-etag: 3ca2cf0a2d30d1fb4c64c2fc56d8d3c2-6
  91. dandi:sha2-256: 8a3953e083cec28a45e2bff18f8ee4a11d08b64724a86e4837421dec05a7c8df
  92. encodingFormat: application/x-nwb
  93. id: dandiasset:61ef6724-fb2f-4681-b03a-6efdedeaaffc
  94. identifier: 61ef6724-fb2f-4681-b03a-6efdedeaaffc
  95. measurementTechnique: []
  96. path: sub-05/sub-05_image.nwb
  97. publishedBy:
  98. endDate: '2024-06-05T18:26:43.522228+00:00'
  99. id: urn:uuid:67a4d4ad-0899-49d8-a4e1-1ccfaadadeda
  100. name: DANDI publish
  101. schemaKey: PublishActivity
  102. startDate: '2024-06-05T18:26:43.522228+00:00'
  103. wasAssociatedWith:
  104. - id: urn:uuid:ffdeeadd-fc0a-42b4-989f-8ea9642cbaa1
  105. identifier: RRID:SCR_017571
  106. name: DANDI API
  107. schemaKey: Software
  108. version: 0.1.0
  109. schemaKey: Asset
  110. schemaVersion: 0.6.7
  111. variableMeasured: []
  112. wasAttributedTo:
  113. - age:
  114. schemaKey: PropertyValue
  115. unitText: ISO-8601 duration
  116. value: P1D
  117. valueReference:
  118. schemaKey: PropertyValue
  119. value: dandi:BirthReference
  120. identifier: '05'
  121. schemaKey: Participant
  122. sex:
  123. name: Unknown
  124. schemaKey: SexType
  125. species:
  126. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  127. name: Cricetulus griseus - Cricetulus aureus
  128. schemaKey: SpeciesType
  129. wasGeneratedBy:
  130. - description: 05. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  131. applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
  132. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  133. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  134. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  135. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  136. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  137. identifier: single_time_point
  138. name: single_time_point
  139. schemaKey: Session
  140. startDate: '2021-02-17T14:44:18.857000-05:00'
  141. - description: Metadata generated by DANDI cli
  142. endDate: '2024-06-05T14:15:57.950772-04:00'
  143. id: urn:uuid:7327ec1c-7730-4ac0-9de8-726743d24bfc
  144. name: Metadata generation
  145. schemaKey: Activity
  146. startDate: '2024-06-05T14:15:56.848656-04:00'
  147. wasAssociatedWith:
  148. - identifier: RRID:SCR_019009
  149. name: DANDI Command Line Interface
  150. schemaKey: Software
  151. url: https://github.com/dandi/dandi-cli
  152. version: 0.62.0
  153. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  154. access:
  155. - schemaKey: AccessRequirements
  156. status: dandi:OpenAccess
  157. approach: []
  158. blobDateModified: '2024-06-05T13:58:19.760539-04:00'
  159. contentSize: 909738187
  160. contentUrl:
  161. - https://api.dandiarchive.org/api/assets/556e871d-4242-46cc-9be6-b2070ec6c290/download/
  162. - https://dandiarchive.s3.amazonaws.com/blobs/6f9/31e/6f931ea9-89fd-44cd-8bc5-247df16eaaeb
  163. dateModified: '2024-06-05T14:15:59.375351-04:00'
  164. datePublished: '2024-06-05T18:26:43.529439+00:00'
  165. digest:
  166. dandi:dandi-etag: 24c11234d2675a19206f227e49c839be-14
  167. dandi:sha2-256: a448e98e0a2fd059fec0b3216d58ad0c641e266932447788844374a617db1625
  168. encodingFormat: application/x-nwb
  169. id: dandiasset:556e871d-4242-46cc-9be6-b2070ec6c290
  170. identifier: 556e871d-4242-46cc-9be6-b2070ec6c290
  171. measurementTechnique: []
  172. path: sub-02/sub-02_image.nwb
  173. publishedBy:
  174. endDate: '2024-06-05T18:26:43.529439+00:00'
  175. id: urn:uuid:d2b88590-b769-4408-8944-ba705211bffa
  176. name: DANDI publish
  177. schemaKey: PublishActivity
  178. startDate: '2024-06-05T18:26:43.529439+00:00'
  179. wasAssociatedWith:
  180. - id: urn:uuid:862e3bad-4c52-4cc8-9600-47b6d488878b
  181. identifier: RRID:SCR_017571
  182. name: DANDI API
  183. schemaKey: Software
  184. version: 0.1.0
  185. schemaKey: Asset
  186. schemaVersion: 0.6.7
  187. variableMeasured: []
  188. wasAttributedTo:
  189. - age:
  190. schemaKey: PropertyValue
  191. unitText: ISO-8601 duration
  192. value: P1D
  193. valueReference:
  194. schemaKey: PropertyValue
  195. value: dandi:BirthReference
  196. identifier: '02'
  197. schemaKey: Participant
  198. sex:
  199. name: Unknown
  200. schemaKey: SexType
  201. species:
  202. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  203. name: Cricetulus griseus - Cricetulus aureus
  204. schemaKey: SpeciesType
  205. wasGeneratedBy:
  206. - description: 02. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  207. applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
  208. than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
  209. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  210. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  211. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  212. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  213. identifier: single_time_point
  214. name: single_time_point
  215. schemaKey: Session
  216. startDate: '2021-05-20T12:49:16-04:00'
  217. - description: Metadata generated by DANDI cli
  218. endDate: '2024-06-05T14:15:59.375351-04:00'
  219. id: urn:uuid:65c22177-8c98-43fb-9a59-b6bffd1bd232
  220. name: Metadata generation
  221. schemaKey: Activity
  222. startDate: '2024-06-05T14:15:59.274843-04:00'
  223. wasAssociatedWith:
  224. - identifier: RRID:SCR_019009
  225. name: DANDI Command Line Interface
  226. schemaKey: Software
  227. url: https://github.com/dandi/dandi-cli
  228. version: 0.62.0
  229. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  230. access:
  231. - schemaKey: AccessRequirements
  232. status: dandi:OpenAccess
  233. approach: []
  234. blobDateModified: '2024-06-05T14:00:44.542282-04:00'
  235. contentSize: 944432790
  236. contentUrl:
  237. - https://api.dandiarchive.org/api/assets/92414055-7322-4756-bd26-cda927e8eccf/download/
  238. - https://dandiarchive.s3.amazonaws.com/blobs/f2d/77d/f2d77d09-f8d3-48ea-8481-ac6ef479901c
  239. dateModified: '2024-06-05T14:16:00.452417-04:00'
  240. datePublished: '2024-06-05T18:26:43.537207+00:00'
  241. digest:
  242. dandi:dandi-etag: 84a8140b37e85b567cc1dca1a6fb808a-15
  243. dandi:sha2-256: 68c8b4eee6262519eea9ad5e492abf9a88a4a28da7d06e6f4ef4fa2269731ce9
  244. encodingFormat: application/x-nwb
  245. id: dandiasset:92414055-7322-4756-bd26-cda927e8eccf
  246. identifier: 92414055-7322-4756-bd26-cda927e8eccf
  247. measurementTechnique: []
  248. path: sub-04/sub-04_image.nwb
  249. publishedBy:
  250. endDate: '2024-06-05T18:26:43.537207+00:00'
  251. id: urn:uuid:dc265c24-ecdb-46e6-b452-8ff4990ad22e
  252. name: DANDI publish
  253. schemaKey: PublishActivity
  254. startDate: '2024-06-05T18:26:43.537207+00:00'
  255. wasAssociatedWith:
  256. - id: urn:uuid:607e5549-2f7d-4c56-9672-24c224549401
  257. identifier: RRID:SCR_017571
  258. name: DANDI API
  259. schemaKey: Software
  260. version: 0.1.0
  261. schemaKey: Asset
  262. schemaVersion: 0.6.7
  263. variableMeasured: []
  264. wasAttributedTo:
  265. - age:
  266. schemaKey: PropertyValue
  267. unitText: ISO-8601 duration
  268. value: P1D
  269. valueReference:
  270. schemaKey: PropertyValue
  271. value: dandi:BirthReference
  272. identifier: '04'
  273. schemaKey: Participant
  274. sex:
  275. name: Unknown
  276. schemaKey: SexType
  277. species:
  278. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  279. name: Cricetulus griseus - Cricetulus aureus
  280. schemaKey: SpeciesType
  281. wasGeneratedBy:
  282. - description: 04. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  283. applied at 6.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  284. than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
  285. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  286. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  287. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  288. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  289. identifier: single_time_point
  290. name: single_time_point
  291. schemaKey: Session
  292. startDate: '2021-05-20T13:17:02-04:00'
  293. - description: Metadata generated by DANDI cli
  294. endDate: '2024-06-05T14:16:00.452417-04:00'
  295. id: urn:uuid:e070819f-710f-43cd-bda4-9b33484f17de
  296. name: Metadata generation
  297. schemaKey: Activity
  298. startDate: '2024-06-05T14:16:00.363098-04:00'
  299. wasAssociatedWith:
  300. - identifier: RRID:SCR_019009
  301. name: DANDI Command Line Interface
  302. schemaKey: Software
  303. url: https://github.com/dandi/dandi-cli
  304. version: 0.62.0
  305. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  306. access:
  307. - schemaKey: AccessRequirements
  308. status: dandi:OpenAccess
  309. approach: []
  310. blobDateModified: '2024-06-05T14:01:47.798108-04:00'
  311. contentSize: 946166674
  312. contentUrl:
  313. - https://api.dandiarchive.org/api/assets/551047fe-a5c3-4bd1-a134-565369803b3e/download/
  314. - https://dandiarchive.s3.amazonaws.com/blobs/606/a5c/606a5c87-b7e0-49dd-b6d4-a360a0a6ae36
  315. dateModified: '2024-06-05T14:15:59.710975-04:00'
  316. datePublished: '2024-06-05T18:26:43.547349+00:00'
  317. digest:
  318. dandi:dandi-etag: ed8d44ddeb6ca082f596c81f46df1372-15
  319. dandi:sha2-256: a44ebf7be3a1498a6a2d36c562f1a5e72792d4905fe604c66612600206ed7837
  320. encodingFormat: application/x-nwb
  321. id: dandiasset:551047fe-a5c3-4bd1-a134-565369803b3e
  322. identifier: 551047fe-a5c3-4bd1-a134-565369803b3e
  323. measurementTechnique: []
  324. path: sub-07/sub-07_image.nwb
  325. publishedBy:
  326. endDate: '2024-06-05T18:26:43.547349+00:00'
  327. id: urn:uuid:c327a370-4ae0-475b-9628-65a983e20ae6
  328. name: DANDI publish
  329. schemaKey: PublishActivity
  330. startDate: '2024-06-05T18:26:43.547349+00:00'
  331. wasAssociatedWith:
  332. - id: urn:uuid:b8bf6440-1370-4fd8-9e94-3dac2f407e8e
  333. identifier: RRID:SCR_017571
  334. name: DANDI API
  335. schemaKey: Software
  336. version: 0.1.0
  337. schemaKey: Asset
  338. schemaVersion: 0.6.7
  339. variableMeasured: []
  340. wasAttributedTo:
  341. - age:
  342. schemaKey: PropertyValue
  343. unitText: ISO-8601 duration
  344. value: P1D
  345. valueReference:
  346. schemaKey: PropertyValue
  347. value: dandi:BirthReference
  348. identifier: '07'
  349. schemaKey: Participant
  350. sex:
  351. name: Unknown
  352. schemaKey: SexType
  353. species:
  354. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  355. name: Cricetulus griseus - Cricetulus aureus
  356. schemaKey: SpeciesType
  357. wasGeneratedBy:
  358. - description: 07. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  359. applied at 6.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  360. than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
  361. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  362. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  363. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  364. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  365. identifier: single_time_point
  366. name: single_time_point
  367. schemaKey: Session
  368. startDate: '2021-05-20T14:40:14-04:00'
  369. - description: Metadata generated by DANDI cli
  370. endDate: '2024-06-05T14:15:59.710975-04:00'
  371. id: urn:uuid:a86f2a65-0f75-4e94-866a-3d3605513f55
  372. name: Metadata generation
  373. schemaKey: Activity
  374. startDate: '2024-06-05T14:15:59.630576-04:00'
  375. wasAssociatedWith:
  376. - identifier: RRID:SCR_019009
  377. name: DANDI Command Line Interface
  378. schemaKey: Software
  379. url: https://github.com/dandi/dandi-cli
  380. version: 0.62.0
  381. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  382. access:
  383. - schemaKey: AccessRequirements
  384. status: dandi:OpenAccess
  385. approach: []
  386. blobDateModified: '2024-06-05T14:06:33.231716-04:00'
  387. contentSize: 388019153
  388. contentUrl:
  389. - https://api.dandiarchive.org/api/assets/51f72930-7d82-41ba-9625-2b186c6aaaa1/download/
  390. - https://dandiarchive.s3.amazonaws.com/blobs/c56/313/c56313b2-65a7-433f-a938-7dae0e1601c0
  391. dateModified: '2024-06-05T14:16:35.819999-04:00'
  392. datePublished: '2024-06-05T18:26:43.555636+00:00'
  393. digest:
  394. dandi:dandi-etag: 6043a562dfcb88e0f8195c04bf9f48ef-6
  395. dandi:sha2-256: 49421f3dc0173acc7e9ed8500fdc50cf744f1f98ac1f0487751f6b68fc0fc4d3
  396. encodingFormat: application/x-nwb
  397. id: dandiasset:51f72930-7d82-41ba-9625-2b186c6aaaa1
  398. identifier: 51f72930-7d82-41ba-9625-2b186c6aaaa1
  399. measurementTechnique: []
  400. path: sub-08/sub-08_image.nwb
  401. publishedBy:
  402. endDate: '2024-06-05T18:26:43.555636+00:00'
  403. id: urn:uuid:10090a4d-1b79-47b1-a741-08e6a21e008b
  404. name: DANDI publish
  405. schemaKey: PublishActivity
  406. startDate: '2024-06-05T18:26:43.555636+00:00'
  407. wasAssociatedWith:
  408. - id: urn:uuid:6bbded4f-8460-4632-8bac-58cd9d307bea
  409. identifier: RRID:SCR_017571
  410. name: DANDI API
  411. schemaKey: Software
  412. version: 0.1.0
  413. schemaKey: Asset
  414. schemaVersion: 0.6.7
  415. variableMeasured: []
  416. wasAttributedTo:
  417. - age:
  418. schemaKey: PropertyValue
  419. unitText: ISO-8601 duration
  420. value: P1D
  421. valueReference:
  422. schemaKey: PropertyValue
  423. value: dandi:BirthReference
  424. identifier: 08
  425. schemaKey: Participant
  426. sex:
  427. name: Unknown
  428. schemaKey: SexType
  429. species:
  430. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  431. name: Cricetulus griseus - Cricetulus aureus
  432. schemaKey: SpeciesType
  433. wasGeneratedBy:
  434. - description: 08. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  435. applied at 4.0kV (first pulse) with the subsequent canceling pulses 12.5% lower
  436. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  437. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  438. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  439. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  440. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  441. identifier: single_time_point
  442. name: single_time_point
  443. schemaKey: Session
  444. startDate: '2021-02-16T14:04:37-05:00'
  445. - description: Metadata generated by DANDI cli
  446. endDate: '2024-06-05T14:16:35.819999-04:00'
  447. id: urn:uuid:d13ea1cd-6531-427b-9f07-4c24a77da791
  448. name: Metadata generation
  449. schemaKey: Activity
  450. startDate: '2024-06-05T14:16:35.760793-04:00'
  451. wasAssociatedWith:
  452. - identifier: RRID:SCR_019009
  453. name: DANDI Command Line Interface
  454. schemaKey: Software
  455. url: https://github.com/dandi/dandi-cli
  456. version: 0.62.0
  457. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  458. access:
  459. - schemaKey: AccessRequirements
  460. status: dandi:OpenAccess
  461. approach: []
  462. blobDateModified: '2024-06-05T14:02:50.486479-04:00'
  463. contentSize: 949868521
  464. contentUrl:
  465. - https://api.dandiarchive.org/api/assets/1ffc9388-0d07-407d-a718-82f0d77bbe5e/download/
  466. - https://dandiarchive.s3.amazonaws.com/blobs/385/c63/385c6357-e62f-49e4-9795-baea98312795
  467. dateModified: '2024-06-05T14:16:44.799646-04:00'
  468. datePublished: '2024-06-05T18:26:43.566886+00:00'
  469. digest:
  470. dandi:dandi-etag: b85cf8bcfd2026c9873e67e1a9609f0d-15
  471. dandi:sha2-256: 0c9e560a20abcb40f6c95efc11adc337949e0d938e5fc2571fcbebe08e0a742d
  472. encodingFormat: application/x-nwb
  473. id: dandiasset:1ffc9388-0d07-407d-a718-82f0d77bbe5e
  474. identifier: 1ffc9388-0d07-407d-a718-82f0d77bbe5e
  475. measurementTechnique: []
  476. path: sub-11/sub-11_image.nwb
  477. publishedBy:
  478. endDate: '2024-06-05T18:26:43.566886+00:00'
  479. id: urn:uuid:522f0c7a-ebe7-4650-b30b-be6689c5d6b8
  480. name: DANDI publish
  481. schemaKey: PublishActivity
  482. startDate: '2024-06-05T18:26:43.566886+00:00'
  483. wasAssociatedWith:
  484. - id: urn:uuid:de8781e1-cfda-45b9-a992-66d46f2df045
  485. identifier: RRID:SCR_017571
  486. name: DANDI API
  487. schemaKey: Software
  488. version: 0.1.0
  489. schemaKey: Asset
  490. schemaVersion: 0.6.7
  491. variableMeasured: []
  492. wasAttributedTo:
  493. - age:
  494. schemaKey: PropertyValue
  495. unitText: ISO-8601 duration
  496. value: P1D
  497. valueReference:
  498. schemaKey: PropertyValue
  499. value: dandi:BirthReference
  500. identifier: '11'
  501. schemaKey: Participant
  502. sex:
  503. name: Unknown
  504. schemaKey: SexType
  505. species:
  506. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  507. name: Cricetulus griseus - Cricetulus aureus
  508. schemaKey: SpeciesType
  509. wasGeneratedBy:
  510. - description: 11. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  511. applied at 6.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  512. than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
  513. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  514. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  515. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  516. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  517. identifier: single_time_point
  518. name: single_time_point
  519. schemaKey: Session
  520. startDate: '2021-05-20T15:15:58-04:00'
  521. - description: Metadata generated by DANDI cli
  522. endDate: '2024-06-05T14:16:44.799646-04:00'
  523. id: urn:uuid:4ce65bd3-7acb-4094-bd88-d67bf6f0b499
  524. name: Metadata generation
  525. schemaKey: Activity
  526. startDate: '2024-06-05T14:16:44.738846-04:00'
  527. wasAssociatedWith:
  528. - identifier: RRID:SCR_019009
  529. name: DANDI Command Line Interface
  530. schemaKey: Software
  531. url: https://github.com/dandi/dandi-cli
  532. version: 0.62.0
  533. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  534. access:
  535. - schemaKey: AccessRequirements
  536. status: dandi:OpenAccess
  537. approach: []
  538. blobDateModified: '2024-06-05T14:07:49.542240-04:00'
  539. contentSize: 400229537
  540. contentUrl:
  541. - https://api.dandiarchive.org/api/assets/a23acc70-1cee-4c58-8c29-5bb06bbb9186/download/
  542. - https://dandiarchive.s3.amazonaws.com/blobs/0cb/b31/0cbb3125-fc72-4a6a-999f-73818b3d07e7
  543. dateModified: '2024-06-05T14:17:06.637779-04:00'
  544. datePublished: '2024-06-05T18:26:43.577461+00:00'
  545. digest:
  546. dandi:dandi-etag: 2bd64a751596dee50adf5fd40f709535-6
  547. dandi:sha2-256: f0479d5be926c1fd3576d208a56e6ea7ffc248127410b8e42d602cb79dedf7ec
  548. encodingFormat: application/x-nwb
  549. id: dandiasset:a23acc70-1cee-4c58-8c29-5bb06bbb9186
  550. identifier: a23acc70-1cee-4c58-8c29-5bb06bbb9186
  551. measurementTechnique: []
  552. path: sub-12/sub-12_image.nwb
  553. publishedBy:
  554. endDate: '2024-06-05T18:26:43.577461+00:00'
  555. id: urn:uuid:22b8f513-90a9-48ea-bea9-b804d8ad8527
  556. name: DANDI publish
  557. schemaKey: PublishActivity
  558. startDate: '2024-06-05T18:26:43.577461+00:00'
  559. wasAssociatedWith:
  560. - id: urn:uuid:16c273c0-d096-4014-948c-ff1fa6561fe3
  561. identifier: RRID:SCR_017571
  562. name: DANDI API
  563. schemaKey: Software
  564. version: 0.1.0
  565. schemaKey: Asset
  566. schemaVersion: 0.6.7
  567. variableMeasured: []
  568. wasAttributedTo:
  569. - age:
  570. schemaKey: PropertyValue
  571. unitText: ISO-8601 duration
  572. value: P1D
  573. valueReference:
  574. schemaKey: PropertyValue
  575. value: dandi:BirthReference
  576. identifier: '12'
  577. schemaKey: Participant
  578. sex:
  579. name: Unknown
  580. schemaKey: SexType
  581. species:
  582. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  583. name: Cricetulus griseus - Cricetulus aureus
  584. schemaKey: SpeciesType
  585. wasGeneratedBy:
  586. - description: 12. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  587. applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
  588. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  589. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  590. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  591. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  592. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  593. identifier: single_time_point
  594. name: single_time_point
  595. schemaKey: Session
  596. startDate: '2021-04-02T14:02:07.632000-04:00'
  597. - description: Metadata generated by DANDI cli
  598. endDate: '2024-06-05T14:17:06.637779-04:00'
  599. id: urn:uuid:f50256f4-71b1-456e-bc2a-e99aa7dba1eb
  600. name: Metadata generation
  601. schemaKey: Activity
  602. startDate: '2024-06-05T14:17:06.567912-04:00'
  603. wasAssociatedWith:
  604. - identifier: RRID:SCR_019009
  605. name: DANDI Command Line Interface
  606. schemaKey: Software
  607. url: https://github.com/dandi/dandi-cli
  608. version: 0.62.0
  609. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  610. access:
  611. - schemaKey: AccessRequirements
  612. status: dandi:OpenAccess
  613. approach: []
  614. blobDateModified: '2024-06-05T14:08:15.815279-04:00'
  615. contentSize: 398726025
  616. contentUrl:
  617. - https://api.dandiarchive.org/api/assets/43376719-03bd-4b16-9a66-fdd91bf43b45/download/
  618. - https://dandiarchive.s3.amazonaws.com/blobs/71a/db4/71adb470-3fc3-48d0-8a08-7ffda0431b3d
  619. dateModified: '2024-06-05T14:17:06.854238-04:00'
  620. datePublished: '2024-06-05T18:26:43.585451+00:00'
  621. digest:
  622. dandi:dandi-etag: 1abf95d0f3a2ce9446110de5aee231d5-6
  623. dandi:sha2-256: 550c85f996126d2531c16ed6670627f38eaa29a6d668206ab186beacd4167f6a
  624. encodingFormat: application/x-nwb
  625. id: dandiasset:43376719-03bd-4b16-9a66-fdd91bf43b45
  626. identifier: 43376719-03bd-4b16-9a66-fdd91bf43b45
  627. measurementTechnique: []
  628. path: sub-13/sub-13_image.nwb
  629. publishedBy:
  630. endDate: '2024-06-05T18:26:43.585451+00:00'
  631. id: urn:uuid:a01ecef0-4dc9-45ea-9fde-e9c57e8acd8f
  632. name: DANDI publish
  633. schemaKey: PublishActivity
  634. startDate: '2024-06-05T18:26:43.585451+00:00'
  635. wasAssociatedWith:
  636. - id: urn:uuid:ac6986e8-dc88-446e-a7be-a71dc58bcb1f
  637. identifier: RRID:SCR_017571
  638. name: DANDI API
  639. schemaKey: Software
  640. version: 0.1.0
  641. schemaKey: Asset
  642. schemaVersion: 0.6.7
  643. variableMeasured: []
  644. wasAttributedTo:
  645. - age:
  646. schemaKey: PropertyValue
  647. unitText: ISO-8601 duration
  648. value: P1D
  649. valueReference:
  650. schemaKey: PropertyValue
  651. value: dandi:BirthReference
  652. identifier: '13'
  653. schemaKey: Participant
  654. sex:
  655. name: Unknown
  656. schemaKey: SexType
  657. species:
  658. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  659. name: Cricetulus griseus - Cricetulus aureus
  660. schemaKey: SpeciesType
  661. wasGeneratedBy:
  662. - description: 13. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  663. applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
  664. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  665. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  666. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  667. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  668. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  669. identifier: single_time_point
  670. name: single_time_point
  671. schemaKey: Session
  672. startDate: '2021-04-02T14:03:26.172000-04:00'
  673. - description: Metadata generated by DANDI cli
  674. endDate: '2024-06-05T14:17:06.854238-04:00'
  675. id: urn:uuid:878930c3-574c-4895-9c77-c37a841414bd
  676. name: Metadata generation
  677. schemaKey: Activity
  678. startDate: '2024-06-05T14:17:06.781603-04:00'
  679. wasAssociatedWith:
  680. - identifier: RRID:SCR_019009
  681. name: DANDI Command Line Interface
  682. schemaKey: Software
  683. url: https://github.com/dandi/dandi-cli
  684. version: 0.62.0
  685. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  686. access:
  687. - schemaKey: AccessRequirements
  688. status: dandi:OpenAccess
  689. approach: []
  690. blobDateModified: '2024-06-05T14:03:11.879572-04:00'
  691. contentSize: 342537123
  692. contentUrl:
  693. - https://api.dandiarchive.org/api/assets/84a42084-73c5-419e-bc4b-8d7fdd63bd02/download/
  694. - https://dandiarchive.s3.amazonaws.com/blobs/799/e22/799e2284-12fb-4d17-a460-9e87471a3abb
  695. dateModified: '2024-06-05T14:17:31.228244-04:00'
  696. datePublished: '2024-06-05T18:26:43.593337+00:00'
  697. digest:
  698. dandi:dandi-etag: efec60284163e8c6b43632000f745843-6
  699. dandi:sha2-256: 333a770592a6f778c69dfe144df089526dcabbbfc4e426f10f967ee765aa29fc
  700. encodingFormat: application/x-nwb
  701. id: dandiasset:84a42084-73c5-419e-bc4b-8d7fdd63bd02
  702. identifier: 84a42084-73c5-419e-bc4b-8d7fdd63bd02
  703. measurementTechnique: []
  704. path: sub-15/sub-15_obj-t7o4u3_image.nwb
  705. publishedBy:
  706. endDate: '2024-06-05T18:26:43.593337+00:00'
  707. id: urn:uuid:e12af89f-b9ce-482c-8572-f50cf20c8f54
  708. name: DANDI publish
  709. schemaKey: PublishActivity
  710. startDate: '2024-06-05T18:26:43.593337+00:00'
  711. wasAssociatedWith:
  712. - id: urn:uuid:cedab1fe-f9bb-4462-8202-f08d1cb52f6e
  713. identifier: RRID:SCR_017571
  714. name: DANDI API
  715. schemaKey: Software
  716. version: 0.1.0
  717. schemaKey: Asset
  718. schemaVersion: 0.6.7
  719. variableMeasured: []
  720. wasAttributedTo:
  721. - age:
  722. schemaKey: PropertyValue
  723. unitText: ISO-8601 duration
  724. value: P1D
  725. valueReference:
  726. schemaKey: PropertyValue
  727. value: dandi:BirthReference
  728. identifier: '15'
  729. schemaKey: Participant
  730. sex:
  731. name: Unknown
  732. schemaKey: SexType
  733. species:
  734. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  735. name: Cricetulus griseus - Cricetulus aureus
  736. schemaKey: SpeciesType
  737. wasGeneratedBy:
  738. - description: 15. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  739. applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  740. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  741. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  742. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  743. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  744. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  745. identifier: single_time_point
  746. name: single_time_point
  747. schemaKey: Session
  748. startDate: '2021-04-02T14:07:47.831000-04:00'
  749. - description: Metadata generated by DANDI cli
  750. endDate: '2024-06-05T14:17:31.228244-04:00'
  751. id: urn:uuid:32c0aae6-6f3c-4750-b847-4819c4771aa3
  752. name: Metadata generation
  753. schemaKey: Activity
  754. startDate: '2024-06-05T14:17:31.164695-04:00'
  755. wasAssociatedWith:
  756. - identifier: RRID:SCR_019009
  757. name: DANDI Command Line Interface
  758. schemaKey: Software
  759. url: https://github.com/dandi/dandi-cli
  760. version: 0.62.0
  761. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  762. access:
  763. - schemaKey: AccessRequirements
  764. status: dandi:OpenAccess
  765. approach: []
  766. blobDateModified: '2024-06-05T14:06:58.542416-04:00'
  767. contentSize: 391360417
  768. contentUrl:
  769. - https://api.dandiarchive.org/api/assets/d4e155af-2e23-4cc2-bc3d-556938b7993e/download/
  770. - https://dandiarchive.s3.amazonaws.com/blobs/720/384/7203846b-a84c-42b0-862a-4e956aa20cad
  771. dateModified: '2024-06-05T14:17:12.129687-04:00'
  772. datePublished: '2024-06-05T18:26:43.600763+00:00'
  773. digest:
  774. dandi:dandi-etag: 1db17e98ae563f1c557405fa7d285ea4-6
  775. dandi:sha2-256: 438e727d28a47aabc30ac432897c93c6b6d102ed6ba5965c152190454d2b2f8a
  776. encodingFormat: application/x-nwb
  777. id: dandiasset:d4e155af-2e23-4cc2-bc3d-556938b7993e
  778. identifier: d4e155af-2e23-4cc2-bc3d-556938b7993e
  779. measurementTechnique: []
  780. path: sub-14/sub-14_image.nwb
  781. publishedBy:
  782. endDate: '2024-06-05T18:26:43.600763+00:00'
  783. id: urn:uuid:e18dea86-b250-48ee-aee1-3bfa9bc16b16
  784. name: DANDI publish
  785. schemaKey: PublishActivity
  786. startDate: '2024-06-05T18:26:43.600763+00:00'
  787. wasAssociatedWith:
  788. - id: urn:uuid:976a1738-74ed-4341-9521-b195a6edf7f6
  789. identifier: RRID:SCR_017571
  790. name: DANDI API
  791. schemaKey: Software
  792. version: 0.1.0
  793. schemaKey: Asset
  794. schemaVersion: 0.6.7
  795. variableMeasured: []
  796. wasAttributedTo:
  797. - age:
  798. schemaKey: PropertyValue
  799. unitText: ISO-8601 duration
  800. value: P1D
  801. valueReference:
  802. schemaKey: PropertyValue
  803. value: dandi:BirthReference
  804. identifier: '14'
  805. schemaKey: Participant
  806. sex:
  807. name: Unknown
  808. schemaKey: SexType
  809. species:
  810. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  811. name: Cricetulus griseus - Cricetulus aureus
  812. schemaKey: SpeciesType
  813. wasGeneratedBy:
  814. - description: 14. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  815. applied at 4.0kV (first pulse) with the subsequent canceling pulses 12.5% lower
  816. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  817. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  818. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  819. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  820. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  821. identifier: single_time_point
  822. name: single_time_point
  823. schemaKey: Session
  824. startDate: '2021-02-16T15:06:41-05:00'
  825. - description: Metadata generated by DANDI cli
  826. endDate: '2024-06-05T14:17:12.129687-04:00'
  827. id: urn:uuid:a21f8be0-28f9-4f60-bec2-52bb5e0f8472
  828. name: Metadata generation
  829. schemaKey: Activity
  830. startDate: '2024-06-05T14:17:12.055666-04:00'
  831. wasAssociatedWith:
  832. - identifier: RRID:SCR_019009
  833. name: DANDI Command Line Interface
  834. schemaKey: Software
  835. url: https://github.com/dandi/dandi-cli
  836. version: 0.62.0
  837. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  838. access:
  839. - schemaKey: AccessRequirements
  840. status: dandi:OpenAccess
  841. approach: []
  842. blobDateModified: '2024-06-05T14:04:25.780348-04:00'
  843. contentSize: 336625201
  844. contentUrl:
  845. - https://api.dandiarchive.org/api/assets/58a37da7-b3dc-44c7-90cf-62fce9ceadb8/download/
  846. - https://dandiarchive.s3.amazonaws.com/blobs/396/69a/39669a67-e8c7-4ad6-9802-f20657555da9
  847. dateModified: '2024-06-05T14:17:47.009378-04:00'
  848. datePublished: '2024-06-05T18:26:43.608029+00:00'
  849. digest:
  850. dandi:dandi-etag: 351cdeaf097c89a37eb155cc6e340ff3-6
  851. dandi:sha2-256: 5ae26cf9fdaa850429b1a5d53cc3de8a64acde6264eab10a6d47052513fe5e22
  852. encodingFormat: application/x-nwb
  853. id: dandiasset:58a37da7-b3dc-44c7-90cf-62fce9ceadb8
  854. identifier: 58a37da7-b3dc-44c7-90cf-62fce9ceadb8
  855. measurementTechnique: []
  856. path: sub-21/sub-21_image.nwb
  857. publishedBy:
  858. endDate: '2024-06-05T18:26:43.608029+00:00'
  859. id: urn:uuid:0992f2af-8e93-4cc6-b7b6-d29db29ef6ce
  860. name: DANDI publish
  861. schemaKey: PublishActivity
  862. startDate: '2024-06-05T18:26:43.608029+00:00'
  863. wasAssociatedWith:
  864. - id: urn:uuid:d3145662-357d-4473-b3df-aa7f504b17da
  865. identifier: RRID:SCR_017571
  866. name: DANDI API
  867. schemaKey: Software
  868. version: 0.1.0
  869. schemaKey: Asset
  870. schemaVersion: 0.6.7
  871. variableMeasured: []
  872. wasAttributedTo:
  873. - age:
  874. schemaKey: PropertyValue
  875. unitText: ISO-8601 duration
  876. value: P1D
  877. valueReference:
  878. schemaKey: PropertyValue
  879. value: dandi:BirthReference
  880. identifier: '21'
  881. schemaKey: Participant
  882. sex:
  883. name: Unknown
  884. schemaKey: SexType
  885. species:
  886. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  887. name: Cricetulus griseus - Cricetulus aureus
  888. schemaKey: SpeciesType
  889. wasGeneratedBy:
  890. - description: 21. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  891. applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  892. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  893. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  894. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  895. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  896. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  897. identifier: single_time_point
  898. name: single_time_point
  899. schemaKey: Session
  900. startDate: '2021-04-02T14:12:17.847000-04:00'
  901. - description: Metadata generated by DANDI cli
  902. endDate: '2024-06-05T14:17:47.009378-04:00'
  903. id: urn:uuid:dc9ce450-a5fa-40cc-b6a8-fc7beb36e612
  904. name: Metadata generation
  905. schemaKey: Activity
  906. startDate: '2024-06-05T14:17:46.913619-04:00'
  907. wasAssociatedWith:
  908. - identifier: RRID:SCR_019009
  909. name: DANDI Command Line Interface
  910. schemaKey: Software
  911. url: https://github.com/dandi/dandi-cli
  912. version: 0.62.0
  913. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  914. access:
  915. - schemaKey: AccessRequirements
  916. status: dandi:OpenAccess
  917. approach: []
  918. blobDateModified: '2024-06-05T14:04:51.915412-04:00'
  919. contentSize: 378345189
  920. contentUrl:
  921. - https://api.dandiarchive.org/api/assets/47b8f4df-ef2f-4e31-910f-f8d30a7265f9/download/
  922. - https://dandiarchive.s3.amazonaws.com/blobs/b3c/7b6/b3c7b6fd-844f-4d6f-8ec9-76e9e0d5c582
  923. dateModified: '2024-06-05T14:17:55.432855-04:00'
  924. datePublished: '2024-06-05T18:26:43.615215+00:00'
  925. digest:
  926. dandi:dandi-etag: 857f2febf3c633760ed51f0848b3cb7a-6
  927. dandi:sha2-256: f0e11b2ca1a764f15e080e2e7fa6de7ccb56a21d1f26205591284c9252446a96
  928. encodingFormat: application/x-nwb
  929. id: dandiasset:47b8f4df-ef2f-4e31-910f-f8d30a7265f9
  930. identifier: 47b8f4df-ef2f-4e31-910f-f8d30a7265f9
  931. measurementTechnique: []
  932. path: sub-23/sub-23_image.nwb
  933. publishedBy:
  934. endDate: '2024-06-05T18:26:43.615215+00:00'
  935. id: urn:uuid:b2b200e6-12a9-41a2-919b-471a48337479
  936. name: DANDI publish
  937. schemaKey: PublishActivity
  938. startDate: '2024-06-05T18:26:43.615215+00:00'
  939. wasAssociatedWith:
  940. - id: urn:uuid:2a5e162b-35c8-400c-ab51-84334c4f47e7
  941. identifier: RRID:SCR_017571
  942. name: DANDI API
  943. schemaKey: Software
  944. version: 0.1.0
  945. schemaKey: Asset
  946. schemaVersion: 0.6.7
  947. variableMeasured: []
  948. wasAttributedTo:
  949. - age:
  950. schemaKey: PropertyValue
  951. unitText: ISO-8601 duration
  952. value: P1D
  953. valueReference:
  954. schemaKey: PropertyValue
  955. value: dandi:BirthReference
  956. identifier: '23'
  957. schemaKey: Participant
  958. sex:
  959. name: Unknown
  960. schemaKey: SexType
  961. species:
  962. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  963. name: Cricetulus griseus - Cricetulus aureus
  964. schemaKey: SpeciesType
  965. wasGeneratedBy:
  966. - description: 23. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  967. applied at 3.2kV (first pulse) with the subsequent canceling pulses 12.5% lower
  968. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  969. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  970. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  971. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  972. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  973. identifier: single_time_point
  974. name: single_time_point
  975. schemaKey: Session
  976. startDate: '2021-02-16T17:03:39-05:00'
  977. - description: Metadata generated by DANDI cli
  978. endDate: '2024-06-05T14:17:55.432855-04:00'
  979. id: urn:uuid:ef92c11f-25f5-44e1-81f0-03cadb4dab7f
  980. name: Metadata generation
  981. schemaKey: Activity
  982. startDate: '2024-06-05T14:17:55.314941-04:00'
  983. wasAssociatedWith:
  984. - identifier: RRID:SCR_019009
  985. name: DANDI Command Line Interface
  986. schemaKey: Software
  987. url: https://github.com/dandi/dandi-cli
  988. version: 0.62.0
  989. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  990. access:
  991. - schemaKey: AccessRequirements
  992. status: dandi:OpenAccess
  993. approach: []
  994. blobDateModified: '2024-06-05T13:59:25.860165-04:00'
  995. contentSize: 914891878
  996. contentUrl:
  997. - https://api.dandiarchive.org/api/assets/62833cf7-2ea0-4f6f-b746-6e05d2e22c8c/download/
  998. - https://dandiarchive.s3.amazonaws.com/blobs/dec/5b9/dec5b9ac-a674-46f6-ab87-2d70578c1714
  999. dateModified: '2024-06-05T14:17:43.302048-04:00'
  1000. datePublished: '2024-06-05T18:26:43.623303+00:00'
  1001. digest:
  1002. dandi:dandi-etag: fa926f96e994dd1add06d689ea849fa5-14
  1003. dandi:sha2-256: 24c2bc7692a7c23ca807f4c8222fdaaa9db83aed34e9c54a3514c9bc219bf15f
  1004. encodingFormat: application/x-nwb
  1005. id: dandiasset:62833cf7-2ea0-4f6f-b746-6e05d2e22c8c
  1006. identifier: 62833cf7-2ea0-4f6f-b746-6e05d2e22c8c
  1007. measurementTechnique: []
  1008. path: sub-15/sub-15_obj-znj27w_image.nwb
  1009. publishedBy:
  1010. endDate: '2024-06-05T18:26:43.623303+00:00'
  1011. id: urn:uuid:5f1528c8-eb4e-4257-8f97-c247b81d182c
  1012. name: DANDI publish
  1013. schemaKey: PublishActivity
  1014. startDate: '2024-06-05T18:26:43.623303+00:00'
  1015. wasAssociatedWith:
  1016. - id: urn:uuid:549eedac-e9e9-41e7-ba82-2c2d7f59437e
  1017. identifier: RRID:SCR_017571
  1018. name: DANDI API
  1019. schemaKey: Software
  1020. version: 0.1.0
  1021. schemaKey: Asset
  1022. schemaVersion: 0.6.7
  1023. variableMeasured: []
  1024. wasAttributedTo:
  1025. - age:
  1026. schemaKey: PropertyValue
  1027. unitText: ISO-8601 duration
  1028. value: P1D
  1029. valueReference:
  1030. schemaKey: PropertyValue
  1031. value: dandi:BirthReference
  1032. identifier: '15'
  1033. schemaKey: Participant
  1034. sex:
  1035. name: Unknown
  1036. schemaKey: SexType
  1037. species:
  1038. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1039. name: Cricetulus griseus - Cricetulus aureus
  1040. schemaKey: SpeciesType
  1041. wasGeneratedBy:
  1042. - description: 15. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1043. applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1044. than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
  1045. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1046. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1047. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1048. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1049. identifier: single_time_point
  1050. name: single_time_point
  1051. schemaKey: Session
  1052. startDate: '2021-05-20T15:49:35-04:00'
  1053. - description: Metadata generated by DANDI cli
  1054. endDate: '2024-06-05T14:17:43.302048-04:00'
  1055. id: urn:uuid:03c20446-31b4-413e-b9f1-3184f5b26bc9
  1056. name: Metadata generation
  1057. schemaKey: Activity
  1058. startDate: '2024-06-05T14:17:43.070824-04:00'
  1059. wasAssociatedWith:
  1060. - identifier: RRID:SCR_019009
  1061. name: DANDI Command Line Interface
  1062. schemaKey: Software
  1063. url: https://github.com/dandi/dandi-cli
  1064. version: 0.62.0
  1065. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1066. access:
  1067. - schemaKey: AccessRequirements
  1068. status: dandi:OpenAccess
  1069. approach: []
  1070. blobDateModified: '2024-06-05T14:04:01.145350-04:00'
  1071. contentSize: 343132488
  1072. contentUrl:
  1073. - https://api.dandiarchive.org/api/assets/b97811be-e95c-4599-9db2-ec4f8229d90b/download/
  1074. - https://dandiarchive.s3.amazonaws.com/blobs/f48/7d0/f487d04f-297b-4ad0-9466-5b4ccfb8d0e9
  1075. dateModified: '2024-06-05T14:17:45.116127-04:00'
  1076. datePublished: '2024-06-05T18:26:43.631212+00:00'
  1077. digest:
  1078. dandi:dandi-etag: c0984eceab7ae88d76dd6944fe211029-6
  1079. dandi:sha2-256: f643c679677afeca91e118b304a640017b1901ac5fc0cb3dfafd6896927d1d9d
  1080. encodingFormat: application/x-nwb
  1081. id: dandiasset:b97811be-e95c-4599-9db2-ec4f8229d90b
  1082. identifier: b97811be-e95c-4599-9db2-ec4f8229d90b
  1083. measurementTechnique: []
  1084. path: sub-17/sub-17_image.nwb
  1085. publishedBy:
  1086. endDate: '2024-06-05T18:26:43.631212+00:00'
  1087. id: urn:uuid:c36df7f0-37cd-463d-949c-dedb205412d1
  1088. name: DANDI publish
  1089. schemaKey: PublishActivity
  1090. startDate: '2024-06-05T18:26:43.631212+00:00'
  1091. wasAssociatedWith:
  1092. - id: urn:uuid:d6266567-8c94-4078-8427-9ca4b2b7fecf
  1093. identifier: RRID:SCR_017571
  1094. name: DANDI API
  1095. schemaKey: Software
  1096. version: 0.1.0
  1097. schemaKey: Asset
  1098. schemaVersion: 0.6.7
  1099. variableMeasured: []
  1100. wasAttributedTo:
  1101. - age:
  1102. schemaKey: PropertyValue
  1103. unitText: ISO-8601 duration
  1104. value: P1D
  1105. valueReference:
  1106. schemaKey: PropertyValue
  1107. value: dandi:BirthReference
  1108. identifier: '17'
  1109. schemaKey: Participant
  1110. sex:
  1111. name: Unknown
  1112. schemaKey: SexType
  1113. species:
  1114. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1115. name: Cricetulus griseus - Cricetulus aureus
  1116. schemaKey: SpeciesType
  1117. wasGeneratedBy:
  1118. - description: 17. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1119. applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1120. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1121. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1122. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1123. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1124. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1125. identifier: single_time_point
  1126. name: single_time_point
  1127. schemaKey: Session
  1128. startDate: '2021-04-02T14:10:48.125000-04:00'
  1129. - description: Metadata generated by DANDI cli
  1130. endDate: '2024-06-05T14:17:45.116127-04:00'
  1131. id: urn:uuid:35b58fc7-07c2-4bd8-b254-eb45ef475e7d
  1132. name: Metadata generation
  1133. schemaKey: Activity
  1134. startDate: '2024-06-05T14:17:44.469986-04:00'
  1135. wasAssociatedWith:
  1136. - identifier: RRID:SCR_019009
  1137. name: DANDI Command Line Interface
  1138. schemaKey: Software
  1139. url: https://github.com/dandi/dandi-cli
  1140. version: 0.62.0
  1141. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1142. access:
  1143. - schemaKey: AccessRequirements
  1144. status: dandi:OpenAccess
  1145. approach: []
  1146. blobDateModified: '2024-06-05T14:03:35.446615-04:00'
  1147. contentSize: 342910002
  1148. contentUrl:
  1149. - https://api.dandiarchive.org/api/assets/3f3410e8-edd3-4231-bf82-48f51ba08d58/download/
  1150. - https://dandiarchive.s3.amazonaws.com/blobs/d2d/2e2/d2d2e21c-f98c-4dda-a328-c1a739f1f7fc
  1151. dateModified: '2024-06-05T14:17:44.776512-04:00'
  1152. datePublished: '2024-06-05T18:26:43.640305+00:00'
  1153. digest:
  1154. dandi:dandi-etag: 094a43eb522b714cf23a45536a6f4294-6
  1155. dandi:sha2-256: 34fe5b7f001daf555b8cdc4568dca658b562e4934ec060394f976856a602d5a2
  1156. encodingFormat: application/x-nwb
  1157. id: dandiasset:3f3410e8-edd3-4231-bf82-48f51ba08d58
  1158. identifier: 3f3410e8-edd3-4231-bf82-48f51ba08d58
  1159. measurementTechnique: []
  1160. path: sub-16/sub-16_image.nwb
  1161. publishedBy:
  1162. endDate: '2024-06-05T18:26:43.640305+00:00'
  1163. id: urn:uuid:92fe03c9-f4de-43df-bcc8-9233222060ba
  1164. name: DANDI publish
  1165. schemaKey: PublishActivity
  1166. startDate: '2024-06-05T18:26:43.640305+00:00'
  1167. wasAssociatedWith:
  1168. - id: urn:uuid:edac8545-0f5c-4b13-abf8-ab3969163214
  1169. identifier: RRID:SCR_017571
  1170. name: DANDI API
  1171. schemaKey: Software
  1172. version: 0.1.0
  1173. schemaKey: Asset
  1174. schemaVersion: 0.6.7
  1175. variableMeasured: []
  1176. wasAttributedTo:
  1177. - age:
  1178. schemaKey: PropertyValue
  1179. unitText: ISO-8601 duration
  1180. value: P1D
  1181. valueReference:
  1182. schemaKey: PropertyValue
  1183. value: dandi:BirthReference
  1184. identifier: '16'
  1185. schemaKey: Participant
  1186. sex:
  1187. name: Unknown
  1188. schemaKey: SexType
  1189. species:
  1190. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1191. name: Cricetulus griseus - Cricetulus aureus
  1192. schemaKey: SpeciesType
  1193. wasGeneratedBy:
  1194. - description: 16. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1195. applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1196. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1197. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1198. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1199. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1200. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1201. identifier: single_time_point
  1202. name: single_time_point
  1203. schemaKey: Session
  1204. startDate: '2021-04-02T14:09:23.660000-04:00'
  1205. - description: Metadata generated by DANDI cli
  1206. endDate: '2024-06-05T14:17:44.776512-04:00'
  1207. id: urn:uuid:b111b5b2-28ce-45f2-865e-5ba78aded3ff
  1208. name: Metadata generation
  1209. schemaKey: Activity
  1210. startDate: '2024-06-05T14:17:43.422978-04:00'
  1211. wasAssociatedWith:
  1212. - identifier: RRID:SCR_019009
  1213. name: DANDI Command Line Interface
  1214. schemaKey: Software
  1215. url: https://github.com/dandi/dandi-cli
  1216. version: 0.62.0
  1217. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1218. access:
  1219. - schemaKey: AccessRequirements
  1220. status: dandi:OpenAccess
  1221. approach: []
  1222. blobDateModified: '2024-06-05T14:05:18.649468-04:00'
  1223. contentSize: 384638638
  1224. contentUrl:
  1225. - https://api.dandiarchive.org/api/assets/663a4867-20b3-417e-a825-e315edc20a7b/download/
  1226. - https://dandiarchive.s3.amazonaws.com/blobs/2d8/868/2d8868d9-9412-430f-819a-cd0ba513aa5b
  1227. dateModified: '2024-06-05T14:18:13.590531-04:00'
  1228. datePublished: '2024-06-05T18:26:43.656816+00:00'
  1229. digest:
  1230. dandi:dandi-etag: 4b550b01f64ebe30a469c325d69cdd5c-6
  1231. dandi:sha2-256: 43c8e0bdbd4f8b3686963741a1d56bc5fca9d276253f272db0df91e52446abcd
  1232. encodingFormat: application/x-nwb
  1233. id: dandiasset:663a4867-20b3-417e-a825-e315edc20a7b
  1234. identifier: 663a4867-20b3-417e-a825-e315edc20a7b
  1235. measurementTechnique: []
  1236. path: sub-24/sub-24_image.nwb
  1237. publishedBy:
  1238. endDate: '2024-06-05T18:26:43.656816+00:00'
  1239. id: urn:uuid:a781dee7-0952-47e2-8cc7-40980b7f514d
  1240. name: DANDI publish
  1241. schemaKey: PublishActivity
  1242. startDate: '2024-06-05T18:26:43.656816+00:00'
  1243. wasAssociatedWith:
  1244. - id: urn:uuid:8f0f4a5d-fac5-404e-a211-f46b6adf7430
  1245. identifier: RRID:SCR_017571
  1246. name: DANDI API
  1247. schemaKey: Software
  1248. version: 0.1.0
  1249. schemaKey: Asset
  1250. schemaVersion: 0.6.7
  1251. variableMeasured: []
  1252. wasAttributedTo:
  1253. - age:
  1254. schemaKey: PropertyValue
  1255. unitText: ISO-8601 duration
  1256. value: P1D
  1257. valueReference:
  1258. schemaKey: PropertyValue
  1259. value: dandi:BirthReference
  1260. identifier: '24'
  1261. schemaKey: Participant
  1262. sex:
  1263. name: Unknown
  1264. schemaKey: SexType
  1265. species:
  1266. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1267. name: Cricetulus griseus - Cricetulus aureus
  1268. schemaKey: SpeciesType
  1269. wasGeneratedBy:
  1270. - description: 24. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1271. applied at 3.2kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1272. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1273. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1274. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1275. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1276. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1277. identifier: single_time_point
  1278. name: single_time_point
  1279. schemaKey: Session
  1280. startDate: '2021-02-16T17:09:42-05:00'
  1281. - description: Metadata generated by DANDI cli
  1282. endDate: '2024-06-05T14:18:13.590531-04:00'
  1283. id: urn:uuid:4f93ba55-9975-490b-b330-5636ea401548
  1284. name: Metadata generation
  1285. schemaKey: Activity
  1286. startDate: '2024-06-05T14:18:13.517420-04:00'
  1287. wasAssociatedWith:
  1288. - identifier: RRID:SCR_019009
  1289. name: DANDI Command Line Interface
  1290. schemaKey: Software
  1291. url: https://github.com/dandi/dandi-cli
  1292. version: 0.62.0
  1293. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1294. access:
  1295. - schemaKey: AccessRequirements
  1296. status: dandi:OpenAccess
  1297. approach: []
  1298. blobDateModified: '2024-06-05T14:08:41.962460-04:00'
  1299. contentSize: 397805018
  1300. contentUrl:
  1301. - https://api.dandiarchive.org/api/assets/87248d3c-f65b-4b86-b865-8e31a80d3311/download/
  1302. - https://dandiarchive.s3.amazonaws.com/blobs/d13/ab2/d13ab2e6-8187-4f80-891d-49e64aff4209
  1303. dateModified: '2024-06-05T14:18:30.760300-04:00'
  1304. datePublished: '2024-06-05T18:26:43.665970+00:00'
  1305. digest:
  1306. dandi:dandi-etag: dc2eb0769a55724962b5f04e7b6c1b87-6
  1307. dandi:sha2-256: 9532536e57729698d171a10cc404303246db4b79de88fcc53e17653a03e988d6
  1308. encodingFormat: application/x-nwb
  1309. id: dandiasset:87248d3c-f65b-4b86-b865-8e31a80d3311
  1310. identifier: 87248d3c-f65b-4b86-b865-8e31a80d3311
  1311. measurementTechnique: []
  1312. path: sub-25/sub-25_obj-17bqgcb_image.nwb
  1313. publishedBy:
  1314. endDate: '2024-06-05T18:26:43.665970+00:00'
  1315. id: urn:uuid:8b710af7-31da-4291-807e-3eb1228fb8eb
  1316. name: DANDI publish
  1317. schemaKey: PublishActivity
  1318. startDate: '2024-06-05T18:26:43.665970+00:00'
  1319. wasAssociatedWith:
  1320. - id: urn:uuid:b46b99a2-256d-435e-9fd6-b85c109b24d6
  1321. identifier: RRID:SCR_017571
  1322. name: DANDI API
  1323. schemaKey: Software
  1324. version: 0.1.0
  1325. schemaKey: Asset
  1326. schemaVersion: 0.6.7
  1327. variableMeasured: []
  1328. wasAttributedTo:
  1329. - age:
  1330. schemaKey: PropertyValue
  1331. unitText: ISO-8601 duration
  1332. value: P1D
  1333. valueReference:
  1334. schemaKey: PropertyValue
  1335. value: dandi:BirthReference
  1336. identifier: '25'
  1337. schemaKey: Participant
  1338. sex:
  1339. name: Unknown
  1340. schemaKey: SexType
  1341. species:
  1342. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1343. name: Cricetulus griseus - Cricetulus aureus
  1344. schemaKey: SpeciesType
  1345. wasGeneratedBy:
  1346. - description: 25. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1347. applied at 5.6kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1348. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1349. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1350. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1351. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1352. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1353. identifier: single_time_point
  1354. name: single_time_point
  1355. schemaKey: Session
  1356. startDate: '2021-03-11T16:29:39-05:00'
  1357. - description: Metadata generated by DANDI cli
  1358. endDate: '2024-06-05T14:18:30.760300-04:00'
  1359. id: urn:uuid:418dd863-890a-4a8d-9c0d-f7cc5f068311
  1360. name: Metadata generation
  1361. schemaKey: Activity
  1362. startDate: '2024-06-05T14:18:30.669023-04:00'
  1363. wasAssociatedWith:
  1364. - identifier: RRID:SCR_019009
  1365. name: DANDI Command Line Interface
  1366. schemaKey: Software
  1367. url: https://github.com/dandi/dandi-cli
  1368. version: 0.62.0
  1369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1370. access:
  1371. - schemaKey: AccessRequirements
  1372. status: dandi:OpenAccess
  1373. approach: []
  1374. blobDateModified: '2024-06-05T14:05:43.264012-04:00'
  1375. contentSize: 370707200
  1376. contentUrl:
  1377. - https://api.dandiarchive.org/api/assets/8de3fa55-b438-4ec2-8a06-1a3d8e0dde89/download/
  1378. - https://dandiarchive.s3.amazonaws.com/blobs/aef/232/aef2324f-dff3-4c5a-95c1-b570cb6f90d5
  1379. dateModified: '2024-06-05T14:18:32.792009-04:00'
  1380. datePublished: '2024-06-05T18:26:43.674311+00:00'
  1381. digest:
  1382. dandi:dandi-etag: ae3f7a549e9e744132a079219725cb8e-6
  1383. dandi:sha2-256: 518931ba01567018e2d5f5e62d20df611bdc5cdfe8315f211376f9c84aab5d4c
  1384. encodingFormat: application/x-nwb
  1385. id: dandiasset:8de3fa55-b438-4ec2-8a06-1a3d8e0dde89
  1386. identifier: 8de3fa55-b438-4ec2-8a06-1a3d8e0dde89
  1387. measurementTechnique: []
  1388. path: sub-25/sub-25_obj-1of0oop_image.nwb
  1389. publishedBy:
  1390. endDate: '2024-06-05T18:26:43.674311+00:00'
  1391. id: urn:uuid:5c0880a5-7c04-416d-b546-0e7780d3dac5
  1392. name: DANDI publish
  1393. schemaKey: PublishActivity
  1394. startDate: '2024-06-05T18:26:43.674311+00:00'
  1395. wasAssociatedWith:
  1396. - id: urn:uuid:8c0f98af-0f38-4624-be10-144992adee8d
  1397. identifier: RRID:SCR_017571
  1398. name: DANDI API
  1399. schemaKey: Software
  1400. version: 0.1.0
  1401. schemaKey: Asset
  1402. schemaVersion: 0.6.7
  1403. variableMeasured: []
  1404. wasAttributedTo:
  1405. - age:
  1406. schemaKey: PropertyValue
  1407. unitText: ISO-8601 duration
  1408. value: P1D
  1409. valueReference:
  1410. schemaKey: PropertyValue
  1411. value: dandi:BirthReference
  1412. identifier: '25'
  1413. schemaKey: Participant
  1414. sex:
  1415. name: Unknown
  1416. schemaKey: SexType
  1417. species:
  1418. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1419. name: Cricetulus griseus - Cricetulus aureus
  1420. schemaKey: SpeciesType
  1421. wasGeneratedBy:
  1422. - description: 25. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1423. applied at 3.2kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1424. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1425. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1426. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1427. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1428. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1429. identifier: single_time_point
  1430. name: single_time_point
  1431. schemaKey: Session
  1432. startDate: '2021-02-16T17:15:04-05:00'
  1433. - description: Metadata generated by DANDI cli
  1434. endDate: '2024-06-05T14:18:32.792009-04:00'
  1435. id: urn:uuid:40226fb8-787b-425b-9aa0-747d1821f800
  1436. name: Metadata generation
  1437. schemaKey: Activity
  1438. startDate: '2024-06-05T14:18:32.600423-04:00'
  1439. wasAssociatedWith:
  1440. - identifier: RRID:SCR_019009
  1441. name: DANDI Command Line Interface
  1442. schemaKey: Software
  1443. url: https://github.com/dandi/dandi-cli
  1444. version: 0.62.0
  1445. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1446. access:
  1447. - schemaKey: AccessRequirements
  1448. status: dandi:OpenAccess
  1449. approach: []
  1450. blobDateModified: '2024-06-05T14:09:07.479662-04:00'
  1451. contentSize: 391586615
  1452. contentUrl:
  1453. - https://api.dandiarchive.org/api/assets/e65eaf63-d620-4c7d-9981-039243e35d44/download/
  1454. - https://dandiarchive.s3.amazonaws.com/blobs/b34/1d6/b341d67a-f7ba-4a72-8de7-0053088c9481
  1455. dateModified: '2024-06-05T14:18:32.184735-04:00'
  1456. datePublished: '2024-06-05T18:26:43.682104+00:00'
  1457. digest:
  1458. dandi:dandi-etag: d470917c24396cff4c3ce42f7f3d4da8-6
  1459. dandi:sha2-256: 20cd92beb328200e945565b8f17ed03be7ffcafd86e896bb1c9526a2c6c47c0c
  1460. encodingFormat: application/x-nwb
  1461. id: dandiasset:e65eaf63-d620-4c7d-9981-039243e35d44
  1462. identifier: e65eaf63-d620-4c7d-9981-039243e35d44
  1463. measurementTechnique: []
  1464. path: sub-26/sub-26_image.nwb
  1465. publishedBy:
  1466. endDate: '2024-06-05T18:26:43.682104+00:00'
  1467. id: urn:uuid:4e99e28a-779b-41f6-899d-9b983beafb57
  1468. name: DANDI publish
  1469. schemaKey: PublishActivity
  1470. startDate: '2024-06-05T18:26:43.682104+00:00'
  1471. wasAssociatedWith:
  1472. - id: urn:uuid:d9bb244c-3769-4ee1-a2bd-90be11b86ea5
  1473. identifier: RRID:SCR_017571
  1474. name: DANDI API
  1475. schemaKey: Software
  1476. version: 0.1.0
  1477. schemaKey: Asset
  1478. schemaVersion: 0.6.7
  1479. variableMeasured: []
  1480. wasAttributedTo:
  1481. - age:
  1482. schemaKey: PropertyValue
  1483. unitText: ISO-8601 duration
  1484. value: P1D
  1485. valueReference:
  1486. schemaKey: PropertyValue
  1487. value: dandi:BirthReference
  1488. identifier: '26'
  1489. schemaKey: Participant
  1490. sex:
  1491. name: Unknown
  1492. schemaKey: SexType
  1493. species:
  1494. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1495. name: Cricetulus griseus - Cricetulus aureus
  1496. schemaKey: SpeciesType
  1497. wasGeneratedBy:
  1498. - description: 26. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1499. applied at 5.6kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1500. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1501. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1502. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1503. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1504. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1505. identifier: single_time_point
  1506. name: single_time_point
  1507. schemaKey: Session
  1508. startDate: '2021-03-11T16:34:15-05:00'
  1509. - description: Metadata generated by DANDI cli
  1510. endDate: '2024-06-05T14:18:32.184735-04:00'
  1511. id: urn:uuid:6f55a361-2de5-4ce8-ac6f-a7ed4db61a9c
  1512. name: Metadata generation
  1513. schemaKey: Activity
  1514. startDate: '2024-06-05T14:18:32.065739-04:00'
  1515. wasAssociatedWith:
  1516. - identifier: RRID:SCR_019009
  1517. name: DANDI Command Line Interface
  1518. schemaKey: Software
  1519. url: https://github.com/dandi/dandi-cli
  1520. version: 0.62.0
  1521. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
  1522. access:
  1523. - schemaKey: AccessRequirements
  1524. status: dandi:OpenAccess
  1525. approach: []
  1526. blobDateModified: '2024-06-05T14:09:31.757162-04:00'
  1527. contentSize: 391124788
  1528. contentUrl:
  1529. - https://api.dandiarchive.org/api/assets/598c59cb-84ec-4a12-b2ba-9152654f13bc/download/
  1530. - https://dandiarchive.s3.amazonaws.com/blobs/740/adb/740adb71-44de-4361-99f9-39e7f2239466
  1531. dateModified: '2024-06-05T14:18:33.308829-04:00'
  1532. datePublished: '2024-06-05T18:26:43.691554+00:00'
  1533. digest:
  1534. dandi:dandi-etag: 99b1430ff9bb3217135a7366fde3092a-6
  1535. dandi:sha2-256: 5a6062a06be0f9fa427e02fc1c8c9bd2322f0b54450babd5a12aae20529ba898
  1536. encodingFormat: application/x-nwb
  1537. id: dandiasset:598c59cb-84ec-4a12-b2ba-9152654f13bc
  1538. identifier: 598c59cb-84ec-4a12-b2ba-9152654f13bc
  1539. measurementTechnique: []
  1540. path: sub-27/sub-27_image.nwb
  1541. publishedBy:
  1542. endDate: '2024-06-05T18:26:43.691554+00:00'
  1543. id: urn:uuid:19514263-8638-43cd-b56b-7ed912a76799
  1544. name: DANDI publish
  1545. schemaKey: PublishActivity
  1546. startDate: '2024-06-05T18:26:43.691554+00:00'
  1547. wasAssociatedWith:
  1548. - id: urn:uuid:df1c3459-2dc9-4257-9b25-eb7a312eb197
  1549. identifier: RRID:SCR_017571
  1550. name: DANDI API
  1551. schemaKey: Software
  1552. version: 0.1.0
  1553. schemaKey: Asset
  1554. schemaVersion: 0.6.7
  1555. variableMeasured: []
  1556. wasAttributedTo:
  1557. - age:
  1558. schemaKey: PropertyValue
  1559. unitText: ISO-8601 duration
  1560. value: P1D
  1561. valueReference:
  1562. schemaKey: PropertyValue
  1563. value: dandi:BirthReference
  1564. identifier: '27'
  1565. schemaKey: Participant
  1566. sex:
  1567. name: Unknown
  1568. schemaKey: SexType
  1569. species:
  1570. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
  1571. name: Cricetulus griseus - Cricetulus aureus
  1572. schemaKey: SpeciesType
  1573. wasGeneratedBy:
  1574. - description: 27. Experiments were conducted in a 4 electrodes setup. CanCan protocol
  1575. applied at 5.6kV (first pulse) with the subsequent canceling pulses 12.5% lower
  1576. than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
  1577. at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
  1578. with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
  1579. were active pulse electrodes. Detailed information on pulsing parameters, electrodes
  1580. and procedures can be found in 10.1016/j.bioelechem.2023.108437.
  1581. identifier: single_time_point
  1582. name: single_time_point
  1583. schemaKey: Session
  1584. startDate: '2021-03-11T16:40:11-05:00'
  1585. - description: Metadata generated by DANDI cli
  1586. endDate: '2024-06-05T14:18:33.307830-04:00'
  1587. id: urn:uuid:e797181a-55eb-4cc4-8878-171fff12da78
  1588. name: Metadata generation
  1589. schemaKey: Activity
  1590. startDate: '2024-06-05T14:18:33.217390-04:00'
  1591. wasAssociatedWith:
  1592. - identifier: RRID:SCR_019009
  1593. name: DANDI Command Line Interface
  1594. schemaKey: Software
  1595. url: https://github.com/dandi/dandi-cli
  1596. version: 0.62.0
Tip!

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

Comments

Loading...