Skip to content

Commit 7aff17b

Browse files
committed
Add auxiliary files. Close #1087
1 parent a42d943 commit 7aff17b

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

nipype/interfaces/dcmstack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def _get_out_path(self, meta, idx=None):
8181
return path.join(os.getcwd(), out_fn)
8282
else:
8383
return path.abspath(out_fn)
84-
84+
8585

8686
class DcmStackInputSpec(NiftiGeneratorBaseInputSpec):
8787
dicom_files = traits.Either(InputMultiPath(File(exists=True)),

nipype/interfaces/tests/test_auto_DcmStack.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ def test_DcmStack_inputs():
1313
out_ext=dict(usedefault=True,
1414
),
1515
out_format=dict(),
16+
use_cwd=dict(usedefault=True,
17+
),
1618
)
1719
inputs = DcmStack.input_spec()
1820

nipype/interfaces/tests/test_auto_GroupAndStack.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ def test_GroupAndStack_inputs():
1313
out_ext=dict(usedefault=True,
1414
),
1515
out_format=dict(),
16+
use_cwd=dict(usedefault=True,
17+
),
1618
)
1719
inputs = GroupAndStack.input_spec()
1820

nipype/interfaces/tests/test_auto_MergeNifti.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ def test_MergeNifti_inputs():
1010
),
1111
out_format=dict(),
1212
sort_order=dict(),
13+
use_cwd=dict(usedefault=True,
14+
),
1315
)
1416
inputs = MergeNifti.input_spec()
1517

nipype/interfaces/tests/test_auto_SplitNifti.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ def test_SplitNifti_inputs():
99
),
1010
out_format=dict(),
1111
split_dim=dict(),
12+
use_cwd=dict(usedefault=True,
13+
),
1214
)
1315
inputs = SplitNifti.input_spec()
1416

0 commit comments

Comments
 (0)