Skip to content

Commit 5330e5c

Browse files
committed
Merge pull request #1429 from akeshavan/applymask
Applymask
2 parents 5f06cb8 + 66069cd commit 5330e5c

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

nipype/interfaces/freesurfer/utils.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -527,11 +527,6 @@ class ApplyMask(FSCommand):
527527
input_spec = ApplyMaskInputSpec
528528
output_spec = ApplyMaskOutputSpec
529529

530-
def _list_outputs(self):
531-
outputs = self._outputs().get()
532-
outputs["out_file"] = os.path.abspath(self.inputs.out_file)
533-
return outputs
534-
535530

536531
class SurfaceSnapshotsInputSpec(FSTraitedSpec):
537532

nipype/workflows/smri/freesurfer/recon.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def link_masks(subjects_dir, subject_id):
8282
def create_reconall_workflow(name="ReconAll", plugin_args=None,
8383
recoding_file=None):
8484
"""Creates the ReconAll workflow in nipype.
85-
85+
8686
Example
8787
-------
8888
>>> from nipype.workflows.smri.freesurfer import create_skullstripped_recon_flow
@@ -200,7 +200,7 @@ def checkarg(arg, default):
200200
'lookup_table',
201201
'wm_lookup_table',
202202
'awk_file']
203-
203+
204204
config_node = pe.Node(niu.Function(params,
205205
params,
206206
setconfig),
@@ -509,7 +509,7 @@ def completemethod(datasinked_files, subject_id):
509509
reconall.connect([(datasink, completion, [('out_file', 'datasinked_files')]),
510510
(inputspec, completion, [('subject_id', 'subject_id')]),
511511
(completion, postds_outputspec, [('subject_id', 'subject_id')])])
512-
512+
513513

514514
#### Workflow additions go here
515515
if recoding_file:

0 commit comments

Comments
 (0)