Skip to content

Commit fc7a3a3

Browse files
STY: Apply ruff/pyupgrade rule UP032
UP032 Use f-string instead of `format` call
1 parent c97e210 commit fc7a3a3

37 files changed

+122
-338
lines changed

nipype/algorithms/confounds.py

+7-14
Original file line numberDiff line numberDiff line change
@@ -608,13 +608,8 @@ def _run_interface(self, runtime):
608608

609609
if len(imgseries.shape) != 4:
610610
raise ValueError(
611-
"{} expected a 4-D nifti file. Input {} has "
612-
"{} dimensions (shape {})".format(
613-
self._header,
614-
self.inputs.realigned_file,
615-
len(imgseries.shape),
616-
imgseries.shape,
617-
)
611+
f"{self._header} expected a 4-D nifti file. Input {self.inputs.realigned_file} has "
612+
f"{len(imgseries.shape)} dimensions (shape {imgseries.shape})"
618613
)
619614

620615
if len(mask_images) == 0:
@@ -648,8 +643,8 @@ def _run_interface(self, runtime):
648643

649644
if TR == 0:
650645
raise ValueError(
651-
"{} cannot detect repetition time from image - "
652-
"Set the repetition_time input".format(self._header)
646+
f"{self._header} cannot detect repetition time from image - "
647+
"Set the repetition_time input"
653648
)
654649

655650
if isdefined(self.inputs.variance_threshold):
@@ -753,8 +748,8 @@ def _run_interface(self, runtime):
753748
f.write("\t".join(["component"] + list(metadata.keys())) + "\n")
754749
for i in zip(components_names, *metadata.values()):
755750
f.write(
756-
"{0[0]}\t{0[1]}\t{0[2]:.10f}\t"
757-
"{0[3]:.10f}\t{0[4]:.10f}\t{0[5]}\n".format(i)
751+
f"{i[0]}\t{i[1]}\t{i[2]:.10f}\t"
752+
f"{i[3]:.10f}\t{i[4]:.10f}\t{i[5]}\n"
758753
)
759754

760755
return runtime
@@ -1398,9 +1393,7 @@ def compute_noise_components(
13981393
if imgseries.shape[:3] != mask.shape:
13991394
raise ValueError(
14001395
"Inputs for CompCor, timeseries and mask, do not have "
1401-
"matching spatial dimensions ({} and {}, respectively)".format(
1402-
imgseries.shape[:3], mask.shape
1403-
)
1396+
f"matching spatial dimensions ({imgseries.shape[:3]} and {mask.shape}, respectively)"
14041397
)
14051398

14061399
voxel_timecourses = imgseries[mask, :]

nipype/caching/memory.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,7 @@ def __call__(self, **kwargs):
8686
return out
8787

8888
def __repr__(self):
89-
return "{}({}.{}), base_dir={})".format(
90-
self.__class__.__name__,
91-
self.interface.__module__,
92-
self.interface.__name__,
93-
self.base_dir,
94-
)
89+
return f"{self.__class__.__name__}({self.interface.__module__}.{self.interface.__name__}), base_dir={self.base_dir})"
9590

9691

9792
###############################################################################

nipype/interfaces/ants/registration.py

+10-42
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,7 @@ def _transformation_constructor(self):
204204
return "".join(retval)
205205

206206
def _regularization_constructor(self):
207-
return "--regularization {}[{},{}]".format(
208-
self.inputs.regularization,
209-
self.inputs.regularization_gradient_field_sigma,
210-
self.inputs.regularization_deformation_field_sigma,
211-
)
207+
return f"--regularization {self.inputs.regularization}[{self.inputs.regularization_gradient_field_sigma},{self.inputs.regularization_deformation_field_sigma}]"
212208

213209
def _affine_gradient_descent_option_constructor(self):
214210
values = self.inputs.affine_gradient_descent_option
@@ -1242,10 +1238,7 @@ def _format_winsorize_image_intensities(self):
12421238
)
12431239
)
12441240
self._quantilesDone = True
1245-
return "--winsorize-image-intensities [ {}, {} ]".format(
1246-
self.inputs.winsorize_lower_quantile,
1247-
self.inputs.winsorize_upper_quantile,
1248-
)
1241+
return f"--winsorize-image-intensities [ {self.inputs.winsorize_lower_quantile}, {self.inputs.winsorize_upper_quantile} ]"
12491242

