Skip to content

Commit 2ee584b

Browse files
authored
Merge pull request #2110 from leej3/master
FIX: fix for some missed DTIs during dcm2niix conversion
2 parents af2b7aa + 6f758a2 commit 2ee584b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/dcm2nii.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _parse_stdout(self, stdout):
304304
bvals.append(out_file + ".bval")
305305
find_b = False
306306
# next scan will have bvals/bvecs
307-
elif 'DTI gradients' in line or 'DTI gradient directions' in line:
307+
elif 'DTI gradients' in line or 'DTI gradient directions' in line or 'DTI vectors' in line:
308308
find_b = True
309309
else:
310310
pass

0 commit comments

Comments
 (0)