nimare 0.4.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- benchmarks/__init__.py +0 -0
- benchmarks/bench_cbma.py +57 -0
- nimare/__init__.py +45 -0
- nimare/_version.py +21 -0
- nimare/annotate/__init__.py +21 -0
- nimare/annotate/cogat.py +213 -0
- nimare/annotate/gclda.py +924 -0
- nimare/annotate/lda.py +147 -0
- nimare/annotate/text.py +75 -0
- nimare/annotate/utils.py +87 -0
- nimare/base.py +217 -0
- nimare/cli.py +124 -0
- nimare/correct.py +462 -0
- nimare/dataset.py +685 -0
- nimare/decode/__init__.py +33 -0
- nimare/decode/base.py +115 -0
- nimare/decode/continuous.py +462 -0
- nimare/decode/discrete.py +753 -0
- nimare/decode/encode.py +110 -0
- nimare/decode/utils.py +44 -0
- nimare/diagnostics.py +510 -0
- nimare/estimator.py +139 -0
- nimare/extract/__init__.py +19 -0
- nimare/extract/extract.py +466 -0
- nimare/extract/utils.py +295 -0
- nimare/generate.py +331 -0
- nimare/io.py +667 -0
- nimare/meta/__init__.py +39 -0
- nimare/meta/cbma/__init__.py +6 -0
- nimare/meta/cbma/ale.py +951 -0
- nimare/meta/cbma/base.py +947 -0
- nimare/meta/cbma/mkda.py +1361 -0
- nimare/meta/cbmr.py +970 -0
- nimare/meta/ibma.py +1683 -0
- nimare/meta/kernel.py +501 -0
- nimare/meta/models.py +1199 -0
- nimare/meta/utils.py +494 -0
- nimare/nimads.py +492 -0
- nimare/reports/__init__.py +24 -0
- nimare/reports/base.py +664 -0
- nimare/reports/default.yml +123 -0
- nimare/reports/figures.py +651 -0
- nimare/reports/report.tpl +160 -0
- nimare/resources/__init__.py +1 -0
- nimare/resources/atlases/Harvard-Oxford-LICENSE +93 -0
- nimare/resources/atlases/HarvardOxford-cort-maxprob-thr25-2mm.nii.gz +0 -0
- nimare/resources/database_file_manifest.json +142 -0
- nimare/resources/english_spellings.csv +1738 -0
- nimare/resources/filenames.json +32 -0
- nimare/resources/neurosynth_laird_studies.json +58773 -0
- nimare/resources/neurosynth_stoplist.txt +396 -0
- nimare/resources/nidm_pain_dset.json +1349 -0
- nimare/resources/references.bib +541 -0
- nimare/resources/semantic_knowledge_children.txt +325 -0
- nimare/resources/semantic_relatedness_children.txt +249 -0
- nimare/resources/templates/MNI152_2x2x2_brainmask.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_T1w.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_desc-brain_mask.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_T1w.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_desc-brain_mask.nii.gz +0 -0
- nimare/results.py +225 -0
- nimare/stats.py +276 -0
- nimare/tests/__init__.py +1 -0
- nimare/tests/conftest.py +229 -0
- nimare/tests/data/amygdala_roi.nii.gz +0 -0
- nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz +0 -0
- nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz +0 -0
- nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz +0 -0
- nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt +100 -0
- nimare/tests/data/neurosynth_dset.json +2868 -0
- nimare/tests/data/neurosynth_laird_studies.json +58773 -0
- nimare/tests/data/nidm_pain_dset.json +1349 -0
- nimare/tests/data/nimads_annotation.json +1 -0
- nimare/tests/data/nimads_studyset.json +1 -0
- nimare/tests/data/test_baseline.txt +2 -0
- nimare/tests/data/test_pain_dataset.json +1278 -0
- nimare/tests/data/test_pain_dataset_multiple_contrasts.json +1242 -0
- nimare/tests/data/test_sleuth_file.txt +18 -0
- nimare/tests/data/test_sleuth_file2.txt +10 -0
- nimare/tests/data/test_sleuth_file3.txt +5 -0
- nimare/tests/data/test_sleuth_file4.txt +5 -0
- nimare/tests/data/test_sleuth_file5.txt +5 -0
- nimare/tests/test_annotate_cogat.py +32 -0
- nimare/tests/test_annotate_gclda.py +86 -0
- nimare/tests/test_annotate_lda.py +27 -0
- nimare/tests/test_dataset.py +99 -0
- nimare/tests/test_decode_continuous.py +132 -0
- nimare/tests/test_decode_discrete.py +92 -0
- nimare/tests/test_diagnostics.py +168 -0
- nimare/tests/test_estimator_performance.py +385 -0
- nimare/tests/test_extract.py +46 -0
- nimare/tests/test_generate.py +247 -0
- nimare/tests/test_io.py +294 -0
- nimare/tests/test_meta_ale.py +298 -0
- nimare/tests/test_meta_cbmr.py +295 -0
- nimare/tests/test_meta_ibma.py +240 -0
- nimare/tests/test_meta_kernel.py +209 -0
- nimare/tests/test_meta_mkda.py +234 -0
- nimare/tests/test_nimads.py +21 -0
- nimare/tests/test_reports.py +110 -0
- nimare/tests/test_stats.py +101 -0
- nimare/tests/test_transforms.py +272 -0
- nimare/tests/test_utils.py +200 -0
- nimare/tests/test_workflows.py +221 -0
- nimare/tests/utils.py +126 -0
- nimare/transforms.py +907 -0
- nimare/utils.py +1367 -0
- nimare/workflows/__init__.py +14 -0
- nimare/workflows/base.py +189 -0
- nimare/workflows/cbma.py +165 -0
- nimare/workflows/ibma.py +108 -0
- nimare/workflows/macm.py +77 -0
- nimare/workflows/misc.py +65 -0
- nimare-0.4.2.dist-info/LICENSE +21 -0
- nimare-0.4.2.dist-info/METADATA +124 -0
- nimare-0.4.2.dist-info/RECORD +119 -0
- nimare-0.4.2.dist-info/WHEEL +5 -0
- nimare-0.4.2.dist-info/entry_points.txt +2 -0
- nimare-0.4.2.dist-info/top_level.txt +2 -0
@@ -0,0 +1,124 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: nimare
|
3
|
+
Version: 0.4.2
|
4
|
+
Summary: NiMARE: Neuroimaging Meta-Analysis Research Environment
|
5
|
+
Home-page: https://github.com/neurostuff/NiMARE
|
6
|
+
Author: NiMARE developers
|
7
|
+
Author-email: tsalo006@fiu.edu
|
8
|
+
Maintainer: Taylor Salo
|
9
|
+
Maintainer-email: tsalo006@fiu.edu
|
10
|
+
License: MIT
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
12
|
+
Classifier: Environment :: Console
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
15
|
+
Classifier: Operating System :: OS Independent
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
21
|
+
Classifier: Topic :: Scientific/Engineering
|
22
|
+
Requires-Python: >=3.8
|
23
|
+
Description-Content-Type: text/markdown
|
24
|
+
License-File: LICENSE
|
25
|
+
Requires-Dist: cognitiveatlas>=0.1.11
|
26
|
+
Requires-Dist: fuzzywuzzy
|
27
|
+
Requires-Dist: jinja2
|
28
|
+
Requires-Dist: joblib>=1.3.0
|
29
|
+
Requires-Dist: matplotlib>=3.6.0
|
30
|
+
Requires-Dist: nibabel>=3.2.0
|
31
|
+
Requires-Dist: nilearn!=0.10.3,>=0.10.1
|
32
|
+
Requires-Dist: numba>=0.57.0
|
33
|
+
Requires-Dist: numpy>=1.22
|
34
|
+
Requires-Dist: pandas>=2.0.0
|
35
|
+
Requires-Dist: patsy
|
36
|
+
Requires-Dist: plotly
|
37
|
+
Requires-Dist: pymare>=0.0.8
|
38
|
+
Requires-Dist: pyyaml
|
39
|
+
Requires-Dist: requests
|
40
|
+
Requires-Dist: ridgeplot
|
41
|
+
Requires-Dist: scikit-learn>=1.0.0
|
42
|
+
Requires-Dist: scipy>=1.6.0
|
43
|
+
Requires-Dist: sparse>=0.13.0
|
44
|
+
Requires-Dist: statsmodels!=0.13.2
|
45
|
+
Requires-Dist: tqdm
|
46
|
+
Requires-Dist: importlib-resources; python_version < "3.9"
|
47
|
+
Provides-Extra: all
|
48
|
+
Requires-Dist: indexed-gzip>=1.4.0; extra == "all"
|
49
|
+
Requires-Dist: torch>=2.0; extra == "all"
|
50
|
+
Requires-Dist: m2r2; extra == "all"
|
51
|
+
Requires-Dist: matplotlib; extra == "all"
|
52
|
+
Requires-Dist: mistune; extra == "all"
|
53
|
+
Requires-Dist: pillow; extra == "all"
|
54
|
+
Requires-Dist: recommonmark; extra == "all"
|
55
|
+
Requires-Dist: seaborn; extra == "all"
|
56
|
+
Requires-Dist: sphinx>=3.5; extra == "all"
|
57
|
+
Requires-Dist: sphinx-argparse; extra == "all"
|
58
|
+
Requires-Dist: sphinx-copybutton; extra == "all"
|
59
|
+
Requires-Dist: sphinx-gallery; extra == "all"
|
60
|
+
Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "all"
|
61
|
+
Requires-Dist: sphinxcontrib-bibtex; extra == "all"
|
62
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "all"
|
63
|
+
Requires-Dist: docutils<0.21,>=0.18.1; extra == "all"
|
64
|
+
Requires-Dist: coverage; extra == "all"
|
65
|
+
Requires-Dist: coveralls; extra == "all"
|
66
|
+
Requires-Dist: flake8-black; extra == "all"
|
67
|
+
Requires-Dist: flake8-docstrings; extra == "all"
|
68
|
+
Requires-Dist: flake8-isort; extra == "all"
|
69
|
+
Requires-Dist: pytest; extra == "all"
|
70
|
+
Requires-Dist: pytest-cov; extra == "all"
|
71
|
+
Provides-Extra: cbmr
|
72
|
+
Requires-Dist: torch>=2.0; extra == "cbmr"
|
73
|
+
Provides-Extra: doc
|
74
|
+
Requires-Dist: m2r2; extra == "doc"
|
75
|
+
Requires-Dist: matplotlib; extra == "doc"
|
76
|
+
Requires-Dist: mistune; extra == "doc"
|
77
|
+
Requires-Dist: pillow; extra == "doc"
|
78
|
+
Requires-Dist: recommonmark; extra == "doc"
|
79
|
+
Requires-Dist: seaborn; extra == "doc"
|
80
|
+
Requires-Dist: sphinx>=3.5; extra == "doc"
|
81
|
+
Requires-Dist: sphinx-argparse; extra == "doc"
|
82
|
+
Requires-Dist: sphinx-copybutton; extra == "doc"
|
83
|
+
Requires-Dist: sphinx-gallery; extra == "doc"
|
84
|
+
Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "doc"
|
85
|
+
Requires-Dist: sphinxcontrib-bibtex; extra == "doc"
|
86
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "doc"
|
87
|
+
Requires-Dist: docutils<0.21,>=0.18.1; extra == "doc"
|
88
|
+
Provides-Extra: gzip
|
89
|
+
Requires-Dist: indexed-gzip>=1.4.0; extra == "gzip"
|
90
|
+
Provides-Extra: minimum
|
91
|
+
Requires-Dist: matplotlib==3.6.0; extra == "minimum"
|
92
|
+
Requires-Dist: nibabel==4.0.0; extra == "minimum"
|
93
|
+
Requires-Dist: nilearn==0.10.1; extra == "minimum"
|
94
|
+
Requires-Dist: numpy==1.22; extra == "minimum"
|
95
|
+
Requires-Dist: pandas==2.0.0; extra == "minimum"
|
96
|
+
Requires-Dist: pymare==0.0.8; extra == "minimum"
|
97
|
+
Requires-Dist: scikit-learn==1.0.0; extra == "minimum"
|
98
|
+
Requires-Dist: scipy==1.6.0; extra == "minimum"
|
99
|
+
Requires-Dist: seaborn==0.13.0; extra == "minimum"
|
100
|
+
Provides-Extra: tests
|
101
|
+
Requires-Dist: coverage; extra == "tests"
|
102
|
+
Requires-Dist: coveralls; extra == "tests"
|
103
|
+
Requires-Dist: flake8-black; extra == "tests"
|
104
|
+
Requires-Dist: flake8-docstrings; extra == "tests"
|
105
|
+
Requires-Dist: flake8-isort; extra == "tests"
|
106
|
+
Requires-Dist: pytest; extra == "tests"
|
107
|
+
Requires-Dist: pytest-cov; extra == "tests"
|
108
|
+
|
109
|
+
# NiMARE
|
110
|
+
|
111
|
+
NiMARE (Neuroimaging Meta-Analysis Research Environment) is a Python
|
112
|
+
package for coordinate-based and image-based meta-analysis of
|
113
|
+
neuroimaging data.
|
114
|
+
|
115
|
+
# License
|
116
|
+
|
117
|
+
`NiMARE` is licensed under the terms of the MIT license. See the file
|
118
|
+
\'LICENSE\' for information on the history of this software, terms &
|
119
|
+
conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.
|
120
|
+
|
121
|
+
All trademarks referenced herein are property of their respective
|
122
|
+
holders.
|
123
|
+
|
124
|
+
Copyright (c) 2018\--, NiMARE developers
|
@@ -0,0 +1,119 @@
|
|
1
|
+
benchmarks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
benchmarks/bench_cbma.py,sha256=fg_EER8hohi6kD1Hno_uXsFntKuCLTvseu-6OqkHkoU,1382
|
3
|
+
nimare/__init__.py,sha256=HHIq3EimSZSf3zJSDwuTjBig1GbRwHGYfRLSqI3yleE,802
|
4
|
+
nimare/_version.py,sha256=Q6B6Bj8UoaboQ_TjbkReHybii6JhZdK7BvLG8dyerEU,497
|
5
|
+
nimare/base.py,sha256=9DlcRB2mW759p7XqpKG3wRE-MmPsEPiYTbq6V1Yile4,7826
|
6
|
+
nimare/cli.py,sha256=Zvy5jN2KopH_MBke-gm8A0DbBZmIFGvnE1tjhbYib9I,3695
|
7
|
+
nimare/correct.py,sha256=2eI0jR6_odND-2CzSlaxRU2um6ccLSapd7ERAYteBnE,17110
|
8
|
+
nimare/dataset.py,sha256=LmjDE1GQ3ud33l3plvms_Uv8GB9_Xb-6kPtkIV2eYTw,24650
|
9
|
+
nimare/diagnostics.py,sha256=sCatkXUM9rvrY9MMz6Q66njWSiWGifWwSNEMu3ldnVs,20263
|
10
|
+
nimare/estimator.py,sha256=DtsSIyPDrKkpi-KNv2m-cZMvJO7CCfHLXHRhCT73sbY,5063
|
11
|
+
nimare/generate.py,sha256=L4_c2sLAlF7XDKTm-3q4oOx8pLID2NaxG9YET5KSIZw,12475
|
12
|
+
nimare/io.py,sha256=76T9KLOorquImy-01cLG3pwuJLJm_UD_hAhK3_0qj7g,27299
|
13
|
+
nimare/nimads.py,sha256=Wxz7b_O0f8DEXb2NNlOuJkEcfGKbH-wGwLkoZhdU8sY,16277
|
14
|
+
nimare/results.py,sha256=7szcyR6PkZAXBqbIGGWrw1nW9j9QCdpdl4MxUK_1Wzc,8190
|
15
|
+
nimare/stats.py,sha256=XhXfFj6KHTPVSTXhbEid0qt8HLqJD82Bl5T23qmaf40,10098
|
16
|
+
nimare/transforms.py,sha256=_kZO8N3IEHxd6Ir4IcewZtkWHpFknnjEnjsaD9b-1pg,30136
|
17
|
+
nimare/utils.py,sha256=BJOOKgQuubamE0RBMJVubggQfaPgIH9wZ9Oou9DKvbU,46936
|
18
|
+
nimare/annotate/__init__.py,sha256=hTla1yFYTJ8PDjm72ReeHa3qf0Que50Ww0fqz3Z86JI,434
|
19
|
+
nimare/annotate/cogat.py,sha256=xzrepAuTkRenbECn4XYwgyul45r0tIMxCDKQV_ZFVb8,7457
|
20
|
+
nimare/annotate/gclda.py,sha256=P2OQjuJn3DX0GVPte_VIVZf0LfO-yE_OhLbs6DwMaHQ,42592
|
21
|
+
nimare/annotate/lda.py,sha256=iacqOHPMYnSSetplKiKbGQLbk66v_fx-wNLBUmyT3Zo,5576
|
22
|
+
nimare/annotate/text.py,sha256=qjBgaNAlNtmo-z8xzqaYlvHZTXKrAZSXCxqFRot5vvc,2426
|
23
|
+
nimare/annotate/utils.py,sha256=ZJPoS-UVa9svZuv6owcnZIy_Cl-Oxgf15I2-FbS0sx0,3051
|
24
|
+
nimare/decode/__init__.py,sha256=Yp5NOijtD2Y3_sYTIarcqYIA3smFegk50k5azog8XsU,703
|
25
|
+
nimare/decode/base.py,sha256=PFhlsXm-28A20XPWa4cJ42uF6cjYX0NFJpxucyIk0v4,4372
|
26
|
+
nimare/decode/continuous.py,sha256=Wef_dCyI4avYjZoAdlRZdfxQva_LDOhDhq1tQtr3je0,16996
|
27
|
+
nimare/decode/discrete.py,sha256=jr0CjbE4TUjHASXwWzYEqugoFNqyRgdep1AK30YMKYo,28217
|
28
|
+
nimare/decode/encode.py,sha256=DcrwWSPIo_viACdSizOXzI_w9_cVP3Xj6b_xMNhNqXk,4554
|
29
|
+
nimare/decode/utils.py,sha256=tpsHxhaeG3ZVcTLviWfAhVlW_Gp1_Fvsw7EEF1Q1y9M,1288
|
30
|
+
nimare/extract/__init__.py,sha256=0dnoq_Lryti2Zy1tVlILjojvPpx1j3gqN8ARw9ELP5w,383
|
31
|
+
nimare/extract/extract.py,sha256=GAh_Kkjvfoj-H5MjHYZbBYqS3GGfkMr5EbpeIg60zSE,17080
|
32
|
+
nimare/extract/utils.py,sha256=yGhfnz_OBSJLO7BjgnX0D_PwBMJzXB5Bb3_BgyqEnvE,8994
|
33
|
+
nimare/meta/__init__.py,sha256=vkXIPdEFmg81EIeVRmblbQynCHQY2ivf3AJjLiCJ_uc,816
|
34
|
+
nimare/meta/cbmr.py,sha256=h9CNMHW4KUh-YQYyGDRzqPN7G1tkHYAhrSgxrP8E61s,47769
|
35
|
+
nimare/meta/ibma.py,sha256=qVw3ZhOlK6hgTdZZwa7TPDpfrGLf52dN00wH2Gw-Z8c,65442
|
36
|
+
nimare/meta/kernel.py,sha256=5wN-6dbLkzqQ0WUSTrC0DJPSbbyGiZCls9M_TAYhNGY,19169
|
37
|
+
nimare/meta/models.py,sha256=0QPlQTjWaNTeI8qTX-DHMXVjQSRD72SfJ2RZIYBZnCg,47054
|
38
|
+
nimare/meta/utils.py,sha256=fvnFz4ek8APjQHhYBS441WYXE1N9huHaTiOO0Bvui4Q,18083
|
39
|
+
nimare/meta/cbma/__init__.py,sha256=bWLrv5tL03U2ITttnnz3yerbg74w44qkZgdy32QMhqQ,219
|
40
|
+
nimare/meta/cbma/ale.py,sha256=ZNjXC4MXhfSHvrTRppY04NkGtz_Iri696k5QMuBog7o,39273
|
41
|
+
nimare/meta/cbma/base.py,sha256=-gJ4hW6_6T5oto3pre9GbWodHWRmPS2WZ1LJjB0BtMI,38382
|
42
|
+
nimare/meta/cbma/mkda.py,sha256=V5vSQodiLZoZhkYPhous0a_-1pZoRjAIL8gmGyyoezc,60397
|
43
|
+
nimare/reports/__init__.py,sha256=zGfrOPlMq2lTorKNEpyPblArFCnsvz3dRsvOHy_Ciag,428
|
44
|
+
nimare/reports/base.py,sha256=DPYr1lTuS740pSv5Q-tE0UegU0mckG0JMI-2TKVe64Y,23489
|
45
|
+
nimare/reports/default.yml,sha256=zTcWUlC9ntvacMcIIUAJPoFV8XrvPGqCH2uwovwB4Wc,6003
|
46
|
+
nimare/reports/figures.py,sha256=MCsjDR53475Jz1_anktKvNOh0qUNPMx-dfvP6Vy0uUc,19783
|
47
|
+
nimare/reports/report.tpl,sha256=ZweYiJF80zdaIwK1iawAl1pwmBZdPjpxXxY5C0U5yVs,5518
|
48
|
+
nimare/resources/__init__.py,sha256=huwax0KmUCfwVlxSRYS0qwmEzaAcNkNnpNbKp1K0n1E,28
|
49
|
+
nimare/resources/database_file_manifest.json,sha256=gn9aXERthi0KYzdI5cvYKcVXWG-BLa2BKNq-r2nQJAI,7441
|
50
|
+
nimare/resources/english_spellings.csv,sha256=w3CW1d2-_gCuwzB_b1YETGorg3Uvxa_sqmsaLPU81VY,38750
|
51
|
+
nimare/resources/filenames.json,sha256=eDSbduIwHXXTDVKoi8Ha27vK5U4dEiFyCefDa6bizg0,890
|
52
|
+
nimare/resources/neurosynth_laird_studies.json,sha256=hUqLogxCLtLSTuQvXXoPvX4A3v7GJWg2ZynkEuMgsfw,3259995
|
53
|
+
nimare/resources/neurosynth_stoplist.txt,sha256=UXkljEEDmHlTAcgj_2yMvWrGx-TcE2Fq03NhZ42JXBg,2606
|
54
|
+
nimare/resources/nidm_pain_dset.json,sha256=GgbnFrd5dbCB82OHuF8d24e3Z2jy6d1U0kWnIKccM78,40052
|
55
|
+
nimare/resources/references.bib,sha256=wAKWftdiAC-PqjY5rCu1Xgn_Hp53sSCp9B95G1tNJx0,20511
|
56
|
+
nimare/resources/semantic_knowledge_children.txt,sha256=6cwfiV4wobblI2srW7xQldLAvhirwTkUFv_hyFutnTc,6417
|
57
|
+
nimare/resources/semantic_relatedness_children.txt,sha256=WS2CsyLd-266D5CRV1r9bF4oNSlW3YdVTzUgH9lvN7E,4870
|
58
|
+
nimare/resources/atlases/Harvard-Oxford-LICENSE,sha256=RyVRB4ZqStIhLGI1pnkd91TLJeb6JcDBpYIawVID-ak,4733
|
59
|
+
nimare/resources/atlases/HarvardOxford-cort-maxprob-thr25-2mm.nii.gz,sha256=WG12p979J4_OpNg9MBmU1-CWqoJy0m48dTm0-OvViME,29113
|
60
|
+
nimare/resources/templates/MNI152_2x2x2_brainmask.nii.gz,sha256=uMRdu3beygznIhojNxtkq19cn2iiQnOzIW8u3CKfnAI,12689
|
61
|
+
nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_T1w.nii.gz,sha256=-7bnemsJA2jbEF0cqywTq9FBgVmYuFyVpSDQl3HwAhw,10959795
|
62
|
+
nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_desc-brain_mask.nii.gz,sha256=iVzB49E_oA6s8WWb6lGhCzhNi8HS11H5oeExUJGUyck,67910
|
63
|
+
nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_T1w.nii.gz,sha256=Fhbpi4jAshMJbgFdEvehFGSIUZiSFUk7pXmcdsGf0fU,1405597
|
64
|
+
nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_desc-brain_mask.nii.gz,sha256=XhLvc6-vjivxerhVqCyhO_Nkc64R8IiMTIl462OhpRs,12611
|
65
|
+
nimare/tests/__init__.py,sha256=U8Z9ECBr7ZMA-SLUXLZ3GS4Nl6mXtg0sl-3tj18XqmI,33
|
66
|
+
nimare/tests/conftest.py,sha256=NQTRlU6VJrRRV0P4Womka6Hu0rRdFa8ZmBcruRBvUrE,8091
|
67
|
+
nimare/tests/test_annotate_cogat.py,sha256=UML3tk78597jzzvykzM-vVhOkEkFKNaXxORzwonGXyA,1304
|
68
|
+
nimare/tests/test_annotate_gclda.py,sha256=INJBsGjhPECIAqXwNoc_Gqd3J8f-RTUOBRILaMWNr6Q,2684
|
69
|
+
nimare/tests/test_annotate_lda.py,sha256=EFYR1iVHsLSCAiv-W1CGHJds5h8ft0b7tqGXFC7kd-A,942
|
70
|
+
nimare/tests/test_dataset.py,sha256=fNdz1akkOarY68K_OVnPDmFQAVF-m7rDwLvnOGxaVKg,3746
|
71
|
+
nimare/tests/test_decode_continuous.py,sha256=KmdkulIIBBpjbao-TdFTVFuRd6lUx_-3QqcEvN-6B2s,4722
|
72
|
+
nimare/tests/test_decode_discrete.py,sha256=NL__uEvMori4HtmoZUVdj465lW4Qwr4ndgyOz5rB7dY,3293
|
73
|
+
nimare/tests/test_diagnostics.py,sha256=VrfR_8nQKn2VF7dFdnTM7ZQy3Ou5eHdpaLhml5T6Pb0,6467
|
74
|
+
nimare/tests/test_estimator_performance.py,sha256=tbK2Qr83rB0in-pB6MccnjLg4iHSyfilx-hTNDWQfe4,12749
|
75
|
+
nimare/tests/test_extract.py,sha256=XJSxZTdy_hAej1J9CFK9zQk29rAM5KPiZKlopmUVCJ4,1206
|
76
|
+
nimare/tests/test_generate.py,sha256=LSh2APJsg87u2s2zydkrre3RVk_ZGpoB4d7uuvIPWYE,7318
|
77
|
+
nimare/tests/test_io.py,sha256=UN64UGzqHnbIH7hsGXfIYNlrYyF7ZlHXh0ZG_qSASW4,10967
|
78
|
+
nimare/tests/test_meta_ale.py,sha256=hccXSNzLGUgj6E4tCsiHZpuUFoBxXkP293-vtUS5jdE,11791
|
79
|
+
nimare/tests/test_meta_cbmr.py,sha256=cl_pUA1dxXpDD5Ci_tllSVG0uKykuneHDbUxGY4w7Ks,9776
|
80
|
+
nimare/tests/test_meta_ibma.py,sha256=Yw4F0_pr3cpVSe7oeMlK0-btg1Uw58cenklOsIw87Pc,7775
|
81
|
+
nimare/tests/test_meta_kernel.py,sha256=Edk6lOsnqokg86mp9jAkokA203K61R7pjJEmyEEzV7E,8450
|
82
|
+
nimare/tests/test_meta_mkda.py,sha256=9PuzNUKrTBjbCHdSnuOAToXbV7wp1O0TCdD537qGQkA,9206
|
83
|
+
nimare/tests/test_nimads.py,sha256=xIp88X2uRumQG04j9pBRP4hoCoQ4U9I5S7zFKn1d4w8,856
|
84
|
+
nimare/tests/test_reports.py,sha256=Qdz-PHjQwOneRmSCo0ac2d67BeGypWJIMi4OoiQrNik,3293
|
85
|
+
nimare/tests/test_stats.py,sha256=_GhpUC1u4hnFR2SZ-sHQqkJ5MwsyPsvwPEd2GkQmsHY,4030
|
86
|
+
nimare/tests/test_transforms.py,sha256=mzEnufefhybs4r_dfRY6zQUAShepPMwKFY7S5amq3cs,10378
|
87
|
+
nimare/tests/test_utils.py,sha256=JaJYexM_xJOa-Jhv5OdbQBZ-3IWba1-Dmf1-V580ACo,6443
|
88
|
+
nimare/tests/test_workflows.py,sha256=KsdrCYQE6omiilhXiPQ7UuH07e8uSfmRZWuEjCJ30jk,7517
|
89
|
+
nimare/tests/utils.py,sha256=HC6el2z2FVfNFG6tZldyyfekWb2-cX_bibESgTYpabw,4333
|
90
|
+
nimare/tests/data/amygdala_roi.nii.gz,sha256=NtAohgCrSOC4e7whGlj4wdUMBgflffew0ai8hHUCr7w,4294
|
91
|
+
nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz,sha256=UUdw9Ww3BisMeLzl36ZYDSVQzmtb3mI4K404CsW6wzE,8671
|
92
|
+
nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz,sha256=JhYk3SpLQBiV68YKwruakoU9VhHSIFE8jlv_XfkZdYQ,2111
|
93
|
+
nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz,sha256=O-S3IaiW5yrmuFt48eBsTlcSP9n4vvjW-Xm_HJHMURQ,1442
|
94
|
+
nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt,sha256=kHoh4eWQ7HublY9I2WcgQfgkPm9kj-9kUGw8VI56UKs,599
|
95
|
+
nimare/tests/data/neurosynth_dset.json,sha256=eugKLeHLkvNJ5jgEn_k89due0KZl26sAG16HKV3pOWQ,88598
|
96
|
+
nimare/tests/data/neurosynth_laird_studies.json,sha256=hUqLogxCLtLSTuQvXXoPvX4A3v7GJWg2ZynkEuMgsfw,3259995
|
97
|
+
nimare/tests/data/nidm_pain_dset.json,sha256=GgbnFrd5dbCB82OHuF8d24e3Z2jy6d1U0kWnIKccM78,40052
|
98
|
+
nimare/tests/data/nimads_annotation.json,sha256=yTrXDjG4HzROStedJ5-TdKESw15Z9wIIMqtkK6VTuY8,10176
|
99
|
+
nimare/tests/data/nimads_studyset.json,sha256=GHL1M3QX9-KIyB6aDL-IHSlw3Lci_nYqoeaKQ0V3ZxU,84642
|
100
|
+
nimare/tests/data/test_baseline.txt,sha256=eV0swadmAIByXhWqPQXWu5m10tW68eI-a-QMqvJG3z0,150
|
101
|
+
nimare/tests/data/test_pain_dataset.json,sha256=R45grhjGmAw7gjetptTUmsx4V49L2zDk_nzgh8RAj0U,37275
|
102
|
+
nimare/tests/data/test_pain_dataset_multiple_contrasts.json,sha256=FFJjSizKozF7n46OWjF-vSFNh-P_YReBTcaYQcCVzU8,36733
|
103
|
+
nimare/tests/data/test_sleuth_file.txt,sha256=-tmQTER11JVg-JNVa0rt9NPLoK7SM11I06Dnwg8qbJk,296
|
104
|
+
nimare/tests/data/test_sleuth_file2.txt,sha256=HueaYkM47xXLewfohvH1lrV1dAf37MU2GV3K7zdyDxI,173
|
105
|
+
nimare/tests/data/test_sleuth_file3.txt,sha256=UuTnokCy1oJz1_Bw6TMu49ZSroK_ony2UmbRE18Cw2A,95
|
106
|
+
nimare/tests/data/test_sleuth_file4.txt,sha256=f87QglZBjK9JFJRbNipRX_YOXVjWLlTQ317r5MK6DwQ,90
|
107
|
+
nimare/tests/data/test_sleuth_file5.txt,sha256=BCCAz8LGDdJUKUBbv-6btzvB5StlQhGglA89EeEHXZw,88
|
108
|
+
nimare/workflows/__init__.py,sha256=yqd43gG8UJmaIT35vojNBDqRIunApmb8sbiplYArnBY,326
|
109
|
+
nimare/workflows/base.py,sha256=-foQ9v8i6QThux5MWagnO78uqWEv69UYNtBys-FV_ro,6460
|
110
|
+
nimare/workflows/cbma.py,sha256=2jYJs9kH7_LzFP6d7-oTHiTTgAFbtmiBNtBXSCSZPjg,7052
|
111
|
+
nimare/workflows/ibma.py,sha256=lAkWtqSqnZiUUV460Bh046U9LeGhnry3bl8BFi-tx7s,4289
|
112
|
+
nimare/workflows/macm.py,sha256=mVUBeKbTawhU93ApnkunZSUXZWo7qBPrM3dMGWfl0ik,2531
|
113
|
+
nimare/workflows/misc.py,sha256=OWgHlSAnRI0-5Seii-bd48piIYsfEAF_aNKGorH1yJQ,1827
|
114
|
+
nimare-0.4.2.dist-info/LICENSE,sha256=PWPXnCGWh-FMiBZ61OnQ2BHFjPPlJJ7F0kFx_ryzp-M,1074
|
115
|
+
nimare-0.4.2.dist-info/METADATA,sha256=QKr9W0O4CATBSZJjcaK_3rbeJazrNNbGXcBYHFtol84,4695
|
116
|
+
nimare-0.4.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
117
|
+
nimare-0.4.2.dist-info/entry_points.txt,sha256=3w_hk9N2PWnKZkCaJyDlc0_kdn3rh35aiI21rSdvsuA,44
|
118
|
+
nimare-0.4.2.dist-info/top_level.txt,sha256=XnOcEXMs0BxdI8t3_ksTl96T8hykn9L7-bxLLraVrTI,18
|
119
|
+
nimare-0.4.2.dist-info/RECORD,,
|