12501243
def _get_initial_transform_filenames(self):
12511244
n_transforms = len(self.inputs.initial_moving_transform)
@@ -1269,10 +1262,7 @@ def _get_initial_transform_filenames(self):
12691262
def _format_arg(self, opt, spec, val):
12701263
if opt == "fixed_image_mask":
12711264
if isdefined(self.inputs.moving_image_mask):
1272-
return "--masks [ {}, {} ]".format(
1273-
self.inputs.fixed_image_mask,
1274-
self.inputs.moving_image_mask,
1275-
)
1265+
return f"--masks [ {self.inputs.fixed_image_mask}, {self.inputs.moving_image_mask} ]"
12761266
else:
12771267
return "--masks %s" % self.inputs.fixed_image_mask
12781268
elif opt == "transforms":
@@ -1309,16 +1299,9 @@ def _format_arg(self, opt, spec, val):
13091299
out_filename = self._get_outputfilenames(inverse=False)
13101300
inv_out_filename = self._get_outputfilenames(inverse=True)
13111301
if out_filename and inv_out_filename:
1312-
return "--output [ {}, {}, {} ]".format(
1313-
self.inputs.output_transform_prefix,
1314-
out_filename,
1315-
inv_out_filename,
1316-
)
1302+
return f"--output [ {self.inputs.output_transform_prefix}, {out_filename}, {inv_out_filename} ]"
13171303
elif out_filename:
1318-
return "--output [ {}, {} ]".format(
1319-
self.inputs.output_transform_prefix,
1320-
out_filename,
1321-
)
1304+
return f"--output [ {self.inputs.output_transform_prefix}, {out_filename} ]"
13221305
else:
13231306
return "--output %s" % self.inputs.output_transform_prefix
13241307
elif opt == "winsorize_upper_quantile" or opt == "winsorize_lower_quantile":
@@ -1590,29 +1573,16 @@ class MeasureImageSimilarity(ANTSCommand):
15901573

15911574
def _metric_constructor(self):
15921575
retval = (
1593-
'--metric {metric}["{fixed_image}","{moving_image}",{metric_weight},'
1594-
"{radius_or_number_of_bins},{sampling_strategy},{sampling_percentage}]".format(
1595-
metric=self.inputs.metric,
1596-
fixed_image=self.inputs.fixed_image,
1597-
moving_image=self.inputs.moving_image,
1598-
metric_weight=self.inputs.metric_weight,
1599-
radius_or_number_of_bins=self.inputs.radius_or_number_of_bins,
1600-
sampling_strategy=self.inputs.sampling_strategy,
1601-
sampling_percentage=self.inputs.sampling_percentage,
1602-
)
1576+
f'--metric {self.inputs.metric}["{self.inputs.fixed_image}","{self.inputs.moving_image}",{self.inputs.metric_weight},'
1577+
f"{self.inputs.radius_or_number_of_bins},{self.inputs.sampling_strategy},{self.inputs.sampling_percentage}]"
16031578
)
16041579
return retval
16051580

16061581
def _mask_constructor(self):
16071582
if self.inputs.moving_image_mask:
1608-
retval = '--masks ["{fixed_image_mask}","{moving_image_mask}"]'.format(
1609-
fixed_image_mask=self.inputs.fixed_image_mask,
1610-
moving_image_mask=self.inputs.moving_image_mask,
1611-
)
1583+
retval = f'--masks ["{self.inputs.fixed_image_mask}","{self.inputs.moving_image_mask}"]'
16121584
else:
1613-
retval = '--masks "{fixed_image_mask}"'.format(
1614-
fixed_image_mask=self.inputs.fixed_image_mask
1615-
)
1585+
retval = f'--masks "{self.inputs.fixed_image_mask}"'
16161586
return retval
16171587

16181588
def _format_arg(self, opt, spec, val):
@@ -1871,9 +1841,7 @@ def _list_outputs(self):
18711841
f"00_{self.inputs.output_prefix}_AffineTransform.mat"
18721842
)
18731843
outputs["displacement_field"] = os.path.abspath(
1874-
"01_{}_DisplacementFieldTransform.nii.gz".format(
1875-
self.inputs.output_prefix
1876-
)
1844+
f"01_{self.inputs.output_prefix}_DisplacementFieldTransform.nii.gz"
18771845
)
18781846
if self.inputs.process == "assemble":
18791847
outputs["out_file"] = os.path.abspath(self.inputs.out_file)

