initial commit
This commit is contained in:
7
mne/datasets/ucl_opm_auditory/__init__.py
Normal file
7
mne/datasets/ucl_opm_auditory/__init__.py
Normal file
@@ -0,0 +1,7 @@
|
||||
# Authors: The MNE-Python contributors.
|
||||
# License: BSD-3-Clause
|
||||
# Copyright the MNE-Python contributors.
|
||||
|
||||
"""fNIRS motor dataset."""
|
||||
|
||||
from .ucl_opm_auditory import data_path, get_version
|
||||
36
mne/datasets/ucl_opm_auditory/ucl_opm_auditory.py
Normal file
36
mne/datasets/ucl_opm_auditory/ucl_opm_auditory.py
Normal file
@@ -0,0 +1,36 @@
|
||||
# Authors: The MNE-Python contributors.
|
||||
# License: BSD-3-Clause
|
||||
# Copyright the MNE-Python contributors.
|
||||
|
||||
from ...utils import verbose
|
||||
from ..utils import _data_path_doc, _download_mne_dataset, _get_version, _version_doc
|
||||
|
||||
_NAME = "ucl_opm_auditory"
|
||||
_PROCESSOR = "unzip"
|
||||
|
||||
|
||||
@verbose
|
||||
def data_path(
|
||||
path=None, force_update=False, update_path=True, download=True, *, verbose=None
|
||||
): # noqa: D103
|
||||
return _download_mne_dataset(
|
||||
name=_NAME,
|
||||
processor=_PROCESSOR,
|
||||
path=path,
|
||||
force_update=force_update,
|
||||
update_path=update_path,
|
||||
download=download,
|
||||
)
|
||||
|
||||
|
||||
data_path.__doc__ = _data_path_doc.format(
|
||||
name=_NAME,
|
||||
conf=f"MNE_DATASETS_{_NAME.upper()}_PATH",
|
||||
)
|
||||
|
||||
|
||||
def get_version(): # noqa: D103
|
||||
return _get_version(_NAME)
|
||||
|
||||
|
||||
get_version.__doc__ = _version_doc.format(name=_NAME)
|
||||
Reference in New Issue
Block a user