@@ -32,10 +32,10 @@ def activate(ephys_schema_name, probe_schema_name=None, *, create_schema=True,
32
32
used for probe insertion location (e.g. Bregma, Lambda)
33
33
Functions:
34
34
+ get_ephys_root_data_dir() -> str
35
- Retrieve the root data directory - e.g. containing all subject/sessions data
35
+ Retrieve the root data directory - e.g. containing the raw ephys recording files for all subject/sessions.
36
36
:return: a string for full path to the root data directory
37
37
+ get_clustering_root_data_dir() -> str
38
- Retrieve the root data directory containing all subject /sessions clustering data
38
+ Retrieve the root data directory containing the clustering results for all subjects /sessions
39
39
Note: if not provided, use "get_ephys_root_data_dir()"
40
40
:return: a string for full path to the clustering root data directory
41
41
+ get_session_directory(session_key: dict) -> str
@@ -65,12 +65,12 @@ def get_ephys_root_data_dir() -> str:
65
65
"""
66
66
All data paths, directories in DataJoint Elements are recommended to be stored as
67
67
relative paths, with respect to some user-configured "root" directory,
68
- this can change machine to machine (e.g. changing mounted drive locations)
68
+ which varies from machine to machine (e.g. different mounted drive locations)
69
69
70
70
get_ephys_root_data_dir() -> str
71
71
This user-provided function retrieves the root data directory
72
- containing all subject /sessions ephys data
73
- (e.g. acquired SpikeGLX or Open Ephys files)
72
+ containing ephys data for all subjects /sessions
73
+ (e.g. acquired SpikeGLX or Open Ephys raw files)
74
74
:return: a string for full path to the ephys root data directory
75
75
"""
76
76
return _linking_module .get_ephys_root_data_dir ()
@@ -80,11 +80,11 @@ def get_clustering_root_data_dir() -> str:
80
80
"""
81
81
All data paths, directories in DataJoint Elements are recommended to be stored as
82
82
relative paths, with respect to some user-configured "root" directory,
83
- this can change machine to machine (e.g. changing mounted drive locations)
83
+ which varies from machine to machine (e.g. different mounted drive locations)
84
84
85
85
get_clustering_root_data_dir() -> str
86
86
This user-provided function retrieves the root data directory
87
- containing all subject /sessions clustering data
87
+ containing clustering results for all subjects /sessions
88
88
(e.g. output files from spike sorting routines)
89
89
Note: if not provided, use "get_ephys_root_data_dir()"
90
90
:return: a string for full path to the clustering root data directory
0 commit comments