nipype/interfaces/base/core.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -849,8 +849,8 @@ def _filename_from_source(self, name, chain=None):
849849

850850
if not isinstance(ns, (str, bytes)):
851851
raise ValueError(
852-
"name_source of '{}' trait should be an input trait "
853-
"name, but a type {} object was found".format(name, type(ns))
852+
f"name_source of '{name}' trait should be an input trait "
853+
f"name, but a type {type(ns)} object was found"
854854
)
855855

856856
if isdefined(getattr(self.inputs, ns)):

nipype/interfaces/base/specs.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,7 @@ def _deprecated_warn(self, obj, name, old, new):
141141
raise TraitError(msg)
142142
else:
143143
if trait_spec.new_name:
144-
msg += "Unsetting old value {}; setting new value {}.".format(
145-
name,
146-
trait_spec.new_name,
147-
)
144+
msg += f"Unsetting old value {name}; setting new value {trait_spec.new_name}."
148145
warn(msg)
149146
if trait_spec.new_name:
150147
self.trait_set(

nipype/interfaces/base/tests/test_resource_monitor.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ class UseResources(CommandLine):
5555

5656
@pytest.mark.skip(reason="inconsistent readings")
5757
@pytest.mark.skipif(os.getenv("CI_SKIP_TEST", False), reason="disabled in CI tests")
58-
@pytest.mark.parametrize(("mem_gb", "n_procs"), [(0.5, 3), (2.2, 8), (0.8, 4), (1.5, 1)])
58+
@pytest.mark.parametrize(
59+
("mem_gb", "n_procs"), [(0.5, 3), (2.2, 8), (0.8, 4), (1.5, 1)]
60+
)
5961
def test_cmdline_profiling(tmpdir, mem_gb, n_procs, use_resource_monitor):
6062
"""
6163
Test runtime profiler correctly records workflow RAM/CPUs consumption
@@ -80,7 +82,9 @@ def test_cmdline_profiling(tmpdir, mem_gb, n_procs, use_resource_monitor):
8082
@pytest.mark.skipif(
8183
True, reason="test disabled temporarily, until function profiling works"
8284
)
83-
@pytest.mark.parametrize(("mem_gb", "n_procs"), [(0.5, 3), (2.2, 8), (0.8, 4), (1.5, 1)])
85+
@pytest.mark.parametrize(
86+
("mem_gb", "n_procs"), [(0.5, 3), (2.2, 8), (0.8, 4), (1.5, 1)]
87+
)
8488
def test_function_profiling(tmpdir, mem_gb, n_procs, use_resource_monitor):
8589
"""
8690
Test runtime profiler correctly records workflow RAM/CPUs consumption

nipype/interfaces/cmtk/parcellation.py

+3-8
Original file line numberDiff line numberDiff line change
@@ -315,15 +315,10 @@ def create_annot_label(subject_id, subjects_dir, fs_dir, parcellation_name):
315315
)
316316
runCmd(mri_cmd, log)
317317
runCmd("mris_volmask %s" % subject_id, log)
318-
mri_cmd = 'mri_convert -i "{}/mri/ribbon.mgz" -o "{}/mri/ribbon.nii.gz"'.format(
319-
op.join(subjects_dir, subject_id),
320-
op.join(subjects_dir, subject_id),
321-
)
318+
subject_path = op.join(subjects_dir, subject_id)
319+
mri_cmd = f'mri_convert -i "{subject_path}/mri/ribbon.mgz" -o "{subject_path}/mri/ribbon.nii.gz"'
322320
runCmd(mri_cmd, log)
323-
mri_cmd = 'mri_convert -i "{}/mri/aseg.mgz" -o "{}/mri/aseg.nii.gz"'.format(
324-
op.join(subjects_dir, subject_id),
325-
op.join(subjects_dir, subject_id),
326-
)
321+
mri_cmd = f'mri_convert -i "{subject_path}/mri/aseg.mgz" -o "{subject_path}/mri/aseg.nii.gz"'
327322
runCmd(mri_cmd, log)
328323

329324
iflogger.info("[ DONE ]")

