Skip to content

Commit 20ed59a

Browse files
authored
Merge pull request #3558 from mmbannert/spm_voxel-based_fdr
[ENH] Enable SPM voxel-based FDR
2 parents 4bf8276 + 27fc828 commit 20ed59a

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v3.4.0
5+
rev: v4.4.0
66
hooks:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
99
- id: check-yaml
1010
- id: check-added-large-files
1111
- repo: https://github.com/psf/black
12-
rev: 20.8b1
12+
rev: 23.3.0
1313
hooks:
1414
- id: black

.zenodo.json

+5
Original file line numberDiff line numberDiff line change
@@ -890,6 +890,11 @@
890890
"affiliation": "MIT, HMS",
891891
"name": "Ghosh, Satrajit",
892892
"orcid": "0000-0002-5312-6729"
893+
},
894+
{
895+
"affiliation": "University of Tübingen and MPI for Biological Cybernertics",
896+
"name": "Bannert, Michael M.",
897+
"orcid": "0000-0003-1010-7517"
893898
}
894899
],
895900
"keywords": [

nipype/interfaces/spm/model.py

+24-1
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,16 @@ class ThresholdInputSpec(SPMCommandInputSpec):
586586
"set to p-value)"
587587
),
588588
)
589+
use_vox_fdr_correction = traits.Bool(
590+
False,
591+
usedefault=True,
592+
desc=(
593+
"whether to use voxel-based FDR "
594+
"correction for initial threshold "
595+
"(height_threshold_type has to be "
596+
"set to q-value)"
597+
),
598+
)
589599
use_topo_fdr = traits.Bool(
590600
True,
591601
usedefault=True,
@@ -661,8 +671,16 @@ def _gen_pre_topo_map_filename(self):
661671
def _make_matlab_command(self, _):
662672
script = "con_index = %d;\n" % self.inputs.contrast_index
663673
script += "cluster_forming_thr = %f;\n" % self.inputs.height_threshold
664-
if self.inputs.use_fwe_correction:
674+
675+
if self.inputs.use_fwe_correction and self.inputs.use_vox_fdr_correction:
676+
raise ValueError(
677+
"'use_fwe_correction' and 'use_vox_fdr_correction' can't both be True"
678+
)
679+
680+
if self.inputs.use_fwe_correction and not self.inputs.use_vox_fdr_correction:
665681
script += "thresDesc = 'FWE';\n"
682+
elif self.inputs.use_vox_fdr_correction and not self.inputs.use_fwe_correction:
683+
script += "thresDesc = 'FDR';\n"
666684
else:
667685
script += "thresDesc = 'none';\n"
668686

@@ -687,6 +705,8 @@ def _make_matlab_command(self, _):
687705
FWHM = SPM.xVol.FWHM;
688706
df = [SPM.xCon(con_index).eidf SPM.xX.erdf];
689707
STAT = SPM.xCon(con_index).STAT;
708+
VspmSv = cat(1,SPM.xCon(con_index).Vspm);
709+
690710
R = SPM.xVol.R;
691711
S = SPM.xVol.S;
692712
n = 1;
@@ -695,6 +715,9 @@ def _make_matlab_command(self, _):
695715
case 'FWE'
696716
cluster_forming_thr = spm_uc(cluster_forming_thr,df,STAT,R,n,S);
697717
718+
case 'FDR'
719+
cluster_forming_thr = spm_uc_FDR(cluster_forming_thr,df,STAT,n,VspmSv,0);
720+
698721
case 'none'
699722
if strcmp(height_threshold_type, 'p-value')
700723
cluster_forming_thr = spm_u(cluster_forming_thr^(1/n),df,STAT);

0 commit comments

Comments
 (0)