Literature DB >> 28637183

NucliTrack: an integrated nuclei tracking application.

Sam Cooper1,2, Alexis R Barr1, Robert Glen2, Chris Bakal1.   

Abstract

SUMMARY: Live imaging studies give unparalleled insight into dynamic single cell behaviours and fate decisions. However, the challenge of reliably tracking single cells over long periods of time limits both the throughput and ease with which such studies can be performed. Here, we present NucliTrack, a cross platform solution for automatically segmenting, tracking and extracting features from fluorescently labelled nuclei. NucliTrack performs similarly to other state-of-the-art cell tracking algorithms, but NucliTrack's interactive, graphical interface makes it significantly more user friendly.
AVAILABILITY AND IMPLEMENTATION: NucliTrack is available as a free, cross platform application and open source Python package. Installation details and documentation are at: http://nuclitrack.readthedocs.io/en/latest/ A video guide can be viewed online: https://www.youtube.com/watch?v=J6e0D9F-qSU Source code is available through Github: https://github.com/samocooper/nuclitrack. A Matlab toolbox is also available at: https://uk.mathworks.com/matlabcentral/fileexchange/61479-samocooper-nuclitrack-matlab. CONTACT: sam@socooper.com. SUPPLEMENTARY INFORMATION: Supplementary data are available at Bioinformatics online.
© The Author(s) 2017. Published by Oxford University Press.

Entities:  

Mesh:

Year:  2017        PMID: 28637183      PMCID: PMC5860035          DOI: 10.1093/bioinformatics/btx404

Source DB:  PubMed          Journal:  Bioinformatics        ISSN: 1367-4803            Impact factor:   6.937


1 Introduction

Live imaging studies are now allowing us to explore the previously shrouded world of mammalian cell signalling dynamics. For example, imaging populations of live single cells over several days has revealed how signalling dynamics can control key cell fate decisions (Cooper and Bakal, 2017). However, hindering the ease, time-periods and throughput with which live single-cell studies can be performed, are challenges in automatically tracking fluorescently labelled objects (cells, nuclei or organelles) accurately over time periods often exceeding several days, sometimes in highly motile cells (Cabantous ). To date, the majority of cell tracking software relies on ‘frame-to-frame linking’ of segmented nuclei or cells (Meijering ). In such methods, errors in segmentation, where, for example, either multiple nuclei are labelled as a single segment, or a nucleus is missed over several timeframes resulting in a tracking gap, can severely compromise tracking results. To handle such difficulties, global optimization methods have now been developed (Milan ). Yet, implementations of global optimization approaches to tracking in cell biology research have generally been limited to standalone packages, meaning that segmentation, track inspection and track correction have to be performed in other software which is non-trivial for scientists with little programming expertise (Hilsenbeck ). Therefore, we have developed NucliTrack an integrated Python package that allows efficient segmentation, feature extraction and tracking of fluorescently labelled nuclei or cells through an intuitive graphical interface (Fig. 1). Additionally, the interface also includes tools for inspecting, correcting and exporting data on tracked nuclei.
Fig. 1

The Nuclitrack application workflow: This figure shows the four main user interface windows used to track nuclei in Nuclitrack: (1) File loading: In this interface the user can browse files and load the time series imaging data, as well as selecting file names for storing tracking data; (2) Segmentation: The sliders on this interface allow the user to interactively choose segmentation parameters for identifying cell nuclei; (3) Training data selection: As tracking uses a probabilistic algorithm, examples of single nuclei, nuclei about to enter and exit mitosis, as well as incorrectly segmented nuclei must be given; (4) Track visualization, correction and export: In this interface the user can explore the tracking results, and view tracking data in the graph window. Additionally functions exist to correct tracks. Finally, the user can export single cell data from either all tracks or a subset of selected tracks

The Nuclitrack application workflow: This figure shows the four main user interface windows used to track nuclei in Nuclitrack: (1) File loading: In this interface the user can browse files and load the time series imaging data, as well as selecting file names for storing tracking data; (2) Segmentation: The sliders on this interface allow the user to interactively choose segmentation parameters for identifying cell nuclei; (3) Training data selection: As tracking uses a probabilistic algorithm, examples of single nuclei, nuclei about to enter and exit mitosis, as well as incorrectly segmented nuclei must be given; (4) Track visualization, correction and export: In this interface the user can explore the tracking results, and view tracking data in the graph window. Additionally functions exist to correct tracks. Finally, the user can export single cell data from either all tracks or a subset of selected tracks

