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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:06:08.129275-04:00'
contentSize: 377713602
contentUrl:
- https://api.dandiarchive.org/api/assets/7120b514-55e5-4667-bff6-531f40ccb45e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bcf/c8a/bcfc8a79-38e1-48f9-88b2-184496e4e70d
dateModified: '2024-06-05T14:15:57.950772-04:00'
datePublished: '2024-06-05T18:26:43.511155+00:00'
digest:
dandi:dandi-etag: e097958a5776e2dc61125510e7321121-6
dandi:sha2-256: d1254958dde3f2e20acf07b2ec0a81af2b4a9527e175c99d6027112d782a213f
encodingFormat: application/x-nwb
id: dandiasset:7120b514-55e5-4667-bff6-531f40ccb45e
identifier: 7120b514-55e5-4667-bff6-531f40ccb45e
measurementTechnique: []
path: sub-03/sub-03_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.511155+00:00'
id: urn:uuid:f0c81553-0e4b-45da-865a-8ada7a9a06fe
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.511155+00:00'
wasAssociatedWith:
- id: urn:uuid:9779c7d4-8afe-487e-a93f-9e9860db50b1
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '03'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 03. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.0kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-16T13:25:04-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:15:57.950772-04:00'
id: urn:uuid:c87d65cd-ad1f-4f80-a727-32fe62e0c4eb
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:15:56.726442-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:07:24.260613-04:00'
contentSize: 389920086
contentUrl:
- https://api.dandiarchive.org/api/assets/61ef6724-fb2f-4681-b03a-6efdedeaaffc/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c8c/69b/c8c69b8f-6820-4092-95de-ecee425b1255
dateModified: '2024-06-05T14:15:57.950772-04:00'
datePublished: '2024-06-05T18:26:43.522228+00:00'
digest:
dandi:dandi-etag: 3ca2cf0a2d30d1fb4c64c2fc56d8d3c2-6
dandi:sha2-256: 8a3953e083cec28a45e2bff18f8ee4a11d08b64724a86e4837421dec05a7c8df
encodingFormat: application/x-nwb
id: dandiasset:61ef6724-fb2f-4681-b03a-6efdedeaaffc
identifier: 61ef6724-fb2f-4681-b03a-6efdedeaaffc
measurementTechnique: []
path: sub-05/sub-05_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.522228+00:00'
id: urn:uuid:67a4d4ad-0899-49d8-a4e1-1ccfaadadeda
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.522228+00:00'
wasAssociatedWith:
- id: urn:uuid:ffdeeadd-fc0a-42b4-989f-8ea9642cbaa1
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '05'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 05. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-17T14:44:18.857000-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:15:57.950772-04:00'
id: urn:uuid:7327ec1c-7730-4ac0-9de8-726743d24bfc
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:15:56.848656-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T13:58:19.760539-04:00'
contentSize: 909738187
contentUrl:
- https://api.dandiarchive.org/api/assets/556e871d-4242-46cc-9be6-b2070ec6c290/download/
- https://dandiarchive.s3.amazonaws.com/blobs/6f9/31e/6f931ea9-89fd-44cd-8bc5-247df16eaaeb
dateModified: '2024-06-05T14:15:59.375351-04:00'
datePublished: '2024-06-05T18:26:43.529439+00:00'
digest:
dandi:dandi-etag: 24c11234d2675a19206f227e49c839be-14
dandi:sha2-256: a448e98e0a2fd059fec0b3216d58ad0c641e266932447788844374a617db1625
encodingFormat: application/x-nwb
id: dandiasset:556e871d-4242-46cc-9be6-b2070ec6c290
identifier: 556e871d-4242-46cc-9be6-b2070ec6c290
measurementTechnique: []
path: sub-02/sub-02_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.529439+00:00'
id: urn:uuid:d2b88590-b769-4408-8944-ba705211bffa
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.529439+00:00'
wasAssociatedWith:
- id: urn:uuid:862e3bad-4c52-4cc8-9600-47b6d488878b
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '02'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 02. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-05-20T12:49:16-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:15:59.375351-04:00'
id: urn:uuid:65c22177-8c98-43fb-9a59-b6bffd1bd232
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:15:59.274843-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:00:44.542282-04:00'
contentSize: 944432790
contentUrl:
- https://api.dandiarchive.org/api/assets/92414055-7322-4756-bd26-cda927e8eccf/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f2d/77d/f2d77d09-f8d3-48ea-8481-ac6ef479901c
dateModified: '2024-06-05T14:16:00.452417-04:00'
datePublished: '2024-06-05T18:26:43.537207+00:00'
digest:
dandi:dandi-etag: 84a8140b37e85b567cc1dca1a6fb808a-15
dandi:sha2-256: 68c8b4eee6262519eea9ad5e492abf9a88a4a28da7d06e6f4ef4fa2269731ce9
encodingFormat: application/x-nwb
id: dandiasset:92414055-7322-4756-bd26-cda927e8eccf
identifier: 92414055-7322-4756-bd26-cda927e8eccf
measurementTechnique: []
path: sub-04/sub-04_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.537207+00:00'
id: urn:uuid:dc265c24-ecdb-46e6-b452-8ff4990ad22e
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.537207+00:00'
wasAssociatedWith:
- id: urn:uuid:607e5549-2f7d-4c56-9672-24c224549401
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '04'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 04. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 6.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-05-20T13:17:02-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:16:00.452417-04:00'
id: urn:uuid:e070819f-710f-43cd-bda4-9b33484f17de
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:16:00.363098-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:01:47.798108-04:00'
contentSize: 946166674
contentUrl:
- https://api.dandiarchive.org/api/assets/551047fe-a5c3-4bd1-a134-565369803b3e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/606/a5c/606a5c87-b7e0-49dd-b6d4-a360a0a6ae36
dateModified: '2024-06-05T14:15:59.710975-04:00'
datePublished: '2024-06-05T18:26:43.547349+00:00'
digest:
dandi:dandi-etag: ed8d44ddeb6ca082f596c81f46df1372-15
dandi:sha2-256: a44ebf7be3a1498a6a2d36c562f1a5e72792d4905fe604c66612600206ed7837
encodingFormat: application/x-nwb
id: dandiasset:551047fe-a5c3-4bd1-a134-565369803b3e
identifier: 551047fe-a5c3-4bd1-a134-565369803b3e
measurementTechnique: []
path: sub-07/sub-07_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.547349+00:00'
id: urn:uuid:c327a370-4ae0-475b-9628-65a983e20ae6
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.547349+00:00'
wasAssociatedWith:
- id: urn:uuid:b8bf6440-1370-4fd8-9e94-3dac2f407e8e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '07'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 07. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 6.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-05-20T14:40:14-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:15:59.710975-04:00'
id: urn:uuid:a86f2a65-0f75-4e94-866a-3d3605513f55
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:15:59.630576-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:06:33.231716-04:00'
contentSize: 388019153
contentUrl:
- https://api.dandiarchive.org/api/assets/51f72930-7d82-41ba-9625-2b186c6aaaa1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/c56/313/c56313b2-65a7-433f-a938-7dae0e1601c0
dateModified: '2024-06-05T14:16:35.819999-04:00'
datePublished: '2024-06-05T18:26:43.555636+00:00'
digest:
dandi:dandi-etag: 6043a562dfcb88e0f8195c04bf9f48ef-6
dandi:sha2-256: 49421f3dc0173acc7e9ed8500fdc50cf744f1f98ac1f0487751f6b68fc0fc4d3
encodingFormat: application/x-nwb
id: dandiasset:51f72930-7d82-41ba-9625-2b186c6aaaa1
identifier: 51f72930-7d82-41ba-9625-2b186c6aaaa1
measurementTechnique: []
path: sub-08/sub-08_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.555636+00:00'
id: urn:uuid:10090a4d-1b79-47b1-a741-08e6a21e008b
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.555636+00:00'
wasAssociatedWith:
- id: urn:uuid:6bbded4f-8460-4632-8bac-58cd9d307bea
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: 08
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 08. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.0kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-16T14:04:37-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:16:35.819999-04:00'
id: urn:uuid:d13ea1cd-6531-427b-9f07-4c24a77da791
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:16:35.760793-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:02:50.486479-04:00'
contentSize: 949868521
contentUrl:
- https://api.dandiarchive.org/api/assets/1ffc9388-0d07-407d-a718-82f0d77bbe5e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/385/c63/385c6357-e62f-49e4-9795-baea98312795
dateModified: '2024-06-05T14:16:44.799646-04:00'
datePublished: '2024-06-05T18:26:43.566886+00:00'
digest:
dandi:dandi-etag: b85cf8bcfd2026c9873e67e1a9609f0d-15
dandi:sha2-256: 0c9e560a20abcb40f6c95efc11adc337949e0d938e5fc2571fcbebe08e0a742d
encodingFormat: application/x-nwb
id: dandiasset:1ffc9388-0d07-407d-a718-82f0d77bbe5e
identifier: 1ffc9388-0d07-407d-a718-82f0d77bbe5e
measurementTechnique: []
path: sub-11/sub-11_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.566886+00:00'
id: urn:uuid:522f0c7a-ebe7-4650-b30b-be6689c5d6b8
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.566886+00:00'
wasAssociatedWith:
- id: urn:uuid:de8781e1-cfda-45b9-a992-66d46f2df045
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '11'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 11. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 6.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-05-20T15:15:58-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:16:44.799646-04:00'
id: urn:uuid:4ce65bd3-7acb-4094-bd88-d67bf6f0b499
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:16:44.738846-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:07:49.542240-04:00'
contentSize: 400229537
contentUrl:
- https://api.dandiarchive.org/api/assets/a23acc70-1cee-4c58-8c29-5bb06bbb9186/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0cb/b31/0cbb3125-fc72-4a6a-999f-73818b3d07e7
dateModified: '2024-06-05T14:17:06.637779-04:00'
datePublished: '2024-06-05T18:26:43.577461+00:00'
digest:
dandi:dandi-etag: 2bd64a751596dee50adf5fd40f709535-6
dandi:sha2-256: f0479d5be926c1fd3576d208a56e6ea7ffc248127410b8e42d602cb79dedf7ec
encodingFormat: application/x-nwb
id: dandiasset:a23acc70-1cee-4c58-8c29-5bb06bbb9186
identifier: a23acc70-1cee-4c58-8c29-5bb06bbb9186
measurementTechnique: []
path: sub-12/sub-12_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.577461+00:00'
id: urn:uuid:22b8f513-90a9-48ea-bea9-b804d8ad8527
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.577461+00:00'
wasAssociatedWith:
- id: urn:uuid:16c273c0-d096-4014-948c-ff1fa6561fe3
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '12'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 12. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-04-02T14:02:07.632000-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:06.637779-04:00'
id: urn:uuid:f50256f4-71b1-456e-bc2a-e99aa7dba1eb
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:06.567912-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:08:15.815279-04:00'
contentSize: 398726025
contentUrl:
- https://api.dandiarchive.org/api/assets/43376719-03bd-4b16-9a66-fdd91bf43b45/download/
- https://dandiarchive.s3.amazonaws.com/blobs/71a/db4/71adb470-3fc3-48d0-8a08-7ffda0431b3d
dateModified: '2024-06-05T14:17:06.854238-04:00'
datePublished: '2024-06-05T18:26:43.585451+00:00'
digest:
dandi:dandi-etag: 1abf95d0f3a2ce9446110de5aee231d5-6
dandi:sha2-256: 550c85f996126d2531c16ed6670627f38eaa29a6d668206ab186beacd4167f6a
encodingFormat: application/x-nwb
id: dandiasset:43376719-03bd-4b16-9a66-fdd91bf43b45
identifier: 43376719-03bd-4b16-9a66-fdd91bf43b45
measurementTechnique: []
path: sub-13/sub-13_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.585451+00:00'
id: urn:uuid:a01ecef0-4dc9-45ea-9fde-e9c57e8acd8f
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.585451+00:00'
wasAssociatedWith:
- id: urn:uuid:ac6986e8-dc88-446e-a7be-a71dc58bcb1f
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '13'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 13. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-04-02T14:03:26.172000-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:06.854238-04:00'
id: urn:uuid:878930c3-574c-4895-9c77-c37a841414bd
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:06.781603-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:03:11.879572-04:00'
contentSize: 342537123
contentUrl:
- https://api.dandiarchive.org/api/assets/84a42084-73c5-419e-bc4b-8d7fdd63bd02/download/
- https://dandiarchive.s3.amazonaws.com/blobs/799/e22/799e2284-12fb-4d17-a460-9e87471a3abb
dateModified: '2024-06-05T14:17:31.228244-04:00'
datePublished: '2024-06-05T18:26:43.593337+00:00'
digest:
dandi:dandi-etag: efec60284163e8c6b43632000f745843-6
dandi:sha2-256: 333a770592a6f778c69dfe144df089526dcabbbfc4e426f10f967ee765aa29fc
encodingFormat: application/x-nwb
id: dandiasset:84a42084-73c5-419e-bc4b-8d7fdd63bd02
identifier: 84a42084-73c5-419e-bc4b-8d7fdd63bd02
measurementTechnique: []
path: sub-15/sub-15_obj-t7o4u3_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.593337+00:00'
id: urn:uuid:e12af89f-b9ce-482c-8572-f50cf20c8f54
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.593337+00:00'
wasAssociatedWith:
- id: urn:uuid:cedab1fe-f9bb-4462-8202-f08d1cb52f6e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '15'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 15. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-04-02T14:07:47.831000-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:31.228244-04:00'
id: urn:uuid:32c0aae6-6f3c-4750-b847-4819c4771aa3
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:31.164695-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:06:58.542416-04:00'
contentSize: 391360417
contentUrl:
- https://api.dandiarchive.org/api/assets/d4e155af-2e23-4cc2-bc3d-556938b7993e/download/
- https://dandiarchive.s3.amazonaws.com/blobs/720/384/7203846b-a84c-42b0-862a-4e956aa20cad
dateModified: '2024-06-05T14:17:12.129687-04:00'
datePublished: '2024-06-05T18:26:43.600763+00:00'
digest:
dandi:dandi-etag: 1db17e98ae563f1c557405fa7d285ea4-6
dandi:sha2-256: 438e727d28a47aabc30ac432897c93c6b6d102ed6ba5965c152190454d2b2f8a
encodingFormat: application/x-nwb
id: dandiasset:d4e155af-2e23-4cc2-bc3d-556938b7993e
identifier: d4e155af-2e23-4cc2-bc3d-556938b7993e
measurementTechnique: []
path: sub-14/sub-14_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.600763+00:00'
id: urn:uuid:e18dea86-b250-48ee-aee1-3bfa9bc16b16
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.600763+00:00'
wasAssociatedWith:
- id: urn:uuid:976a1738-74ed-4341-9521-b195a6edf7f6
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '14'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 14. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.0kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-16T15:06:41-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:12.129687-04:00'
id: urn:uuid:a21f8be0-28f9-4f60-bec2-52bb5e0f8472
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:12.055666-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:04:25.780348-04:00'
contentSize: 336625201
contentUrl:
- https://api.dandiarchive.org/api/assets/58a37da7-b3dc-44c7-90cf-62fce9ceadb8/download/
- https://dandiarchive.s3.amazonaws.com/blobs/396/69a/39669a67-e8c7-4ad6-9802-f20657555da9
dateModified: '2024-06-05T14:17:47.009378-04:00'
datePublished: '2024-06-05T18:26:43.608029+00:00'
digest:
dandi:dandi-etag: 351cdeaf097c89a37eb155cc6e340ff3-6
dandi:sha2-256: 5ae26cf9fdaa850429b1a5d53cc3de8a64acde6264eab10a6d47052513fe5e22
encodingFormat: application/x-nwb
id: dandiasset:58a37da7-b3dc-44c7-90cf-62fce9ceadb8
identifier: 58a37da7-b3dc-44c7-90cf-62fce9ceadb8
measurementTechnique: []
path: sub-21/sub-21_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.608029+00:00'
id: urn:uuid:0992f2af-8e93-4cc6-b7b6-d29db29ef6ce
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.608029+00:00'
wasAssociatedWith:
- id: urn:uuid:d3145662-357d-4473-b3df-aa7f504b17da
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '21'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 21. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-04-02T14:12:17.847000-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:47.009378-04:00'
id: urn:uuid:dc9ce450-a5fa-40cc-b6a8-fc7beb36e612
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:46.913619-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:04:51.915412-04:00'
contentSize: 378345189
contentUrl:
- https://api.dandiarchive.org/api/assets/47b8f4df-ef2f-4e31-910f-f8d30a7265f9/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b3c/7b6/b3c7b6fd-844f-4d6f-8ec9-76e9e0d5c582
dateModified: '2024-06-05T14:17:55.432855-04:00'
datePublished: '2024-06-05T18:26:43.615215+00:00'
digest:
dandi:dandi-etag: 857f2febf3c633760ed51f0848b3cb7a-6
dandi:sha2-256: f0e11b2ca1a764f15e080e2e7fa6de7ccb56a21d1f26205591284c9252446a96
encodingFormat: application/x-nwb
id: dandiasset:47b8f4df-ef2f-4e31-910f-f8d30a7265f9
identifier: 47b8f4df-ef2f-4e31-910f-f8d30a7265f9
measurementTechnique: []
path: sub-23/sub-23_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.615215+00:00'
id: urn:uuid:b2b200e6-12a9-41a2-919b-471a48337479
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.615215+00:00'
wasAssociatedWith:
- id: urn:uuid:2a5e162b-35c8-400c-ab51-84334c4f47e7
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '23'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 23. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 3.2kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-16T17:03:39-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:55.432855-04:00'
id: urn:uuid:ef92c11f-25f5-44e1-81f0-03cadb4dab7f
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:55.314941-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T13:59:25.860165-04:00'
contentSize: 914891878
contentUrl:
- https://api.dandiarchive.org/api/assets/62833cf7-2ea0-4f6f-b746-6e05d2e22c8c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/dec/5b9/dec5b9ac-a674-46f6-ab87-2d70578c1714
dateModified: '2024-06-05T14:17:43.302048-04:00'
datePublished: '2024-06-05T18:26:43.623303+00:00'
digest:
dandi:dandi-etag: fa926f96e994dd1add06d689ea849fa5-14
dandi:sha2-256: 24c2bc7692a7c23ca807f4c8222fdaaa9db83aed34e9c54a3514c9bc219bf15f
encodingFormat: application/x-nwb
id: dandiasset:62833cf7-2ea0-4f6f-b746-6e05d2e22c8c
identifier: 62833cf7-2ea0-4f6f-b746-6e05d2e22c8c
measurementTechnique: []
path: sub-15/sub-15_obj-znj27w_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.623303+00:00'
id: urn:uuid:5f1528c8-eb4e-4257-8f97-c247b81d182c
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.623303+00:00'
wasAssociatedWith:
- id: urn:uuid:549eedac-e9e9-41e7-ba82-2c2d7f59437e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '15'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 15. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 4.8kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 10 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-05-20T15:49:35-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:43.302048-04:00'
id: urn:uuid:03c20446-31b4-413e-b9f1-3184f5b26bc9
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:43.070824-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:04:01.145350-04:00'
contentSize: 343132488
contentUrl:
- https://api.dandiarchive.org/api/assets/b97811be-e95c-4599-9db2-ec4f8229d90b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f48/7d0/f487d04f-297b-4ad0-9466-5b4ccfb8d0e9
dateModified: '2024-06-05T14:17:45.116127-04:00'
datePublished: '2024-06-05T18:26:43.631212+00:00'
digest:
dandi:dandi-etag: c0984eceab7ae88d76dd6944fe211029-6
dandi:sha2-256: f643c679677afeca91e118b304a640017b1901ac5fc0cb3dfafd6896927d1d9d
encodingFormat: application/x-nwb
id: dandiasset:b97811be-e95c-4599-9db2-ec4f8229d90b
identifier: b97811be-e95c-4599-9db2-ec4f8229d90b
measurementTechnique: []
path: sub-17/sub-17_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.631212+00:00'
id: urn:uuid:c36df7f0-37cd-463d-949c-dedb205412d1
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.631212+00:00'
wasAssociatedWith:
- id: urn:uuid:d6266567-8c94-4078-8427-9ca4b2b7fecf
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '17'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 17. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-04-02T14:10:48.125000-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:45.116127-04:00'
id: urn:uuid:35b58fc7-07c2-4bd8-b254-eb45ef475e7d
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:44.469986-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:03:35.446615-04:00'
contentSize: 342910002
contentUrl:
- https://api.dandiarchive.org/api/assets/3f3410e8-edd3-4231-bf82-48f51ba08d58/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d2d/2e2/d2d2e21c-f98c-4dda-a328-c1a739f1f7fc
dateModified: '2024-06-05T14:17:44.776512-04:00'
datePublished: '2024-06-05T18:26:43.640305+00:00'
digest:
dandi:dandi-etag: 094a43eb522b714cf23a45536a6f4294-6
dandi:sha2-256: 34fe5b7f001daf555b8cdc4568dca658b562e4934ec060394f976856a602d5a2
encodingFormat: application/x-nwb
id: dandiasset:3f3410e8-edd3-4231-bf82-48f51ba08d58
identifier: 3f3410e8-edd3-4231-bf82-48f51ba08d58
measurementTechnique: []
path: sub-16/sub-16_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.640305+00:00'
id: urn:uuid:92fe03c9-f4de-43df-bcc8-9233222060ba
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.640305+00:00'
wasAssociatedWith:
- id: urn:uuid:edac8545-0f5c-4b13-abf8-ab3969163214
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '16'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 16. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 2.4kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-04-02T14:09:23.660000-04:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:17:44.776512-04:00'
id: urn:uuid:b111b5b2-28ce-45f2-865e-5ba78aded3ff
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:17:43.422978-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:05:18.649468-04:00'
contentSize: 384638638
contentUrl:
- https://api.dandiarchive.org/api/assets/663a4867-20b3-417e-a825-e315edc20a7b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/2d8/868/2d8868d9-9412-430f-819a-cd0ba513aa5b
dateModified: '2024-06-05T14:18:13.590531-04:00'
datePublished: '2024-06-05T18:26:43.656816+00:00'
digest:
dandi:dandi-etag: 4b550b01f64ebe30a469c325d69cdd5c-6
dandi:sha2-256: 43c8e0bdbd4f8b3686963741a1d56bc5fca9d276253f272db0df91e52446abcd
encodingFormat: application/x-nwb
id: dandiasset:663a4867-20b3-417e-a825-e315edc20a7b
identifier: 663a4867-20b3-417e-a825-e315edc20a7b
measurementTechnique: []
path: sub-24/sub-24_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.656816+00:00'
id: urn:uuid:a781dee7-0952-47e2-8cc7-40980b7f514d
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.656816+00:00'
wasAssociatedWith:
- id: urn:uuid:8f0f4a5d-fac5-404e-a211-f46b6adf7430
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '24'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 24. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 3.2kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-16T17:09:42-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:18:13.590531-04:00'
id: urn:uuid:4f93ba55-9975-490b-b330-5636ea401548
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:18:13.517420-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:08:41.962460-04:00'
contentSize: 397805018
contentUrl:
- https://api.dandiarchive.org/api/assets/87248d3c-f65b-4b86-b865-8e31a80d3311/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d13/ab2/d13ab2e6-8187-4f80-891d-49e64aff4209
dateModified: '2024-06-05T14:18:30.760300-04:00'
datePublished: '2024-06-05T18:26:43.665970+00:00'
digest:
dandi:dandi-etag: dc2eb0769a55724962b5f04e7b6c1b87-6
dandi:sha2-256: 9532536e57729698d171a10cc404303246db4b79de88fcc53e17653a03e988d6
encodingFormat: application/x-nwb
id: dandiasset:87248d3c-f65b-4b86-b865-8e31a80d3311
identifier: 87248d3c-f65b-4b86-b865-8e31a80d3311
measurementTechnique: []
path: sub-25/sub-25_obj-17bqgcb_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.665970+00:00'
id: urn:uuid:8b710af7-31da-4291-807e-3eb1228fb8eb
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.665970+00:00'
wasAssociatedWith:
- id: urn:uuid:b46b99a2-256d-435e-9fd6-b85c109b24d6
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '25'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 25. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 5.6kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-03-11T16:29:39-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:18:30.760300-04:00'
id: urn:uuid:418dd863-890a-4a8d-9c0d-f7cc5f068311
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:18:30.669023-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:05:43.264012-04:00'
contentSize: 370707200
contentUrl:
- https://api.dandiarchive.org/api/assets/8de3fa55-b438-4ec2-8a06-1a3d8e0dde89/download/
- https://dandiarchive.s3.amazonaws.com/blobs/aef/232/aef2324f-dff3-4c5a-95c1-b570cb6f90d5
dateModified: '2024-06-05T14:18:32.792009-04:00'
datePublished: '2024-06-05T18:26:43.674311+00:00'
digest:
dandi:dandi-etag: ae3f7a549e9e744132a079219725cb8e-6
dandi:sha2-256: 518931ba01567018e2d5f5e62d20df611bdc5cdfe8315f211376f9c84aab5d4c
encodingFormat: application/x-nwb
id: dandiasset:8de3fa55-b438-4ec2-8a06-1a3d8e0dde89
identifier: 8de3fa55-b438-4ec2-8a06-1a3d8e0dde89
measurementTechnique: []
path: sub-25/sub-25_obj-1of0oop_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.674311+00:00'
id: urn:uuid:5c0880a5-7c04-416d-b546-0e7780d3dac5
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.674311+00:00'
wasAssociatedWith:
- id: urn:uuid:8c0f98af-0f38-4624-be10-144992adee8d
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '25'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 25. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 3.2kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-02-16T17:15:04-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:18:32.792009-04:00'
id: urn:uuid:40226fb8-787b-425b-9aa0-747d1821f800
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:18:32.600423-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:09:07.479662-04:00'
contentSize: 391586615
contentUrl:
- https://api.dandiarchive.org/api/assets/e65eaf63-d620-4c7d-9981-039243e35d44/download/
- https://dandiarchive.s3.amazonaws.com/blobs/b34/1d6/b341d67a-f7ba-4a72-8de7-0053088c9481
dateModified: '2024-06-05T14:18:32.184735-04:00'
datePublished: '2024-06-05T18:26:43.682104+00:00'
digest:
dandi:dandi-etag: d470917c24396cff4c3ce42f7f3d4da8-6
dandi:sha2-256: 20cd92beb328200e945565b8f17ed03be7ffcafd86e896bb1c9526a2c6c47c0c
encodingFormat: application/x-nwb
id: dandiasset:e65eaf63-d620-4c7d-9981-039243e35d44
identifier: e65eaf63-d620-4c7d-9981-039243e35d44
measurementTechnique: []
path: sub-26/sub-26_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.682104+00:00'
id: urn:uuid:4e99e28a-779b-41f6-899d-9b983beafb57
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.682104+00:00'
wasAssociatedWith:
- id: urn:uuid:d9bb244c-3769-4ee1-a2bd-90be11b86ea5
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '26'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 26. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 5.6kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-03-11T16:34:15-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:18:32.184735-04:00'
id: urn:uuid:6f55a361-2de5-4ce8-ac6f-a7ed4db61a9c
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:18:32.065739-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.7/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2024-06-05T14:09:31.757162-04:00'
contentSize: 391124788
contentUrl:
- https://api.dandiarchive.org/api/assets/598c59cb-84ec-4a12-b2ba-9152654f13bc/download/
- https://dandiarchive.s3.amazonaws.com/blobs/740/adb/740adb71-44de-4361-99f9-39e7f2239466
dateModified: '2024-06-05T14:18:33.308829-04:00'
datePublished: '2024-06-05T18:26:43.691554+00:00'
digest:
dandi:dandi-etag: 99b1430ff9bb3217135a7366fde3092a-6
dandi:sha2-256: 5a6062a06be0f9fa427e02fc1c8c9bd2322f0b54450babd5a12aae20529ba898
encodingFormat: application/x-nwb
id: dandiasset:598c59cb-84ec-4a12-b2ba-9152654f13bc
identifier: 598c59cb-84ec-4a12-b2ba-9152654f13bc
measurementTechnique: []
path: sub-27/sub-27_image.nwb
publishedBy:
endDate: '2024-06-05T18:26:43.691554+00:00'
id: urn:uuid:19514263-8638-43cd-b56b-7ed912a76799
name: DANDI publish
schemaKey: PublishActivity
startDate: '2024-06-05T18:26:43.691554+00:00'
wasAssociatedWith:
- id: urn:uuid:df1c3459-2dc9-4257-9b25-eb7a312eb197
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.7
variableMeasured: []
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P1D
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: '27'
schemaKey: Participant
sex:
name: Unknown
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_10029
name: Cricetulus griseus - Cricetulus aureus
schemaKey: SpeciesType
wasGeneratedBy:
- description: 27. Experiments were conducted in a 4 electrodes setup. CanCan protocol
applied at 5.6kV (first pulse) with the subsequent canceling pulses 12.5% lower
than pulses before. Packets were repeated 1 times at 1Hz frequency. Than also
at 1Hz frequency protocol was shifted and than electrode 2 was starting electrode
with noted amplitude of the first pulse. Protocol finished when all 4 electrodes
were active pulse electrodes. Detailed information on pulsing parameters, electrodes
and procedures can be found in 10.1016/j.bioelechem.2023.108437.
identifier: single_time_point
name: single_time_point
schemaKey: Session
startDate: '2021-03-11T16:40:11-05:00'
- description: Metadata generated by DANDI cli
endDate: '2024-06-05T14:18:33.307830-04:00'
id: urn:uuid:e797181a-55eb-4cc4-8878-171fff12da78
name: Metadata generation
schemaKey: Activity
startDate: '2024-06-05T14:18:33.217390-04:00'
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.62.0
Tip!
Press p or to see the previous file or,
n or to see the next file