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 d38e98f commit 725cd82Copy full SHA for 725cd82
nipype/interfaces/freesurfer/longitudinal.py
@@ -256,9 +256,16 @@ def _list_outputs(self):
256
257
258
class BaseReconAllInputSpec(ReconAllInputSpec):
259
- base_id = traits.Str(argstr="-base %s", desc="base template name", xor=["subject_id"])
260
- timepoints = InputMultiObject(
261
- traits.Str(), argstr="-tp %s...", desc="processed time point to use in template"
+ base_template_id = traits.Str(
+ argstr="-base %s",
+ desc="base template name",
262
+ mandatory=True,
263
+ )
264
+ base_timepoint_ids = InputMultiObject(
265
+ traits.Str(),
266
+ argstr="-base-tp %s...",
267
+ desc="processed time point to use in template",
268
269
)
270
271
class BaseReconAllOutputSpec(FreeSurferSource.output_spec):
0 commit comments