From 03bdf8e866eafeee4bbc20b16839b5d858eab8f3 Mon Sep 17 00:00:00 2001 From: carolFrohlich Date: Tue, 2 Aug 2016 10:31:23 -0400 Subject: [PATCH] change 3dROIstats terminal output from allatonce to file --- nipype/interfaces/afni/preprocess.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nipype/interfaces/afni/preprocess.py b/nipype/interfaces/afni/preprocess.py index 4b54c371d5..fecc305cf6 100644 --- a/nipype/interfaces/afni/preprocess.py +++ b/nipype/interfaces/afni/preprocess.py @@ -2020,10 +2020,10 @@ class ROIStatsInputSpec(CommandLineInputSpec): argstr='-quiet', position=1) - terminal_output = traits.Enum('allatonce', + terminal_output = traits.Enum('file', desc=('Control terminal output:' - '`allatonce` - waits till command is ' - 'finished to display output'), + '`file` - saves ouptup into ' + 'a file'), nohash=True, mandatory=True, usedefault=True)