A python module for performing morphometric measurements on microscopy images of lung tissue.
$ docker run -v ./data:/data docker.io/sylviamic/python_lung_morphometrics:latest do-mli /data/image_001.tif
$ git clone git://github.com/sylviamic/python_lung_morphometrics
$ cd python_lung_morphometrics
$ pip install -U .
Measure the mean linear intercept (MLI) of one image and print results to console:
python-lung-morphometrics do-mli image_001.tif
Measure the MLI of many images and save the results:
ls -1 ./image_*.tif | xargs -I {} python-lung-morphometrics do-mli {} > ./results.tsv
Measure the MLI of many images in parallel and save the results:
parallel -j5 --bar python-lung-morphometrics do-mli ::: ./image_*.tif > ./results.tsv``
This package was created by Sylvia N. Michki.
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
Free software: GNU General Public License v3