Skip to main content

Cell segmentation, tracking and event annotation

Project description

Cell-ACDC

A GUI-based Python framework for segmentation, tracking, cell cycle annotations and quantification of microscopy data

Written in Python 3 by Francesco Padovani and Benedikt Mairhoermann.

build ubuntu PyQt5 build macos PyQt5 build windows PyQt5 build macos PyQt6 build windows PyQt6 Python version pypi version Downloads License repo size DOI


Overview of pipeline and GUI

Resources

Citation

If you use Cell-ACDC in your publication, please cite:

Francesco Padovani, Benedikt Mairhörmann, Pascal Falter-Braun, Jette Lengefeld, and Kurt M. Schmoller Segmentation, tracking and cell cycle analysis of live-cell imaging data with Cell-ACDC. BMC Biol 20, 174 (2022) https://doi.org/10.1186/s12915-022-01372-6

Additionally, make sure you cite the paper of the segmentation and/or tracking models you used. Here are the links to the models currently supported by Cell-ACDC:

How to contribute

Contributions to Cell-ACDC are always very welcome! For more details see instructions here.

Overview

Let's face it, when dealing with segmentation of microscopy data we often do not have time to check that everything is correct, because it is a tedious and very time consuming process. Cell-ACDC comes to the rescue! We combined the currently best available neural network models (such as Segment Anything Model (SAM), YeaZ, cellpose, StarDist, YeastMate, omnipose, delta, DeepSea, etc.) and we complemented them with a fast and intuitive GUI.

We developed and implemented several smart functionalities such as real-time continuous tracking, automatic propagation of error correction, and several tools to facilitate manual correction, from simple yet useful brush and eraser to more complex flood fill (magic wand) and Random Walker segmentation routines.

See below how it compares to other popular tools available (Table 1 of our publication).

Is it only about segmentation?

Of course not! Cell-ACDC automatically computes several single-cell numerical features such as cell area and cell volume, plus the mean, max, median, sum and quantiles of any additional fluorescent channel's signal. It even performs background correction, to compute the protein amount and concentration.

You can load and analyse single 2D images, 3D data (3D z-stacks or 2D images over time) and even 4D data (3D z-stacks over time).

Finally, we provide Jupyter notebooks to visualize and interactively explore the data produced.

Do not hesitate to contact me here on GitHub (by opening an issue) or directly at my email padovaf@tcd.ie for any problem and/or feedback on how to improve the user experience!

Bidirectional microscopy shift error correction

Is every second line in your files from your bidirectional microscopy shifted? Look here for further information on how to correct your data.

Update v1.2.4

First release that is finally available on PyPi.

Main new feature: custom trackers! You can now add any tracker you want by implementing a simple tracker class. See the manual at the section "Adding trackers to the pipeline".

Additionally, this release includes many UI/UX improvements such as color and style customisation, alongside a inverted LUTs.

IMPORTANT: Before installing

If you are new to Python or you need a refresher on how to manage scientific Python environments, I highly recommend reading this guide by Dr. Robert Haase BEFORE proceeding with Cell-ACDC installation.

Installation using Anaconda (recommended)

NOTE: If you don't know what Anaconda is or you are not familiar with it, we recommend reading the detailed installation instructions found in manual here.

  1. Install Anaconda or Miniconda for Python 3.9. IMPORTANT: For Windows make sure to choose the 64 bit version.
  2. Open a terminal. On Windows, use the Anaconda Prompt and NOT the Command Prompt.
  3. Update conda with conda update conda. Optionally, consider removing unused packages with the command conda clean --all
  4. Create a virtual environment with the command conda create -n acdc python=3.9
  5. Activate the environment conda activate acdc
  6. Upgrade pip with the command python -m pip install --upgrade pip
  7. Install Cell-ACDC with the command pip install "cellacdc[gui]". Note that if you know you are going to need tensorflow (for segmentation models like YeaZ) you can run the command pip install "cellacdc[all]", or pip install tensorflow before or after installing Cell-ACDC.

