We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51ee68d commit ffcacc4Copy full SHA for ffcacc4
nibabies/interfaces/mcribs.py
@@ -97,6 +97,7 @@ class MCRIBReconAllInputSpec(CommandLineInputSpec):
97
98
class MCRIBReconAllOutputSpec(TraitedSpec):
99
mcribs_dir = Directory(desc='MCRIBS output directory')
100
+ subjects_dir = Directory(desc='FreeSurfer output directory')
101
102
103
class MCRIBReconAll(CommandLine):
@@ -212,5 +213,6 @@ def _list_outputs(self):
212
213
dst = Path(self.inputs.subjects_dir) / self.inputs.subject_id
214
if not dst.exists():
215
shutil.copytree(mcribs_fs, dst)
216
+ outputs['subjects_dir'] = str(dst)
217
218
return outputs
0 commit comments