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
|
# Authors: Adam Li <adam2392@gmail.com>
# Alex Rockhill <aprockhill@mailbox.org>
# License: BSD Style.
from ...utils import verbose
from ..utils import (_data_path_doc, _get_version, _version_doc,
_download_mne_dataset)
@verbose
def data_path(path=None, force_update=False, update_path=True,
download=True, *, verbose=None): # noqa: D103
return _download_mne_dataset(
name='epilepsy_ecog', processor='untar', path=path,
force_update=force_update, update_path=update_path,
download=download)
data_path.__doc__ = _data_path_doc.format(
name='epilepsy_ecog', conf='MNE_DATASETS_EPILEPSY_ECOG_PATH')
def get_version(): # noqa: D103
return _get_version('epilepsy_ecog')
get_version.__doc__ = _version_doc.format(name='epilepsy_ecog')
|