Skip to content

junlabucsd/napari-mm3

Repository files navigation

napari-mm3

License PyPI Python Version tests napari hub

A plugin for mother machine image analysis by the Jun Lab.

Reference: Tools and methods for high-throughput single-cell imaging with the mother machine. Ryan Thiermann, Michael Sandler, Gursharan Ahir, John T. Sauls, Jeremy W. Schroeder, Steven D. Brown, Guillaume Le Treut, Fangwei Si, Dongyang Li, Jue D. Wang, Suckjoon Jun. eLife12:RP88463 https://doi.org/10.7554/eLife.88463.1


This napari plugin was generated with Cookiecutter using @napari's cookiecutter-napari-plugin template.

napari1.mp4

Installation

We describe installation with conda. First, clone with git and navigate inside the folder.

git clone [email protected]:junlabucsd/napari-mm3.git
cd napari-mm3

If you do not have ssh configured, you can replace the URL with https://github.com/junlabucsd/napari-mm3.git; we recommend setting up SSH. Now, install dependencies (this step can take a while):

conda env create -f environment.yml

By default, 'napari-mm3' will be the environment name. Finally, switch to the environment you've created, and install the plugin itself WITHOUT dependencies (if you miss the flag, you will likely run into trouble!!):

conda activate napari-mm3
pip install -e . --no-dependencies

This supplies you with the latest, most recent version of our code.

napari-MM3 can use the python-bioformats library to import various image file formats. It can be installed with pip:

pip install python-bioformats

If your raw images are in the .nd2 format, they will be read in with the nd2 package. In this case, Bio-Formats is not required.

Contributing

Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.

Usage guide

Mother.Machine.Data.Analysis.with.Napari.mp4

Additional reference information is available below.

a. Preprocessing

  • TIFFConverter -- Turn your nd2 microscopy data, or other format via bioformats, into TIFFs. If your data is already exported as individual TIFF files, skip to the Compile widget. Take note of the input image guidelines.

  • Compile -- Locate traps, separate their timelapses into their own TIFFs, and return metadata.

  • PickChannels -- User guided selection of empty and full traps.

b. Segmentation

With Otsu's method:

  • Subtract -- Remove (via subtraction) empty traps from the background of traps that contain cells; run this on the phase contrast channel.

  • SegmentOtsu -- Use Otsu's method to segment cells.

With U-Net:

  • Annotate -- annotate images for ML (U-Net or similar) training purposes.

  • Train U-Net -- Train a U-Net model for cell segmentation.

  • SegmentUnet -- Run U-Net segmentation.

c. Tracking

  • Track -- Acquire individual cell properties and track lineages.

d. Fluorescence data analysis

  • Subtract -- Remove (via subtraction) empty traps from the background of traps that contain cells. This time, run this on your fluorescence channels.

  • Colors -- Calculate fluorescence information.

e. Focus tracking

  • Foci -- We use this to track foci (bright fluorescent spots) inside of cells.

f. Extracting data and plotting

  • The notebook here demonstrates how to extract, filter and visualize the lineage data output by the Track widget.

g. Outputs, inputs, and file structure

Finally, to better understand the data formats, you may wish to refer to the following documents:

License

Distributed under the terms of the BSD-3 license, "napari-mm3" is free and open source software

Issues

If you encounter any problems, please file an issue along with a detailed description.