nipype/interfaces/dtitk/base.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ def __init__(self, *args, **kwargs):
4242
rename_idx = classes.index("DTITKRenameMixin")
4343
new_name = classes[rename_idx + 1]
4444
warnings.warn(
45-
"The {} interface has been renamed to {}\n"
45+
f"The {dep_name} interface has been renamed to {new_name}\n"
4646
"Please see the documentation for DTI-TK "
4747
"interfaces, as some inputs have been "
48-
"added or renamed for clarity."
49-
"".format(dep_name, new_name),
48+
"added or renamed for clarity.",
5049
DeprecationWarning,
5150
)
5251
super().__init__(*args, **kwargs)

nipype/interfaces/freesurfer/preprocess.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -729,10 +729,7 @@ def cmdline(self):
729729
outdir = self._get_outdir()
730730
cmd = []
731731
if not os.path.exists(outdir):
732-
cmdstr = "{} -c \"import os; os.makedirs('{}')\"".format(
733-
op.basename(sys.executable),
734-
outdir,
735-
)
732+
cmdstr = f"{op.basename(sys.executable)} -c \"import os; os.makedirs('{outdir}')\""
736733
cmd.extend([cmdstr])
737734
infofile = os.path.join(outdir, "shortinfo.txt")
738735
if not os.path.exists(infofile):
@@ -741,12 +738,7 @@ def cmdline(self):
741738
files = self._get_filelist(outdir)
742739
for infile, outfile in files:
743740
if not os.path.exists(outfile):
744-
single_cmd = "{}{} {} {}".format(
745-
self._cmd_prefix,
746-
self.cmd,
747-
infile,
748-
os.path.join(outdir, outfile),
749-
)
741+
single_cmd = f"{self._cmd_prefix}{self.cmd} {infile} {os.path.join(outdir, outfile)}"
750742
cmd.extend([single_cmd])
751743
return "; ".join(cmd)
752744

nipype/interfaces/freesurfer/tests/test_preprocess.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,7 @@ def test_fitmsparams(create_files_in_directory):
6565
# .inputs based parameters setting
6666
fit.inputs.in_files = filelist
6767
fit.inputs.out_dir = outdir
68-
assert fit.cmdline == "mri_ms_fitparms {} {} {}".format(
69-
filelist[0],
70-
filelist[1],
71-
outdir,
72-
)
68+
assert fit.cmdline == f"mri_ms_fitparms {filelist[0]} {filelist[1]} {outdir}"
7369

7470
# constructor based parameter setting
7571
fit2 = freesurfer.FitMSParams(
@@ -184,9 +180,7 @@ def test_bbregister(create_files_in_directory):
184180
base, _ = os.path.splitext(base)
185181

186182
assert bbr.cmdline == (
187-
"bbregister --t2 --init-fsl "
188-
"--reg {base}_bbreg_fsaverage.dat "
189-
"--mov {full} --s fsaverage".format(full=filelist[0], base=base)
183+
f"bbregister --t2 --init-fsl --reg {base}_bbreg_fsaverage.dat --mov {filelist[0]} --s fsaverage"
190184
)
191185

192186

nipype/interfaces/freesurfer/tests/test_utils.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,7 @@ def test_mrisexpand(tmpdir):
210210
nd_res = expand_nd.run()
211211

212212
# Commandlines differ
213-
node_cmdline = (
214-
"mris_expand -T 60 -pial {cwd}/lh.pial {cwd}/lh.smoothwm "
215-
"1 expandtmp".format(cwd=nd_res.runtime.cwd)
216-
)
213+
node_cmdline = f"mris_expand -T 60 -pial {nd_res.runtime.cwd}/lh.pial {nd_res.runtime.cwd}/lh.smoothwm 1 expandtmp"
217214
assert nd_res.runtime.cmdline == node_cmdline
218215

219216
# Check output

nipype/interfaces/freesurfer/utils.py

+6-18
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,7 @@ def _format_arg(self, name, spec, value):
355355
if ext != filemap[value]:
356356
if ext in filemap.values():
357357
raise ValueError(
358-
"Cannot create {} file with extension "
359-
"{}".format(value, ext)
358+
f"Cannot create {value} file with extension " f"{ext}"
360359
)
361360
else:
362361
logger.warning(
@@ -595,8 +594,7 @@ def _format_arg(self, name, spec, value):
595594
if ext != filemap[value]:
596595
if ext in filemap.values():
597596
raise ValueError(
598-
"Cannot create {} file with extension "
599-
"{}".format(value, ext)
597+
f"Cannot create {value} file with extension " f"{ext}"
600598
)
601599
else:
602600
logger.warning(
@@ -998,10 +996,8 @@ def _format_arg(self, name, spec, value):
998996
if len(value) == 2:
999997
return "-fminmax %.3f %.3f" % value
1000998
else:
1001-
return "-fminmax {:.3f} {:.3f} -fmid {:.3f}".format(
1002-
value[0],
1003-
value[2],
1004-
value[1],
999+
return (
1000+
f"-fminmax {value[0]:.3f} {value[2]:.3f} -fmid {value[1]:.3f}"
10051001
)
10061002
elif name == "annot_name" and isdefined(value):
10071003
# Matching annot by name needs to strip the leading hemi and trailing
@@ -1015,11 +1011,7 @@ def _format_arg(self, name, spec, value):
10151011

10161012
def _run_interface(self, runtime):
10171013
if not isdefined(self.inputs.screenshot_stem):
1018-
stem = "{}_{}_{}".format(
1019-
self.inputs.subject_id,
1020-
self.inputs.hemi,
1021-
self.inputs.surface,
1022-
)
1014+
stem = f"{self.inputs.subject_id}_{self.inputs.hemi}_{self.inputs.surface}"
10231015
else:
10241016
stem = self.inputs.screenshot_stem
10251017
stem_args = self.inputs.stem_template_args
@@ -1085,11 +1077,7 @@ def _write_tcl_script(self):
10851077
def _list_outputs(self):
10861078
outputs = self._outputs().get()
10871079
if not isdefined(self.inputs.screenshot_stem):
1088-
stem = "{}_{}_{}".format(
1089-
self.inputs.subject_id,
1090-
self.inputs.hemi,
1091-
self.inputs.surface,
1092-
)
1080+
stem = f"{self.inputs.subject_id}_{self.inputs.hemi}_{self.inputs.surface}"
10931081
else:
10941082
stem = self.inputs.screenshot_stem
10951083
stem_args = self.inputs.stem_template_args

nipype/interfaces/fsl/preprocess.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1330,9 +1330,9 @@ def _format_arg(self, name, spec, value):
13301330
if name == "out_intensitymap_file":
13311331
value = self._list_outputs()[name]
13321332
value = [FNIRT.intensitymap_file_basename(v) for v in value]
1333-
assert len(set(value)) == 1, "Found different basenames for {}: {}".format(
1334-
name, value
1335-
)
1333+
assert (
1334+
len(set(value)) == 1
1335+
), f"Found different basenames for {name}: {value}"
13361336
return spec.argstr % value[0]
13371337
if name in list(self.filemap.keys()):
13381338
return spec.argstr % self._list_outputs()[name]

nipype/interfaces/fsl/tests/test_maths.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,7 @@ def test_binarymaths(create_files_in_directory_plus_output_type):
401401
assert maths.cmdline == f"fslmaths a.nii -{op} b.nii c.nii"
402402
else:
403403
maths.inputs.operand_value = ent
404-
assert maths.cmdline == "fslmaths a.nii -{} {:.8f} c.nii".format(
405-
op, ent
406-
)
404+
assert maths.cmdline == f"fslmaths a.nii -{op} {ent:.8f} c.nii"
407405

408406
# Test that we don't need to ask for an out file
409407
for op in ops:
@@ -461,9 +459,7 @@ def test_tempfilt(create_files_in_directory_plus_output_type):
461459
for win in windows:
462460
filt.inputs.highpass_sigma = win[0]
463461
filt.inputs.lowpass_sigma = win[1]
464-
assert filt.cmdline == "fslmaths a.nii -bptf {:.6f} {:.6f} b.nii".format(
465-
win[0], win[1]
466-
)
462+
assert filt.cmdline == f"fslmaths a.nii -bptf {win[0]:.6f} {win[1]:.6f} b.nii"
467463

468464
# Test that we don't need to ask for an out file
469465
filt = fsl.TemporalFilter(in_file="a.nii", highpass_sigma=64)

0 commit comments

Comments
 (0)