Skip to content

Commit 9098697

Browse files
josephmjeeffigies
andcommitted
Apply suggestions from code review
Co-Authored-By: Chris Markiewicz <[email protected]>
1 parent 38e73bc commit 9098697

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

nipype/interfaces/fsl/epi.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,9 @@ class EddyInputSpec(FSLCommandInputSpec):
599599
in_topup_movpar = File(
600600
exists=True,
601601
requires=['in_topup_fieldcoef'],
602-
desc='Topup results file containing the movement parameters')
602+
desc='Topup results file containing the movement parameters (movpar.txt)')
603603
field = File(
604+
exists=True,
604605
argstr='--field=%s',
605606
desc=('Non-topup derived fieldmap scaled in Hz'))
606607
field_mat = File(
@@ -710,15 +711,15 @@ class EddyInputSpec(FSLCommandInputSpec):
710711
desc='Consider outliers among sums-of-squared differences if set',
711712
requires=['repol'],
712713
min_ver='5.0.10')
713-
mb = traits.Int(
714+
multiband_factor = traits.Int(
714715
argstr='--mb=%s',
715716
desc='Multi-band factor',
716717
min_ver='5.0.10')
717-
mb_offs = traits.Enum(
718+
multiband_offset = traits.Enum(
718719
0,
719720
1,
720721
-1,
721-
argstr='--mb_offs=%s',
722+
argstr='--mb_offs=%d',
722723
desc=('Multi-band offset (-1 if bottom slice removed, 1 if '
723724
'top slice removed'),
724725
requires=['mb'],
@@ -729,7 +730,7 @@ class EddyInputSpec(FSLCommandInputSpec):
729730
desc='Order of slice-to-vol movement model',
730731
requires=['use_cuda'],
731732
min_ver='5.0.11')
732-
s2v_niter = traits.Int(
733+
slice2vol_iterations = traits.Int(
733734
argstr='--s2v_niter=%s',
734735
desc='Number of iterations for slice-to-vol',
735736
requires=['mporder'],

0 commit comments

Comments
 (0)