Metadata-Version: 2.1
Name: jale
Version: 0.1.6
Summary: Package allowing users to run Activation Likelihood Estimation Meta-Analysis
Home-page: https://github.com/LenFrahm/JALE
Author: Lennart Frahm
Author-email: l.frahm@mailbox.org
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: customtkinter>=5.2.2
Requires-Dist: joblib>=1.3.2
Requires-Dist: nibabel>=5.3.2
Requires-Dist: numpy==1.26.3
Requires-Dist: pandas>=2.2.3
Requires-Dist: pytest>=8.0.0
Requires-Dist: PyYAML>=6.0.2
Requires-Dist: scipy>=1.14.1
Requires-Dist: xgboost>=2.1.2
Requires-Dist: openpyxl>=3.1.5
Requires-Dist: scikit-learn-extra>=0.3.0
Requires-Dist: matplotlib>=3.7.1
Requires-Dist: seaborn>=0.12.2
Requires-Dist: setuptools>=65.5.0

# JALE

A Python package for conducting ALE (Activation Likelihood Estimation) meta-analyses, supporting a range of analysis workflows: standard ALE, probabilistic or cross-validated ALE, standard ALE contrast, and balanced ALE contrast.

## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Features](#features)
- [Examples](#examples)
- [Background and References](#background-and-references)
- [Contributing](#contributing)
- [License](#license)

## Installation

To install the ALE Meta-Analysis Package, run:

```bash
pip install jale
```
## Usage

Here’s how to use the project:

JALE requires a project folder that contains 3 files:
1. Experiment Data (Author, Subjects, Coordinates, Tags)
2. Analysis Data (Type of ALE, Tags to be included)
3. Yaml config file (specifying project folder path, filenames and ALE parameters)

For example files please check the docs folder.

Running an ALE can be done in two ways:

1. via CLI: 

```bash
python -m jale /path/to/yaml/file
```

2. in Python:

```python
from jale import main

main(yaml_path='/path/to/yaml/file')
```

## Features

- Standard ("Main Effect") ALE: Brief description
- Probabilistic ("Cross-Validated") ALE: Brief description
- Standard ALE Contrast: Brief description
- Balanced ALE Contrast: Brief description

## Background and References

This project is based on research by 
- [Eickhoff et al., 2012](https://doi.org/10.1016/j.neuroimage.2011.09.017).
- [Eickhoff et al., 2016](https://doi.org/10.1016/j.neuroimage.2016.04.072).
- [Frahm et al., 2022](https://doi.org/10.1002/hbm.25898).
- [Frahm et al., 2023](https://doi.org/10.1016/j.neuroimage.2023.120383).
