Skip to content

Commit ca3cf74

Browse files
author
Joerg Stadler
committed
camino: fix procstreamline raw streamline output, without outputroot
as suggested by @effigies #2739
1 parent ce65afb commit ca3cf74

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nipype/interfaces/camino/convert.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,10 @@ def _format_arg(self, name, spec, value):
441441
return spec.argstr % self._get_actual_outputroot(value)
442442
return super(ProcStreamlines, self)._format_arg(name, spec, value)
443443

444+
def __init__(self, *args, **kwargs):
445+
super(ProcStreamlines, self).__init__(*args, **kwargs)
446+
self.outputroot_files = []
447+
444448
def _run_interface(self, runtime):
445449
outputroot = self.inputs.outputroot
446450
if isdefined(outputroot):

0 commit comments

Comments
 (0)