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 34 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
  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. blobDateModified: '2023-01-20T09:48:14.545512-08:00'
  7. contentSize: 99151344
  8. contentUrl:
  9. - https://api.dandiarchive.org/api/assets/128cf126-0868-49ee-9440-a306bf785705/download/
  10. - https://dandiarchive.s3.amazonaws.com/blobs/bbc/769/bbc769e1-3522-4a88-88cd-6b2aa2feed60
  11. dateModified: '2023-01-20T09:50:23.985679-08:00'
  12. datePublished: '2023-06-05T20:24:07.133623+00:00'
  13. digest:
  14. dandi:dandi-etag: 50c8f4814f2139bd3763d8e15946ff60-2
  15. dandi:sha2-256: 7aa8c16fea5c730c9e8bd8053c7466824a06d2f8f96281513d1e537de65b311d
  16. encodingFormat: application/x-nwb
  17. id: dandiasset:128cf126-0868-49ee-9440-a306bf785705
  18. identifier: 128cf126-0868-49ee-9440-a306bf785705
  19. keywords:
  20. - BMI control
  21. - point process filter
  22. - chronic electrophysiolgy
  23. - motor cortex
  24. - premotor cortex
  25. - microwire arrays
  26. - monkey
  27. measurementTechnique:
  28. - name: analytical technique
  29. schemaKey: MeasurementTechniqueType
  30. path: sub-monk-j/sub-monk-j_ses-session3.nwb
  31. publishedBy:
  32. endDate: '2023-06-05T20:24:07.133623+00:00'
  33. id: urn:uuid:84eb5665-b055-40f4-ad5d-58a0ad442d24
  34. name: DANDI publish
  35. schemaKey: PublishActivity
  36. startDate: '2023-06-05T20:24:07.133623+00:00'
  37. wasAssociatedWith:
  38. - id: urn:uuid:6d79fed1-53d0-4229-81a4-391ef952a228
  39. identifier: RRID:SCR_017571
  40. name: DANDI API
  41. schemaKey: Software
  42. version: 0.1.0
  43. schemaKey: Asset
  44. schemaVersion: 0.6.3
  45. variableMeasured:
  46. - schemaKey: PropertyValue
  47. value: ProcessingModule
  48. wasAttributedTo:
  49. - age:
  50. schemaKey: PropertyValue
  51. unitText: ISO-8601 duration
  52. value: P12Y
  53. valueReference:
  54. schemaKey: PropertyValue
  55. value: dandi:BirthReference
  56. identifier: monk_j
  57. schemaKey: Participant
  58. sex:
  59. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  60. name: Male
  61. schemaKey: SexType
  62. species:
  63. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  64. name: Macaca mulatta - Rhesus monkey
  65. schemaKey: SpeciesType
  66. wasGeneratedBy:
  67. - description: Monkey performing 2D cursor BMI
  68. identifier: session3
  69. name: session3
  70. schemaKey: Session
  71. startDate: '2013-08-31T00:00:00-07:00'
  72. - description: Metadata generated by DANDI cli
  73. id: urn:uuid:0b45494b-7873-43d6-9d59-b7e319c599c0
  74. name: Metadata generation
  75. schemaKey: Activity
  76. wasAssociatedWith:
  77. - identifier: RRID:SCR_019009
  78. name: DANDI Command Line Interface
  79. schemaKey: Software
  80. url: https://github.com/dandi/dandi-cli
  81. version: 0.48.0
  82. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  83. access:
  84. - schemaKey: AccessRequirements
  85. status: dandi:OpenAccess
  86. approach: []
  87. blobDateModified: '2023-01-20T09:47:33.597646-08:00'
  88. contentSize: 76874340
  89. contentUrl:
  90. - https://api.dandiarchive.org/api/assets/efec8b8d-bb23-4a17-9e0b-0adbf01e94ee/download/
  91. - https://dandiarchive.s3.amazonaws.com/blobs/d0b/500/d0b500f7-1890-46e8-aef9-299cb444485d
  92. dateModified: '2023-01-20T09:50:24.044275-08:00'
  93. datePublished: '2023-06-05T20:24:07.166272+00:00'
  94. digest:
  95. dandi:dandi-etag: 72c917b6035ca3220fa0d3bb2cad6332-2
  96. dandi:sha2-256: 8160e7a6ea077fecd54f9ad2ddbb376c847549751051717b33e95459bcf2f54c
  97. encodingFormat: application/x-nwb
  98. id: dandiasset:efec8b8d-bb23-4a17-9e0b-0adbf01e94ee
  99. identifier: efec8b8d-bb23-4a17-9e0b-0adbf01e94ee
  100. keywords:
  101. - BMI control
  102. - kalman filter
  103. - chronic electrophysiolgy
  104. - motor cortex
  105. - premotor cortex
  106. - microwire arrays
  107. - monkey
  108. measurementTechnique:
  109. - name: analytical technique
  110. schemaKey: MeasurementTechniqueType
  111. path: sub-monk-g/sub-monk-g_ses-session3.nwb
  112. publishedBy:
  113. endDate: '2023-06-05T20:24:07.166272+00:00'
  114. id: urn:uuid:c974b293-e38a-4b04-8457-54aa0c021e3f
  115. name: DANDI publish
  116. schemaKey: PublishActivity
  117. startDate: '2023-06-05T20:24:07.166272+00:00'
  118. wasAssociatedWith:
  119. - id: urn:uuid:75a6eb81-ef60-4d7b-94e4-0bde5646040d
  120. identifier: RRID:SCR_017571
  121. name: DANDI API
  122. schemaKey: Software
  123. version: 0.1.0
  124. schemaKey: Asset
  125. schemaVersion: 0.6.3
  126. variableMeasured:
  127. - schemaKey: PropertyValue
  128. value: ProcessingModule
  129. wasAttributedTo:
  130. - age:
  131. schemaKey: PropertyValue
  132. unitText: ISO-8601 duration
  133. value: P8Y
  134. valueReference:
  135. schemaKey: PropertyValue
  136. value: dandi:BirthReference
  137. identifier: monk_g
  138. schemaKey: Participant
  139. sex:
  140. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  141. name: Male
  142. schemaKey: SexType
  143. species:
  144. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  145. name: Macaca mulatta - Rhesus monkey
  146. schemaKey: SpeciesType
  147. wasGeneratedBy:
  148. - description: Monkey performing 2D cursor BMI
  149. identifier: session3
  150. name: session3
  151. schemaKey: Session
  152. startDate: '2016-03-15T00:00:00-07:00'
  153. - description: Metadata generated by DANDI cli
  154. id: urn:uuid:25be1127-de30-45b0-b6d1-0a5177033714
  155. name: Metadata generation
  156. schemaKey: Activity
  157. wasAssociatedWith:
  158. - identifier: RRID:SCR_019009
  159. name: DANDI Command Line Interface
  160. schemaKey: Software
  161. url: https://github.com/dandi/dandi-cli
  162. version: 0.48.0
  163. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  164. access:
  165. - schemaKey: AccessRequirements
  166. status: dandi:OpenAccess
  167. approach: []
  168. blobDateModified: '2023-01-20T09:48:08.262352-08:00'
  169. contentSize: 71358992
  170. contentUrl:
  171. - https://api.dandiarchive.org/api/assets/fc69022c-ccdc-49ef-a5bb-662f3cb87ee0/download/
  172. - https://dandiarchive.s3.amazonaws.com/blobs/f63/81e/f6381ea8-65fd-4ebd-aeb9-2519851c65f0
  173. dateModified: '2023-01-20T09:50:23.787511-08:00'
  174. datePublished: '2023-06-05T20:24:07.173453+00:00'
  175. digest:
  176. dandi:dandi-etag: a5de07275df737e37f9b5fc6c1347d46-2
  177. dandi:sha2-256: 71d94f47d4efeaf5eb77aaaa477a9353a9d195e2bdcaabcfe69fd8abb7fc34b2
  178. encodingFormat: application/x-nwb
  179. id: dandiasset:fc69022c-ccdc-49ef-a5bb-662f3cb87ee0
  180. identifier: fc69022c-ccdc-49ef-a5bb-662f3cb87ee0
  181. keywords:
  182. - BMI control
  183. - point process filter
  184. - chronic electrophysiolgy
  185. - motor cortex
  186. - premotor cortex
  187. - microwire arrays
  188. - monkey
  189. measurementTechnique:
  190. - name: analytical technique
  191. schemaKey: MeasurementTechniqueType
  192. path: sub-monk-j/sub-monk-j_ses-session2.nwb
  193. publishedBy:
  194. endDate: '2023-06-05T20:24:07.173453+00:00'
  195. id: urn:uuid:4d7dc6d3-74c2-4f69-a784-bf39a265f556
  196. name: DANDI publish
  197. schemaKey: PublishActivity
  198. startDate: '2023-06-05T20:24:07.173453+00:00'
  199. wasAssociatedWith:
  200. - id: urn:uuid:255c8562-9a04-43af-a48e-0d8e1b4ac5fb
  201. identifier: RRID:SCR_017571
  202. name: DANDI API
  203. schemaKey: Software
  204. version: 0.1.0
  205. schemaKey: Asset
  206. schemaVersion: 0.6.3
  207. variableMeasured:
  208. - schemaKey: PropertyValue
  209. value: ProcessingModule
  210. wasAttributedTo:
  211. - age:
  212. schemaKey: PropertyValue
  213. unitText: ISO-8601 duration
  214. value: P12Y
  215. valueReference:
  216. schemaKey: PropertyValue
  217. value: dandi:BirthReference
  218. identifier: monk_j
  219. schemaKey: Participant
  220. sex:
  221. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  222. name: Male
  223. schemaKey: SexType
  224. species:
  225. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  226. name: Macaca mulatta - Rhesus monkey
  227. schemaKey: SpeciesType
  228. wasGeneratedBy:
  229. - description: Monkey performing 2D cursor BMI
  230. identifier: session2
  231. name: session2
  232. schemaKey: Session
  233. startDate: '2013-08-29T00:00:00-07:00'
  234. - description: Metadata generated by DANDI cli
  235. id: urn:uuid:426a55a7-ae9b-4421-94b9-3353289e196f
  236. name: Metadata generation
  237. schemaKey: Activity
  238. wasAssociatedWith:
  239. - identifier: RRID:SCR_019009
  240. name: DANDI Command Line Interface
  241. schemaKey: Software
  242. url: https://github.com/dandi/dandi-cli
  243. version: 0.48.0
  244. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  245. access:
  246. - schemaKey: AccessRequirements
  247. status: dandi:OpenAccess
  248. approach: []
  249. blobDateModified: '2023-01-20T09:48:03.461306-08:00'
  250. contentSize: 124483892
  251. contentUrl:
  252. - https://api.dandiarchive.org/api/assets/15b0be5c-e6ef-44f8-ba82-86c8e00d25b1/download/
  253. - https://dandiarchive.s3.amazonaws.com/blobs/1f5/319/1f531993-5b7d-4941-a3d1-1fd27feed793
  254. dateModified: '2023-01-20T09:50:23.694405-08:00'
  255. datePublished: '2023-06-05T20:24:07.179962+00:00'
  256. digest:
  257. dandi:dandi-etag: 58b727be6815c67d74caec6ba6340a96-2
  258. dandi:sha2-256: fb3d4fe004845aa221d22df7722cbb288c7a8c40ddee8c950c8a93475f7e0a9b
  259. encodingFormat: application/x-nwb
  260. id: dandiasset:15b0be5c-e6ef-44f8-ba82-86c8e00d25b1
  261. identifier: 15b0be5c-e6ef-44f8-ba82-86c8e00d25b1
  262. keywords:
  263. - BMI control
  264. - point process filter
  265. - chronic electrophysiolgy
  266. - motor cortex
  267. - premotor cortex
  268. - microwire arrays
  269. - monkey
  270. measurementTechnique:
  271. - name: analytical technique
  272. schemaKey: MeasurementTechniqueType
  273. path: sub-monk-j/sub-monk-j_ses-session1.nwb
  274. publishedBy:
  275. endDate: '2023-06-05T20:24:07.179962+00:00'
  276. id: urn:uuid:4f27fe9f-aa81-42d5-9c79-384faee42766
  277. name: DANDI publish
  278. schemaKey: PublishActivity
  279. startDate: '2023-06-05T20:24:07.179962+00:00'
  280. wasAssociatedWith:
  281. - id: urn:uuid:8cc8c5d3-dbac-4500-aae1-c1de88fee960
  282. identifier: RRID:SCR_017571
  283. name: DANDI API
  284. schemaKey: Software
  285. version: 0.1.0
  286. schemaKey: Asset
  287. schemaVersion: 0.6.3
  288. variableMeasured:
  289. - schemaKey: PropertyValue
  290. value: ProcessingModule
  291. wasAttributedTo:
  292. - age:
  293. schemaKey: PropertyValue
  294. unitText: ISO-8601 duration
  295. value: P12Y
  296. valueReference:
  297. schemaKey: PropertyValue
  298. value: dandi:BirthReference
  299. identifier: monk_j
  300. schemaKey: Participant
  301. sex:
  302. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  303. name: Male
  304. schemaKey: SexType
  305. species:
  306. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  307. name: Macaca mulatta - Rhesus monkey
  308. schemaKey: SpeciesType
  309. wasGeneratedBy:
  310. - description: Monkey performing 2D cursor BMI
  311. identifier: session1
  312. name: session1
  313. schemaKey: Session
  314. startDate: '2013-08-24T00:00:00-07:00'
  315. - description: Metadata generated by DANDI cli
  316. id: urn:uuid:5de041c8-cee7-4dc8-8793-2c8a70db7e37
  317. name: Metadata generation
  318. schemaKey: Activity
  319. wasAssociatedWith:
  320. - identifier: RRID:SCR_019009
  321. name: DANDI Command Line Interface
  322. schemaKey: Software
  323. url: https://github.com/dandi/dandi-cli
  324. version: 0.48.0
  325. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  326. access:
  327. - schemaKey: AccessRequirements
  328. status: dandi:OpenAccess
  329. approach: []
  330. blobDateModified: '2023-01-20T09:47:56.095153-08:00'
  331. contentSize: 194490224
  332. contentUrl:
  333. - https://api.dandiarchive.org/api/assets/c1017926-c478-43aa-a474-87368492a31c/download/
  334. - https://dandiarchive.s3.amazonaws.com/blobs/852/7b2/8527b206-adcd-4b76-8cd9-a6cf1e57d9c8
  335. dateModified: '2023-01-20T09:50:23.930471-08:00'
  336. datePublished: '2023-06-05T20:24:07.185928+00:00'
  337. digest:
  338. dandi:dandi-etag: 80f67a5f8183121b8af40b2087b5db56-3
  339. dandi:sha2-256: c253942f51dd32f47d2debcc6420e94eba76ce89a27d77d861b4c8194115c065
  340. encodingFormat: application/x-nwb
  341. id: dandiasset:c1017926-c478-43aa-a474-87368492a31c
  342. identifier: c1017926-c478-43aa-a474-87368492a31c
  343. keywords:
  344. - BMI control
  345. - point process filter
  346. - chronic electrophysiolgy
  347. - motor cortex
  348. - premotor cortex
  349. - microwire arrays
  350. - monkey
  351. measurementTechnique:
  352. - name: analytical technique
  353. schemaKey: MeasurementTechniqueType
  354. path: sub-monk-j/sub-monk-j_ses-session0.nwb
  355. publishedBy:
  356. endDate: '2023-06-05T20:24:07.185928+00:00'
  357. id: urn:uuid:413904fc-e09d-498a-84b7-1ddb4712cdb9
  358. name: DANDI publish
  359. schemaKey: PublishActivity
  360. startDate: '2023-06-05T20:24:07.185928+00:00'
  361. wasAssociatedWith:
  362. - id: urn:uuid:86509c6f-9a3c-4095-b9c9-64900fc96bfd
  363. identifier: RRID:SCR_017571
  364. name: DANDI API
  365. schemaKey: Software
  366. version: 0.1.0
  367. schemaKey: Asset
  368. schemaVersion: 0.6.3
  369. variableMeasured:
  370. - schemaKey: PropertyValue
  371. value: ProcessingModule
  372. wasAttributedTo:
  373. - age:
  374. schemaKey: PropertyValue
  375. unitText: ISO-8601 duration
  376. value: P12Y
  377. valueReference:
  378. schemaKey: PropertyValue
  379. value: dandi:BirthReference
  380. identifier: monk_j
  381. schemaKey: Participant
  382. sex:
  383. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  384. name: Male
  385. schemaKey: SexType
  386. species:
  387. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  388. name: Macaca mulatta - Rhesus monkey
  389. schemaKey: SpeciesType
  390. wasGeneratedBy:
  391. - description: Monkey performing 2D cursor BMI
  392. identifier: session0
  393. name: session0
  394. schemaKey: Session
  395. startDate: '2013-08-24T00:00:00-07:00'
  396. - description: Metadata generated by DANDI cli
  397. id: urn:uuid:13668c67-fc8f-4264-bd08-a42d698df086
  398. name: Metadata generation
  399. schemaKey: Activity
  400. wasAssociatedWith:
  401. - identifier: RRID:SCR_019009
  402. name: DANDI Command Line Interface
  403. schemaKey: Software
  404. url: https://github.com/dandi/dandi-cli
  405. version: 0.48.0
  406. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  407. access:
  408. - schemaKey: AccessRequirements
  409. status: dandi:OpenAccess
  410. approach: []
  411. blobDateModified: '2023-01-20T09:47:23.529602-08:00'
  412. contentSize: 30577940
  413. contentUrl:
  414. - https://api.dandiarchive.org/api/assets/7a8b432a-188d-4ceb-bb1b-f05d6a14629d/download/
  415. - https://dandiarchive.s3.amazonaws.com/blobs/7b6/706/7b6706b0-7a8a-4d50-8167-cbacd069d864
  416. dateModified: '2023-01-20T09:51:48.482416-08:00'
  417. datePublished: '2023-06-05T20:24:07.193083+00:00'
  418. digest:
  419. dandi:dandi-etag: ff758885ac60386abedc7ef61660844d-1
  420. dandi:sha2-256: f2190c53c0d7ecd15ceb16387a9295fa53f9830501e036efdfaab96d3eb587d9
  421. encodingFormat: application/x-nwb
  422. id: dandiasset:7a8b432a-188d-4ceb-bb1b-f05d6a14629d
  423. identifier: 7a8b432a-188d-4ceb-bb1b-f05d6a14629d
  424. keywords:
  425. - BMI control
  426. - kalman filter
  427. - chronic electrophysiolgy
  428. - motor cortex
  429. - premotor cortex
  430. - microwire arrays
  431. - monkey
  432. measurementTechnique:
  433. - name: analytical technique
  434. schemaKey: MeasurementTechniqueType
  435. path: sub-monk-g/sub-monk-g_ses-session1.nwb
  436. publishedBy:
  437. endDate: '2023-06-05T20:24:07.193083+00:00'
  438. id: urn:uuid:9bfcc22e-029c-4995-88b5-a20c15211f4a
  439. name: DANDI publish
  440. schemaKey: PublishActivity
  441. startDate: '2023-06-05T20:24:07.193083+00:00'
  442. wasAssociatedWith:
  443. - id: urn:uuid:47fdd2ec-cd05-49d0-9b9c-c84c21b9d012
  444. identifier: RRID:SCR_017571
  445. name: DANDI API
  446. schemaKey: Software
  447. version: 0.1.0
  448. schemaKey: Asset
  449. schemaVersion: 0.6.3
  450. variableMeasured:
  451. - schemaKey: PropertyValue
  452. value: ProcessingModule
  453. wasAttributedTo:
  454. - age:
  455. schemaKey: PropertyValue
  456. unitText: ISO-8601 duration
  457. value: P8Y
  458. valueReference:
  459. schemaKey: PropertyValue
  460. value: dandi:BirthReference
  461. identifier: monk_g
  462. schemaKey: Participant
  463. sex:
  464. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  465. name: Male
  466. schemaKey: SexType
  467. species:
  468. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  469. name: Macaca mulatta - Rhesus monkey
  470. schemaKey: SpeciesType
  471. wasGeneratedBy:
  472. - description: Monkey performing 2D cursor BMI
  473. identifier: session1
  474. name: session1
  475. schemaKey: Session
  476. startDate: '2016-03-04T00:00:00-08:00'
  477. - description: Metadata generated by DANDI cli
  478. id: urn:uuid:9a97cea0-fb24-42b5-a6fa-d3bfae576002
  479. name: Metadata generation
  480. schemaKey: Activity
  481. wasAssociatedWith:
  482. - identifier: RRID:SCR_019009
  483. name: DANDI Command Line Interface
  484. schemaKey: Software
  485. url: https://github.com/dandi/dandi-cli
  486. version: 0.48.0
  487. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  488. access:
  489. - schemaKey: AccessRequirements
  490. status: dandi:OpenAccess
  491. approach: []
  492. blobDateModified: '2023-01-20T09:47:40.474307-08:00'
  493. contentSize: 51457528
  494. contentUrl:
  495. - https://api.dandiarchive.org/api/assets/05d4349e-0a6a-4ca1-9ab2-6f8357d8cf61/download/
  496. - https://dandiarchive.s3.amazonaws.com/blobs/90e/522/90e5225c-eb0c-49f8-ab51-ccded8491e40
  497. dateModified: '2023-01-20T09:51:49.070471-08:00'
  498. datePublished: '2023-06-05T20:24:07.198372+00:00'
  499. digest:
  500. dandi:dandi-etag: 4ed26880c7f7a3d2fa602a4e7724c31b-1
  501. dandi:sha2-256: 45b1dedd765c0e9ad03d228cf114e7f298adf69e064b9ef0119ab7b32d49cd0b
  502. encodingFormat: application/x-nwb
  503. id: dandiasset:05d4349e-0a6a-4ca1-9ab2-6f8357d8cf61
  504. identifier: 05d4349e-0a6a-4ca1-9ab2-6f8357d8cf61
  505. keywords:
  506. - BMI control
  507. - kalman filter
  508. - chronic electrophysiolgy
  509. - motor cortex
  510. - premotor cortex
  511. - microwire arrays
  512. - monkey
  513. measurementTechnique:
  514. - name: analytical technique
  515. schemaKey: MeasurementTechniqueType
  516. path: sub-monk-g/sub-monk-g_ses-session5.nwb
  517. publishedBy:
  518. endDate: '2023-06-05T20:24:07.198372+00:00'
  519. id: urn:uuid:f471b0cd-1dd9-4bf3-a627-e035a588d0f4
  520. name: DANDI publish
  521. schemaKey: PublishActivity
  522. startDate: '2023-06-05T20:24:07.198372+00:00'
  523. wasAssociatedWith:
  524. - id: urn:uuid:e1aeffc6-a0d7-4eaf-ab34-1c8bd7ca381c
  525. identifier: RRID:SCR_017571
  526. name: DANDI API
  527. schemaKey: Software
  528. version: 0.1.0
  529. schemaKey: Asset
  530. schemaVersion: 0.6.3
  531. variableMeasured:
  532. - schemaKey: PropertyValue
  533. value: ProcessingModule
  534. wasAttributedTo:
  535. - age:
  536. schemaKey: PropertyValue
  537. unitText: ISO-8601 duration
  538. value: P8Y
  539. valueReference:
  540. schemaKey: PropertyValue
  541. value: dandi:BirthReference
  542. identifier: monk_g
  543. schemaKey: Participant
  544. sex:
  545. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  546. name: Male
  547. schemaKey: SexType
  548. species:
  549. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  550. name: Macaca mulatta - Rhesus monkey
  551. schemaKey: SpeciesType
  552. wasGeneratedBy:
  553. - description: Monkey performing 2D cursor BMI
  554. identifier: session5
  555. name: session5
  556. schemaKey: Session
  557. startDate: '2016-03-17T00:00:00-07:00'
  558. - description: Metadata generated by DANDI cli
  559. id: urn:uuid:532050db-93f1-4c40-9a16-9e91c1c3048d
  560. name: Metadata generation
  561. schemaKey: Activity
  562. wasAssociatedWith:
  563. - identifier: RRID:SCR_019009
  564. name: DANDI Command Line Interface
  565. schemaKey: Software
  566. url: https://github.com/dandi/dandi-cli
  567. version: 0.48.0
  568. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  569. access:
  570. - schemaKey: AccessRequirements
  571. status: dandi:OpenAccess
  572. approach: []
  573. blobDateModified: '2023-01-20T09:47:21.449934-08:00'
  574. contentSize: 47605112
  575. contentUrl:
  576. - https://api.dandiarchive.org/api/assets/1465157d-39ea-4fdc-a6fc-a96f4d4e4368/download/
  577. - https://dandiarchive.s3.amazonaws.com/blobs/1ab/87d/1ab87d9d-e193-4736-8bb2-6c66300c0b12
  578. dateModified: '2023-01-20T09:51:46.302000-08:00'
  579. datePublished: '2023-06-05T20:24:07.203542+00:00'
  580. digest:
  581. dandi:dandi-etag: 28cea73d4ac1e1df46392f3a8959bae5-1
  582. dandi:sha2-256: 0a75738723af967328461d5cb386d6ad5a0c6c16ddaf2f72f9a8b69a4dd792b3
  583. encodingFormat: application/x-nwb
  584. id: dandiasset:1465157d-39ea-4fdc-a6fc-a96f4d4e4368
  585. identifier: 1465157d-39ea-4fdc-a6fc-a96f4d4e4368
  586. keywords:
  587. - BMI control
  588. - kalman filter
  589. - chronic electrophysiolgy
  590. - motor cortex
  591. - premotor cortex
  592. - microwire arrays
  593. - monkey
  594. measurementTechnique:
  595. - name: analytical technique
  596. schemaKey: MeasurementTechniqueType
  597. path: sub-monk-g/sub-monk-g_ses-session0.nwb
  598. publishedBy:
  599. endDate: '2023-06-05T20:24:07.203542+00:00'
  600. id: urn:uuid:620c16d0-ef95-41b7-98a6-c3434a015cd0
  601. name: DANDI publish
  602. schemaKey: PublishActivity
  603. startDate: '2023-06-05T20:24:07.203542+00:00'
  604. wasAssociatedWith:
  605. - id: urn:uuid:297f5b0e-5070-4736-b757-aa44c1284d3a
  606. identifier: RRID:SCR_017571
  607. name: DANDI API
  608. schemaKey: Software
  609. version: 0.1.0
  610. schemaKey: Asset
  611. schemaVersion: 0.6.3
  612. variableMeasured:
  613. - schemaKey: PropertyValue
  614. value: ProcessingModule
  615. wasAttributedTo:
  616. - age:
  617. schemaKey: PropertyValue
  618. unitText: ISO-8601 duration
  619. value: P8Y
  620. valueReference:
  621. schemaKey: PropertyValue
  622. value: dandi:BirthReference
  623. identifier: monk_g
  624. schemaKey: Participant
  625. sex:
  626. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  627. name: Male
  628. schemaKey: SexType
  629. species:
  630. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  631. name: Macaca mulatta - Rhesus monkey
  632. schemaKey: SpeciesType
  633. wasGeneratedBy:
  634. - description: Monkey performing 2D cursor BMI
  635. identifier: session0
  636. name: session0
  637. schemaKey: Session
  638. startDate: '2016-03-02T00:00:00-08:00'
  639. - description: Metadata generated by DANDI cli
  640. id: urn:uuid:54991602-8b7a-41a8-b585-193199f6a620
  641. name: Metadata generation
  642. schemaKey: Activity
  643. wasAssociatedWith:
  644. - identifier: RRID:SCR_019009
  645. name: DANDI Command Line Interface
  646. schemaKey: Software
  647. url: https://github.com/dandi/dandi-cli
  648. version: 0.48.0
  649. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  650. access:
  651. - schemaKey: AccessRequirements
  652. status: dandi:OpenAccess
  653. approach: []
  654. blobDateModified: '2023-01-20T09:47:42.165257-08:00'
  655. contentSize: 25525728
  656. contentUrl:
  657. - https://api.dandiarchive.org/api/assets/5a0e6943-2b73-48f7-9c95-f8510b8b9189/download/
  658. - https://dandiarchive.s3.amazonaws.com/blobs/5a1/86b/5a186be7-9491-48cf-8d78-ed4d810ae297
  659. dateModified: '2023-01-20T09:52:27.497373-08:00'
  660. datePublished: '2023-06-05T20:24:07.209916+00:00'
  661. digest:
  662. dandi:dandi-etag: 3b2407b4863474ea96d88acdaa8d29f2-1
  663. dandi:sha2-256: 6a2661b9a6062d89a725d873eacee88bc11f0d617d7b023d1c87b620057b8a74
  664. encodingFormat: application/x-nwb
  665. id: dandiasset:5a0e6943-2b73-48f7-9c95-f8510b8b9189
  666. identifier: 5a0e6943-2b73-48f7-9c95-f8510b8b9189
  667. keywords:
  668. - BMI control
  669. - kalman filter
  670. - chronic electrophysiolgy
  671. - motor cortex
  672. - premotor cortex
  673. - microwire arrays
  674. - monkey
  675. measurementTechnique:
  676. - name: analytical technique
  677. schemaKey: MeasurementTechniqueType
  678. path: sub-monk-g/sub-monk-g_ses-session6.nwb
  679. publishedBy:
  680. endDate: '2023-06-05T20:24:07.209916+00:00'
  681. id: urn:uuid:d13cd199-7f98-4014-9f1f-2f7f8d5431d4
  682. name: DANDI publish
  683. schemaKey: PublishActivity
  684. startDate: '2023-06-05T20:24:07.209916+00:00'
  685. wasAssociatedWith:
  686. - id: urn:uuid:23fd2af0-4280-4134-835c-e5f8cd15c70e
  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: ProcessingModule
  696. wasAttributedTo:
  697. - age:
  698. schemaKey: PropertyValue
  699. unitText: ISO-8601 duration
  700. value: P8Y
  701. valueReference:
  702. schemaKey: PropertyValue
  703. value: dandi:BirthReference
  704. identifier: monk_g
  705. schemaKey: Participant
  706. sex:
  707. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  708. name: Male
  709. schemaKey: SexType
  710. species:
  711. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  712. name: Macaca mulatta - Rhesus monkey
  713. schemaKey: SpeciesType
  714. wasGeneratedBy:
  715. - description: Monkey performing 2D cursor BMI
  716. identifier: session6
  717. name: session6
  718. schemaKey: Session
  719. startDate: '2016-03-18T00:00:00-07:00'
  720. - description: Metadata generated by DANDI cli
  721. id: urn:uuid:9c0ad4ce-52bc-426b-bc37-a2b3af72e2e6
  722. name: Metadata generation
  723. schemaKey: Activity
  724. wasAssociatedWith:
  725. - identifier: RRID:SCR_019009
  726. name: DANDI Command Line Interface
  727. schemaKey: Software
  728. url: https://github.com/dandi/dandi-cli
  729. version: 0.48.0
  730. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  731. access:
  732. - schemaKey: AccessRequirements
  733. status: dandi:OpenAccess
  734. approach: []
  735. blobDateModified: '2023-01-20T09:47:43.447350-08:00'
  736. contentSize: 16887088
  737. contentUrl:
  738. - https://api.dandiarchive.org/api/assets/c9451847-9fe3-405c-80e4-b3102332f43a/download/
  739. - https://dandiarchive.s3.amazonaws.com/blobs/384/555/38455573-9743-48ac-9345-9bb814ceef58
  740. dateModified: '2023-01-20T09:52:40.984865-08:00'
  741. datePublished: '2023-06-05T20:24:07.215678+00:00'
  742. digest:
  743. dandi:dandi-etag: 123ba8057ddfe4cc3e621c70b4cf07c0-1
  744. dandi:sha2-256: 56cc2855d713c880051e07cf4d2d15b3cff1d08c76477d7fab0644cc59fcc9e2
  745. encodingFormat: application/x-nwb
  746. id: dandiasset:c9451847-9fe3-405c-80e4-b3102332f43a
  747. identifier: c9451847-9fe3-405c-80e4-b3102332f43a
  748. keywords:
  749. - BMI control
  750. - kalman filter
  751. - chronic electrophysiolgy
  752. - motor cortex
  753. - premotor cortex
  754. - microwire arrays
  755. - monkey
  756. measurementTechnique:
  757. - name: analytical technique
  758. schemaKey: MeasurementTechniqueType
  759. path: sub-monk-g/sub-monk-g_ses-session7.nwb
  760. publishedBy:
  761. endDate: '2023-06-05T20:24:07.215678+00:00'
  762. id: urn:uuid:a3b3789a-93e5-4275-bf3e-a7707f477155
  763. name: DANDI publish
  764. schemaKey: PublishActivity
  765. startDate: '2023-06-05T20:24:07.215678+00:00'
  766. wasAssociatedWith:
  767. - id: urn:uuid:87b51d06-4d18-452c-bd60-38351a08d1c5
  768. identifier: RRID:SCR_017571
  769. name: DANDI API
  770. schemaKey: Software
  771. version: 0.1.0
  772. schemaKey: Asset
  773. schemaVersion: 0.6.3
  774. variableMeasured:
  775. - schemaKey: PropertyValue
  776. value: ProcessingModule
  777. wasAttributedTo:
  778. - age:
  779. schemaKey: PropertyValue
  780. unitText: ISO-8601 duration
  781. value: P8Y
  782. valueReference:
  783. schemaKey: PropertyValue
  784. value: dandi:BirthReference
  785. identifier: monk_g
  786. schemaKey: Participant
  787. sex:
  788. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  789. name: Male
  790. schemaKey: SexType
  791. species:
  792. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  793. name: Macaca mulatta - Rhesus monkey
  794. schemaKey: SpeciesType
  795. wasGeneratedBy:
  796. - description: Monkey performing 2D cursor BMI
  797. identifier: session7
  798. name: session7
  799. schemaKey: Session
  800. startDate: '2016-03-19T00:00:00-07:00'
  801. - description: Metadata generated by DANDI cli
  802. id: urn:uuid:2f83a193-0cf3-4604-b9fa-471feabac7f0
  803. name: Metadata generation
  804. schemaKey: Activity
  805. wasAssociatedWith:
  806. - identifier: RRID:SCR_019009
  807. name: DANDI Command Line Interface
  808. schemaKey: Software
  809. url: https://github.com/dandi/dandi-cli
  810. version: 0.48.0
  811. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  812. access:
  813. - schemaKey: AccessRequirements
  814. status: dandi:OpenAccess
  815. approach: []
  816. blobDateModified: '2023-01-20T09:47:29.542690-08:00'
  817. contentSize: 180789944
  818. contentUrl:
  819. - https://api.dandiarchive.org/api/assets/9a286d00-9460-4def-abb2-eaaeb2d0cb03/download/
  820. - https://dandiarchive.s3.amazonaws.com/blobs/f1c/eea/f1ceeab1-44d4-4eb9-96d6-eec09a12bd3e
  821. dateModified: '2023-01-20T09:51:45.113721-08:00'
  822. datePublished: '2023-06-05T20:24:07.221504+00:00'
  823. digest:
  824. dandi:dandi-etag: 08d02db94db802ab0a4a0d35e7b0b403-3
  825. dandi:sha2-256: 9173b24e4c7f3b064af5492f76e54e65880666716dfe0b2e2bd8adbcbf2338dc
  826. encodingFormat: application/x-nwb
  827. id: dandiasset:9a286d00-9460-4def-abb2-eaaeb2d0cb03
  828. identifier: 9a286d00-9460-4def-abb2-eaaeb2d0cb03
  829. keywords:
  830. - BMI control
  831. - kalman filter
  832. - chronic electrophysiolgy
  833. - motor cortex
  834. - premotor cortex
  835. - microwire arrays
  836. - monkey
  837. measurementTechnique:
  838. - name: analytical technique
  839. schemaKey: MeasurementTechniqueType
  840. path: sub-monk-g/sub-monk-g_ses-session2.nwb
  841. publishedBy:
  842. endDate: '2023-06-05T20:24:07.221504+00:00'
  843. id: urn:uuid:896cb2ed-e1e0-4767-a3cb-51940f8ea374
  844. name: DANDI publish
  845. schemaKey: PublishActivity
  846. startDate: '2023-06-05T20:24:07.221504+00:00'
  847. wasAssociatedWith:
  848. - id: urn:uuid:041f5e74-6c56-4037-8723-0a28e5192bbc
  849. identifier: RRID:SCR_017571
  850. name: DANDI API
  851. schemaKey: Software
  852. version: 0.1.0
  853. schemaKey: Asset
  854. schemaVersion: 0.6.3
  855. variableMeasured:
  856. - schemaKey: PropertyValue
  857. value: ProcessingModule
  858. wasAttributedTo:
  859. - age:
  860. schemaKey: PropertyValue
  861. unitText: ISO-8601 duration
  862. value: P8Y
  863. valueReference:
  864. schemaKey: PropertyValue
  865. value: dandi:BirthReference
  866. identifier: monk_g
  867. schemaKey: Participant
  868. sex:
  869. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  870. name: Male
  871. schemaKey: SexType
  872. species:
  873. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  874. name: Macaca mulatta - Rhesus monkey
  875. schemaKey: SpeciesType
  876. wasGeneratedBy:
  877. - description: Monkey performing 2D cursor BMI
  878. identifier: session2
  879. name: session2
  880. schemaKey: Session
  881. startDate: '2016-03-07T00:00:00-08:00'
  882. - description: Metadata generated by DANDI cli
  883. id: urn:uuid:d90f65b4-96cb-4b2b-a016-955ac078675b
  884. name: Metadata generation
  885. schemaKey: Activity
  886. wasAssociatedWith:
  887. - identifier: RRID:SCR_019009
  888. name: DANDI Command Line Interface
  889. schemaKey: Software
  890. url: https://github.com/dandi/dandi-cli
  891. version: 0.48.0
  892. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  893. access:
  894. - schemaKey: AccessRequirements
  895. status: dandi:OpenAccess
  896. approach: []
  897. blobDateModified: '2023-01-20T09:47:44.783074-08:00'
  898. contentSize: 18198336
  899. contentUrl:
  900. - https://api.dandiarchive.org/api/assets/53815e58-0703-4912-ac72-4244bd4a85b0/download/
  901. - https://dandiarchive.s3.amazonaws.com/blobs/0b7/079/0b70791e-752e-47aa-a3b5-56daab030ab5
  902. dateModified: '2023-01-20T09:52:41.490943-08:00'
  903. datePublished: '2023-06-05T20:24:07.228869+00:00'
  904. digest:
  905. dandi:dandi-etag: 4ab3780a791f2165e99a2e4b77b4f489-1
  906. dandi:sha2-256: 3e78eddcc0e464dd8b8facf7e658d363b2f49a6416e8c754094e8f4b544d56e7
  907. encodingFormat: application/x-nwb
  908. id: dandiasset:53815e58-0703-4912-ac72-4244bd4a85b0
  909. identifier: 53815e58-0703-4912-ac72-4244bd4a85b0
  910. keywords:
  911. - BMI control
  912. - kalman filter
  913. - chronic electrophysiolgy
  914. - motor cortex
  915. - premotor cortex
  916. - microwire arrays
  917. - monkey
  918. measurementTechnique:
  919. - name: analytical technique
  920. schemaKey: MeasurementTechniqueType
  921. path: sub-monk-g/sub-monk-g_ses-session8.nwb
  922. publishedBy:
  923. endDate: '2023-06-05T20:24:07.228869+00:00'
  924. id: urn:uuid:9079ca16-e688-4d61-857c-27361f35787d
  925. name: DANDI publish
  926. schemaKey: PublishActivity
  927. startDate: '2023-06-05T20:24:07.228869+00:00'
  928. wasAssociatedWith:
  929. - id: urn:uuid:d49b13e9-b692-4a7b-903a-4aa7837d4a54
  930. identifier: RRID:SCR_017571
  931. name: DANDI API
  932. schemaKey: Software
  933. version: 0.1.0
  934. schemaKey: Asset
  935. schemaVersion: 0.6.3
  936. variableMeasured:
  937. - schemaKey: PropertyValue
  938. value: ProcessingModule
  939. wasAttributedTo:
  940. - age:
  941. schemaKey: PropertyValue
  942. unitText: ISO-8601 duration
  943. value: P8Y
  944. valueReference:
  945. schemaKey: PropertyValue
  946. value: dandi:BirthReference
  947. identifier: monk_g
  948. schemaKey: Participant
  949. sex:
  950. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  951. name: Male
  952. schemaKey: SexType
  953. species:
  954. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  955. name: Macaca mulatta - Rhesus monkey
  956. schemaKey: SpeciesType
  957. wasGeneratedBy:
  958. - description: Monkey performing 2D cursor BMI
  959. identifier: session8
  960. name: session8
  961. schemaKey: Session
  962. startDate: '2016-03-19T00:00:00-07:00'
  963. - description: Metadata generated by DANDI cli
  964. id: urn:uuid:01f5221a-f6ff-458a-ad87-0ebbd9b8e662
  965. name: Metadata generation
  966. schemaKey: Activity
  967. wasAssociatedWith:
  968. - identifier: RRID:SCR_019009
  969. name: DANDI Command Line Interface
  970. schemaKey: Software
  971. url: https://github.com/dandi/dandi-cli
  972. version: 0.48.0
  973. - '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
  974. access:
  975. - schemaKey: AccessRequirements
  976. status: dandi:OpenAccess
  977. approach: []
  978. blobDateModified: '2023-01-20T09:47:37.460959-08:00'
  979. contentSize: 109340388
  980. contentUrl:
  981. - https://api.dandiarchive.org/api/assets/b47c437f-0bde-4fa6-8263-2f74e361bf2b/download/
  982. - https://dandiarchive.s3.amazonaws.com/blobs/917/2db/9172dbda-100d-4078-9ce7-7f099ccb125b
  983. dateModified: '2023-01-20T09:51:50.787439-08:00'
  984. datePublished: '2023-06-05T20:24:07.234834+00:00'
  985. digest:
  986. dandi:dandi-etag: ded0b909f9081b431ae710d906e6b628-2
  987. dandi:sha2-256: 2bde5fad384c527a0723751bb587946590ea196bcdc9938ea0adc1d5fd3a7d86
  988. encodingFormat: application/x-nwb
  989. id: dandiasset:b47c437f-0bde-4fa6-8263-2f74e361bf2b
  990. identifier: b47c437f-0bde-4fa6-8263-2f74e361bf2b
  991. keywords:
  992. - BMI control
  993. - kalman filter
  994. - chronic electrophysiolgy
  995. - motor cortex
  996. - premotor cortex
  997. - microwire arrays
  998. - monkey
  999. measurementTechnique:
  1000. - name: analytical technique
  1001. schemaKey: MeasurementTechniqueType
  1002. path: sub-monk-g/sub-monk-g_ses-session4.nwb
  1003. publishedBy:
  1004. endDate: '2023-06-05T20:24:07.234834+00:00'
  1005. id: urn:uuid:ac686071-17aa-4868-bf58-acc38ef52403
  1006. name: DANDI publish
  1007. schemaKey: PublishActivity
  1008. startDate: '2023-06-05T20:24:07.234834+00:00'
  1009. wasAssociatedWith:
  1010. - id: urn:uuid:893f6326-5486-4af6-94a1-a0698e2a7c57
  1011. identifier: RRID:SCR_017571
  1012. name: DANDI API
  1013. schemaKey: Software
  1014. version: 0.1.0
  1015. schemaKey: Asset
  1016. schemaVersion: 0.6.3
  1017. variableMeasured:
  1018. - schemaKey: PropertyValue
  1019. value: ProcessingModule
  1020. wasAttributedTo:
  1021. - age:
  1022. schemaKey: PropertyValue
  1023. unitText: ISO-8601 duration
  1024. value: P8Y
  1025. valueReference:
  1026. schemaKey: PropertyValue
  1027. value: dandi:BirthReference
  1028. identifier: monk_g
  1029. schemaKey: Participant
  1030. sex:
  1031. identifier: http://purl.obolibrary.org/obo/PATO_0000384
  1032. name: Male
  1033. schemaKey: SexType
  1034. species:
  1035. identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
  1036. name: Macaca mulatta - Rhesus monkey
  1037. schemaKey: SpeciesType
  1038. wasGeneratedBy:
  1039. - description: Monkey performing 2D cursor BMI
  1040. identifier: session4
  1041. name: session4
  1042. schemaKey: Session
  1043. startDate: '2016-03-16T00:00:00-07:00'
  1044. - description: Metadata generated by DANDI cli
  1045. id: urn:uuid:32d5b295-7d71-4fe7-ac53-3b18145028b2
  1046. name: Metadata generation
  1047. schemaKey: Activity
  1048. wasAssociatedWith:
  1049. - identifier: RRID:SCR_019009
  1050. name: DANDI Command Line Interface
  1051. schemaKey: Software
  1052. url: https://github.com/dandi/dandi-cli
  1053. version: 0.48.0
Tip!

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

Comments

Loading...