@@ -1034,7 +1034,7 @@ def _gen_filename(self, name):
1034
1034
return self ._list_outputs ()['smoothed_file' ]
1035
1035
return None
1036
1036
1037
- class FUGUEInputSpec (TraitedSpec ):
1037
+ class FUGUEInputSpec (FSLCommandInputSpec ):
1038
1038
in_file = File (exists = True , argstr = '--in=%s' ,
1039
1039
desc = 'filename of input volume' )
1040
1040
unwarped_file = File (argstr = '--unwarp=%s' , genfile = True ,
@@ -1107,14 +1107,18 @@ class FUGUE(FSLCommand):
1107
1107
Examples
1108
1108
--------
1109
1109
1110
- >>>
1110
+ Please insert examples for use of this command
1111
1111
1112
1112
"""
1113
1113
1114
1114
_cmd = 'fugue'
1115
1115
input_spec = FUGUEInputSpec
1116
1116
output_spec = FUGUEOutputSpec
1117
1117
1118
+ def __init__ (self , ** kwargs ):
1119
+ super (FUGUE , self ).__init__ (** kwargs )
1120
+ warn ('This interface has not been fully tested. Please report any failures.' )
1121
+
1118
1122
def _list_outputs (self ):
1119
1123
outputs = self ._outputs ().get ()
1120
1124
out_file = self .inputs .unwarped_file
@@ -1180,13 +1184,16 @@ class PRELUDE(FSLCommand):
1180
1184
Examples
1181
1185
--------
1182
1186
1183
- >>>
1187
+ Please insert examples for use of this command
1184
1188
1185
1189
"""
1186
1190
input_spec = PRELUDEInputSpec
1187
1191
output_spec = PRELUDEOutputSpec
1188
1192
_cmd = 'prelude'
1189
-
1193
+
1194
+ def __init__ (self , ** kwargs ):
1195
+ super (PRELUDE , self ).__init__ (** kwargs )
1196
+ warn ('This has not been fully tested. Please report any failures.' )
1190
1197
1191
1198
def _list_outputs (self ):
1192
1199
outputs = self ._outputs ().get ()
0 commit comments