@@ -168,7 +168,7 @@ def _calc_norm_affine(affines, use_differences, brain_pts=None):
168168class ArtifactDetectInputSpec (BaseInterfaceInputSpec ):
169169 realigned_files = InputMultiPath (
170170 File (exists = True ),
171- desc = ("Names of realigned functional data " " files" ),
171+ desc = ("Names of realigned functional data files" ),
172172 mandatory = True ,
173173 )
174174 realignment_parameters = InputMultiPath (
@@ -224,12 +224,12 @@ class ArtifactDetectInputSpec(BaseInterfaceInputSpec):
224224 rotation_threshold = traits .Float (
225225 mandatory = True ,
226226 xor = ["norm_threshold" ],
227- desc = ("Threshold (in radians) to use to " " detect rotation-related outliers" ),
227+ desc = ("Threshold (in radians) to use to detect rotation-related outliers" ),
228228 )
229229 translation_threshold = traits .Float (
230230 mandatory = True ,
231231 xor = ["norm_threshold" ],
232- desc = ("Threshold (in mm) to use to " " detect translation-related " " outliers" ),
232+ desc = ("Threshold (in mm) to use to detect translation-related outliers" ),
233233 )
234234 zintensity_threshold = traits .Float (
235235 mandatory = True ,
@@ -257,12 +257,12 @@ class ArtifactDetectInputSpec(BaseInterfaceInputSpec):
257257 )
258258 mask_file = File (exists = True , desc = "Mask file to be used if mask_type is 'file'." )
259259 mask_threshold = traits .Float (
260- desc = ("Mask threshold to be used if mask_type" " is 'thresh'." )
260+ desc = ("Mask threshold to be used if mask_type is 'thresh'." )
261261 )
262262 intersect_mask = traits .Bool (
263263 True ,
264264 usedefault = True ,
265- desc = ("Intersect the masks when computed from " " spm_global." ),
265+ desc = ("Intersect the masks when computed from spm_global." ),
266266 )
267267 save_plot = traits .Bool (
268268 True , desc = "save plots containing outliers" , usedefault = True
@@ -288,7 +288,7 @@ class ArtifactDetectInputSpec(BaseInterfaceInputSpec):
288288 )
289289 global_threshold = traits .Float (
290290 8.0 ,
291- desc = ("use this threshold when mask " " type equal's spm_global" ),
291+ desc = ("use this threshold when mask type equal's spm_global" ),
292292 usedefault = True ,
293293 )
294294
@@ -312,7 +312,7 @@ class ArtifactDetectOutputSpec(TraitedSpec):
312312 ),
313313 )
314314 norm_files = OutputMultiPath (
315- File , desc = ("One file for each functional run " " containing the composite norm" )
315+ File , desc = ("One file for each functional run containing the composite norm" )
316316 )
317317 statistic_files = OutputMultiPath (
318318 File (exists = True ),
@@ -329,7 +329,7 @@ class ArtifactDetectOutputSpec(TraitedSpec):
329329 plot_files = OutputMultiPath (
330330 File ,
331331 desc = (
332- "One image file for each functional run " " containing the detected outliers"
332+ "One image file for each functional run containing the detected outliers"
333333 ),
334334 )
335335 mask_files = OutputMultiPath (
@@ -698,28 +698,27 @@ class StimCorrInputSpec(BaseInterfaceInputSpec):
698698 File (exists = True ),
699699 mandatory = True ,
700700 desc = (
701- "Names of realignment "
702- "parameters corresponding to "
701+ "Names of realignment parameters corresponding to "
703702 "the functional data files"
704703 ),
705704 )
706705 intensity_values = InputMultiPath (
707706 File (exists = True ),
708707 mandatory = True ,
709- desc = ("Name of file containing intensity " " values" ),
708+ desc = ("Name of file containing intensity values" ),
710709 )
711710 spm_mat_file = File (
712711 exists = True , mandatory = True , desc = "SPM mat file (use pre-estimate SPM.mat file)"
713712 )
714713 concatenated_design = traits .Bool (
715714 mandatory = True ,
716- desc = ("state if the design matrix " " contains concatenated sessions" ),
715+ desc = ("state if the design matrix contains concatenated sessions" ),
717716 )
718717
719718
720719class StimCorrOutputSpec (TraitedSpec ):
721720 stimcorr_files = OutputMultiPath (
722- File (exists = True ), desc = ("List of files containing " " correlation values" )
721+ File (exists = True ), desc = ("List of files containing correlation values" )
723722 )
724723
725724
0 commit comments