|
15 | 15 | from nilearn.image import index_img |
16 | 16 | from nipype.utils.filemanip import fname_presuffix |
17 | 17 | from nipype.interfaces.base import ( |
18 | | - traits, isdefined, TraitedSpec, BaseInterfaceInputSpec, File, SimpleInterface, InputMultiObject) |
| 18 | + traits, isdefined, TraitedSpec, BaseInterfaceInputSpec, File, |
| 19 | + SimpleInterface, InputMultiObject) |
19 | 20 | from nipype.interfaces.mixins import reporting |
20 | 21 | from nipype.interfaces import freesurfer as fs |
21 | 22 | from nipype.interfaces import fsl, ants, afni |
@@ -348,16 +349,16 @@ def _post_run_hook(self, runtime): |
348 | 349 |
|
349 | 350 | class EstimateReferenceImageInputSpec(BaseInterfaceInputSpec): |
350 | 351 | in_file = InputMultiObject(File(exists=True), |
351 | | - mandatory=True, |
352 | | - desc=('4D EPI file. If multiple files ' |
353 | | - 'are provided, they are assumed ' |
354 | | - 'to represent multiple echoes ' |
355 | | - 'from the same run.')) |
| 352 | + mandatory=True, |
| 353 | + desc=('4D EPI file. If multiple files ' |
| 354 | + 'are provided, they are assumed ' |
| 355 | + 'to represent multiple echoes ' |
| 356 | + 'from the same run.')) |
356 | 357 | sbref_file = InputMultiObject(File(exists=True), |
357 | | - desc=("Single band reference image. " |
358 | | - "If multiple files are provided, " |
359 | | - "they are assumed to represent " |
360 | | - "multiple echoes.")) |
| 358 | + desc=("Single band reference image. " |
| 359 | + "If multiple files are provided, " |
| 360 | + "they are assumed to represent " |
| 361 | + "multiple echoes.")) |
361 | 362 | mc_method = traits.Enum( |
362 | 363 | "AFNI", "FSL", usedefault=True, |
363 | 364 | desc="Which software to use to perform motion correction") |
|
0 commit comments