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
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:48:14.545512-08:00'
contentSize: 99151344
contentUrl:
- https://api.dandiarchive.org/api/assets/128cf126-0868-49ee-9440-a306bf785705/download/
- https://dandiarchive.s3.amazonaws.com/blobs/bbc/769/bbc769e1-3522-4a88-88cd-6b2aa2feed60
dateModified: '2023-01-20T09:50:23.985679-08:00'
datePublished: '2023-06-05T20:24:07.133623+00:00'
digest:
dandi:dandi-etag: 50c8f4814f2139bd3763d8e15946ff60-2
dandi:sha2-256: 7aa8c16fea5c730c9e8bd8053c7466824a06d2f8f96281513d1e537de65b311d
encodingFormat: application/x-nwb
id: dandiasset:128cf126-0868-49ee-9440-a306bf785705
identifier: 128cf126-0868-49ee-9440-a306bf785705
keywords:
- BMI control
- point process filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-j/sub-monk-j_ses-session3.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.133623+00:00'
id: urn:uuid:84eb5665-b055-40f4-ad5d-58a0ad442d24
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.133623+00:00'
wasAssociatedWith:
- id: urn:uuid:6d79fed1-53d0-4229-81a4-391ef952a228
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P12Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_j
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session3
name: session3
schemaKey: Session
startDate: '2013-08-31T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:0b45494b-7873-43d6-9d59-b7e319c599c0
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:33.597646-08:00'
contentSize: 76874340
contentUrl:
- https://api.dandiarchive.org/api/assets/efec8b8d-bb23-4a17-9e0b-0adbf01e94ee/download/
- https://dandiarchive.s3.amazonaws.com/blobs/d0b/500/d0b500f7-1890-46e8-aef9-299cb444485d
dateModified: '2023-01-20T09:50:24.044275-08:00'
datePublished: '2023-06-05T20:24:07.166272+00:00'
digest:
dandi:dandi-etag: 72c917b6035ca3220fa0d3bb2cad6332-2
dandi:sha2-256: 8160e7a6ea077fecd54f9ad2ddbb376c847549751051717b33e95459bcf2f54c
encodingFormat: application/x-nwb
id: dandiasset:efec8b8d-bb23-4a17-9e0b-0adbf01e94ee
identifier: efec8b8d-bb23-4a17-9e0b-0adbf01e94ee
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session3.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.166272+00:00'
id: urn:uuid:c974b293-e38a-4b04-8457-54aa0c021e3f
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.166272+00:00'
wasAssociatedWith:
- id: urn:uuid:75a6eb81-ef60-4d7b-94e4-0bde5646040d
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session3
name: session3
schemaKey: Session
startDate: '2016-03-15T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:25be1127-de30-45b0-b6d1-0a5177033714
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:48:08.262352-08:00'
contentSize: 71358992
contentUrl:
- https://api.dandiarchive.org/api/assets/fc69022c-ccdc-49ef-a5bb-662f3cb87ee0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f63/81e/f6381ea8-65fd-4ebd-aeb9-2519851c65f0
dateModified: '2023-01-20T09:50:23.787511-08:00'
datePublished: '2023-06-05T20:24:07.173453+00:00'
digest:
dandi:dandi-etag: a5de07275df737e37f9b5fc6c1347d46-2
dandi:sha2-256: 71d94f47d4efeaf5eb77aaaa477a9353a9d195e2bdcaabcfe69fd8abb7fc34b2
encodingFormat: application/x-nwb
id: dandiasset:fc69022c-ccdc-49ef-a5bb-662f3cb87ee0
identifier: fc69022c-ccdc-49ef-a5bb-662f3cb87ee0
keywords:
- BMI control
- point process filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-j/sub-monk-j_ses-session2.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.173453+00:00'
id: urn:uuid:4d7dc6d3-74c2-4f69-a784-bf39a265f556
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.173453+00:00'
wasAssociatedWith:
- id: urn:uuid:255c8562-9a04-43af-a48e-0d8e1b4ac5fb
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P12Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_j
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session2
name: session2
schemaKey: Session
startDate: '2013-08-29T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:426a55a7-ae9b-4421-94b9-3353289e196f
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:48:03.461306-08:00'
contentSize: 124483892
contentUrl:
- https://api.dandiarchive.org/api/assets/15b0be5c-e6ef-44f8-ba82-86c8e00d25b1/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1f5/319/1f531993-5b7d-4941-a3d1-1fd27feed793
dateModified: '2023-01-20T09:50:23.694405-08:00'
datePublished: '2023-06-05T20:24:07.179962+00:00'
digest:
dandi:dandi-etag: 58b727be6815c67d74caec6ba6340a96-2
dandi:sha2-256: fb3d4fe004845aa221d22df7722cbb288c7a8c40ddee8c950c8a93475f7e0a9b
encodingFormat: application/x-nwb
id: dandiasset:15b0be5c-e6ef-44f8-ba82-86c8e00d25b1
identifier: 15b0be5c-e6ef-44f8-ba82-86c8e00d25b1
keywords:
- BMI control
- point process filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-j/sub-monk-j_ses-session1.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.179962+00:00'
id: urn:uuid:4f27fe9f-aa81-42d5-9c79-384faee42766
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.179962+00:00'
wasAssociatedWith:
- id: urn:uuid:8cc8c5d3-dbac-4500-aae1-c1de88fee960
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P12Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_j
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session1
name: session1
schemaKey: Session
startDate: '2013-08-24T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:5de041c8-cee7-4dc8-8793-2c8a70db7e37
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:56.095153-08:00'
contentSize: 194490224
contentUrl:
- https://api.dandiarchive.org/api/assets/c1017926-c478-43aa-a474-87368492a31c/download/
- https://dandiarchive.s3.amazonaws.com/blobs/852/7b2/8527b206-adcd-4b76-8cd9-a6cf1e57d9c8
dateModified: '2023-01-20T09:50:23.930471-08:00'
datePublished: '2023-06-05T20:24:07.185928+00:00'
digest:
dandi:dandi-etag: 80f67a5f8183121b8af40b2087b5db56-3
dandi:sha2-256: c253942f51dd32f47d2debcc6420e94eba76ce89a27d77d861b4c8194115c065
encodingFormat: application/x-nwb
id: dandiasset:c1017926-c478-43aa-a474-87368492a31c
identifier: c1017926-c478-43aa-a474-87368492a31c
keywords:
- BMI control
- point process filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-j/sub-monk-j_ses-session0.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.185928+00:00'
id: urn:uuid:413904fc-e09d-498a-84b7-1ddb4712cdb9
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.185928+00:00'
wasAssociatedWith:
- id: urn:uuid:86509c6f-9a3c-4095-b9c9-64900fc96bfd
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P12Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_j
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session0
name: session0
schemaKey: Session
startDate: '2013-08-24T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:13668c67-fc8f-4264-bd08-a42d698df086
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:23.529602-08:00'
contentSize: 30577940
contentUrl:
- https://api.dandiarchive.org/api/assets/7a8b432a-188d-4ceb-bb1b-f05d6a14629d/download/
- https://dandiarchive.s3.amazonaws.com/blobs/7b6/706/7b6706b0-7a8a-4d50-8167-cbacd069d864
dateModified: '2023-01-20T09:51:48.482416-08:00'
datePublished: '2023-06-05T20:24:07.193083+00:00'
digest:
dandi:dandi-etag: ff758885ac60386abedc7ef61660844d-1
dandi:sha2-256: f2190c53c0d7ecd15ceb16387a9295fa53f9830501e036efdfaab96d3eb587d9
encodingFormat: application/x-nwb
id: dandiasset:7a8b432a-188d-4ceb-bb1b-f05d6a14629d
identifier: 7a8b432a-188d-4ceb-bb1b-f05d6a14629d
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session1.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.193083+00:00'
id: urn:uuid:9bfcc22e-029c-4995-88b5-a20c15211f4a
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.193083+00:00'
wasAssociatedWith:
- id: urn:uuid:47fdd2ec-cd05-49d0-9b9c-c84c21b9d012
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session1
name: session1
schemaKey: Session
startDate: '2016-03-04T00:00:00-08:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:9a97cea0-fb24-42b5-a6fa-d3bfae576002
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:40.474307-08:00'
contentSize: 51457528
contentUrl:
- https://api.dandiarchive.org/api/assets/05d4349e-0a6a-4ca1-9ab2-6f8357d8cf61/download/
- https://dandiarchive.s3.amazonaws.com/blobs/90e/522/90e5225c-eb0c-49f8-ab51-ccded8491e40
dateModified: '2023-01-20T09:51:49.070471-08:00'
datePublished: '2023-06-05T20:24:07.198372+00:00'
digest:
dandi:dandi-etag: 4ed26880c7f7a3d2fa602a4e7724c31b-1
dandi:sha2-256: 45b1dedd765c0e9ad03d228cf114e7f298adf69e064b9ef0119ab7b32d49cd0b
encodingFormat: application/x-nwb
id: dandiasset:05d4349e-0a6a-4ca1-9ab2-6f8357d8cf61
identifier: 05d4349e-0a6a-4ca1-9ab2-6f8357d8cf61
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session5.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.198372+00:00'
id: urn:uuid:f471b0cd-1dd9-4bf3-a627-e035a588d0f4
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.198372+00:00'
wasAssociatedWith:
- id: urn:uuid:e1aeffc6-a0d7-4eaf-ab34-1c8bd7ca381c
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session5
name: session5
schemaKey: Session
startDate: '2016-03-17T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:532050db-93f1-4c40-9a16-9e91c1c3048d
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:21.449934-08:00'
contentSize: 47605112
contentUrl:
- https://api.dandiarchive.org/api/assets/1465157d-39ea-4fdc-a6fc-a96f4d4e4368/download/
- https://dandiarchive.s3.amazonaws.com/blobs/1ab/87d/1ab87d9d-e193-4736-8bb2-6c66300c0b12
dateModified: '2023-01-20T09:51:46.302000-08:00'
datePublished: '2023-06-05T20:24:07.203542+00:00'
digest:
dandi:dandi-etag: 28cea73d4ac1e1df46392f3a8959bae5-1
dandi:sha2-256: 0a75738723af967328461d5cb386d6ad5a0c6c16ddaf2f72f9a8b69a4dd792b3
encodingFormat: application/x-nwb
id: dandiasset:1465157d-39ea-4fdc-a6fc-a96f4d4e4368
identifier: 1465157d-39ea-4fdc-a6fc-a96f4d4e4368
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session0.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.203542+00:00'
id: urn:uuid:620c16d0-ef95-41b7-98a6-c3434a015cd0
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.203542+00:00'
wasAssociatedWith:
- id: urn:uuid:297f5b0e-5070-4736-b757-aa44c1284d3a
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session0
name: session0
schemaKey: Session
startDate: '2016-03-02T00:00:00-08:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:54991602-8b7a-41a8-b585-193199f6a620
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:42.165257-08:00'
contentSize: 25525728
contentUrl:
- https://api.dandiarchive.org/api/assets/5a0e6943-2b73-48f7-9c95-f8510b8b9189/download/
- https://dandiarchive.s3.amazonaws.com/blobs/5a1/86b/5a186be7-9491-48cf-8d78-ed4d810ae297
dateModified: '2023-01-20T09:52:27.497373-08:00'
datePublished: '2023-06-05T20:24:07.209916+00:00'
digest:
dandi:dandi-etag: 3b2407b4863474ea96d88acdaa8d29f2-1
dandi:sha2-256: 6a2661b9a6062d89a725d873eacee88bc11f0d617d7b023d1c87b620057b8a74
encodingFormat: application/x-nwb
id: dandiasset:5a0e6943-2b73-48f7-9c95-f8510b8b9189
identifier: 5a0e6943-2b73-48f7-9c95-f8510b8b9189
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session6.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.209916+00:00'
id: urn:uuid:d13cd199-7f98-4014-9f1f-2f7f8d5431d4
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.209916+00:00'
wasAssociatedWith:
- id: urn:uuid:23fd2af0-4280-4134-835c-e5f8cd15c70e
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session6
name: session6
schemaKey: Session
startDate: '2016-03-18T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:9c0ad4ce-52bc-426b-bc37-a2b3af72e2e6
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:43.447350-08:00'
contentSize: 16887088
contentUrl:
- https://api.dandiarchive.org/api/assets/c9451847-9fe3-405c-80e4-b3102332f43a/download/
- https://dandiarchive.s3.amazonaws.com/blobs/384/555/38455573-9743-48ac-9345-9bb814ceef58
dateModified: '2023-01-20T09:52:40.984865-08:00'
datePublished: '2023-06-05T20:24:07.215678+00:00'
digest:
dandi:dandi-etag: 123ba8057ddfe4cc3e621c70b4cf07c0-1
dandi:sha2-256: 56cc2855d713c880051e07cf4d2d15b3cff1d08c76477d7fab0644cc59fcc9e2
encodingFormat: application/x-nwb
id: dandiasset:c9451847-9fe3-405c-80e4-b3102332f43a
identifier: c9451847-9fe3-405c-80e4-b3102332f43a
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session7.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.215678+00:00'
id: urn:uuid:a3b3789a-93e5-4275-bf3e-a7707f477155
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.215678+00:00'
wasAssociatedWith:
- id: urn:uuid:87b51d06-4d18-452c-bd60-38351a08d1c5
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session7
name: session7
schemaKey: Session
startDate: '2016-03-19T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:2f83a193-0cf3-4604-b9fa-471feabac7f0
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:29.542690-08:00'
contentSize: 180789944
contentUrl:
- https://api.dandiarchive.org/api/assets/9a286d00-9460-4def-abb2-eaaeb2d0cb03/download/
- https://dandiarchive.s3.amazonaws.com/blobs/f1c/eea/f1ceeab1-44d4-4eb9-96d6-eec09a12bd3e
dateModified: '2023-01-20T09:51:45.113721-08:00'
datePublished: '2023-06-05T20:24:07.221504+00:00'
digest:
dandi:dandi-etag: 08d02db94db802ab0a4a0d35e7b0b403-3
dandi:sha2-256: 9173b24e4c7f3b064af5492f76e54e65880666716dfe0b2e2bd8adbcbf2338dc
encodingFormat: application/x-nwb
id: dandiasset:9a286d00-9460-4def-abb2-eaaeb2d0cb03
identifier: 9a286d00-9460-4def-abb2-eaaeb2d0cb03
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session2.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.221504+00:00'
id: urn:uuid:896cb2ed-e1e0-4767-a3cb-51940f8ea374
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.221504+00:00'
wasAssociatedWith:
- id: urn:uuid:041f5e74-6c56-4037-8723-0a28e5192bbc
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session2
name: session2
schemaKey: Session
startDate: '2016-03-07T00:00:00-08:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:d90f65b4-96cb-4b2b-a016-955ac078675b
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:44.783074-08:00'
contentSize: 18198336
contentUrl:
- https://api.dandiarchive.org/api/assets/53815e58-0703-4912-ac72-4244bd4a85b0/download/
- https://dandiarchive.s3.amazonaws.com/blobs/0b7/079/0b70791e-752e-47aa-a3b5-56daab030ab5
dateModified: '2023-01-20T09:52:41.490943-08:00'
datePublished: '2023-06-05T20:24:07.228869+00:00'
digest:
dandi:dandi-etag: 4ab3780a791f2165e99a2e4b77b4f489-1
dandi:sha2-256: 3e78eddcc0e464dd8b8facf7e658d363b2f49a6416e8c754094e8f4b544d56e7
encodingFormat: application/x-nwb
id: dandiasset:53815e58-0703-4912-ac72-4244bd4a85b0
identifier: 53815e58-0703-4912-ac72-4244bd4a85b0
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session8.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.228869+00:00'
id: urn:uuid:9079ca16-e688-4d61-857c-27361f35787d
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.228869+00:00'
wasAssociatedWith:
- id: urn:uuid:d49b13e9-b692-4a7b-903a-4aa7837d4a54
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session8
name: session8
schemaKey: Session
startDate: '2016-03-19T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:01f5221a-f6ff-458a-ad87-0ebbd9b8e662
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
- '@context': https://raw.githubusercontent.com/dandi/schema/master/releases/0.6.3/context.json
access:
- schemaKey: AccessRequirements
status: dandi:OpenAccess
approach: []
blobDateModified: '2023-01-20T09:47:37.460959-08:00'
contentSize: 109340388
contentUrl:
- https://api.dandiarchive.org/api/assets/b47c437f-0bde-4fa6-8263-2f74e361bf2b/download/
- https://dandiarchive.s3.amazonaws.com/blobs/917/2db/9172dbda-100d-4078-9ce7-7f099ccb125b
dateModified: '2023-01-20T09:51:50.787439-08:00'
datePublished: '2023-06-05T20:24:07.234834+00:00'
digest:
dandi:dandi-etag: ded0b909f9081b431ae710d906e6b628-2
dandi:sha2-256: 2bde5fad384c527a0723751bb587946590ea196bcdc9938ea0adc1d5fd3a7d86
encodingFormat: application/x-nwb
id: dandiasset:b47c437f-0bde-4fa6-8263-2f74e361bf2b
identifier: b47c437f-0bde-4fa6-8263-2f74e361bf2b
keywords:
- BMI control
- kalman filter
- chronic electrophysiolgy
- motor cortex
- premotor cortex
- microwire arrays
- monkey
measurementTechnique:
- name: analytical technique
schemaKey: MeasurementTechniqueType
path: sub-monk-g/sub-monk-g_ses-session4.nwb
publishedBy:
endDate: '2023-06-05T20:24:07.234834+00:00'
id: urn:uuid:ac686071-17aa-4868-bf58-acc38ef52403
name: DANDI publish
schemaKey: PublishActivity
startDate: '2023-06-05T20:24:07.234834+00:00'
wasAssociatedWith:
- id: urn:uuid:893f6326-5486-4af6-94a1-a0698e2a7c57
identifier: RRID:SCR_017571
name: DANDI API
schemaKey: Software
version: 0.1.0
schemaKey: Asset
schemaVersion: 0.6.3
variableMeasured:
- schemaKey: PropertyValue
value: ProcessingModule
wasAttributedTo:
- age:
schemaKey: PropertyValue
unitText: ISO-8601 duration
value: P8Y
valueReference:
schemaKey: PropertyValue
value: dandi:BirthReference
identifier: monk_g
schemaKey: Participant
sex:
identifier: http://purl.obolibrary.org/obo/PATO_0000384
name: Male
schemaKey: SexType
species:
identifier: http://purl.obolibrary.org/obo/NCBITaxon_9544
name: Macaca mulatta - Rhesus monkey
schemaKey: SpeciesType
wasGeneratedBy:
- description: Monkey performing 2D cursor BMI
identifier: session4
name: session4
schemaKey: Session
startDate: '2016-03-16T00:00:00-07:00'
- description: Metadata generated by DANDI cli
id: urn:uuid:32d5b295-7d71-4fe7-ac53-3b18145028b2
name: Metadata generation
schemaKey: Activity
wasAssociatedWith:
- identifier: RRID:SCR_019009
name: DANDI Command Line Interface
schemaKey: Software
url: https://github.com/dandi/dandi-cli
version: 0.48.0
Tip!
Press p or to see the previous file or,
n or to see the next file