DS006890#
Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata
Access recordings and metadata through EEGDash.
Citation: Huixiang Yang, Ryohei Fukuma, Tomoyuki Namima, Kotaro Okuda, Asaya Nishi, Takamitsu Iwata, Abdi Reza, Kota S Sasaki, Taro Kaiju, Gurlal Gill, Haruhiko Kishima, Shinji Nishimoto, Takufumi Yanagisawa (2025). Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata. 10.18112/openneuro.ds006890.v1.0.0
Modality: ieeg Subjects: 2 Recordings: 5474 License: CC0 Source: openneuro
Metadata: Complete (100%)
Quickstart#
Install
pip install eegdash
Access the data
from eegdash.dataset import DS006890
dataset = DS006890(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)
Filter by subject
dataset = DS006890(cache_dir="./data", subject="01")
Advanced query
dataset = DS006890(
cache_dir="./data",
query={"subject": {"$in": ["01", "02"]}},
)
Iterate recordings
for rec in dataset:
print(rec.subject, rec.raw.info['sfreq'])
If you use this dataset in your research, please cite the original authors.
BibTeX
@dataset{ds006890,
title = {Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata},
author = {Huixiang Yang and Ryohei Fukuma and Tomoyuki Namima and Kotaro Okuda and Asaya Nishi and Takamitsu Iwata and Abdi Reza and Kota S Sasaki and Taro Kaiju and Gurlal Gill and Haruhiko Kishima and Shinji Nishimoto and Takufumi Yanagisawa},
doi = {10.18112/openneuro.ds006890.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds006890.v1.0.0},
}
About This Dataset#
Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata — README
Overview
This repository contains a wireless subdural ECoG (iEEG) dataset from Macaca fuscata monkeys, organized in compliance with the iEEG-BIDS specification. Recordings were acquired several times each week using a wireless, inductively powered implant. The data were curated and organized in BIDS format to facilitate reproducible research in neuroscience.
Keywords: wireless subdural ECoG, iEEG, Macaca fuscata, BIDS-compliant dataset,
View full README
Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata — README
Overview
This repository contains a wireless subdural ECoG (iEEG) dataset from Macaca fuscata monkeys, organized in compliance with the iEEG-BIDS specification. Recordings were acquired several times each week using a wireless, inductively powered implant. The data were curated and organized in BIDS format to facilitate reproducible research in neuroscience.
Keywords: wireless subdural ECoG, iEEG, Macaca fuscata, BIDS-compliant dataset, longitudinal recordings, task-based neurophysiology
BIDS Organization
dataset_description.json
participants.tsv, participants.json
README.md, CHANGES.md
sub-<id>/ses-<index>/ieeg/ (with *_ieeg.edf, *_ieeg.json, *_channels.tsv, *_events.tsv, *_scans.tsv, *_electrodes.tsv, *_electrodes.json, *_coordsystem.json)
Tasks
Tasks include rest, pressing, reaching, listening, sep. Only curated and validated tasks are exported.
Signals and Channels
Uniform sampling rate per file.
channels.tsv lists physiological (ECoG), trigger (TRIGGER) and auxiliary channels (MISC).
Usage
This dataset can be loaded with BIDS-compatible toolboxes such as MNE-Python, FieldTrip, or EEGLAB. Inspect *_events.tsv for task timing and *_channels.tsv for channel information.
Participants
Each subject corresponds to an individual monkey (e.g., sub-monkeyb, sub-monkeyc).
Ethics
All animal procedures complied with Japanese laws and institutional regulations, including the Science Council of Japan Guidelines for Proper Conduct of Animal Experiments and national standards on pain relief and euthanasia, and were approved by the Animal Experiment Committee — The University of Osaka (approval FBS-25-002).
License and Citation
License: CC BY 4.0 Citation: [Authors], “[Dataset Title],” [Repository/DOI], [Year].
Contact
Maintainer: Huixiang Yang, The University of Osaka, yanghuixiang@bci.med.osaka-u.ac.jp For issues, please use the repository issue tracker.
Dataset Information#
Dataset ID |
|
Title |
Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata |
Year |
2025 |
Authors |
Huixiang Yang, Ryohei Fukuma, Tomoyuki Namima, Kotaro Okuda, Asaya Nishi, Takamitsu Iwata, Abdi Reza, Kota S Sasaki, Taro Kaiju, Gurlal Gill, Haruhiko Kishima, Shinji Nishimoto, Takufumi Yanagisawa |
License |
CC0 |
Citation / DOI |
|
Source links |
OpenNeuro | NeMAR | Source URL |
Copy-paste BibTeX
@dataset{ds006890,
title = {Longitudinal Multitask Wireless ECoG Data from Two Fully Implanted Macaca fuscata},
author = {Huixiang Yang and Ryohei Fukuma and Tomoyuki Namima and Kotaro Okuda and Asaya Nishi and Takamitsu Iwata and Abdi Reza and Kota S Sasaki and Taro Kaiju and Gurlal Gill and Haruhiko Kishima and Shinji Nishimoto and Takufumi Yanagisawa},
doi = {10.18112/openneuro.ds006890.v1.0.0},
url = {https://doi.org/10.18112/openneuro.ds006890.v1.0.0},
}
Found an issue with this dataset?
If you encounter any problems with this dataset (missing files, incorrect metadata, loading errors, etc.), please let us know!
Technical Details#
Subjects: 2
Recordings: 5474
Tasks: 5
Channels: 50 (942), 66 (798)
Sampling rate (Hz): 1000.0
Duration (hours): 0.0
Pathology: Healthy
Modality: Multisensory
Type: Motor
Size on disk: 41.2 GB
File count: 5474
Format: BIDS
License: CC0
DOI: doi:10.18112/openneuro.ds006890.v1.0.0
API Reference#
Use the DS006890 class to access this dataset programmatically.
- class eegdash.dataset.DS006890(cache_dir: str, query: dict | None = None, s3_bucket: str | None = None, **kwargs)[source]#
Bases:
EEGDashDatasetOpenNeuro dataset
ds006890. Modality:ieeg; Experiment type:Motor; Subject type:Healthy. Subjects: 2; recordings: 870; tasks: 5.- Parameters:
cache_dir (str | Path) – Directory where data are cached locally.
query (dict | None) – Additional MongoDB-style filters to AND with the dataset selection. Must not contain the key
dataset.s3_bucket (str | None) – Base S3 bucket used to locate the data.
**kwargs (dict) – Additional keyword arguments forwarded to
EEGDashDataset.
- data_dir#
Local dataset cache directory (
cache_dir / dataset_id).- Type:
Path
- query#
Merged query with the dataset filter applied.
- Type:
dict
- records#
Metadata records used to build the dataset, if pre-fetched.
- Type:
list[dict] | None
Notes
Each item is a recording; recording-level metadata are available via
dataset.description.querysupports MongoDB-style filters on fields inALLOWED_QUERY_FIELDSand is combined with the dataset filter. Dataset-specific caveats are not provided in the summary metadata.References
OpenNeuro dataset: https://openneuro.org/datasets/ds006890 NeMAR dataset: https://nemar.org/dataexplorer/detail?dataset_id=ds006890
Examples
>>> from eegdash.dataset import DS006890 >>> dataset = DS006890(cache_dir="./data") >>> recording = dataset[0] >>> raw = recording.load()
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset