Skip to content

Commit 9248c81

Browse files
author
Shoshana Berleant
committed
use confounds.TSNR
1 parent d24acc2 commit 9248c81

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nipype/workflows/rsfmri/fsl/resting.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from ....interfaces import fsl as fsl # fsl
88
from ....interfaces import utility as util # utility
99
from ....pipeline import engine as pe # pypeline engine
10-
from ....algorithms.confounds import TSNR
1110
from ....algorithms import confounds
1211

1312
def select_volume(filename, which):
@@ -114,7 +113,7 @@ def create_resting_preproc(name='restpreproc', base_dir=None):
114113
name='outputspec')
115114
slicetimer = pe.Node(fsl.SliceTimer(), name='slicetimer')
116115
realigner = create_realign_flow()
117-
tsnr = pe.Node(TSNR(regress_poly=2), name='tsnr')
116+
tsnr = pe.Node(confounds.TSNR(regress_poly=2), name='tsnr')
118117
getthresh = pe.Node(interface=fsl.ImageStats(op_string='-p 98'),
119118
name='getthreshold')
120119
threshold_stddev = pe.Node(fsl.Threshold(), name='threshold')

0 commit comments

Comments
 (0)