@@ -32,10 +32,10 @@ def activate(ephys_schema_name, probe_schema_name=None, *, create_schema=True,
3232 used for probe insertion location (e.g. Bregma, Lambda)
3333 Functions:
3434 + 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.
3636 :return: a string for full path to the root data directory
3737 + 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
3939 Note: if not provided, use "get_ephys_root_data_dir()"
4040 :return: a string for full path to the clustering root data directory
4141 + get_session_directory(session_key: dict) -> str
@@ -65,12 +65,12 @@ def get_ephys_root_data_dir() -> str:
6565 """
6666 All data paths, directories in DataJoint Elements are recommended to be stored as
6767 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)
6969
7070 get_ephys_root_data_dir() -> str
7171 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)
7474 :return: a string for full path to the ephys root data directory
7575 """
7676 return _linking_module .get_ephys_root_data_dir ()
@@ -80,11 +80,11 @@ def get_clustering_root_data_dir() -> str:
8080 """
8181 All data paths, directories in DataJoint Elements are recommended to be stored as
8282 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)
8484
8585 get_clustering_root_data_dir() -> str
8686 This user-provided function retrieves the root data directory
87- containing all subject /sessions clustering data
87+ containing clustering results for all subjects /sessions
8888 (e.g. output files from spike sorting routines)
8989 Note: if not provided, use "get_ephys_root_data_dir()"
9090 :return: a string for full path to the clustering root data directory
0 commit comments