2 Implementation

The identification and segmentation of fluorescently labelled objects in NucliTrack is based on marker controlled watershed segmentation, built with the scikit image Python library (van der Walt ). We utilized a novel Python application development library ‘Kivy’ to create an interface that allows users to interactively vary segmentation parameters (Virbel ). Once effective parameters are chosen, segmentation is then performed on the entire imaging sequence. In many types of image analysis workflows aimed at quantifying cellular phenotypes, the segmentation step can result in errors, which must be handled by tracking algorithms. Moreover, cells undergoing cell division must also be detected. To address this, we use a probabilistic approach described by Magnusson et al. to perform tracking (Magnusson ). This requires training data to be selected that contains examples of any erroneous segmentation, as well as normal, mitotic and post-mitotic cells. Training is performed within the user interface prior to tracking. The tracking algorithm then seeks to globally optimize the set of all tracks, by iteratively adding the highest scoring track given the current set of tracks. Tracks are scored with a cost function which penalizes large movements, gaps between frames, and passage through segments which are unlikely to be nuclei, whilst highly scoring tracks that minimize movement between frames, include few gaps and pass through segments likely to be nuclei. A dynamic programming technique is then used to find the highest scoring track that is added to the set of all tracks. Importantly, in identifying the highest scoring track, swaps with neighbouring tracks may be performed, thus minimizing the likelihood that a local, rather than a global, optimum is found. After successful tracking of objects, tracks can be edited within the user interface. Here, three windows showing: (i) colour-coded tracked segments; (ii) the original video; and (iii) feature values over the full length of a selected track (in the form of a line plot over time), allow the user to easily analyze and inspect tracks for errors, or anomalous results. Moreover, using a set of tools with keyboard hotkeys the user can efficiently navigate the video, manually correct errors in tracking, and add flags to mark specific events, before exporting results. Throughout NucliTrack we have also incorporated data management steps, such that intermediate steps are saved in the HDF5 file format, through the Python h5py package (Collette, 2013). Parameters are stored in a separate HDF5 file meaning that the segmentation and training stages can be skipped when analyzing subsequent movies. A function also exists in the Python package that accommodates for batch processing of videos using the HDF5 parameter file. To characterize the performance of the global optimization approach to automated cell tracking we tested NucliTrack against a benchmark set of fluorescently labelled nuclei videos (Maška ; Svoboda ). Here NucliTrack performed similarly to other global optimization approaches (Supplementary Methods). The performance of NucliTrack was limited by the more basic segmentation procedures we adopt, however we believe having an intuitive and interactive workflow is significantly more important for users with less technical expertise. Labeled images, segmented in alternative programs may also be imported in the file loading step. NucliTrack is an easy to use package for tracking and extracting data from fluorescently labelled cells or nuclei, in significantly higher throughput than manual tracking can achieve. Importantly, by allowing users to quickly inspect and correct tracking data, near 100% accuracy can be achieved, which is critical in quantifying cell fate decisions. For example, NucliTrack allowed us to study how DNA damage influences the proliferation-quiescence decision in thousands of cells, tracked for hundreds of frames, over multiple days (Barr ). Finally, by coupling established packages for data processing in Python, with more recent solutions to data management (h5py), graphical user interface development (kivy) and image processing (skimage), this software also provides an example of how user friendly, scientific software may be efficiently developed in an open source environment.

Funding

S.C. is supported by the NIHR Imperial BRC, and the STRATiGRAD graduate training program. C.B. and A.R.B. are funded by a BBSRC Strategic LoLa grant [BB/M00354X/1], C.B. is also funded by a Cancer Research UK Programme Foundation Award [C37275/1A20146]. Conflict of Interest: none declared. Click here for additional data file.
  9 in total

Review 1.  Methods for cell and particle tracking.

Authors:  Erik Meijering; Oleh Dzyubachyk; Ihor Smal
Journal:  Methods Enzymol       Date:  2012       Impact factor: 1.600

2.  Protein tagging and detection with engineered self-assembling fragments of green fluorescent protein.

Authors:  Stéphanie Cabantous; Thomas C Terwilliger; Geoffrey S Waldo
Journal:  Nat Biotechnol       Date:  2004-12-05       Impact factor: 54.908

3.  Generation of digital phantoms of cell nuclei and simulation of image formation in 3D image cytometry.

