@@ -204,11 +204,7 @@ def _transformation_constructor(self):
204
204
return "" .join (retval )
205
205
206
206
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 } ]"
212
208
213
209
def _affine_gradient_descent_option_constructor (self ):
214
210
values = self .inputs .affine_gradient_descent_option
@@ -1242,10 +1238,7 @@ def _format_winsorize_image_intensities(self):
1242
1238
)
1243
1239
)
1244
1240
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 } ]"
1249
1242
1250
1243
def _get_initial_transform_filenames (self ):
1251
1244
n_transforms = len (self .inputs .initial_moving_transform )
@@ -1269,10 +1262,7 @@ def _get_initial_transform_filenames(self):
1269
1262
def _format_arg (self , opt , spec , val ):
1270
1263
if opt == "fixed_image_mask" :
1271
1264
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 } ]"
1276
1266
else :
1277
1267
return "--masks %s" % self .inputs .fixed_image_mask
1278
1268
elif opt == "transforms" :
@@ -1309,16 +1299,9 @@ def _format_arg(self, opt, spec, val):
1309
1299
out_filename = self ._get_outputfilenames (inverse = False )
1310
1300
inv_out_filename = self ._get_outputfilenames (inverse = True )
1311
1301
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 } ]"
1317
1303
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 } ]"
1322
1305
else :
1323
1306
return "--output %s" % self .inputs .output_transform_prefix
1324
1307
elif opt == "winsorize_upper_quantile" or opt == "winsorize_lower_quantile" :
@@ -1590,29 +1573,16 @@ class MeasureImageSimilarity(ANTSCommand):
1590
1573
1591
1574
def _metric_constructor (self ):
1592
1575
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 } ]"
1603
1578
)
1604
1579
return retval
1605
1580
1606
1581
def _mask_constructor (self ):
1607
1582
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 } "]'
1612
1584
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 } "'
1616
1586
return retval
1617
1587
1618
1588
def _format_arg (self , opt , spec , val ):
@@ -1871,9 +1841,7 @@ def _list_outputs(self):
1871
1841
f"00_{ self .inputs .output_prefix } _AffineTransform.mat"
1872
1842
)
1873
1843
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"
1877
1845
)
1878
1846
if self .inputs .process == "assemble" :
1879
1847
outputs ["out_file" ] = os .path .abspath (self .inputs .out_file )
0 commit comments