nimare 0.4.2rc4__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 +635 -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 +240 -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.2rc4.dist-info/LICENSE +21 -0
- nimare-0.4.2rc4.dist-info/METADATA +124 -0
- nimare-0.4.2rc4.dist-info/RECORD +119 -0
- nimare-0.4.2rc4.dist-info/WHEEL +5 -0
- nimare-0.4.2rc4.dist-info/entry_points.txt +2 -0
- nimare-0.4.2rc4.dist-info/top_level.txt +2 -0
@@ -0,0 +1,396 @@
|
|
1
|
+
activated
|
2
|
+
activation
|
3
|
+
activity
|
4
|
+
address
|
5
|
+
analysis
|
6
|
+
area
|
7
|
+
areas
|
8
|
+
associated
|
9
|
+
based
|
10
|
+
bilateral
|
11
|
+
brain
|
12
|
+
changes
|
13
|
+
compared
|
14
|
+
comparison
|
15
|
+
conclusions
|
16
|
+
left
|
17
|
+
right
|
18
|
+
consistent
|
19
|
+
increased
|
20
|
+
including
|
21
|
+
region
|
22
|
+
regions
|
23
|
+
results
|
24
|
+
data
|
25
|
+
decrease
|
26
|
+
decreased
|
27
|
+
increase
|
28
|
+
dependent
|
29
|
+
different
|
30
|
+
differences
|
31
|
+
distinct
|
32
|
+
enhanced
|
33
|
+
examine
|
34
|
+
examined
|
35
|
+
finding
|
36
|
+
findings
|
37
|
+
fmri
|
38
|
+
imaging
|
39
|
+
investigate
|
40
|
+
investigated
|
41
|
+
matched
|
42
|
+
measured
|
43
|
+
meta
|
44
|
+
mri
|
45
|
+
comprising
|
46
|
+
neural
|
47
|
+
neuroimaging
|
48
|
+
observed
|
49
|
+
observe
|
50
|
+
participants
|
51
|
+
patients
|
52
|
+
performed
|
53
|
+
present
|
54
|
+
previously
|
55
|
+
processing
|
56
|
+
recent
|
57
|
+
regression
|
58
|
+
related
|
59
|
+
relative
|
60
|
+
remains
|
61
|
+
revealed
|
62
|
+
showed
|
63
|
+
stronger
|
64
|
+
similar
|
65
|
+
reduced
|
66
|
+
significant
|
67
|
+
significantly
|
68
|
+
specific
|
69
|
+
statistical
|
70
|
+
statistically
|
71
|
+
study
|
72
|
+
studies
|
73
|
+
subjects
|
74
|
+
support
|
75
|
+
hypothesis
|
76
|
+
underwent
|
77
|
+
used
|
78
|
+
a
|
79
|
+
about
|
80
|
+
above
|
81
|
+
across
|
82
|
+
after
|
83
|
+
afterwards
|
84
|
+
again
|
85
|
+
against
|
86
|
+
all
|
87
|
+
almost
|
88
|
+
alone
|
89
|
+
along
|
90
|
+
already
|
91
|
+
also
|
92
|
+
although
|
93
|
+
always
|
94
|
+
am
|
95
|
+
among
|
96
|
+
amongst
|
97
|
+
amoungst
|
98
|
+
amount
|
99
|
+
an
|
100
|
+
and
|
101
|
+
another
|
102
|
+
any
|
103
|
+
anyhow
|
104
|
+
anyone
|
105
|
+
anything
|
106
|
+
anyway
|
107
|
+
anywhere
|
108
|
+
are
|
109
|
+
around
|
110
|
+
as
|
111
|
+
at
|
112
|
+
back
|
113
|
+
be
|
114
|
+
became
|
115
|
+
because
|
116
|
+
become
|
117
|
+
becomes
|
118
|
+
becoming
|
119
|
+
been
|
120
|
+
before
|
121
|
+
beforehand
|
122
|
+
behind
|
123
|
+
being
|
124
|
+
below
|
125
|
+
beside
|
126
|
+
besides
|
127
|
+
between
|
128
|
+
beyond
|
129
|
+
bill
|
130
|
+
both
|
131
|
+
bottom
|
132
|
+
but
|
133
|
+
by
|
134
|
+
call
|
135
|
+
can
|
136
|
+
cannot
|
137
|
+
cant
|
138
|
+
co
|
139
|
+
computer
|
140
|
+
con
|
141
|
+
could
|
142
|
+
couldnt
|
143
|
+
cry
|
144
|
+
de
|
145
|
+
describe
|
146
|
+
detail
|
147
|
+
do
|
148
|
+
done
|
149
|
+
down
|
150
|
+
due
|
151
|
+
during
|
152
|
+
each
|
153
|
+
eg
|
154
|
+
eight
|
155
|
+
either
|
156
|
+
eleven
|
157
|
+
else
|
158
|
+
elsewhere
|
159
|
+
empty
|
160
|
+
enough
|
161
|
+
etc
|
162
|
+
even
|
163
|
+
ever
|
164
|
+
every
|
165
|
+
everyone
|
166
|
+
everything
|
167
|
+
everywhere
|
168
|
+
except
|
169
|
+
few
|
170
|
+
fifteen
|
171
|
+
fify
|
172
|
+
fill
|
173
|
+
find
|
174
|
+
fire
|
175
|
+
first
|
176
|
+
five
|
177
|
+
for
|
178
|
+
former
|
179
|
+
formerly
|
180
|
+
forty
|
181
|
+
found
|
182
|
+
four
|
183
|
+
from
|
184
|
+
front
|
185
|
+
full
|
186
|
+
further
|
187
|
+
get
|
188
|
+
give
|
189
|
+
go
|
190
|
+
had
|
191
|
+
has
|
192
|
+
hasnt
|
193
|
+
have
|
194
|
+
he
|
195
|
+
hence
|
196
|
+
her
|
197
|
+
here
|
198
|
+
hereafter
|
199
|
+
hereby
|
200
|
+
herein
|
201
|
+
hereupon
|
202
|
+
hers
|
203
|
+
herself
|
204
|
+
him
|
205
|
+
himself
|
206
|
+
his
|
207
|
+
how
|
208
|
+
however
|
209
|
+
hundred
|
210
|
+
i
|
211
|
+
ie
|
212
|
+
if
|
213
|
+
in
|
214
|
+
inc
|
215
|
+
indeed
|
216
|
+
interest
|
217
|
+
into
|
218
|
+
is
|
219
|
+
it
|
220
|
+
its
|
221
|
+
itself
|
222
|
+
keep
|
223
|
+
last
|
224
|
+
latter
|
225
|
+
latterly
|
226
|
+
least
|
227
|
+
less
|
228
|
+
ltd
|
229
|
+
made
|
230
|
+
many
|
231
|
+
may
|
232
|
+
me
|
233
|
+
meanwhile
|
234
|
+
might
|
235
|
+
mill
|
236
|
+
mine
|
237
|
+
more
|
238
|
+
moreover
|
239
|
+
most
|
240
|
+
mostly
|
241
|
+
move
|
242
|
+
much
|
243
|
+
must
|
244
|
+
my
|
245
|
+
myself
|
246
|
+
name
|
247
|
+
namely
|
248
|
+
neither
|
249
|
+
never
|
250
|
+
nevertheless
|
251
|
+
next
|
252
|
+
nine
|
253
|
+
no
|
254
|
+
nobody
|
255
|
+
none
|
256
|
+
noone
|
257
|
+
nor
|
258
|
+
not
|
259
|
+
nothing
|
260
|
+
now
|
261
|
+
nowhere
|
262
|
+
of
|
263
|
+
off
|
264
|
+
often
|
265
|
+
on
|
266
|
+
once
|
267
|
+
one
|
268
|
+
only
|
269
|
+
onto
|
270
|
+
or
|
271
|
+
other
|
272
|
+
others
|
273
|
+
otherwise
|
274
|
+
our
|
275
|
+
ours
|
276
|
+
ourselves
|
277
|
+
out
|
278
|
+
over
|
279
|
+
own
|
280
|
+
part
|
281
|
+
per
|
282
|
+
perhaps
|
283
|
+
please
|
284
|
+
put
|
285
|
+
rather
|
286
|
+
re
|
287
|
+
same
|
288
|
+
see
|
289
|
+
seem
|
290
|
+
seemed
|
291
|
+
seeming
|
292
|
+
seems
|
293
|
+
serious
|
294
|
+
several
|
295
|
+
she
|
296
|
+
should
|
297
|
+
show
|
298
|
+
side
|
299
|
+
since
|
300
|
+
sincere
|
301
|
+
six
|
302
|
+
sixty
|
303
|
+
so
|
304
|
+
some
|
305
|
+
somehow
|
306
|
+
someone
|
307
|
+
something
|
308
|
+
sometime
|
309
|
+
sometimes
|
310
|
+
somewhere
|
311
|
+
still
|
312
|
+
such
|
313
|
+
system
|
314
|
+
take
|
315
|
+
ten
|
316
|
+
than
|
317
|
+
that
|
318
|
+
the
|
319
|
+
their
|
320
|
+
them
|
321
|
+
themselves
|
322
|
+
then
|
323
|
+
thence
|
324
|
+
there
|
325
|
+
thereafter
|
326
|
+
thereby
|
327
|
+
therefore
|
328
|
+
therein
|
329
|
+
thereupon
|
330
|
+
these
|
331
|
+
they
|
332
|
+
thick
|
333
|
+
thin
|
334
|
+
third
|
335
|
+
this
|
336
|
+
those
|
337
|
+
though
|
338
|
+
three
|
339
|
+
through
|
340
|
+
throughout
|
341
|
+
thru
|
342
|
+
thus
|
343
|
+
to
|
344
|
+
together
|
345
|
+
too
|
346
|
+
top
|
347
|
+
toward
|
348
|
+
towards
|
349
|
+
twelve
|
350
|
+
twenty
|
351
|
+
two
|
352
|
+
un
|
353
|
+
under
|
354
|
+
until
|
355
|
+
up
|
356
|
+
upon
|
357
|
+
us
|
358
|
+
very
|
359
|
+
via
|
360
|
+
was
|
361
|
+
we
|
362
|
+
well
|
363
|
+
were
|
364
|
+
what
|
365
|
+
whatever
|
366
|
+
when
|
367
|
+
whence
|
368
|
+
whenever
|
369
|
+
where
|
370
|
+
whereafter
|
371
|
+
whereas
|
372
|
+
whereby
|
373
|
+
wherein
|
374
|
+
whereupon
|
375
|
+
wherever
|
376
|
+
whether
|
377
|
+
which
|
378
|
+
while
|
379
|
+
whither
|
380
|
+
who
|
381
|
+
whoever
|
382
|
+
whole
|
383
|
+
whom
|
384
|
+
whose
|
385
|
+
why
|
386
|
+
will
|
387
|
+
with
|
388
|
+
within
|
389
|
+
without
|
390
|
+
would
|
391
|
+
yet
|
392
|
+
you
|
393
|
+
your
|
394
|
+
yours
|
395
|
+
yourself
|
396
|
+
yourselves
|