An unsupervised method for identifying cell behaviour in heterogeneous cell trajectory data
cellPLATO workflow:
Published in the Journal of Cell Science on the 24th of June, 2024 here
Movies for the paper can be found here
On the 14th of May 2023 at Journal of Cell Science's 'Imaging Cell Dynamics' conference in Lisbon, we presented cellPLATO's UMAP and HDBSCAN module to produce a fingerprint of cell behaviours in a heterogeneous population. Go here to see the poster!
A Python data analysis package for time-lapse cell migration experiments written in collaboration with Tyler Sloan at Quorumetrix. Used after segmention (eg. Cellpose) and tracking (eg. Bayesian Tracker) of large timelapse microscopy datasets, cellPLATO measures morphokinetic information about each cell per timepoint and automatically makes statistical plots (plots of difference in python, inspired by those in R by Joachim Goedhart). Users can pool/compare multiple replicates from multiple experimental conditions. Next, dimensionality reduction and cluster analysis is used to segregate cells into behavioural subtypes and produce a fingerprint for each condition (cells per behaviour subtype). Finally, exemplar cells are automatically selected and graphically displayed to disambiguate the nature of each quanitfied cell behavioural subtype.
Known issues with installation:
If you get the ERROR: Could not build wheels for hdbscan, which is required to install pyproject.toml-based projects
Please check 1) you have C++ installed, 2) install hdbscan using 'conda install -c conda-forge hdbscan'
If matplotlib fails to install via pip for the same reason, please use:
conda install -c conda-forge matplotlib
cellPLATO is made to be used downstream of cell segmentation and tracking, and can currently be used with several tracking methodologies. The default is btrack.
Organize your data into the following heirarchal format:
[Folder_path]
[Experimental condition 1]
[Experimental repeat 1]
Replicate_1.h5
Replicate_2.h5
Replicate_n.h5
📁 represents the main folder or directory. 🌿 represents the condition folders. 🔄 represents the replicate folders. 📄 represents the individual H5 files containing the segmentations and tracks
Open the config.py file, and edit as directed.
As a minimum fill in the master directory, experiments to include, pixel size and sampling interval.
Experiments to include getsf filled with the folder names of the conditions you are measuring:
EXPERIMENTS_TO_INCLUDE = ['Condition_1', 'Condition_2', 'Condition_n']
Run cellPLATO through Jupyter Notebooks. Choose the master notebook to run all of the analysis step by step.