Authors:  David Svoboda; Michal Kozubek; Stanislav Stejskal
Journal:  Cytometry A       Date:  2009-06       Impact factor: 4.355

4.  scikit-image: image processing in Python.

Authors:  Stéfan van der Walt; Johannes L Schönberger; Juan Nunez-Iglesias; François Boulogne; Joshua D Warner; Neil Yager; Emmanuelle Gouillart; Tony Yu
Journal:  PeerJ       Date:  2014-06-19       Impact factor: 2.984

Review 5.  Accelerating Live Single-Cell Signalling Studies.

Authors:  Sam Cooper; Chris Bakal
Journal:  Trends Biotechnol       Date:  2017-02-02       Impact factor: 19.536

6.  Software tools for single-cell tracking and quantification of cellular and molecular properties.

Authors:  Oliver Hilsenbeck; Michael Schwarzfischer; Stavroula Skylaki; Bernhard Schauberger; Philipp S Hoppe; Dirk Loeffler; Konstantinos D Kokkaliaris; Simon Hastreiter; Eleni Skylaki; Adam Filipczyk; Michael Strasser; Felix Buggenthin; Justin S Feigelman; Jan Krumsiek; Adrianus J J van den Berg; Max Endele; Martin Etzrodt; Carsten Marr; Fabian J Theis; Timm Schroeder
Journal:  Nat Biotechnol       Date:  2016-07-12       Impact factor: 54.908

7.  Global linking of cell tracks using the Viterbi algorithm.

Authors:  Klas E G Magnusson; Joakim Jalden; Penney M Gilbert; Helen M Blau
Journal:  IEEE Trans Med Imaging       Date:  2014-11-14       Impact factor: 10.048

8.  DNA damage during S-phase mediates the proliferation-quiescence decision in the subsequent G1 via p21 expression.

Authors:  Alexis R Barr; Samuel Cooper; Frank S Heldt; Francesca Butera; Henriette Stoy; Jörg Mansfeld; Béla Novák; Chris Bakal
Journal:  Nat Commun       Date:  2017-03-20       Impact factor: 14.919

9.  A benchmark for comparison of cell tracking algorithms.

Authors:  Martin Maška; Vladimír Ulman; David Svoboda; Pavel Matula; Petr Matula; Cristina Ederra; Ainhoa Urbiola; Tomás España; Subramanian Venkatesan; Deepak M W Balak; Pavel Karas; Tereza Bolcková; Markéta Streitová; Craig Carthel; Stefano Coraluppi; Nathalie Harder; Karl Rohr; Klas E G Magnusson; Joakim Jaldén; Helen M Blau; Oleh Dzyubachyk; Pavel Křížek; Guy M Hagen; David Pastor-Escuredo; Daniel Jimenez-Carretero; Maria J Ledesma-Carbayo; Arrate Muñoz-Barrutia; Erik Meijering; Michal Kozubek; Carlos Ortiz-de-Solorzano
Journal:  Bioinformatics       Date:  2014-02-12       Impact factor: 6.937

  9 in total
  5 in total

1.  A comprehensive model for the proliferation-quiescence decision in response to endogenous DNA damage in human cells.

Authors:  Frank S Heldt; Alexis R Barr; Sam Cooper; Chris Bakal; Béla Novák
Journal:  Proc Natl Acad Sci U S A       Date:  2018-02-20       Impact factor: 11.205

Review 2.  Deep learning for cellular image analysis.

Authors:  Erick Moen; Dylan Bannon; Takamasa Kudo; William Graf; Markus Covert; David Van Valen
Journal:  Nat Methods       Date:  2019-05-27       Impact factor: 28.547

Review 3.  Imaging developmental cell cycles.

Authors:  Abraham Q Kohrman; Rebecca P Kim-Yip; Eszter Posfai
Journal:  Biophys J       Date:  2021-05-06       Impact factor: 3.699

4.  eDetect: A Fast Error Detection and Correction Tool for Live Cell Imaging Data Analysis.

Authors:  Hongqing Han; Guoyu Wu; Yuchao Li; Zhike Zi
Journal:  iScience       Date:  2019-02-08

5.  Palbociclib-mediated cell cycle arrest can occur in the absence of the CDK inhibitors p21 and p27.

Authors:  Betheney R Pennycook; Alexis R Barr
Journal:  Open Biol       Date:  2021-11-17       Impact factor: 6.411

  5 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.