Read, stitch and compress Leica LAS Matrix Screener experiments
Project description
Overview
This is a python module for interfacing with Leica LAS AF/X Matrix Screener experiments.
The module can be used to:
stitch wells from an experiment exported with the LAS AF Data Exporter
batch compress images lossless
programmatically select slides/wells/fields/images given by attributes like
slide (S)
well position (U, V)
field position (X, Y)
z-stack position (Z)
channel (C)
Features
Access experiment as a python object
Compress to PNGs without loosing precision, metadata or colormap
ImageJ stitching (Fiji is installed via fijibin)
Installation
Install using pip…
pip install leicaexperiment
Examples
stitch experiment
from leicaexperiment import Experiment
# path should contain AditionalData and slide--S*
experiment = Experiment('path/to/experiment')
# if path is omitted, experiment path is used for output files
stitched_images = experiment.stitch('/path/to/output/files/')
# get information about placement of images in the stitch
xs, ys, attrs = experiment.stitch_coordinates(well_x=0, well_y=0)
stitch specific well
from leicaexperiment import Experiment
# path should contain AditionalData and slide--S*
stitched_images = experiment.stitch('/path/to/well')
do stuff on all images
from leicaexperiment import Experiment
experiment = Experiment('path/to/experiment--')
for image in experiment.images:
do stuff...
do stuff on specific wells/fields
from leicaexperiment import attribute
# select specific parts
selected_wells = [well for well in experiment.wells if 'U00' in well]
for well in selected_wells:
do stuff...
def condition(path):
x_above = attribute(path, 'X') > 1
x_below = attribute(path, 'X') < 5
return x_above and x_below
selected_fields = [field for field in experiment.fields if condition(field)]
for field in selected_fields:
do stuff..
subtract data
from leicaexperiment import attribute
# get all channels
channels = [attribute(image, 'C') for image in experiment.images]
min_ch, max_ch = min(channels), max(channels)
batch lossless compress of experiment
from leicaexperiment import Experiment, compress
e = Experiment('/path/to/experiment')
pngs = compress(e.images)
print(pngs)
API reference
API reference is at http://leicaexperiment.rtfd.org.
Development
Install dependencies and link development version of leicaexperiment to pip:
git clone https://github.com/arve0/leicaexperiment
cd leicaexperiment
pip install -r requirements.txt
run test
pip install tox
tox
extra output, jump into pdb upon error
DEBUG=leicaexperiment tox -- --pdb -s
build api reference
make docs
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
Built Distribution
File details
Details for the file leicaexperiment-0.1.0.tar.gz
.
File metadata
- Download URL: leicaexperiment-0.1.0.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b803757b6fee901ddeb77fdfdedfbd75b3b00fc0f0e0adbf389468eb144bc84 |
|
MD5 | d270e4e85897e8b7be1b3e2f5b168b2e |
|
BLAKE2b-256 | b7f78cbe16ecce586893ec91b39cf7e89d10198953a00944442ce7ba6ef5562c |
File details
Details for the file leicaexperiment-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: leicaexperiment-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 637f490b896ac72835231735c3dcc897fc36c4cfc75cccbfaf3a0781e31b6c7d |
|
MD5 | 70a90812186b3e580ae41d3a00d1d4a2 |
|
BLAKE2b-256 | e279b7e8c9b957476d56f3d6d694b4f3b524371cb889d278922d0532f9ab8aab |