File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
nipype/workflows/rsfmri/fsl Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
from ....interfaces import utility as util # utility
9
9
from ....pipeline import engine as pe # pypeline engine
10
10
from ....algorithms .misc import TSNR
11
- from ....algorithms import compcor as cc
11
+ from ....algorithms import confounds
12
12
13
13
def select_volume (filename , which ):
14
14
"""Return the middle index of a file
@@ -118,7 +118,7 @@ def create_resting_preproc(name='restpreproc', base_dir=None):
118
118
getthresh = pe .Node (interface = fsl .ImageStats (op_string = '-p 98' ),
119
119
name = 'getthreshold' )
120
120
threshold_stddev = pe .Node (fsl .Threshold (), name = 'threshold' )
121
- compcor = pe .Node (cc .ACompCor (components_file = "noise_components.txt" ,
121
+ compcor = pe .Node (confounds .ACompCor (components_file = "noise_components.txt" ,
122
122
use_regress_poly = False ),
123
123
name = 'compcor' )
124
124
remove_noise = pe .Node (fsl .FilterRegressor (filter_all = True ),
You can’t perform that action at this time.
0 commit comments