Skip to main content

A very simple cell tracker from labeled images

Project description

Simple-Track-Builder

License MIT PyPI Python Version tests codecov

A very simple cell tracker from labeled images


Installation

You can install Simple-Track-Builder via pip:

pip install Simple-Track-Builder

To install latest development version :

pip install git+https://github.com/GuignardLab/Simple-Track-Builder.git

Usage

Once installed, Simple-Track-Builder can be used multiple ways.

Command line call

Simple-Track-Builder can be called in the terminal the following way:

simple-track-builder --pathes p1.tiff p2.tiff [...] --output out_test.lT

where p1.tiff, p2.tiff, ... are the pathes to all the images to use in temporal order, from start to finish.

Instead of informing all the pathes manually, one can inform the path format, the starting and ending times:

simple-track-builder --path-format p{t:d}.tiff --start-time 0 --end-time 10 --output out_test.lT

If necessary, the background can be informed using the --background parameter.

Finally, a help for simple-track-builder can be called the following way:

simple-track-builder --help

Python

Simple-Track-Builder can be called in Python 2 different ways:

Direct function

from simple_track_builder import build_tracks

pathes = ["p1.tiff", "p2.tiff", ...]
out = "test.lT"
build_track(label_image_list=pathes, background=0, out=out)

label_image_list can also take np.ndarrays:

from simple_track_builder import build_tracks
from tifffile import imread
pathes = [imread("p1.tiff"), imread("p2.tiff"), ...]
out = "test.lT"
build_track(label_image_list=pathes, background=0, out=out)

That can be usefull when you are running tests and do not want to reload the images each time.

Class

For the most modularity, one can use the class itself:

from simple_track_builder import SimpleTrackBuilder
pathes = ["p1.tiff", "p2.tiff", ...]

lT = SimpleTrackBuilder(pathes, background=0)
lT.build_lineages()

lT.write("out.lT")

lT is a LineageTree instance that has all their properties (see there)

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.

License

Distributed under the terms of the MIT license, "Simple-Track-Builder" is free and open source software

Issues

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


This library was generated using Cookiecutter and a custom made template based on @napari's cookiecutter-napari-plugin template.

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

Simple-Track-Builder-0.0.2.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Simple_Track_Builder-0.0.2-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file Simple-Track-Builder-0.0.2.tar.gz.

File metadata

  • Download URL: Simple-Track-Builder-0.0.2.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for Simple-Track-Builder-0.0.2.tar.gz
Algorithm Hash digest
SHA256 405413060261785a1f7f7d56393f1c2e7161884bca123b045088041d5044f20c
MD5 eba4e932c2a105dd52202d5f73148d86
BLAKE2b-256 c8c421cda0235b7342d95a06d2fde0412caf78cb0d5bc07724925852f35214ee

See more details on using hashes here.

File details

Details for the file Simple_Track_Builder-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for Simple_Track_Builder-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 29ced17f4a3101f3897f968429292a6ca1835811f87b69a061f34d13c1e04e05
MD5 90aa0ef434fc6fe6a3d91bbd99758111
BLAKE2b-256 054ad0085ad7c374de8ec251182079ae20ae0c1587190e7cbe3797a058c689b8

See more details on using hashes here.

Supported by

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