-
Notifications
You must be signed in to change notification settings - Fork 4
The CellTracksColab format
guijacquemet edited this page Jan 8, 2025
·
7 revisions
When tracking data is loaded into CellTracksColab, it is automatically compiled into the CellTracksColab format, which constitutes the core for most analyses in the notebook. The CellTracksColab format entails two data frames merged_tracks_df
and merged_spots_df
. These data frames ensure a standardized structure, facilitating consistent data access and manipulation throughout the platform.
Compiling the tracking data into CellTracksColab format removes all tracks that have less than two spots (=one spot only), and tracks that miss a unique identifier, the TrackID.
-
TRACK_ID
: Unique identifier for each track (in each loaded file). -
File_name_raw
: Source file name for the track data. -
Condition
: Denotes the experimental condition. -
experiment_nb
: Represents the experiment or repeat number. -
Repeat
: A generated identifier for each condition's repeat. -
File_name
: Unique file identifier formed by combiningCondition
+Repeat
+File_name_raw
. -
Unique_ID
: The unique Track identifier formed by combiningFile_name
andTRACK_ID
.
-
POSITION_X
,POSITION_Y
,POSITION_Z
: Spatial coordinates of the tracked object. -
POSITION_T
: The time or frame of the spot capture. -
TRACK_ID
: Links the spot to its parent track (in each loaded file). -
File_name_raw
: Source file name for the spot data. -
Condition
: Denotes the experimental condition. -
experiment_nb
: Represents the experiment or repeat number. -
Repeat
: A generated identifier for each condition's repeat. -
File_name
: Unique file identifier formed by combiningCondition
+Repeat
+File_name_raw
. -
Unique_ID
: A unique identifier formed by combiningFile_name
andTRACK_ID
.
---