Skip to main content

A plugin to use with napari for clustering objects according to their properties

Project description

napari-clusters-plotter

License PyPI Python Version Anaconda-Server Badge tests codecov pre-commit PyPI - Downloads napari hub DOI

A plugin to use with napari for clustering objects according to their properties.


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

Usage

Starting point

For clustering objects according to their properties, the starting point is a grey-value image and a label image representing a segmentation of objects. For segmenting objects, you can for example use the Voronoi-Otsu-labeling approach in the napari plugin napari-segment-blobs-and-things-with-membranes.

Measurements

The first step is deriving measurements from the labeled image and the corresponding pixels in the grey-value image. You can use the menu Tools > Measurement > Measure intensity, shape and neighbor counts (ncp) for that. Just select the image, the corresponding label image and the measurements to analyse and click on Run. A table with the measurements will open:

Afterwards, you can save and/or close the measurement table. Also, close the Measure widget. Or if you want you can interact with labels and see which row of the table corresponds to which labelled object. For this, use the Pick mode in napari and activate the show selected checkbox. Alternatively, you can also select a specific row of the table and appropriate label is displayed (make sure that show selected checkbox is selected).

Plotting

Once measurements were made, these measurements were saved in the properties of the labels layer which was analysed. You can then plot these measurements using the menu Tools > Measurement > Plot measurement (ncp).

In this widget, you can select the labels layer which was analysed and the measurements which should be plotted on the X- and Y-axis. If you cannot see any options in axes selection boxes, but you have performed measurements, click on Update Axes/Clustering Selection Boxes to refresh them. Click on Run to draw the data points in the plot area.

You can also manually select a region in the plot. To use lasso (freehand) tool use left mouse click, and to use a rectangle - right click. The resulting manual clustering will also be visualized in the original image. To optimize visualization in the image, turn off the visibility of the analysed labels layer.

Hold down the SHIFT key while annotating regions in the plot to manually select multiple clusters.

You can also select a labeled object in the original labels layer (not "cluster_ids_in_space" layer) using the Pick mode in napari and see which data point in the plot it corresponds to.

Dimensionality reduction: UMAP or t-SNE

For getting more insights into your data, you can reduce the dimensionality of the measurements, e.g. using the UMAP algorithm or t-SNE. To apply it to your data use the menu Tools > Measurement > Dimensionality reduction (ncp). Select the label image that was analysed and in the list below, select all measurements that should be dimensionality reduced. By default, all measurements are selected in the box. If you cannot see any measurements, but you have performed them, click on Update Measurements to refresh the box. You can read more about parameters of both algorithms by hovering over question marks or by clicking on them. When you are done with the selection, click on Run and after a moment, the table of measurements will re-appear with two additional columns representing the reduced dimensions of the dataset. These columns are automatically saved in the properties of the labels layer so there is no need to save them for usage in other widgets unless you wish to do so.

Afterwards, you can again save and/or close the table. Also, close the Dimensionality Reduction widget.

Clustering

If manual clustering, as shown above, is not an option, you can automatically cluster your data, using these implemented algorithms:

Therefore, click the menu Tools > Measurement > Clustering (ncp), again, select the analysed labels layer. This time select the measurements for clustering, e.g. select only the UMAP measurements. Select the clustering method KMeans and click on Run. The table of measurements will reappear with an additional column ALGORITHM_NAME_CLUSTERING_ID containing the cluster ID of each datapoint.

Afterwards, you can again save and/or close the table. Also, close the clustering widget.

Plotting clustering results

Return to the Plotter widget using the menu Tools > Measurement > Plot measurement (ncp). Select UMAP_0 and UMAP_1 as X- and Y-axis and the ALGORITHM_NAME_CLUSTERING_ID as Clustering, and click on Run.

Example of k-means clustering results:

Installation

  • Get a python environment, e.g. via mini-conda. If you never used python/conda environments before, please follow the instructions here first. It is recommended to install python 3.9 to your new conda environment from the start. The plugin is not yet supported with Python 3.10. Create a new environment, for example, like this:
conda create --name ncp-env python=3.9
  • Activate the new environment and install pyopencl, e.g. via conda:
conda install -c conda-forge pyopencl
python -m pip install "napari[all]"

Afterwards, you can install napari-clusters-plotter via pip:

pip install napari-clusters-plotter

Troubleshooting installation

  • If the plugin does not appear in napari 'Plugins' menu, and in 'Plugin errors...' you can see such an error:
ImportError: DLL load failed while importing _cl

Try downloading and installing a pyopencl with a lower cl version, e.g. cl12 : pyopencl=2020.1. However, in this case, you will need an environment with a lower python version (python=3.8).

  • Error: Could not build wheels for hdbscan which use PEP 517 and cannot be installed directly

Install hdbscan via conda before installing the plugin:

conda install -c conda-forge hdbscan
  • ValueError: numpy.ndarray size changed, may indicate binary incompatibility. Expected 96 from C header, got 88 from PyObject

Similar to the above-described error, this error can occur when importing hdbscan through pip or in the wrong order. This can be fixed by installing packages separately through conda and in the following order:

conda install -c conda-forge napari pyopencl hdbscan
pip install napari-clusters-plotter
  • WARNING: No ICDs were found or LogicError: clGetPlatformIDs failed: PLATFORM_NOT_FOUND_KHR

Make your system-wide implementation visible by installing ocl-icd-system conda package:

conda install -c conda-forge ocl-icd-system

Contributing

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

License

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

Issues

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

Project details


Download files

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

Source Distribution

napari-clusters-plotter-0.3.0.tar.gz (79.6 kB view hashes)

Uploaded Source

Built Distribution

napari_clusters_plotter-0.3.0-py3-none-any.whl (92.4 kB 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