Metadata-Version: 2.4
Name: dart-lmd
Version: 1.2.0
Summary: Dissecting Atlas-Registered Tissue (DART): align tissue images to an atlas and generate region ROIs for laser microdissection.
Author-email: Rishi Koneru <rishikoneru2005@gmail.com>, Manjari Anant <manjari.anant@gmail.com>
License-Expression: GPL-3.0-or-later
Project-URL: Repository, https://github.com/kebschulllab/Dissecting-Atlas-Registered-Tissue
Keywords: atlas,neuroscience,image-alignment,segmentation,laser-microdissection
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: numpy>=2.2.4
Requires-Dist: nibabel
Requires-Dist: pynrrd
Requires-Dist: scikit-image>=0.26.0
Requires-Dist: scikit-learn
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: requests
Requires-Dist: plotly
Requires-Dist: tornado
Requires-Dist: ttkwidgets
Requires-Dist: shapely>=2.0
Requires-Dist: torch
Dynamic: license-file

## Overview

Dissecting Atlas-Registered Tissue (DART) aligns cell-stained images to the Allen Brain Atlas to allow for automatic brain region detection and excision with LEICA laser microdissection software. 

DART enables:
- Automated or semi-automated alignment of 2D brain slices to a 3D atlas (e.g., the Allen Brain Atlas CCFv3 2017) and atlas-based segmentation. 
- Automatic generation of ROI boundaries.
- Seamless sample handling and integration with Leica LMD software for laser dissection. 

<figure>
    <img src="https://raw.githubusercontent.com/kebschulllab/Dissecting-Atlas-Registered-Tissue/main/DART_alignment_results.png" alt="DART Alignment Results">
    <figcaption>
        DART alignment results on various brain sections</>
    </figcaption>
</figure>

## Installation

DART can currently be installed via two methods: 
1. [installation via PIP](#pip-install)
2. [cloning the github repository and downloading auxiliary files](#cloning-this-repository)

Regardless of installation method, DART is available only on Windows 11. It was tested on a computer with 192 GB RAM and 24 GB graphics card. Running DART on less powerful devices may cause issues with loading high-resolution atlases and significantly slow processing time. 

Note: the installation processes will install the CPU platform version of PyTorch. To enable GPU-acceleration via CUDA, reinstall PyTorch with the desired version and compute platform by following the directions [here](https://pytorch.org/get-started/locally/).

### PIP Install
DART is available as a PIP-installable package. It is recommended to make a virtual environment or custom conda environment, and install DART within that environment. Once the custom environment has been set up, follow these steps:
1. PIP install DART with `pip install dart-lmd`
2. Download the atlases with `dart-download-atlases`
    - Note: if this fails, refer to [this section](#if-downloading-the-atlases-fails)
3. Run DART with `dart-gui`

### Cloning this repository
DART can also be installed by cloning the repository and downloading auxiliary files. This is ideal for editing or contributing to the software and is necessary for running unit tests via pytest. To succesfully install DART with this method follow these steps:

1. Clone this repository using `git clone https://https://github.com/kebschulllab/Dissecting-Atlas-Registered-Tissue.git`
2. Set up a conda environment by navigating into the repository folder and using `conda env create -f environment.yml`
3. From the repository folder, download the atlases using `python -m dart.download_atlases`
    - Note: if this fails, refer to [this section](#if-downloading-the-atlases-fails)
4. To run the software as a user, call `python -m dart` from the root directory of the repository.

#### Additional Features of Cloned Repository
Installing DART via repository cloning enables several additional tools for developers:

1. The automated tests can be run with pytest using either `pytest --disable-warnings` or `python -m pytest --disable-warnings`.
2. Individual pages can be "demoed" by calling `python -m dart.demo` from the root directory of the repository. This opens up a GUI where users can select a specific page and view it without needing to proceed through the previous pages.

### If Downloading the Atlases Fails
The atlases can be manually downloaded and extracted from the [Zenodo archive](https://zenodo.org/records/17849564). These atlases should be extracted to the folder `dart/dart/atlases`.

Note: The `atlases` folder should have 5 subfolders, and each of those should have 3 subfiles titled `label.nrrd`, `reference.nrrd`, and `names_dict.csv`.

## Input Data
To use this tool, you will need to provide the following information:

- 3D Reference Atlas with cell stain and region annotations (included in installation if using Allen Brain Atlas)
- A folder containing cell stained images from LEICA LDM on slides 

## Usage

To use `DART`, please refer to our [tutorial](https://github.com/kebschulllab/Dissecting-Atlas-Registered-Tissue/tree/main/tutorials).

## License
- DART's source code is available under the GNU General Public License version 3
- VisuAlign is developed by the Neural Systems Laboratory at the Institute of Basic Medical Sciences, University of Oslo, Norway and is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 License](https://creativecommons.org/licenses/by-nc-sa/4.0/)

## Contributing
For support or issues, please open an “Issue” on our GitHub repository. To contribute to the software, please refer to our [Contribution guidelines](CONTRIBUTING.md)


