@@ -208,7 +208,8 @@ class WarpInputSpec(AFNICommandInputSpec):
208
208
argstr = '%s' ,
209
209
position = - 1 ,
210
210
mandatory = True ,
211
- exists = True )
211
+ exists = True ,
212
+ copyfile = False )
212
213
213
214
out_file = File (name_template = "%s_warp" , desc = 'output image file name' ,
214
215
argstr = '-prefix %s' , name_source = "in_file" )
@@ -321,7 +322,8 @@ class AutoTcorrelateInputSpec(AFNICommandInputSpec):
321
322
argstr = '%s' ,
322
323
position = - 1 ,
323
324
mandatory = True ,
324
- exists = True )
325
+ exists = True ,
326
+ copyfile = False )
325
327
326
328
polort = traits .Int (
327
329
desc = 'Remove polynomical trend of order m or -1 for no detrending' ,
@@ -377,7 +379,8 @@ class TStatInputSpec(AFNICommandInputSpec):
377
379
argstr = '%s' ,
378
380
position = - 1 ,
379
381
mandatory = True ,
380
- exists = True )
382
+ exists = True ,
383
+ copyfile = False )
381
384
382
385
out_file = File (name_template = "%s_tstat" , desc = 'output image file name' ,
383
386
argstr = '-prefix %s' , name_source = "in_file" )
@@ -419,7 +422,8 @@ class DetrendInputSpec(AFNICommandInputSpec):
419
422
argstr = '%s' ,
420
423
position = - 1 ,
421
424
mandatory = True ,
422
- exists = True )
425
+ exists = True ,
426
+ copyfile = False )
423
427
424
428
out_file = File (name_template = "%s_detrend" , desc = 'output image file name' ,
425
429
argstr = '-prefix %s' , name_source = "in_file" )
@@ -456,7 +460,8 @@ class DespikeInputSpec(AFNICommandInputSpec):
456
460
argstr = '%s' ,
457
461
position = - 1 ,
458
462
mandatory = True ,
459
- exists = True )
463
+ exists = True ,
464
+ copyfile = False )
460
465
461
466
out_file = File (name_template = "%s_despike" , desc = 'output image file name' ,
462
467
argstr = '-prefix %s' , name_source = "in_file" )
@@ -490,7 +495,8 @@ class AutomaskInputSpec(AFNICommandInputSpec):
490
495
argstr = '%s' ,
491
496
position = - 1 ,
492
497
mandatory = True ,
493
- exists = True )
498
+ exists = True ,
499
+ copyfile = False )
494
500
495
501
out_file = File (name_template = "%s_mask" , desc = 'output image file name' ,
496
502
argstr = '-prefix %s' , name_source = "in_file" )
@@ -550,7 +556,8 @@ class VolregInputSpec(AFNICommandInputSpec):
550
556
argstr = '%s' ,
551
557
position = - 1 ,
552
558
mandatory = True ,
553
- exists = True )
559
+ exists = True ,
560
+ copyfile = False )
554
561
out_file = File (name_template = "%s_volreg" , desc = 'output image file name' ,
555
562
argstr = '-prefix %s' , name_source = "in_file" )
556
563
@@ -614,7 +621,8 @@ class MergeInputSpec(AFNICommandInputSpec):
614
621
File (desc = 'input file to 3dmerge' , exists = True ),
615
622
argstr = '%s' ,
616
623
position = - 1 ,
617
- mandatory = True )
624
+ mandatory = True ,
625
+ copyfile = False )
618
626
out_file = File (name_template = "%s_merge" , desc = 'output image file name' ,
619
627
argstr = '-prefix %s' , name_source = "in_file" )
620
628
doall = traits .Bool (desc = 'apply options to all sub-bricks in dataset' ,
@@ -653,7 +661,8 @@ class CopyInputSpec(AFNICommandInputSpec):
653
661
argstr = '%s' ,
654
662
position = - 2 ,
655
663
mandatory = True ,
656
- exists = True )
664
+ exists = True ,
665
+ copyfile = False )
657
666
out_file = File (name_template = "%s_copy" , desc = 'output image file name' ,
658
667
argstr = '-prefix %s' , name_source = "in_file" )
659
668
@@ -686,7 +695,8 @@ class FourierInputSpec(AFNICommandInputSpec):
686
695
argstr = '%s' ,
687
696
position = - 1 ,
688
697
mandatory = True ,
689
- exists = True )
698
+ exists = True ,
699
+ copyfile = False )
690
700
out_file = File (name_template = "%s_fourier" , desc = 'output image file name' ,
691
701
argstr = '-prefix %s' , name_source = "in_file" )
692
702
lowpass = traits .Float (desc = 'lowpass' ,
@@ -730,7 +740,8 @@ class BandpassInputSpec(AFNICommandInputSpec):
730
740
argstr = '%s' ,
731
741
position = - 1 ,
732
742
mandatory = True ,
733
- exists = True )
743
+ exists = True ,
744
+ copyfile = False )
734
745
out_file = File (
735
746
name_template = '%s_bp' ,
736
747
desc = 'output file from 3dBandpass' ,
@@ -838,7 +849,8 @@ class ZCutUpInputSpec(AFNICommandInputSpec):
838
849
argstr = '%s' ,
839
850
position = - 1 ,
840
851
mandatory = True ,
841
- exists = True )
852
+ exists = True ,
853
+ copyfile = False )
842
854
out_file = File (name_template = "%s_zcupup" , desc = 'output image file name' ,
843
855
argstr = '-prefix %s' , name_source = "in_file" )
844
856
keep = traits .Str (desc = 'slice range to keep in output' ,
@@ -873,7 +885,8 @@ class AllineateInputSpec(AFNICommandInputSpec):
873
885
argstr = '-source %s' ,
874
886
position = - 1 ,
875
887
mandatory = True ,
876
- exists = True )
888
+ exists = True ,
889
+ copyfile = False )
877
890
reference = File (
878
891
exists = True ,
879
892
argstr = '-base %s' ,
@@ -1111,7 +1124,8 @@ class MaskaveInputSpec(AFNICommandInputSpec):
1111
1124
argstr = '%s' ,
1112
1125
position = - 2 ,
1113
1126
mandatory = True ,
1114
- exists = True )
1127
+ exists = True ,
1128
+ copyfile = False )
1115
1129
out_file = File (name_template = "%s_maskave.1D" , desc = 'output image file name' ,
1116
1130
keep_extension = True ,
1117
1131
argstr = "> %s" , name_source = "in_file" , position = - 1 )
@@ -1155,7 +1169,8 @@ class SkullStripInputSpec(AFNICommandInputSpec):
1155
1169
argstr = '-input %s' ,
1156
1170
position = 1 ,
1157
1171
mandatory = True ,
1158
- exists = True )
1172
+ exists = True ,
1173
+ copyfile = False )
1159
1174
out_file = File (name_template = "%s_skullstrip" , desc = 'output image file name' ,
1160
1175
argstr = '-prefix %s' , name_source = "in_file" )
1161
1176
@@ -1188,7 +1203,8 @@ class TCatInputSpec(AFNICommandInputSpec):
1188
1203
desc = 'input file to 3dTcat' ,
1189
1204
argstr = ' %s' ,
1190
1205
position = - 1 ,
1191
- mandatory = True )
1206
+ mandatory = True ,
1207
+ copyfile = False )
1192
1208
out_file = File (name_template = "%s_tcat" , desc = 'output image file name' ,
1193
1209
argstr = '-prefix %s' , name_source = "in_file" )
1194
1210
rlt = traits .Str (desc = 'options' , argstr = '-rlt%s' , position = 1 )
@@ -1223,7 +1239,8 @@ class FimInputSpec(AFNICommandInputSpec):
1223
1239
argstr = ' -input %s' ,
1224
1240
position = 1 ,
1225
1241
mandatory = True ,
1226
- exists = True )
1242
+ exists = True ,
1243
+ copyfile = False )
1227
1244
out_file = File (name_template = "%s_fim" , desc = 'output image file name' ,
1228
1245
argstr = '-bucket %s' , name_source = "in_file" )
1229
1246
ideal_file = File (desc = 'ideal time series file name' ,
@@ -1269,12 +1286,14 @@ class TCorrelateInputSpec(AFNICommandInputSpec):
1269
1286
argstr = ' %s' ,
1270
1287
position = - 2 ,
1271
1288
mandatory = True ,
1272
- exists = True )
1289
+ exists = True ,
1290
+ copyfile = False )
1273
1291
yset = File (desc = 'input yset' ,
1274
1292
argstr = ' %s' ,
1275
1293
position = - 1 ,
1276
1294
mandatory = True ,
1277
- exists = True )
1295
+ exists = True ,
1296
+ copyfile = False )
1278
1297
out_file = File (name_template = "%s_tcorr" , desc = 'output image file name' ,
1279
1298
argstr = '-prefix %s' , name_source = "xset" )
1280
1299
pearson = traits .Bool (desc = 'Correlation is the normal' +
@@ -1316,7 +1335,8 @@ class TCorr1DInputSpec(AFNICommandInputSpec):
1316
1335
argstr = ' %s' ,
1317
1336
position = - 2 ,
1318
1337
mandatory = True ,
1319
- exists = True )
1338
+ exists = True ,
1339
+ copyfile = False )
1320
1340
y_1d = File (desc = '1D time series file input' ,
1321
1341
argstr = ' %s' ,
1322
1342
position = - 1 ,
@@ -1579,7 +1599,8 @@ class BlurInMaskInputSpec(AFNICommandInputSpec):
1579
1599
argstr = '-input %s' ,
1580
1600
position = 1 ,
1581
1601
mandatory = True ,
1582
- exists = True )
1602
+ exists = True ,
1603
+ copyfile = False )
1583
1604
out_file = File (name_template = '%s_blur' , desc = 'output to the file' , argstr = '-prefix %s' ,
1584
1605
name_source = 'in_file' , position = - 1 )
1585
1606
mask = File (
@@ -1630,7 +1651,7 @@ class BlurInMask(AFNICommand):
1630
1651
1631
1652
1632
1653
class TCorrMapInputSpec (AFNICommandInputSpec ):
1633
- in_file = File (exists = True , argstr = '-input %s' , mandatory = True )
1654
+ in_file = File (exists = True , argstr = '-input %s' , mandatory = True , copyfile = False )
1634
1655
seeds = File (exists = True , argstr = '-seed %s' , xor = ('seeds_width' ))
1635
1656
mask = File (exists = True , argstr = '-mask %s' )
1636
1657
automask = traits .Bool (argstr = '-automask' )
@@ -1737,7 +1758,7 @@ def _format_arg(self, name, trait_spec, value):
1737
1758
1738
1759
class AutoboxInputSpec (AFNICommandInputSpec ):
1739
1760
in_file = File (exists = True , mandatory = True , argstr = '-input %s' ,
1740
- desc = 'input file' )
1761
+ desc = 'input file' , copyfile = False )
1741
1762
padding = traits .Int (
1742
1763
argstr = '-npad %d' ,
1743
1764
desc = 'Number of extra voxels to pad on each side of box' )
@@ -1806,7 +1827,8 @@ class RetroicorInputSpec(AFNICommandInputSpec):
1806
1827
argstr = '%s' ,
1807
1828
position = - 1 ,
1808
1829
mandatory = True ,
1809
- exists = True )
1830
+ exists = True ,
1831
+ copyfile = False )
1810
1832
out_file = File (desc = 'output image file name' , argstr = '-prefix %s' , mandatory = True , position = 1 )
1811
1833
card = File (desc = '1D cardiac data file for cardiac correction' ,
1812
1834
argstr = '-card %s' ,
@@ -1874,7 +1896,8 @@ class AFNItoNIFTIInputSpec(AFNICommandInputSpec):
1874
1896
argstr = '%s' ,
1875
1897
position = - 1 ,
1876
1898
mandatory = True ,
1877
- exists = True )
1899
+ exists = True ,
1900
+ copyfile = False )
1878
1901
out_file = File (name_template = "%s.nii" , desc = 'output image file name' ,
1879
1902
argstr = '-prefix %s' , name_source = "in_file" )
1880
1903
hash_files = False
0 commit comments