@@ -168,7 +168,7 @@ def _calc_norm_affine(affines, use_differences, brain_pts=None):
168
168
class ArtifactDetectInputSpec (BaseInterfaceInputSpec ):
169
169
realigned_files = InputMultiPath (
170
170
File (exists = True ),
171
- desc = ("Names of realigned functional data " " files" ),
171
+ desc = ("Names of realigned functional data files" ),
172
172
mandatory = True ,
173
173
)
174
174
realignment_parameters = InputMultiPath (
@@ -224,12 +224,12 @@ class ArtifactDetectInputSpec(BaseInterfaceInputSpec):
224
224
rotation_threshold = traits .Float (
225
225
mandatory = True ,
226
226
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" ),
228
228
)
229
229
translation_threshold = traits .Float (
230
230
mandatory = True ,
231
231
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" ),
233
233
)
234
234
zintensity_threshold = traits .Float (
235
235
mandatory = True ,
@@ -257,12 +257,12 @@ class ArtifactDetectInputSpec(BaseInterfaceInputSpec):
257
257
)
258
258
mask_file = File (exists = True , desc = "Mask file to be used if mask_type is 'file'." )
259
259
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'." )
261
261
)
262
262
intersect_mask = traits .Bool (
263
263
True ,
264
264
usedefault = True ,
265
- desc = ("Intersect the masks when computed from " " spm_global." ),
265
+ desc = ("Intersect the masks when computed from spm_global." ),
266
266
)
267
267
save_plot = traits .Bool (
268
268
True , desc = "save plots containing outliers" , usedefault = True
@@ -288,7 +288,7 @@ class ArtifactDetectInputSpec(BaseInterfaceInputSpec):
288
288
)
289
289
global_threshold = traits .Float (
290
290
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" ),
292
292
usedefault = True ,
293
293
)
294
294
@@ -312,7 +312,7 @@ class ArtifactDetectOutputSpec(TraitedSpec):
312
312
),
313
313
)
314
314
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" )
316
316
)
317
317
statistic_files = OutputMultiPath (
318
318
File (exists = True ),
@@ -329,7 +329,7 @@ class ArtifactDetectOutputSpec(TraitedSpec):
329
329
plot_files = OutputMultiPath (
330
330
File ,
331
331
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"
333
333
),
334
334
)
335
335
mask_files = OutputMultiPath (
@@ -698,28 +698,27 @@ class StimCorrInputSpec(BaseInterfaceInputSpec):
698
698
File (exists = True ),
699
699
mandatory = True ,
700
700
desc = (
701
- "Names of realignment "
702
- "parameters corresponding to "
701
+ "Names of realignment parameters corresponding to "
703
702
"the functional data files"
704
703
),
705
704
)
706
705
intensity_values = InputMultiPath (
707
706
File (exists = True ),
708
707
mandatory = True ,
709
- desc = ("Name of file containing intensity " " values" ),
708
+ desc = ("Name of file containing intensity values" ),
710
709
)
711
710
spm_mat_file = File (
712
711
exists = True , mandatory = True , desc = "SPM mat file (use pre-estimate SPM.mat file)"
713
712
)
714
713
concatenated_design = traits .Bool (
715
714
mandatory = True ,
716
- desc = ("state if the design matrix " " contains concatenated sessions" ),
715
+ desc = ("state if the design matrix contains concatenated sessions" ),
717
716
)
718
717
719
718
720
719
class StimCorrOutputSpec (TraitedSpec ):
721
720
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" )
723
722
)
724
723
725
724
0 commit comments