معرفی شرکت ها


anchor-droplet-chip-0.3.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Segment organoids and measure intensities
ویژگی مقدار
سیستم عامل -
نام فایل anchor-droplet-chip-0.3.1
نام anchor-droplet-chip
نسخه کتابخانه 0.3.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Andrey Aristov
ایمیل نویسنده aaristov@pasteur.fr
آدرس صفحه اصلی https://github.com/BaroudLab/anchor-driplet-chip
آدرس اینترنتی https://pypi.org/project/anchor-droplet-chip/
مجوز BSD-3-Clause
# ⚓ anchor-droplet-chip ## Measuring single-cell susceptibility to antibiotics within monoclonal fluorescent bacteria. We are imaging the entire chip using 20x 0.7NA objective lens using automatic stitching in NIS. Bright-field image 2D and TRITC-3D acquired. The 3D stack is converted to 2D using maximum projection in NIS or Fiji. Both channels are then merged together and saved as a tif stack. After that this package can be applied to detect the individual droplets and count the fluorescent cells. As the chips are bonded to the coverslip manually, they contain a randon tilt and shift, so detecting individual droplets proved to be unreliable. The current approach consisnts of preparing a well-lebelled template bright-field image and a labelled mask and matching the experimental brightfield image to the template. ![Paper outline(1)](https://user-images.githubusercontent.com/11408456/178001287-513e6398-c4e0-4946-b38f-6cb98dc0ee6c.svg) ## Installation ```bash pip install anchor-droplet-chip ``` ## Usage 1. Notebook: `jupyter lab example.ipynb` 2. Napari plugin: see the menu `Plugins / andhor-droplet-chips / ... 3. Command line: `python -m adc.align --help` `python -m adc.count --help` ### Dowloading the raw data Head to release page https://github.com/BaroudLab/anchor-droplet-chip/releases/tag/v0.0.1 and download files one by one. Or Execute the notebook example.ipynb - the data will be fetched automatically. ### Aligning the chips with the template and the mask Day 1: ```bash python -m adc.align day1/00ng_BF_TRITC_bin2.tif template_bin16_bf.tif labels_bin2.tif ``` This command will create the stack day1/00ng_BF_TRITC_bin2-aligned.tif, which can be viewed in Fiji. ![Screenshot of 00ng_BF_TRITC_bin2-aligned.tif](https://user-images.githubusercontent.com/11408456/176169270-3d494fc3-a771-4bf0-859e-c9cc853ce2d9.png) Day 2: ```bash python -m adc.align day2/00ng_BF_TRITC_bin2_24h.tif template_bin16_bf.tif labels_bin2.tif ``` ### Counting the cells day 1 and day2 ``` python -m adc.count day1/00ng_BF_TRITC_bin2-aligned.tif day1/counts.csv python -m adc.count day2/00ng_BF_TRITC_bin2_24h-aligned.tif day2/counts.csv ``` ### Combining the tables from 2 days ``` python adc.merge day1/counts.csv day2/counts.csv table.csv ``` ### Plotting and fitting the probabilities ## Sample data ### Batch processing: First you'll need to clone the repo locally and install it to have the scripts at hand. ```bash git clone https://github.com/BaroudLab/anchor-droplet-chip.git cd anchor-droplet-chip pip install . ``` Make a data folder ```bash mkdir data ``` Download the dataset from Zenodo https://zenodo.org/record/6940212 ```bash zenodo_get 6940212 -o data ``` Proceed with Snakemake pipeline to get tha table and plots. Be careful with the number of threads `-c` as a single thread can consume over 8 GBs of RAM. ```bash snakemake -c4 -d data table.csv ``` # Napari plugin functionaluties ## nd2 reader Open large nd2 file by drag-n-drop and select anchor-droplet-chip as a reader. The reader plugin will aotimatically detect the subchannels and split them in different layers. The reader will also extract the pixel size from metadata and save it as Layer.metadata["pixel_size_um"] The data itself is opened ad dask array using nd2 python library. ## Substack Some datasets are so big, it's hard to even to open them, let alone doing processing in them. `anchor-droplet-chip / Make a sub stack ` addresses this problem. Upon opening the plugin you'll see all dimensions of you dataset, and the axes will become named accordingly. Simply choose the subset of data you need, and click "Crop it!". This will create a new layer with the subset of data. Note that no new files are created in the process and in the background nd2 library lazy loading chunks of data from the original nd2 file. ## Populate ROIs along the line Draw a line in the new shapes layer and call the widget. It will populate square ROIs along the line. Adjust the number of columns and rows. This way you can manually map the 2D wells on your chip. ## Crop ROIs Use this widget to crop the mapped previously ROIs. The extracted crops can be saved as tifs. ## Split along axis Allows to split any dataset along a selected axis and save the pieces as separate tifs (imagej format, so only TZCYX axes supported) * Select the axis name * Click Split it! and check the table with the names, shapes and paths. * To change the prefix, set the folder by clicking at "Choose folder" * Once the table looks right, click "Save tifs" and wait. The colunm "saved" will be updated along the way. ![image](https://user-images.githubusercontent.com/11408456/214313498-5b1f8408-1fa3-4e24-810a-b9394e936c8e.png)


نیازمندی

مقدار نام
- dask
- fire
- jupyterlab
- matplotlib
- napari
- nd2
- numpy
- pandas
- pyqt6
- pytest-qt
- pyyaml
- scikit-image
- scipy
- seaborn
- tifffile
- zarr-tools
- zenodo-get


زبان مورد نیاز

مقدار نام
>=3.8 Python


نحوه نصب


نصب پکیج whl anchor-droplet-chip-0.3.1:

    pip install anchor-droplet-chip-0.3.1.whl


نصب پکیج tar.gz anchor-droplet-chip-0.3.1:

    pip install anchor-droplet-chip-0.3.1.tar.gz