-
Notifications
You must be signed in to change notification settings - Fork 6
ALE Contrast
Activation Likelihood Estimation (ALE) meta-analysis is a statistical method used to determine convergence of brain activity across neuroimaging studies. It is often employed to contrast two datasets (e.g., groups or tasks). Two main approaches for such contrasts include the Standard ALE Contrast Algorithm and the Balanced ALE Contrast Algorithm. These methods are designed to compare voxel-wise differences in convergence, but they differ in how they handle datasets with unequal sizes.
The Standard ALE Contrast Algorithm compares two datasets as they are, regardless of size differences. This approach follows these steps:
-
Compute ALE difference Map:
- Compute ALE values for each voxel in both datasets, which reflect the likelihood of brain activity convergence. Subtract the ALE maps from each other
-
Generate Null Distribution:
- A null distribution of voxel-wise difference values is created by repeating the following steps 5000 (default) times:
- randomly permute experiments between the two datasets
- compute ALE map for the permuted datasets
- compute permuted ALE difference
- store voxel-wise difference values
- A null distribution of voxel-wise difference values is created by repeating the following steps 5000 (default) times:
-
Statistical Testing:
- Voxel-wise differences between the ALE maps of the two datasets are compared to the null distribution to identify significant effects.
Limitation: Larger datasets dominate the contrast, potentially masking subtle differences in smaller datasets.
The Balanced ALE Contrast Algorithm addresses the size imbalance issue by using subsampling to ensure equal comparison. Its steps include:
-
Subsampling:
- Create multiple same-sized subsets from both datasets.
- For example, randomly select 30 experiments from the larger dataset (150 experiments) to match the smaller dataset (30 experiments).
-
Compute Subsampled ALE Maps:
- Compute ALE maps for the subsamples and calculate the differences.
-
Generate Null Distribution:
- A null distribution is created from null datasets of the same size as the subsamples.
- For each pair of null datasets subsample ALE difference maps are calculated and averaged.
-
Averaging Results:
- Average the differences across all subsamples and compare to null distribution to determine significant effects.
Strength: Reduces the bias introduced by dataset size differences, making it more sensitive to subtle effects. Limitation: Computationally way more expensive due to repeated subsampling.
This wiki will explain to you everything you need to know to run an ALE meta-analysis from scratch:
- How to set-up python using pyenv (Mac OS and Linux only)
- How to install JALE
- How to set-up a project folder and the required input files.
- What kind of output will be created and how to interpret it.