initial commit
This commit is contained in:
61
mne/datasets/brainstorm/bst_resting.py
Normal file
61
mne/datasets/brainstorm/bst_resting.py
Normal file
@@ -0,0 +1,61 @@
|
||||
# Authors: The MNE-Python contributors.
|
||||
# License: BSD-3-Clause
|
||||
# Copyright the MNE-Python contributors.
|
||||
|
||||
from ...utils import verbose
|
||||
from ..utils import (
|
||||
_data_path_doc_accept,
|
||||
_download_mne_dataset,
|
||||
_get_version,
|
||||
_version_doc,
|
||||
)
|
||||
|
||||
_description = """
|
||||
URL: http://neuroimage.usc.edu/brainstorm/DatasetResting
|
||||
- One subject
|
||||
- Two runs of 10 min of resting state recordings
|
||||
- Eyes open
|
||||
"""
|
||||
|
||||
|
||||
@verbose
|
||||
def data_path(
|
||||
path=None,
|
||||
force_update=False,
|
||||
update_path=True,
|
||||
download=True,
|
||||
accept=False,
|
||||
*,
|
||||
verbose=None,
|
||||
): # noqa: D103
|
||||
return _download_mne_dataset(
|
||||
name="bst_resting",
|
||||
processor="nested_untar",
|
||||
path=path,
|
||||
force_update=force_update,
|
||||
update_path=update_path,
|
||||
download=download,
|
||||
accept=accept,
|
||||
)
|
||||
|
||||
|
||||
_data_path_doc = _data_path_doc_accept.format(
|
||||
name="brainstorm", conf="MNE_DATASETS_BRAINSTORM_DATA_PATH"
|
||||
)
|
||||
_data_path_doc = _data_path_doc.replace(
|
||||
"brainstorm dataset", "brainstorm (bst_resting) dataset"
|
||||
)
|
||||
data_path.__doc__ = _data_path_doc
|
||||
|
||||
|
||||
def get_version(): # noqa: D103
|
||||
return _get_version("bst_resting")
|
||||
|
||||
|
||||
get_version.__doc__ = _version_doc.format(name="brainstorm")
|
||||
|
||||
|
||||
def description():
|
||||
"""Get description of brainstorm (bst_resting) dataset."""
|
||||
for desc in _description.splitlines():
|
||||
print(desc)
|
||||
Reference in New Issue
Block a user