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.
2 parents d8f757a + 4ef1ea3 commit 40a9404Copy full SHA for 40a9404
nipype/interfaces/afni/preprocess.py
@@ -320,7 +320,13 @@ class AutoTcorrelateInputSpec(AFNICommandInputSpec):
320
mask = File(exists=True, desc="mask of voxels",
321
argstr="-mask %s")
322
mask_only_targets = traits.Bool(desc="use mask only on targets voxels",
323
- argstr="-mask_only_targets")
+ argstr="-mask_only_targets",
324
+ xor=['mask_source'])
325
+
326
+ mask_source = File(exists=True,
327
+ desc="mask for source voxels",
328
+ argstr="-mask_source %s",
329
+ xor=['mask_only_targets'])
330
331
out_file = File("%s_similarity_matrix.1D", desc='output image file name',
332
argstr='-prefix %s', name_source="in_file", usedefault=True)
0 commit comments