@@ -70,25 +70,28 @@ class RobustFOVInputSpec(FSLCommandInputSpec):
7070 out_roi = File (desc = "ROI volume output name" , argstr = "-r %s" ,
7171 name_source = ['in_file' ], hash_files = False ,
7272 name_template = '%s_ROI' )
73- brainsize = traits .Int (170 , desc = 'size of brain in z-dimension (default 170mm/150mm)' ,
74- argstr = '-b %d' , usedefault = False )
75- out_transform = File (desc = "Transformation matrix in_file to out_roi output name" , argstr = "-m %s" ,
73+ brainsize = traits .Int (desc = ('size of brain in z-dimension (default '
74+ '170mm/150mm)' ),
75+ argstr = '-b %d' )
76+ out_transform = File (desc = ("Transformation matrix in_file to out_roi "
77+ "output name" ),
78+ argstr = "-m %s" ,
7679 name_source = ['in_file' ], hash_files = False ,
77- name_template = '%s_to_ROI' , usedefault = False , mandatatory = False )
80+ name_template = '%s_to_ROI' )
7881
7982
8083class RobustFOVOutputSpec (TraitedSpec ):
8184 out_roi = File (exists = True , desc = "ROI volume output name" )
82- out_transform = File (exists = True , desc = "Transformation matrix in_file to out_roi output name" )
85+ out_transform = File (exists = True ,
86+ desc = ("Transformation matrix in_file to out_roi "
87+ "output name" ))
8388
8489
8590class RobustFOV (FSLCommand ):
86- """robustfov command has been introduced in FSL5. It automatically crops an
87- image removing lower head and neck.
88- Input of brainsize in optional (default 170mm/150mm)
89- Output of ROI and transformation matrix is optional.
90- Interface is stable 5.0.0 to 5.0.9
91- But default brainsize changed from 150mm to 170mm.
91+ """Automatically crops an image removing lower head and neck.
92+
93+ Interface is stable 5.0.0 to 5.0.9, but default brainsize changed from
94+ 150mm to 170mm.
9295 """
9396
9497 _cmd = 'robustfov'
0 commit comments