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 44 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
  1. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  2. access:
  3. - schemaKey: AccessRequirements
  4. status: dandi:OpenAccess
  5. approach:
  6. - name: behavioral approach
  7. schemaKey: ApproachType
  8. - name: electrophysiological approach
  9. schemaKey: ApproachType
  10. blobDateModified: '2022-08-30T11:28:44.559628-04:00'
  11. contentSize: 1178184900
  12. contentUrl:
  13. - https://api.dandiarchive.org/api/assets/dfd69421-f5a6-4ad3-a7d4-710419725b5a/download/
  14. - https://dandiarchive.s3.amazonaws.com/blobs/08c/f6f/08cf6fab-1b94-49fd-a0ab-2028a42fd7df
  15. dateModified: '2022-08-30T16:05:59.751706-04:00'
  16. datePublished: '2023-08-06T00:34:04.954226+00:00'
  17. digest:
  18. dandi:dandi-etag: bcc776fda0f53e2e75f526a4e85d0008-18
  19. dandi:sha2-256: f75f45611362736e1e6af3301d4f43a6d1c56e3c6472bf21ea2d65e5d6de5dda
  20. encodingFormat: application/x-nwb
  21. id: dandiasset:dfd69421-f5a6-4ad3-a7d4-710419725b5a
  22. identifier: dfd69421-f5a6-4ad3-a7d4-710419725b5a
  23. keywords:
  24. - Superior Colliculus, Somatosensation, Whisking, Self motion
  25. measurementTechnique:
  26. - name: spike sorting technique
  27. schemaKey: MeasurementTechniqueType
  28. - name: analytical technique
  29. schemaKey: MeasurementTechniqueType
  30. - name: behavioral technique
  31. schemaKey: MeasurementTechniqueType
  32. - name: surgical technique
  33. schemaKey: MeasurementTechniqueType
  34. path: sub-M27/sub-M27_ses-20200319T163241_behavior+ecephys.nwb
  35. publishedBy:
  36. endDate: '2023-08-06T00:34:04.954226+00:00'
  37. id: urn:uuid:bc3d1440-7b1d-4aba-a7e3-84b34bf7db9a
  38. name: DANDI publish
  39. schemaKey: PublishActivity
  40. startDate: '2023-08-06T00:34:04.954226+00:00'
  41. wasAssociatedWith:
  42. - id: urn:uuid:0e3575ee-0662-4c3b-9fb4-f910a797f6b7
  43. identifier: RRID:SCR_017571
  44. name: DANDI API
  45. schemaKey: Software
  46. version: 0.1.0
  47. schemaKey: Asset
  48. schemaVersion: 0.6.3
  49. variableMeasured:
  50. - schemaKey: PropertyValue
  51. value: SpatialSeries
  52. - schemaKey: PropertyValue
  53. value: ProcessingModule
  54. - schemaKey: PropertyValue
  55. value: Units
  56. - schemaKey: PropertyValue
  57. value: ElectrodeGroup
  58. - schemaKey: PropertyValue
  59. value: Position
  60. wasAttributedTo:
  61. - age:
  62. schemaKey: PropertyValue
  63. unitText: ISO-8601 duration
  64. value: P104DT55961S
  65. valueReference:
  66. schemaKey: PropertyValue
  67. value: dandi:BirthReference
  68. identifier: M27
  69. schemaKey: Participant
  70. sex:
  71. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  72. name: Female
  73. schemaKey: SexType
  74. species:
  75. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  76. name: Mus musculus - House mouse
  77. schemaKey: SpeciesType
  78. wasGeneratedBy:
  79. - description: mouse in whisker guided virtual navigation task
  80. name: Acquisition session
  81. schemaKey: Session
  82. startDate: '2020-03-19T16:32:41-04:00'
  83. - description: Metadata generated by DANDI cli
  84. id: urn:uuid:bb32e25b-b43b-4ec9-b95b-9b9e31f4c45e
  85. name: Metadata generation
  86. schemaKey: Activity
  87. wasAssociatedWith:
  88. - identifier: RRID:SCR_019009
  89. name: DANDI Command Line Interface
  90. schemaKey: Software
  91. url: https://github.com/dandi/dandi-cli
  92. version: 0.46.1
  93. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  94. access:
  95. - schemaKey: AccessRequirements
  96. status: dandi:OpenAccess
  97. approach:
  98. - name: behavioral approach
  99. schemaKey: ApproachType
  100. - name: electrophysiological approach
  101. schemaKey: ApproachType
  102. blobDateModified: '2022-08-30T11:28:08.004618-04:00'
  103. contentSize: 1356801308
  104. contentUrl:
  105. - https://api.dandiarchive.org/api/assets/3fc83f98-5c71-4891-b5a2-4b00760402e4/download/
  106. - https://dandiarchive.s3.amazonaws.com/blobs/d86/055/d8605573-4639-4b99-a6d9-e0ac13f9a7df
  107. dateModified: '2022-08-30T16:06:10.596077-04:00'
  108. datePublished: '2023-08-06T00:34:05.044154+00:00'
  109. digest:
  110. dandi:dandi-etag: 0cf22fcf04cf2bb55f0cb7dfb6d70434-21
  111. dandi:sha2-256: 9ee79e4bf44e38e58ffb9608c03cf3ed3000ba8ad42a3177eac41e630054f497
  112. encodingFormat: application/x-nwb
  113. id: dandiasset:3fc83f98-5c71-4891-b5a2-4b00760402e4
  114. identifier: 3fc83f98-5c71-4891-b5a2-4b00760402e4
  115. keywords:
  116. - Superior Colliculus, Somatosensation, Whisking, Self motion
  117. measurementTechnique:
  118. - name: spike sorting technique
  119. schemaKey: MeasurementTechniqueType
  120. - name: analytical technique
  121. schemaKey: MeasurementTechniqueType
  122. - name: behavioral technique
  123. schemaKey: MeasurementTechniqueType
  124. - name: surgical technique
  125. schemaKey: MeasurementTechniqueType
  126. path: sub-M26/sub-M26_ses-20200319T153237_behavior+ecephys.nwb
  127. publishedBy:
  128. endDate: '2023-08-06T00:34:05.044154+00:00'
  129. id: urn:uuid:cd0779fa-807c-48ae-8888-709345667550
  130. name: DANDI publish
  131. schemaKey: PublishActivity
  132. startDate: '2023-08-06T00:34:05.044154+00:00'
  133. wasAssociatedWith:
  134. - id: urn:uuid:f0c4bfc1-6330-44b2-9cc5-07ed69ca687f
  135. identifier: RRID:SCR_017571
  136. name: DANDI API
  137. schemaKey: Software
  138. version: 0.1.0
  139. schemaKey: Asset
  140. schemaVersion: 0.6.3
  141. variableMeasured:
  142. - schemaKey: PropertyValue
  143. value: SpatialSeries
  144. - schemaKey: PropertyValue
  145. value: ProcessingModule
  146. - schemaKey: PropertyValue
  147. value: Units
  148. - schemaKey: PropertyValue
  149. value: ElectrodeGroup
  150. - schemaKey: PropertyValue
  151. value: Position
  152. wasAttributedTo:
  153. - age:
  154. schemaKey: PropertyValue
  155. unitText: ISO-8601 duration
  156. value: P104DT52357S
  157. valueReference:
  158. schemaKey: PropertyValue
  159. value: dandi:BirthReference
  160. identifier: M26
  161. schemaKey: Participant
  162. sex:
  163. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  164. name: Female
  165. schemaKey: SexType
  166. species:
  167. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  168. name: Mus musculus - House mouse
  169. schemaKey: SpeciesType
  170. wasGeneratedBy:
  171. - description: mouse in whisker guided virtual navigation task
  172. name: Acquisition session
  173. schemaKey: Session
  174. startDate: '2020-03-19T15:32:37-04:00'
  175. - description: Metadata generated by DANDI cli
  176. id: urn:uuid:e3ba0bcd-73bc-4799-8ad8-a633b2de9733
  177. name: Metadata generation
  178. schemaKey: Activity
  179. wasAssociatedWith:
  180. - identifier: RRID:SCR_019009
  181. name: DANDI Command Line Interface
  182. schemaKey: Software
  183. url: https://github.com/dandi/dandi-cli
  184. version: 0.46.1
  185. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  186. access:
  187. - schemaKey: AccessRequirements
  188. status: dandi:OpenAccess
  189. approach:
  190. - name: behavioral approach
  191. schemaKey: ApproachType
  192. - name: electrophysiological approach
  193. schemaKey: ApproachType
  194. blobDateModified: '2022-08-30T10:45:30.201276-04:00'
  195. contentSize: 1966298698
  196. contentUrl:
  197. - https://api.dandiarchive.org/api/assets/01240d45-16f4-4bbb-93e1-667db171465f/download/
  198. - https://dandiarchive.s3.amazonaws.com/blobs/d37/388/d37388ca-9b6f-4c76-b939-87cbe95c57e5
  199. dateModified: '2022-08-30T16:05:59.102120-04:00'
  200. datePublished: '2023-08-06T00:34:05.055030+00:00'
  201. digest:
  202. dandi:dandi-etag: 0e724b7958f44bf5b0c7eec511e5c2b0-30
  203. dandi:sha2-256: 5884219a0b3679b386ee319526ef3a4862d1846fd9dda0b9ec25819d34e7bf53
  204. encodingFormat: application/x-nwb
  205. id: dandiasset:01240d45-16f4-4bbb-93e1-667db171465f
  206. identifier: 01240d45-16f4-4bbb-93e1-667db171465f
  207. keywords:
  208. - Superior Colliculus, Somatosensation, Whisking, Self motion
  209. measurementTechnique:
  210. - name: spike sorting technique
  211. schemaKey: MeasurementTechniqueType
  212. - name: analytical technique
  213. schemaKey: MeasurementTechniqueType
  214. - name: behavioral technique
  215. schemaKey: MeasurementTechniqueType
  216. - name: surgical technique
  217. schemaKey: MeasurementTechniqueType
  218. path: sub-M37/sub-M37_ses-20200829T154548_behavior+ecephys.nwb
  219. publishedBy:
  220. endDate: '2023-08-06T00:34:05.055030+00:00'
  221. id: urn:uuid:b56d59e5-9bf7-46c8-b7c7-5d817e68fde1
  222. name: DANDI publish
  223. schemaKey: PublishActivity
  224. startDate: '2023-08-06T00:34:05.055030+00:00'
  225. wasAssociatedWith:
  226. - id: urn:uuid:42bba018-d3f1-4efa-b5fa-4aa03a74c415
  227. identifier: RRID:SCR_017571
  228. name: DANDI API
  229. schemaKey: Software
  230. version: 0.1.0
  231. schemaKey: Asset
  232. schemaVersion: 0.6.3
  233. variableMeasured:
  234. - schemaKey: PropertyValue
  235. value: SpatialSeries
  236. - schemaKey: PropertyValue
  237. value: ProcessingModule
  238. - schemaKey: PropertyValue
  239. value: Units
  240. - schemaKey: PropertyValue
  241. value: ElectrodeGroup
  242. - schemaKey: PropertyValue
  243. value: Position
  244. wasAttributedTo:
  245. - age:
  246. schemaKey: PropertyValue
  247. unitText: ISO-8601 duration
  248. value: P76DT56748S
  249. valueReference:
  250. schemaKey: PropertyValue
  251. value: dandi:BirthReference
  252. identifier: M37
  253. schemaKey: Participant
  254. sex:
  255. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  256. name: Male
  257. schemaKey: SexType
  258. species:
  259. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  260. name: Mus musculus - House mouse
  261. schemaKey: SpeciesType
  262. wasGeneratedBy:
  263. - description: mouse in whisker guided virtual navigation task
  264. name: Acquisition session
  265. schemaKey: Session
  266. startDate: '2020-08-29T15:45:48-04:00'
  267. - description: Metadata generated by DANDI cli
  268. id: urn:uuid:037f4ae3-68b6-49be-900b-7c734b651952
  269. name: Metadata generation
  270. schemaKey: Activity
  271. wasAssociatedWith:
  272. - identifier: RRID:SCR_019009
  273. name: DANDI Command Line Interface
  274. schemaKey: Software
  275. url: https://github.com/dandi/dandi-cli
  276. version: 0.46.1
  277. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  278. access:
  279. - schemaKey: AccessRequirements
  280. status: dandi:OpenAccess
  281. approach:
  282. - name: behavioral approach
  283. schemaKey: ApproachType
  284. - name: electrophysiological approach
  285. schemaKey: ApproachType
  286. blobDateModified: '2022-08-30T11:30:40.697434-04:00'
  287. contentSize: 2198052960
  288. contentUrl:
  289. - https://api.dandiarchive.org/api/assets/9b492d83-761e-4a79-86f4-199357aff91d/download/
  290. - https://dandiarchive.s3.amazonaws.com/blobs/413/882/413882a7-ac7c-411b-9408-e9970abbb57a
  291. dateModified: '2022-08-30T16:05:59.698335-04:00'
  292. datePublished: '2023-08-06T00:34:05.049905+00:00'
  293. digest:
  294. dandi:dandi-etag: a51fb21f4718393d8c7982d7150db68b-33
  295. dandi:sha2-256: d521227558253931ce47cc348db1576c15a6ed3ce1b813b0a547bdffbb815cda
  296. encodingFormat: application/x-nwb
  297. id: dandiasset:9b492d83-761e-4a79-86f4-199357aff91d
  298. identifier: 9b492d83-761e-4a79-86f4-199357aff91d
  299. keywords:
  300. - Superior Colliculus, Somatosensation, Whisking, Self motion
  301. measurementTechnique:
  302. - name: spike sorting technique
  303. schemaKey: MeasurementTechniqueType
  304. - name: analytical technique
  305. schemaKey: MeasurementTechniqueType
  306. - name: behavioral technique
  307. schemaKey: MeasurementTechniqueType
  308. - name: surgical technique
  309. schemaKey: MeasurementTechniqueType
  310. path: sub-M29/sub-M29_ses-20200612T143309_behavior+ecephys.nwb
  311. publishedBy:
  312. endDate: '2023-08-06T00:34:05.049905+00:00'
  313. id: urn:uuid:3c1c86c8-11e1-403d-9185-0f440626a49d
  314. name: DANDI publish
  315. schemaKey: PublishActivity
  316. startDate: '2023-08-06T00:34:05.049905+00:00'
  317. wasAssociatedWith:
  318. - id: urn:uuid:805dee94-96ad-49e8-8212-6d6dbb3e1655
  319. identifier: RRID:SCR_017571
  320. name: DANDI API
  321. schemaKey: Software
  322. version: 0.1.0
  323. schemaKey: Asset
  324. schemaVersion: 0.6.3
  325. variableMeasured:
  326. - schemaKey: PropertyValue
  327. value: SpatialSeries
  328. - schemaKey: PropertyValue
  329. value: ProcessingModule
  330. - schemaKey: PropertyValue
  331. value: Units
  332. - schemaKey: PropertyValue
  333. value: ElectrodeGroup
  334. - schemaKey: PropertyValue
  335. value: Position
  336. wasAttributedTo:
  337. - age:
  338. schemaKey: PropertyValue
  339. unitText: ISO-8601 duration
  340. value: P81DT52389S
  341. valueReference:
  342. schemaKey: PropertyValue
  343. value: dandi:BirthReference
  344. identifier: M29
  345. schemaKey: Participant
  346. sex:
  347. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  348. name: Female
  349. schemaKey: SexType
  350. species:
  351. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  352. name: Mus musculus - House mouse
  353. schemaKey: SpeciesType
  354. wasGeneratedBy:
  355. - description: mouse in whisker guided virtual navigation task
  356. name: Acquisition session
  357. schemaKey: Session
  358. startDate: '2020-06-12T14:33:09-04:00'
  359. - description: Metadata generated by DANDI cli
  360. id: urn:uuid:72e6e2e1-cde0-4da8-8246-4fb26d98035c
  361. name: Metadata generation
  362. schemaKey: Activity
  363. wasAssociatedWith:
  364. - identifier: RRID:SCR_019009
  365. name: DANDI Command Line Interface
  366. schemaKey: Software
  367. url: https://github.com/dandi/dandi-cli
  368. version: 0.46.1
  369. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  370. access:
  371. - schemaKey: AccessRequirements
  372. status: dandi:OpenAccess
  373. approach:
  374. - name: behavioral approach
  375. schemaKey: ApproachType
  376. - name: electrophysiological approach
  377. schemaKey: ApproachType
  378. blobDateModified: '2022-08-30T10:46:17.111432-04:00'
  379. contentSize: 2097975282
  380. contentUrl:
  381. - https://api.dandiarchive.org/api/assets/6a1b3b1f-aa63-455b-b7ba-232843028ccb/download/
  382. - https://dandiarchive.s3.amazonaws.com/blobs/2b2/5cd/2b25cdcf-88b3-4d0c-a169-04c61dab7e88
  383. dateModified: '2022-08-30T16:05:58.981374-04:00'
  384. datePublished: '2023-08-06T00:34:05.060034+00:00'
  385. digest:
  386. dandi:dandi-etag: f84d0f248f9d1df34b087e6c67e1cf69-32
  387. dandi:sha2-256: 138d7bb5b588a4cdfd8411e91eb47682b368030cb01b9980868d6bba3f020bcd
  388. encodingFormat: application/x-nwb
  389. id: dandiasset:6a1b3b1f-aa63-455b-b7ba-232843028ccb
  390. identifier: 6a1b3b1f-aa63-455b-b7ba-232843028ccb
  391. keywords:
  392. - Superior Colliculus, Somatosensation, Whisking, Self motion
  393. measurementTechnique:
  394. - name: spike sorting technique
  395. schemaKey: MeasurementTechniqueType
  396. - name: analytical technique
  397. schemaKey: MeasurementTechniqueType
  398. - name: behavioral technique
  399. schemaKey: MeasurementTechniqueType
  400. - name: surgical technique
  401. schemaKey: MeasurementTechniqueType
  402. path: sub-M36/sub-M36_ses-20200827T141103_behavior+ecephys.nwb
  403. publishedBy:
  404. endDate: '2023-08-06T00:34:05.060034+00:00'
  405. id: urn:uuid:196c45ab-7ba2-477c-8659-ee3304a0434e
  406. name: DANDI publish
  407. schemaKey: PublishActivity
  408. startDate: '2023-08-06T00:34:05.060034+00:00'
  409. wasAssociatedWith:
  410. - id: urn:uuid:213d67fd-e289-4ec3-aa1e-11fb00cbda42
  411. identifier: RRID:SCR_017571
  412. name: DANDI API
  413. schemaKey: Software
  414. version: 0.1.0
  415. schemaKey: Asset
  416. schemaVersion: 0.6.3
  417. variableMeasured:
  418. - schemaKey: PropertyValue
  419. value: SpatialSeries
  420. - schemaKey: PropertyValue
  421. value: ProcessingModule
  422. - schemaKey: PropertyValue
  423. value: Units
  424. - schemaKey: PropertyValue
  425. value: ElectrodeGroup
  426. - schemaKey: PropertyValue
  427. value: Position
  428. wasAttributedTo:
  429. - age:
  430. schemaKey: PropertyValue
  431. unitText: ISO-8601 duration
  432. value: P74DT51063S
  433. valueReference:
  434. schemaKey: PropertyValue
  435. value: dandi:BirthReference
  436. identifier: M36
  437. schemaKey: Participant
  438. sex:
  439. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  440. name: Male
  441. schemaKey: SexType
  442. species:
  443. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  444. name: Mus musculus - House mouse
  445. schemaKey: SpeciesType
  446. wasGeneratedBy:
  447. - description: mouse in whisker guided virtual navigation task
  448. name: Acquisition session
  449. schemaKey: Session
  450. startDate: '2020-08-27T14:11:03-04:00'
  451. - description: Metadata generated by DANDI cli
  452. id: urn:uuid:9d763cc3-bd75-4f50-9d18-be52d36377d9
  453. name: Metadata generation
  454. schemaKey: Activity
  455. wasAssociatedWith:
  456. - identifier: RRID:SCR_019009
  457. name: DANDI Command Line Interface
  458. schemaKey: Software
  459. url: https://github.com/dandi/dandi-cli
  460. version: 0.46.1
  461. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  462. access:
  463. - schemaKey: AccessRequirements
  464. status: dandi:OpenAccess
  465. approach:
  466. - name: behavioral approach
  467. schemaKey: ApproachType
  468. - name: electrophysiological approach
  469. schemaKey: ApproachType
  470. blobDateModified: '2022-08-30T10:43:13.799859-04:00'
  471. contentSize: 2538266252
  472. contentUrl:
  473. - https://api.dandiarchive.org/api/assets/f7a7d0b9-8536-4cf0-a8c3-4d2c9c9a21c5/download/
  474. - https://dandiarchive.s3.amazonaws.com/blobs/76a/354/76a354a3-f68d-4353-b86a-ca5d7b4c5b9a
  475. dateModified: '2022-08-30T16:08:08.060910-04:00'
  476. datePublished: '2023-08-06T00:34:05.068627+00:00'
  477. digest:
  478. dandi:dandi-etag: ecf47b968be509954799ed470e00dd39-38
  479. dandi:sha2-256: 4091ac8b02c6857ddf1c3ba2dbc4f901001a894d9a4059afa24b7db6b19aa1f2
  480. encodingFormat: application/x-nwb
  481. id: dandiasset:f7a7d0b9-8536-4cf0-a8c3-4d2c9c9a21c5
  482. identifier: f7a7d0b9-8536-4cf0-a8c3-4d2c9c9a21c5
  483. keywords:
  484. - Superior Colliculus, Somatosensation, Whisking, Self motion
  485. measurementTechnique:
  486. - name: spike sorting technique
  487. schemaKey: MeasurementTechniqueType
  488. - name: analytical technique
  489. schemaKey: MeasurementTechniqueType
  490. - name: behavioral technique
  491. schemaKey: MeasurementTechniqueType
  492. - name: surgical technique
  493. schemaKey: MeasurementTechniqueType
  494. path: sub-M40/sub-M40_ses-20201126T145724_behavior+ecephys.nwb
  495. publishedBy:
  496. endDate: '2023-08-06T00:34:05.068627+00:00'
  497. id: urn:uuid:7364d639-3d70-448f-8704-9566a965a007
  498. name: DANDI publish
  499. schemaKey: PublishActivity
  500. startDate: '2023-08-06T00:34:05.068627+00:00'
  501. wasAssociatedWith:
  502. - id: urn:uuid:5ce66d6a-aa65-4741-9772-b4ac353d5a0b
  503. identifier: RRID:SCR_017571
  504. name: DANDI API
  505. schemaKey: Software
  506. version: 0.1.0
  507. schemaKey: Asset
  508. schemaVersion: 0.6.3
  509. variableMeasured:
  510. - schemaKey: PropertyValue
  511. value: SpatialSeries
  512. - schemaKey: PropertyValue
  513. value: ProcessingModule
  514. - schemaKey: PropertyValue
  515. value: Units
  516. - schemaKey: PropertyValue
  517. value: ElectrodeGroup
  518. - schemaKey: PropertyValue
  519. value: Position
  520. wasAttributedTo:
  521. - age:
  522. schemaKey: PropertyValue
  523. unitText: ISO-8601 duration
  524. value: P93DT57444S
  525. valueReference:
  526. schemaKey: PropertyValue
  527. value: dandi:BirthReference
  528. identifier: M40
  529. schemaKey: Participant
  530. sex:
  531. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  532. name: Female
  533. schemaKey: SexType
  534. species:
  535. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  536. name: Mus musculus - House mouse
  537. schemaKey: SpeciesType
  538. wasGeneratedBy:
  539. - description: mouse in whisker guided virtual navigation task
  540. name: Acquisition session
  541. schemaKey: Session
  542. startDate: '2020-11-26T14:57:24-05:00'
  543. - description: Metadata generated by DANDI cli
  544. id: urn:uuid:a61b5c82-a2b2-435c-84b3-db3055621403
  545. name: Metadata generation
  546. schemaKey: Activity
  547. wasAssociatedWith:
  548. - identifier: RRID:SCR_019009
  549. name: DANDI Command Line Interface
  550. schemaKey: Software
  551. url: https://github.com/dandi/dandi-cli
  552. version: 0.46.1
  553. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  554. access:
  555. - schemaKey: AccessRequirements
  556. status: dandi:OpenAccess
  557. approach:
  558. - name: behavioral approach
  559. schemaKey: ApproachType
  560. - name: electrophysiological approach
  561. schemaKey: ApproachType
  562. blobDateModified: '2022-08-30T10:36:47.543077-04:00'
  563. contentSize: 1920276754
  564. contentUrl:
  565. - https://api.dandiarchive.org/api/assets/d2a9c61e-ec6a-4d37-8d93-70ff23b37a6d/download/
  566. - https://dandiarchive.s3.amazonaws.com/blobs/b5c/754/b5c754c9-c421-4d01-9d9a-ee0e5453396c
  567. dateModified: '2022-08-30T16:08:43.473861-04:00'
  568. datePublished: '2023-08-06T00:34:05.094170+00:00'
  569. digest:
  570. dandi:dandi-etag: 0b44ae49f260a96e65e9c93255d0b981-29
  571. dandi:sha2-256: 3af552e38d0dd76e0442c5ca78ba9cdbc288717422c3ca07cd96b857c4a3c7ae
  572. encodingFormat: application/x-nwb
  573. id: dandiasset:d2a9c61e-ec6a-4d37-8d93-70ff23b37a6d
  574. identifier: d2a9c61e-ec6a-4d37-8d93-70ff23b37a6d
  575. keywords:
  576. - Superior Colliculus, Somatosensation, Whisking, Self motion
  577. measurementTechnique:
  578. - name: spike sorting technique
  579. schemaKey: MeasurementTechniqueType
  580. - name: analytical technique
  581. schemaKey: MeasurementTechniqueType
  582. - name: behavioral technique
  583. schemaKey: MeasurementTechniqueType
  584. - name: surgical technique
  585. schemaKey: MeasurementTechniqueType
  586. path: sub-M43/sub-M43_ses-20201203T150431_behavior+ecephys.nwb
  587. publishedBy:
  588. endDate: '2023-08-06T00:34:05.094170+00:00'
  589. id: urn:uuid:4c5830cc-fe10-489d-bb2d-f17de9b5caf1
  590. name: DANDI publish
  591. schemaKey: PublishActivity
  592. startDate: '2023-08-06T00:34:05.094170+00:00'
  593. wasAssociatedWith:
  594. - id: urn:uuid:5b81cf21-3193-4bcc-8a07-c51266f73f4c
  595. identifier: RRID:SCR_017571
  596. name: DANDI API
  597. schemaKey: Software
  598. version: 0.1.0
  599. schemaKey: Asset
  600. schemaVersion: 0.6.3
  601. variableMeasured:
  602. - schemaKey: PropertyValue
  603. value: SpatialSeries
  604. - schemaKey: PropertyValue
  605. value: ProcessingModule
  606. - schemaKey: PropertyValue
  607. value: Units
  608. - schemaKey: PropertyValue
  609. value: ElectrodeGroup
  610. - schemaKey: PropertyValue
  611. value: Position
  612. wasAttributedTo:
  613. - age:
  614. schemaKey: PropertyValue
  615. unitText: ISO-8601 duration
  616. value: P100DT57871S
  617. valueReference:
  618. schemaKey: PropertyValue
  619. value: dandi:BirthReference
  620. identifier: M43
  621. schemaKey: Participant
  622. sex:
  623. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  624. name: Male
  625. schemaKey: SexType
  626. species:
  627. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  628. name: Mus musculus - House mouse
  629. schemaKey: SpeciesType
  630. wasGeneratedBy:
  631. - description: mouse in whisker guided virtual navigation task
  632. name: Acquisition session
  633. schemaKey: Session
  634. startDate: '2020-12-03T15:04:31-05:00'
  635. - description: Metadata generated by DANDI cli
  636. id: urn:uuid:ff338236-08e7-4f21-8770-88818fae1f0c
  637. name: Metadata generation
  638. schemaKey: Activity
  639. wasAssociatedWith:
  640. - identifier: RRID:SCR_019009
  641. name: DANDI Command Line Interface
  642. schemaKey: Software
  643. url: https://github.com/dandi/dandi-cli
  644. version: 0.46.1
  645. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  646. access:
  647. - schemaKey: AccessRequirements
  648. status: dandi:OpenAccess
  649. approach:
  650. - name: behavioral approach
  651. schemaKey: ApproachType
  652. - name: electrophysiological approach
  653. schemaKey: ApproachType
  654. blobDateModified: '2022-08-30T10:44:36.454123-04:00'
  655. contentSize: 2151004584
  656. contentUrl:
  657. - https://api.dandiarchive.org/api/assets/610cacda-6fcb-4630-9c8a-b3330cc23cfa/download/
  658. - https://dandiarchive.s3.amazonaws.com/blobs/75c/4da/75c4da16-7667-4fd4-abc2-b6d23ff590d0
  659. dateModified: '2022-08-30T16:07:43.500081-04:00'
  660. datePublished: '2023-08-06T00:34:05.100488+00:00'
  661. digest:
  662. dandi:dandi-etag: a0163780cddcde8cb91354b8fe6c9b1b-33
  663. dandi:sha2-256: c3d194611422218bbd3a789cd3cd392ca321bc86552a7079ea80beeb36c34078
  664. encodingFormat: application/x-nwb
  665. id: dandiasset:610cacda-6fcb-4630-9c8a-b3330cc23cfa
  666. identifier: 610cacda-6fcb-4630-9c8a-b3330cc23cfa
  667. keywords:
  668. - Superior Colliculus, Somatosensation, Whisking, Self motion
  669. measurementTechnique:
  670. - name: spike sorting technique
  671. schemaKey: MeasurementTechniqueType
  672. - name: analytical technique
  673. schemaKey: MeasurementTechniqueType
  674. - name: behavioral technique
  675. schemaKey: MeasurementTechniqueType
  676. - name: surgical technique
  677. schemaKey: MeasurementTechniqueType
  678. path: sub-M38/sub-M38_ses-20200904T142415_behavior+ecephys.nwb
  679. publishedBy:
  680. endDate: '2023-08-06T00:34:05.100488+00:00'
  681. id: urn:uuid:346161d3-1e18-44a3-a891-0576f42fa799
  682. name: DANDI publish
  683. schemaKey: PublishActivity
  684. startDate: '2023-08-06T00:34:05.100488+00:00'
  685. wasAssociatedWith:
  686. - id: urn:uuid:bca097d1-4874-4274-8b35-822ef5300397
  687. identifier: RRID:SCR_017571
  688. name: DANDI API
  689. schemaKey: Software
  690. version: 0.1.0
  691. schemaKey: Asset
  692. schemaVersion: 0.6.3
  693. variableMeasured:
  694. - schemaKey: PropertyValue
  695. value: SpatialSeries
  696. - schemaKey: PropertyValue
  697. value: ProcessingModule
  698. - schemaKey: PropertyValue
  699. value: Units
  700. - schemaKey: PropertyValue
  701. value: ElectrodeGroup
  702. - schemaKey: PropertyValue
  703. value: Position
  704. wasAttributedTo:
  705. - age:
  706. schemaKey: PropertyValue
  707. unitText: ISO-8601 duration
  708. value: P82DT51855S
  709. valueReference:
  710. schemaKey: PropertyValue
  711. value: dandi:BirthReference
  712. identifier: M38
  713. schemaKey: Participant
  714. sex:
  715. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  716. name: Female
  717. schemaKey: SexType
  718. species:
  719. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  720. name: Mus musculus - House mouse
  721. schemaKey: SpeciesType
  722. wasGeneratedBy:
  723. - description: mouse in whisker guided virtual navigation task
  724. name: Acquisition session
  725. schemaKey: Session
  726. startDate: '2020-09-04T14:24:15-04:00'
  727. - description: Metadata generated by DANDI cli
  728. id: urn:uuid:81e06f23-5659-4fe4-9217-ba9797aa84e1
  729. name: Metadata generation
  730. schemaKey: Activity
  731. wasAssociatedWith:
  732. - identifier: RRID:SCR_019009
  733. name: DANDI Command Line Interface
  734. schemaKey: Software
  735. url: https://github.com/dandi/dandi-cli
  736. version: 0.46.1
  737. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  738. access:
  739. - schemaKey: AccessRequirements
  740. status: dandi:OpenAccess
  741. approach:
  742. - name: behavioral approach
  743. schemaKey: ApproachType
  744. - name: electrophysiological approach
  745. schemaKey: ApproachType
  746. blobDateModified: '2022-08-30T10:34:36.049647-04:00'
  747. contentSize: 2001973094
  748. contentUrl:
  749. - https://api.dandiarchive.org/api/assets/e1eaaac6-b01e-432e-8f35-9748b61c93d1/download/
  750. - https://dandiarchive.s3.amazonaws.com/blobs/b02/6e7/b026e7a5-f3d0-40d1-8704-79fd3d4edd08
  751. dateModified: '2022-08-30T16:09:52.700753-04:00'
  752. datePublished: '2023-08-06T00:34:05.106556+00:00'
  753. digest:
  754. dandi:dandi-etag: ec07bf4781c15259a01fe9ffdb55d75a-30
  755. dandi:sha2-256: 2a6889d98170015c218edc780c03d7a31c4d64bfeb3fb890d4fc37cf84bd1920
  756. encodingFormat: application/x-nwb
  757. id: dandiasset:e1eaaac6-b01e-432e-8f35-9748b61c93d1
  758. identifier: e1eaaac6-b01e-432e-8f35-9748b61c93d1
  759. keywords:
  760. - Superior Colliculus, Somatosensation, Whisking, Self motion
  761. measurementTechnique:
  762. - name: spike sorting technique
  763. schemaKey: MeasurementTechniqueType
  764. - name: analytical technique
  765. schemaKey: MeasurementTechniqueType
  766. - name: behavioral technique
  767. schemaKey: MeasurementTechniqueType
  768. - name: surgical technique
  769. schemaKey: MeasurementTechniqueType
  770. path: sub-M44/sub-M44_ses-20201207T155850_behavior+ecephys.nwb
  771. publishedBy:
  772. endDate: '2023-08-06T00:34:05.106556+00:00'
  773. id: urn:uuid:1c10a373-1559-4b37-9aa2-aefc4f3ba79e
  774. name: DANDI publish
  775. schemaKey: PublishActivity
  776. startDate: '2023-08-06T00:34:05.106556+00:00'
  777. wasAssociatedWith:
  778. - id: urn:uuid:1a0519d0-539f-4020-ab52-882f3315882d
  779. identifier: RRID:SCR_017571
  780. name: DANDI API
  781. schemaKey: Software
  782. version: 0.1.0
  783. schemaKey: Asset
  784. schemaVersion: 0.6.3
  785. variableMeasured:
  786. - schemaKey: PropertyValue
  787. value: SpatialSeries
  788. - schemaKey: PropertyValue
  789. value: ProcessingModule
  790. - schemaKey: PropertyValue
  791. value: Units
  792. - schemaKey: PropertyValue
  793. value: ElectrodeGroup
  794. - schemaKey: PropertyValue
  795. value: Position
  796. wasAttributedTo:
  797. - age:
  798. schemaKey: PropertyValue
  799. unitText: ISO-8601 duration
  800. value: P104DT61130S
  801. valueReference:
  802. schemaKey: PropertyValue
  803. value: dandi:BirthReference
  804. identifier: M44
  805. schemaKey: Participant
  806. sex:
  807. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  808. name: Male
  809. schemaKey: SexType
  810. species:
  811. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  812. name: Mus musculus - House mouse
  813. schemaKey: SpeciesType
  814. wasGeneratedBy:
  815. - description: mouse in whisker guided virtual navigation task
  816. name: Acquisition session
  817. schemaKey: Session
  818. startDate: '2020-12-07T15:58:50-05:00'
  819. - description: Metadata generated by DANDI cli
  820. id: urn:uuid:2d124e9d-1f48-4b6e-90d5-48c807ba674a
  821. name: Metadata generation
  822. schemaKey: Activity
  823. wasAssociatedWith:
  824. - identifier: RRID:SCR_019009
  825. name: DANDI Command Line Interface
  826. schemaKey: Software
  827. url: https://github.com/dandi/dandi-cli
  828. version: 0.46.1
  829. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  830. access:
  831. - schemaKey: AccessRequirements
  832. status: dandi:OpenAccess
  833. approach:
  834. - name: behavioral approach
  835. schemaKey: ApproachType
  836. - name: electrophysiological approach
  837. schemaKey: ApproachType
  838. blobDateModified: '2022-08-30T10:39:38.884045-04:00'
  839. contentSize: 2068531364
  840. contentUrl:
  841. - https://api.dandiarchive.org/api/assets/8ad35bc9-f347-4129-be57-13712bf9760f/download/
  842. - https://dandiarchive.s3.amazonaws.com/blobs/219/8cb/2198cba8-3b97-45d6-81f3-e11c5069c9fa
  843. dateModified: '2022-08-30T16:08:30.022837-04:00'
  844. datePublished: '2023-08-06T00:34:05.111894+00:00'
  845. digest:
  846. dandi:dandi-etag: 48a22aae8461372955e3502a8e07299b-31
  847. dandi:sha2-256: 2cae94318b0703ef7032e6ca236a190d4750845f19b04744b8782d878e8da0c9
  848. encodingFormat: application/x-nwb
  849. id: dandiasset:8ad35bc9-f347-4129-be57-13712bf9760f
  850. identifier: 8ad35bc9-f347-4129-be57-13712bf9760f
  851. keywords:
  852. - Superior Colliculus, Somatosensation, Whisking, Self motion
  853. measurementTechnique:
  854. - name: spike sorting technique
  855. schemaKey: MeasurementTechniqueType
  856. - name: analytical technique
  857. schemaKey: MeasurementTechniqueType
  858. - name: behavioral technique
  859. schemaKey: MeasurementTechniqueType
  860. - name: surgical technique
  861. schemaKey: MeasurementTechniqueType
  862. path: sub-M42/sub-M42_ses-20201201T143600_behavior+ecephys.nwb
  863. publishedBy:
  864. endDate: '2023-08-06T00:34:05.111894+00:00'
  865. id: urn:uuid:e1a90d28-f1dc-4962-891d-231381691487
  866. name: DANDI publish
  867. schemaKey: PublishActivity
  868. startDate: '2023-08-06T00:34:05.111894+00:00'
  869. wasAssociatedWith:
  870. - id: urn:uuid:1727fdcf-361e-4f97-9f39-40bd933c2ace
  871. identifier: RRID:SCR_017571
  872. name: DANDI API
  873. schemaKey: Software
  874. version: 0.1.0
  875. schemaKey: Asset
  876. schemaVersion: 0.6.3
  877. variableMeasured:
  878. - schemaKey: PropertyValue
  879. value: SpatialSeries
  880. - schemaKey: PropertyValue
  881. value: ProcessingModule
  882. - schemaKey: PropertyValue
  883. value: Units
  884. - schemaKey: PropertyValue
  885. value: ElectrodeGroup
  886. - schemaKey: PropertyValue
  887. value: Position
  888. wasAttributedTo:
  889. - age:
  890. schemaKey: PropertyValue
  891. unitText: ISO-8601 duration
  892. value: P98DT56160S
  893. valueReference:
  894. schemaKey: PropertyValue
  895. value: dandi:BirthReference
  896. identifier: M42
  897. schemaKey: Participant
  898. sex:
  899. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  900. name: Male
  901. schemaKey: SexType
  902. species:
  903. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  904. name: Mus musculus - House mouse
  905. schemaKey: SpeciesType
  906. wasGeneratedBy:
  907. - description: mouse in whisker guided virtual navigation task
  908. name: Acquisition session
  909. schemaKey: Session
  910. startDate: '2020-12-01T14:36:00-05:00'
  911. - description: Metadata generated by DANDI cli
  912. id: urn:uuid:20a28580-a2f9-4bfc-b83d-453aa0026dc3
  913. name: Metadata generation
  914. schemaKey: Activity
  915. wasAssociatedWith:
  916. - identifier: RRID:SCR_019009
  917. name: DANDI Command Line Interface
  918. schemaKey: Software
  919. url: https://github.com/dandi/dandi-cli
  920. version: 0.46.1
  921. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  922. access:
  923. - schemaKey: AccessRequirements
  924. status: dandi:OpenAccess
  925. approach:
  926. - name: behavioral approach
  927. schemaKey: ApproachType
  928. - name: electrophysiological approach
  929. schemaKey: ApproachType
  930. blobDateModified: '2022-08-30T10:31:51.555020-04:00'
  931. contentSize: 2142758168
  932. contentUrl:
  933. - https://api.dandiarchive.org/api/assets/a1bcbb2d-ba6d-4b45-a44c-b9b8e79260cb/download/
  934. - https://dandiarchive.s3.amazonaws.com/blobs/eab/614/eab6147f-b0da-453e-a6a9-44c1cad8c366
  935. dateModified: '2022-08-30T16:10:17.853644-04:00'
  936. datePublished: '2023-08-06T00:34:05.116938+00:00'
  937. digest:
  938. dandi:dandi-etag: 2b6b617e9b21b2538ccca6a9d7643cbd-32
  939. dandi:sha2-256: 2b686d759c3040a0874240672e61731098d6d491559bb569a56eed7a2ac7e08f
  940. encodingFormat: application/x-nwb
  941. id: dandiasset:a1bcbb2d-ba6d-4b45-a44c-b9b8e79260cb
  942. identifier: a1bcbb2d-ba6d-4b45-a44c-b9b8e79260cb
  943. keywords:
  944. - Superior Colliculus, Somatosensation, Whisking, Self motion
  945. measurementTechnique:
  946. - name: spike sorting technique
  947. schemaKey: MeasurementTechniqueType
  948. - name: analytical technique
  949. schemaKey: MeasurementTechniqueType
  950. - name: behavioral technique
  951. schemaKey: MeasurementTechniqueType
  952. - name: surgical technique
  953. schemaKey: MeasurementTechniqueType
  954. path: sub-M45/sub-M45_ses-20201209T141009_behavior+ecephys.nwb
  955. publishedBy:
  956. endDate: '2023-08-06T00:34:05.116938+00:00'
  957. id: urn:uuid:0894aa7e-dc84-4b65-87d1-7aa9610c9dd3
  958. name: DANDI publish
  959. schemaKey: PublishActivity
  960. startDate: '2023-08-06T00:34:05.116938+00:00'
  961. wasAssociatedWith:
  962. - id: urn:uuid:6e95f051-d094-4fac-9009-c23df808f432
  963. identifier: RRID:SCR_017571
  964. name: DANDI API
  965. schemaKey: Software
  966. version: 0.1.0
  967. schemaKey: Asset
  968. schemaVersion: 0.6.3
  969. variableMeasured:
  970. - schemaKey: PropertyValue
  971. value: SpatialSeries
  972. - schemaKey: PropertyValue
  973. value: ProcessingModule
  974. - schemaKey: PropertyValue
  975. value: Units
  976. - schemaKey: PropertyValue
  977. value: ElectrodeGroup
  978. - schemaKey: PropertyValue
  979. value: Position
  980. wasAttributedTo:
  981. - age:
  982. schemaKey: PropertyValue
  983. unitText: ISO-8601 duration
  984. value: P106DT54609S
  985. valueReference:
  986. schemaKey: PropertyValue
  987. value: dandi:BirthReference
  988. identifier: M45
  989. schemaKey: Participant
  990. sex:
  991. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  992. name: Male
  993. schemaKey: SexType
  994. species:
  995. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  996. name: Mus musculus - House mouse
  997. schemaKey: SpeciesType
  998. wasGeneratedBy:
  999. - description: mouse in whisker guided virtual navigation task
  1000. name: Acquisition session
  1001. schemaKey: Session
  1002. startDate: '2020-12-09T14:10:09-05:00'
  1003. - description: Metadata generated by DANDI cli
  1004. id: urn:uuid:f308b473-318b-4fc3-8c22-61e27411f1af
  1005. name: Metadata generation
  1006. schemaKey: Activity
  1007. wasAssociatedWith:
  1008. - identifier: RRID:SCR_019009
  1009. name: DANDI Command Line Interface
  1010. schemaKey: Software
  1011. url: https://github.com/dandi/dandi-cli
  1012. version: 0.46.1
  1013. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1014. access:
  1015. - schemaKey: AccessRequirements
  1016. status: dandi:OpenAccess
  1017. approach:
  1018. - name: behavioral approach
  1019. schemaKey: ApproachType
  1020. - name: electrophysiological approach
  1021. schemaKey: ApproachType
  1022. blobDateModified: '2022-08-30T10:41:56.783849-04:00'
  1023. contentSize: 2808147504
  1024. contentUrl:
  1025. - https://api.dandiarchive.org/api/assets/752bf6a0-8380-4f43-b5d1-304c194474e3/download/
  1026. - https://dandiarchive.s3.amazonaws.com/blobs/973/e96/973e9620-62f5-43ac-8617-9e646c22a5a5
  1027. dateModified: '2022-08-30T16:08:30.797272-04:00'
  1028. datePublished: '2023-08-06T00:34:05.074114+00:00'
  1029. digest:
  1030. dandi:dandi-etag: bfb155771646943ac15bb1ba3f895fee-42
  1031. dandi:sha2-256: 40953bb2c31e355b620ee39f030b57accec5bb97d1fbd713eb61ba3085e4713f
  1032. encodingFormat: application/x-nwb
  1033. id: dandiasset:752bf6a0-8380-4f43-b5d1-304c194474e3
  1034. identifier: 752bf6a0-8380-4f43-b5d1-304c194474e3
  1035. keywords:
  1036. - Superior Colliculus, Somatosensation, Whisking, Self motion
  1037. measurementTechnique:
  1038. - name: spike sorting technique
  1039. schemaKey: MeasurementTechniqueType
  1040. - name: analytical technique
  1041. schemaKey: MeasurementTechniqueType
  1042. - name: behavioral technique
  1043. schemaKey: MeasurementTechniqueType
  1044. - name: surgical technique
  1045. schemaKey: MeasurementTechniqueType
  1046. path: sub-M41/sub-M41_ses-20201127T144127_behavior+ecephys.nwb
  1047. publishedBy:
  1048. endDate: '2023-08-06T00:34:05.074114+00:00'
  1049. id: urn:uuid:3d847cf5-9429-4131-bf0c-cd549a289544
  1050. name: DANDI publish
  1051. schemaKey: PublishActivity
  1052. startDate: '2023-08-06T00:34:05.074114+00:00'
  1053. wasAssociatedWith:
  1054. - id: urn:uuid:390ad536-c2d1-40c6-b366-c44973a85c1d
  1055. identifier: RRID:SCR_017571
  1056. name: DANDI API
  1057. schemaKey: Software
  1058. version: 0.1.0
  1059. schemaKey: Asset
  1060. schemaVersion: 0.6.3
  1061. variableMeasured:
  1062. - schemaKey: PropertyValue
  1063. value: SpatialSeries
  1064. - schemaKey: PropertyValue
  1065. value: ProcessingModule
  1066. - schemaKey: PropertyValue
  1067. value: Units
  1068. - schemaKey: PropertyValue
  1069. value: ElectrodeGroup
  1070. - schemaKey: PropertyValue
  1071. value: Position
  1072. wasAttributedTo:
  1073. - age:
  1074. schemaKey: PropertyValue
  1075. unitText: ISO-8601 duration
  1076. value: P94DT56487S
  1077. valueReference:
  1078. schemaKey: PropertyValue
  1079. value: dandi:BirthReference
  1080. identifier: M41
  1081. schemaKey: Participant
  1082. sex:
  1083. identifier: http://purl.obolibrary.org/obo/PATO_0000383
  1084. name: Female
  1085. schemaKey: SexType
  1086. species:
  1087. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1088. name: Mus musculus - House mouse
  1089. schemaKey: SpeciesType
  1090. wasGeneratedBy:
  1091. - description: mouse in whisker guided virtual navigation task
  1092. name: Acquisition session
  1093. schemaKey: Session
  1094. startDate: '2020-11-27T14:41:27-05:00'
  1095. - description: Metadata generated by DANDI cli
  1096. id: urn:uuid:e0db2f97-6e09-42a7-add3-972ef1ad440e
  1097. name: Metadata generation
  1098. schemaKey: Activity
  1099. wasAssociatedWith:
  1100. - identifier: RRID:SCR_019009
  1101. name: DANDI Command Line Interface
  1102. schemaKey: Software
  1103. url: https://github.com/dandi/dandi-cli
  1104. version: 0.46.1
  1105. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1106. access:
  1107. - schemaKey: AccessRequirements
  1108. status: dandi:OpenAccess
  1109. approach:
  1110. - name: behavioral approach
  1111. schemaKey: ApproachType
  1112. - name: electrophysiological approach
  1113. schemaKey: ApproachType
  1114. blobDateModified: '2022-08-30T10:53:23.297831-04:00'
  1115. contentSize: 2921458899
  1116. contentUrl:
  1117. - https://api.dandiarchive.org/api/assets/8c4e7a04-1410-42e2-911a-aef8142cf2fb/download/
  1118. - https://dandiarchive.s3.amazonaws.com/blobs/358/c9e/358c9e70-5385-4a07-8a60-9ce7b6967987
  1119. dateModified: '2022-08-30T16:10:46.340081-04:00'
  1120. datePublished: '2023-08-06T00:34:05.079413+00:00'
  1121. digest:
  1122. dandi:dandi-etag: 4d330142e2659507c48ec4bcaa9eca3c-44
  1123. dandi:sha2-256: 63623a817c5b9db1479e885af3ea3c6529ba709c8918125a95f093e38cb7f516
  1124. encodingFormat: application/x-nwb
  1125. id: dandiasset:8c4e7a04-1410-42e2-911a-aef8142cf2fb
  1126. identifier: 8c4e7a04-1410-42e2-911a-aef8142cf2fb
  1127. keywords:
  1128. - Superior Colliculus, Somatosensation, Whisking, Self motion
  1129. measurementTechnique:
  1130. - name: spike sorting technique
  1131. schemaKey: MeasurementTechniqueType
  1132. - name: analytical technique
  1133. schemaKey: MeasurementTechniqueType
  1134. - name: behavioral technique
  1135. schemaKey: MeasurementTechniqueType
  1136. - name: surgical technique
  1137. schemaKey: MeasurementTechniqueType
  1138. path: sub-M50/sub-M50_ses-20211026T152836_behavior+ecephys.nwb
  1139. publishedBy:
  1140. endDate: '2023-08-06T00:34:05.079413+00:00'
  1141. id: urn:uuid:c84f1b66-4300-4fc5-96e2-85cc8da8a266
  1142. name: DANDI publish
  1143. schemaKey: PublishActivity
  1144. startDate: '2023-08-06T00:34:05.079413+00:00'
  1145. wasAssociatedWith:
  1146. - id: urn:uuid:0c442dc6-098c-4671-b3e2-445a8c0776dd
  1147. identifier: RRID:SCR_017571
  1148. name: DANDI API
  1149. schemaKey: Software
  1150. version: 0.1.0
  1151. schemaKey: Asset
  1152. schemaVersion: 0.6.3
  1153. variableMeasured:
  1154. - schemaKey: PropertyValue
  1155. value: SpatialSeries
  1156. - schemaKey: PropertyValue
  1157. value: ProcessingModule
  1158. - schemaKey: PropertyValue
  1159. value: Units
  1160. - schemaKey: PropertyValue
  1161. value: ElectrodeGroup
  1162. - schemaKey: PropertyValue
  1163. value: Position
  1164. wasAttributedTo:
  1165. - age:
  1166. schemaKey: PropertyValue
  1167. unitText: ISO-8601 duration
  1168. value: P138DT55716S
  1169. valueReference:
  1170. schemaKey: PropertyValue
  1171. value: dandi:BirthReference
  1172. identifier: M50
  1173. schemaKey: Participant
  1174. sex:
  1175. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1176. name: Male
  1177. schemaKey: SexType
  1178. species:
  1179. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1180. name: Mus musculus - House mouse
  1181. schemaKey: SpeciesType
  1182. wasGeneratedBy:
  1183. - description: mouse in whisker guided virtual navigation task
  1184. name: Acquisition session
  1185. schemaKey: Session
  1186. startDate: '2021-10-26T15:28:36-04:00'
  1187. - description: Metadata generated by DANDI cli
  1188. id: urn:uuid:1aa0a42f-d1be-4dec-be38-338b7213c3cb
  1189. name: Metadata generation
  1190. schemaKey: Activity
  1191. wasAssociatedWith:
  1192. - identifier: RRID:SCR_019009
  1193. name: DANDI Command Line Interface
  1194. schemaKey: Software
  1195. url: https://github.com/dandi/dandi-cli
  1196. version: 0.46.1
  1197. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  1198. access:
  1199. - schemaKey: AccessRequirements
  1200. status: dandi:OpenAccess
  1201. approach:
  1202. - name: behavioral approach
  1203. schemaKey: ApproachType
  1204. - name: electrophysiological approach
  1205. schemaKey: ApproachType
  1206. blobDateModified: '2022-08-30T10:54:41.966068-04:00'
  1207. contentSize: 2333456312
  1208. contentUrl:
  1209. - https://api.dandiarchive.org/api/assets/cf443dc4-fb02-42be-8a6c-f542cfa0fa6a/download/
  1210. - https://dandiarchive.s3.amazonaws.com/blobs/29d/d95/29dd95b5-e3c6-47f6-a74f-a0e6a545dd8d
  1211. dateModified: '2022-08-30T16:11:32.983138-04:00'
  1212. datePublished: '2023-08-06T00:34:05.088738+00:00'
  1213. digest:
  1214. dandi:dandi-etag: 22abfb464e9b61d20727c9d17250246a-35
  1215. dandi:sha2-256: 31562cdf25dda901b9b8bc747f36795a1e52a235e1f5e09b8b659aff048572a4
  1216. encodingFormat: application/x-nwb
  1217. id: dandiasset:cf443dc4-fb02-42be-8a6c-f542cfa0fa6a
  1218. identifier: cf443dc4-fb02-42be-8a6c-f542cfa0fa6a
  1219. keywords:
  1220. - Superior Colliculus, Somatosensation, Whisking, Self motion
  1221. measurementTechnique:
  1222. - name: spike sorting technique
  1223. schemaKey: MeasurementTechniqueType
  1224. - name: analytical technique
  1225. schemaKey: MeasurementTechniqueType
  1226. - name: behavioral technique
  1227. schemaKey: MeasurementTechniqueType
  1228. - name: surgical technique
  1229. schemaKey: MeasurementTechniqueType
  1230. path: sub-M52/sub-M52_ses-20211102T155806_behavior+ecephys.nwb
  1231. publishedBy:
  1232. endDate: '2023-08-06T00:34:05.088738+00:00'
  1233. id: urn:uuid:7e71892b-0ab3-419d-a71a-24cbb94534fe
  1234. name: DANDI publish
  1235. schemaKey: PublishActivity
  1236. startDate: '2023-08-06T00:34:05.088738+00:00'
  1237. wasAssociatedWith:
  1238. - id: urn:uuid:91eb9bd8-1493-4bbd-b676-70632bc94383
  1239. identifier: RRID:SCR_017571
  1240. name: DANDI API
  1241. schemaKey: Software
  1242. version: 0.1.0
  1243. schemaKey: Asset
  1244. schemaVersion: 0.6.3
  1245. variableMeasured:
  1246. - schemaKey: PropertyValue
  1247. value: SpatialSeries
  1248. - schemaKey: PropertyValue
  1249. value: ProcessingModule
  1250. - schemaKey: PropertyValue
  1251. value: Units
  1252. - schemaKey: PropertyValue
  1253. value: ElectrodeGroup
  1254. - schemaKey: PropertyValue
  1255. value: Position
  1256. wasAttributedTo:
  1257. - age:
  1258. schemaKey: PropertyValue
  1259. unitText: ISO-8601 duration
  1260. value: P145DT57486S
  1261. valueReference:
  1262. schemaKey: PropertyValue
  1263. value: dandi:BirthReference
  1264. identifier: M52
  1265. schemaKey: Participant
  1266. sex:
  1267. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1268. name: Male
  1269. schemaKey: SexType
  1270. species:
  1271. identifier: http://purl.obolibrary.org/obo/NCBITaxon_10090
  1272. name: Mus musculus - House mouse
  1273. schemaKey: SpeciesType
  1274. wasGeneratedBy:
  1275. - description: mouse in whisker guided virtual navigation task
  1276. name: Acquisition session
  1277. schemaKey: Session
  1278. startDate: '2021-11-02T15:58:06-04:00'
  1279. - description: Metadata generated by DANDI cli
  1280. id: urn:uuid:9405cffd-8b68-479f-973c-4e1a54c2631e
  1281. name: Metadata generation
  1282. schemaKey: Activity
  1283. wasAssociatedWith:
  1284. - identifier: RRID:SCR_019009
  1285. name: DANDI Command Line Interface
  1286. schemaKey: Software
  1287. url: https://github.com/dandi/dandi-cli
  1288. version: 0.46.1
Tip!

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

Comments

Loading...