@@ -1246,7 +1246,7 @@ class EddyQuadInputSpec(FSLCommandInputSpec):
1246
1246
idx_file = File (
1247
1247
exists = True ,
1248
1248
mandatory = True ,
1249
- argstr = "--eddyIdx= %s" ,
1249
+ argstr = "--eddyIdx %s" ,
1250
1250
desc = ("File containing indices for all volumes into acquisition "
1251
1251
"parameters" )
1252
1252
)
@@ -1259,35 +1259,35 @@ class EddyQuadInputSpec(FSLCommandInputSpec):
1259
1259
mask_file = File (
1260
1260
exists = True ,
1261
1261
mandatory = True ,
1262
- argstr = "--mask= %s" ,
1262
+ argstr = "--mask %s" ,
1263
1263
desc = "Binary mask file"
1264
1264
)
1265
1265
bval_file = File (
1266
1266
exists = True ,
1267
1267
mandatory = True ,
1268
- argstr = "--bvals= %s" ,
1268
+ argstr = "--bvals %s" ,
1269
1269
desc = "b-values file"
1270
1270
)
1271
1271
bvec_file = File (
1272
1272
exists = True ,
1273
- argstr = "--bvecs= %s" ,
1273
+ argstr = "--bvecs %s" ,
1274
1274
desc = ("b-vectors file - only used when <base_name>.eddy_residuals "
1275
1275
"file is present" )
1276
1276
)
1277
1277
output_dir = traits .Str (
1278
1278
name_template = '%s.qc' ,
1279
1279
name_source = ['base_name' ],
1280
- argstr = '--output-dir= %s' ,
1280
+ argstr = '--output-dir %s' ,
1281
1281
desc = "Output directory - default = '<base_name>.qc'" ,
1282
1282
)
1283
1283
field = File (
1284
1284
exists = True ,
1285
- argstr = '--field= %s' ,
1285
+ argstr = '--field %s' ,
1286
1286
desc = "TOPUP estimated field (in Hz)" ,
1287
1287
)
1288
1288
slice_spec = File (
1289
1289
exists = True ,
1290
- argstr = '--slspec= %s' ,
1290
+ argstr = '--slspec %s' ,
1291
1291
desc = "Text file specifying slice/group acquisition" ,
1292
1292
)
1293
1293
verbose = traits .Bool (
@@ -1365,9 +1365,9 @@ class EddyQuad(FSLCommand):
1365
1365
>>> quad.inputs.field = 'fieldmap_phase_fslprepared.nii'
1366
1366
>>> quad.inputs.verbose = True
1367
1367
>>> quad.cmdline
1368
- 'eddy_quad eddy_corrected --bvals= bvals.scheme --bvecs= bvecs.scheme \
1369
- --field= fieldmap_phase_fslprepared.nii --eddyIdx= epi_index.txt \
1370
- --mask= epi_mask.nii --output-dir= eddy_corrected.qc --eddyParams= epi_acqp.txt \
1368
+ 'eddy_quad eddy_corrected --bvals bvals.scheme --bvecs bvecs.scheme \
1369
+ --field fieldmap_phase_fslprepared.nii --eddyIdx epi_index.txt \
1370
+ --mask epi_mask.nii --output-dir eddy_corrected.qc --eddyParams epi_acqp.txt \
1371
1371
--verbose'
1372
1372
>>> res = quad.run() # doctest: +SKIP
1373
1373
0 commit comments