We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e44223 commit fb54146Copy full SHA for fb54146
nipype/algorithms/confounds.py
@@ -919,9 +919,7 @@ class TSNR(BaseInterface):
919
def _run_interface(self, runtime):
920
img = nb.load(self.inputs.in_file[0], mmap=NUMPY_MMAP)
921
header = img.header.copy()
922
- vollist = [
923
- nb.load(filename) for filename in self.inputs.in_file
924
- ]
+ vollist = [nb.load(filename) for filename in self.inputs.in_file]
925
data = np.concatenate(
926
[
927
vol.get_fdata(dtype=np.float32).reshape(vol.shape[:3] + (-1,))
0 commit comments