Run coordinate-based meta-analyses on 21 pain studies

Collection of NIDM-Results packs downloaded from Neurovault collection 1425, uploaded by Dr. Camille Maumet.

Note

Creation of the Dataset from the NIDM-Results packs was done with custom code. The Results packs for collection 1425 are not completely NIDM-Results-compliant, so the nidmresults library could not be used to facilitate data extraction.

import os

from nilearn.plotting import plot_stat_map

import nimare
from nimare.tests.utils import get_test_data_path

Load Dataset

dset_file = os.path.join(get_test_data_path(), "nidm_pain_dset.json")
dset = nimare.dataset.Dataset(dset_file)

mask_img = dset.masker.mask_img

MKDA density analysis

mkda = nimare.meta.MKDADensity(kernel__r=10, null_method="approximate")
mkda.fit(dset)
corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
cres = corr.transform(mkda.results)
plot_stat_map(
    cres.get_map("logp_level-voxel_corr-FWE_method-montecarlo"),
    cut_coords=[0, 0, -8],
    draw_cross=False,
    cmap="RdBu_r",
)
plot cbma

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  4.70it/s]
 20%|##        | 2/10 [00:00<00:01,  4.68it/s]
 30%|###       | 3/10 [00:00<00:01,  4.69it/s]
 40%|####      | 4/10 [00:00<00:01,  4.71it/s]
 50%|#####     | 5/10 [00:01<00:01,  4.72it/s]
 60%|######    | 6/10 [00:01<00:00,  4.72it/s]
 70%|#######   | 7/10 [00:01<00:00,  4.74it/s]
 80%|########  | 8/10 [00:01<00:00,  4.72it/s]
 90%|######### | 9/10 [00:01<00:00,  4.70it/s]
100%|##########| 10/10 [00:02<00:00,  4.73it/s]
100%|##########| 10/10 [00:02<00:00,  4.72it/s]

<nilearn.plotting.displays.OrthoSlicer object at 0x7f4fa710b0d0>

MKDA Chi2 with FDR correction

mkda = nimare.meta.MKDAChi2(kernel__r=10)
dset1 = dset.slice(dset.ids)
dset2 = dset.slice(dset.ids)
mkda.fit(dset1, dset2)
corr = nimare.correct.FDRCorrector(method="bh", alpha=0.001)
cres = corr.transform(mkda.results)
plot_stat_map(
    cres.get_map("z_desc-consistency_level-voxel_corr-FDR_method-bh"),
    threshold=1.65,
    cut_coords=[0, 0, -8],
    draw_cross=False,
    cmap="RdBu_r",
)
plot cbma

Out:

/home/docs/checkouts/readthedocs.org/user_builds/nimare/checkouts/0.0.8/nimare/meta/cbma/mkda.py:237: RuntimeWarning: invalid value encountered in true_divide
  pFgA = pAgF * pF / pA
/home/docs/checkouts/readthedocs.org/user_builds/nimare/checkouts/0.0.8/nimare/meta/cbma/mkda.py:241: RuntimeWarning: invalid value encountered in true_divide
  pFgA_prior = pAgF * self.prior / pAgF_prior

<nilearn.plotting.displays.OrthoSlicer object at 0x7f4fa7642310>

MKDA Chi2 with FWE correction

Since we’ve already fitted the Estimator, we can just apply a new Corrector to the estimator.

corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
cres = corr.transform(mkda.results)
plot_stat_map(
    cres.get_map("z_desc-consistency_level-voxel_corr-FWE_method-montecarlo"),
    threshold=1.65,
    cut_coords=[0, 0, -8],
    draw_cross=False,
    cmap="RdBu_r",
)
plot cbma

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:02,  4.04it/s]
 20%|##        | 2/10 [00:00<00:01,  4.05it/s]
 30%|###       | 3/10 [00:00<00:01,  4.05it/s]
 40%|####      | 4/10 [00:00<00:01,  4.05it/s]
 50%|#####     | 5/10 [00:01<00:01,  4.04it/s]
 60%|######    | 6/10 [00:01<00:00,  4.05it/s]
 70%|#######   | 7/10 [00:01<00:00,  4.04it/s]
 80%|########  | 8/10 [00:01<00:00,  4.04it/s]
 90%|######### | 9/10 [00:02<00:00,  4.04it/s]
100%|##########| 10/10 [00:02<00:00,  4.04it/s]
100%|##########| 10/10 [00:02<00:00,  4.04it/s]
/home/docs/checkouts/readthedocs.org/user_builds/nimare/envs/0.0.8/lib/python3.7/site-packages/nilearn/plotting/displays.py:880: UserWarning: empty mask
  get_mask_bounds(new_img_like(img, not_mask, affine))

<nilearn.plotting.displays.OrthoSlicer object at 0x7f4fd4fa5cd0>

KDA

kda = nimare.meta.KDA(kernel__r=10, null_method="approximate")
kda.fit(dset)
corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
cres = corr.transform(kda.results)
plot_stat_map(
    cres.get_map("logp_level-voxel_corr-FWE_method-montecarlo"),
    cut_coords=[0, 0, -8],
    draw_cross=False,
    cmap="RdBu_r",
)
plot cbma

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:02,  4.34it/s]
 20%|##        | 2/10 [00:00<00:01,  4.41it/s]
 30%|###       | 3/10 [00:00<00:01,  4.35it/s]
 40%|####      | 4/10 [00:00<00:01,  4.40it/s]
 50%|#####     | 5/10 [00:01<00:01,  4.42it/s]
 60%|######    | 6/10 [00:01<00:00,  4.46it/s]
 70%|#######   | 7/10 [00:01<00:00,  4.46it/s]
 80%|########  | 8/10 [00:01<00:00,  4.48it/s]
 90%|######### | 9/10 [00:02<00:00,  4.49it/s]
100%|##########| 10/10 [00:02<00:00,  4.49it/s]
100%|##########| 10/10 [00:02<00:00,  4.45it/s]

<nilearn.plotting.displays.OrthoSlicer object at 0x7f4fd52a7dd0>

ALE

ale = nimare.meta.ALE(null_method="approximate")
ale.fit(dset)
corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
cres = corr.transform(ale.results)
plot_stat_map(
    cres.get_map("logp_level-cluster_corr-FWE_method-montecarlo"),
    cut_coords=[0, 0, -8],
    draw_cross=False,
    cmap="RdBu_r",
)
plot cbma

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:02,  3.57it/s]
 20%|##        | 2/10 [00:00<00:02,  3.62it/s]
 30%|###       | 3/10 [00:00<00:01,  3.62it/s]
 40%|####      | 4/10 [00:01<00:01,  3.63it/s]
 50%|#####     | 5/10 [00:01<00:01,  3.63it/s]
 60%|######    | 6/10 [00:01<00:01,  3.63it/s]
 70%|#######   | 7/10 [00:01<00:00,  3.62it/s]
 80%|########  | 8/10 [00:02<00:00,  3.63it/s]
 90%|######### | 9/10 [00:02<00:00,  3.63it/s]
100%|##########| 10/10 [00:02<00:00,  3.62it/s]
100%|##########| 10/10 [00:02<00:00,  3.62it/s]

<nilearn.plotting.displays.OrthoSlicer object at 0x7f4fd5036cd0>

Total running time of the script: ( 0 minutes 32.320 seconds)

Gallery generated by Sphinx-Gallery