Skip to content

Commit 0261aab

Browse files
authored
Merge pull request nipy#2 from akeshavan/enh/eddy_quad
fix: made the outputdir be mandatory and use the default val
2 parents 9ead4cf + 7b5e7ab commit 0261aab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nipype/interfaces/fsl/epi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,8 @@ class EddyQuadInputSpec(FSLCommandInputSpec):
12751275
)
12761276
output_dir = traits.Str(
12771277
'eddy_corrected.qc',
1278-
mandatory=False,
1278+
mandatory=True,
1279+
usedefault=True,
12791280
argstr='--output-dir=%s',
12801281
desc="Output directory - default = '<base_name>.qc'",
12811282
)

0 commit comments

Comments
 (0)