Installation using Pip

  1. Download and install Python 3.9
  2. Open a terminal. On Windows we recommend using the PowerShell that you can install from here. On macOS use the Terminal app.
  3. Upgrade pip: Windows: py -m pip install --updgrade pip, macOS/Unix: python3 -m pip install --updgrade pip
  4. Navigate to a folder where you want to create the virtual environment
  5. Create a virtual environment: Windows: py -m venv acdc, macOS/Unix python3 -m venv acdc
  6. Activate the environment: Windows: .\acdc\Scripts\activate, macOS/Unix: source acdc/bin/activate
  7. Install Cell-ACDC with the command pip install "cellacdc[gui]". Note that if you know you are going to need tensorflow (for segmentation models like YeaZ) you can run the command pip install "cellacdc[all]", or pip install tensorflow before or after installing Cell-ACDC.

Install from source

If you want to try out experimental features (and, if you have time, maybe report a bug or two :D), you can install the developer version from source as follows:

  1. Install Anaconda or Miniconda.
  2. Open a terminal and navigate to a folder where you want to download Cell-ACDC. If you are on Windows you need to use the "Anaconda Prompt" as a terminal. You should find it by searching for "Anaconda Prompt" in the Start menu.
  3. Clone the source code with the command git clone https://github.com/SchmollerLab/Cell_ACDC.git. If you are on Windows you might need to install git first. Install it from here.
  4. Navigate to the Cell_ACDC folder with the command cd Cell_ACDC.
  5. Update conda with conda update conda. Optionally, consider removing unused packages with the command conda clean --all
  6. Create a new conda environment with the command conda create -n acdc_dev python=3.9
  7. Activate the environment with the command conda activate acdc_dev
  8. Upgrade pip with the command python -m pip install --upgrade pip
  9. Install Cell-ACDC with the command pip install -e .. The . at the end of the command means that you want to install from the current folder in the terminal. This must be the Cell_ACDC folder that you cloned before.
  10. OPTIONAL: If you need tensorflow run the command pip install tensorflow.

Updating Cell-ACDC installed from source

To update Cell-ACDC installed from source, open a terminal window, navigate to the Cell_ACDC folder and run the command

git pull

Since you installed with the -e flag, pulling with git is enough.

Install from source with forking

If you want to contribute to the code or you want to have a developer version that is fixed in time (easier to get back to in case we release a bug :D) we recommend forking before cloning:

  1. Install Anaconda or Miniconda.
  2. Create a personal GitHub account and log in.
  3. Go to the Cell-ACDC GitHub page and click the "Fork" button (top-right) to create your own copy of the project.
  4. Open a terminal and navigate to a folder where you want to download Cell-ACDC. If you are on Windows you need to use the "Anaconda Prompt" as a terminal. You should find it by searching for "Anaconda Prompt" in the Start menu.
  5. Clone the forked repo with the command git clone https://github.com/your-username/Cell_ACDC.git. Remember to replace the your-username in the command. If you are on Windows you might need to install git first. Install it from here.
  6. Navigate to the Cell_ACDC folder with the command cd Cell_ACDC.
  7. Add the upstream repository with the command git remote add upstream https://github.com/SchmollerLab/Cell_ACDC.git
  8. Update conda with conda update conda. Optionally, consider removing unused packages with the command conda clean --all
  9. Create a new conda environment with the command conda create -n acdc_dev python=3.9. Note that acdc_dev is the name of the environment and you can call it whatever you like. Feel free to call it just acdc.
  10. Activate the environment with the command conda activate acdc_dev
  11. Upgrade pip with the command python -m pip install --upgrade pip
  12. Install Cell-ACDC with the command pip install -e .. The . at the end of the command means that you want to install from the current folder in the terminal. This must be the Cell_ACDC folder that you cloned before.
  13. OPTIONAL: If you need tensorflow run the command pip install tensorflow.

Updating Cell-ACDC installed from source with forking

To update Cell-ACDC installed from source, open a terminal window, navigate to the Cell-ACDC folder and run the command

git pull upstream main

Since you installed with the -e flag, pulling with git is enough.

Running Cell-ACDC

  1. Open a terminal (on Windows use the Anaconda Prompt if you installed with conda otherwise we recommend installing and using the PowerShell 7)
  2. Activate the environment (conda: conda activate acdc, pip on Windows: .\env\Scripts\activate, pip on Unix: source env/bin/activate)
  3. Run the command acdc or cellacdc

Usage

For details about how to use Cell-ACDC please read the User Manual downloadable from here

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cellacdc-1.4.4.tar.gz (57.5 MB view hashes)

Uploaded Source

Built Distribution

cellacdc-1.4.4-py3-none-any.whl (55.9 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page