@@ -116,7 +116,6 @@ def createoutputdirs(outputs):
116
116
117
117
118
118
class SampleToSurfaceInputSpec (FSTraitedSpec ):
119
-
120
119
source_file = File (
121
120
exists = True ,
122
121
mandatory = True ,
@@ -289,7 +288,6 @@ class SampleToSurfaceInputSpec(FSTraitedSpec):
289
288
290
289
291
290
class SampleToSurfaceOutputSpec (TraitedSpec ):
292
-
293
291
out_file = File (exists = True , desc = "surface file" )
294
292
hits_file = File (exists = True , desc = "image with number of hits at each voxel" )
295
293
vox_file = File (
@@ -426,7 +424,6 @@ def _gen_filename(self, name):
426
424
427
425
428
426
class SurfaceSmoothInputSpec (FSTraitedSpec ):
429
-
430
427
in_file = File (mandatory = True , argstr = "--sval %s" , desc = "source surface file" )
431
428
subject_id = traits .String (
432
429
mandatory = True , argstr = "--s %s" , desc = "subject id of surface file"
@@ -455,7 +452,6 @@ class SurfaceSmoothInputSpec(FSTraitedSpec):
455
452
456
453
457
454
class SurfaceSmoothOutputSpec (TraitedSpec ):
458
-
459
455
out_file = File (exists = True , desc = "smoothed surface file" )
460
456
461
457
@@ -753,7 +749,6 @@ class Surface2VolTransform(FSCommand):
753
749
754
750
755
751
class ApplyMaskInputSpec (FSTraitedSpec ):
756
-
757
752
in_file = File (
758
753
exists = True ,
759
754
mandatory = True ,
@@ -803,7 +798,6 @@ class ApplyMaskInputSpec(FSTraitedSpec):
803
798
804
799
805
800
class ApplyMaskOutputSpec (TraitedSpec ):
806
-
807
801
out_file = File (exists = True , desc = "masked image" )
808
802
809
803
@@ -822,7 +816,6 @@ class ApplyMask(FSCommand):
822
816
823
817
824
818
class SurfaceSnapshotsInputSpec (FSTraitedSpec ):
825
-
826
819
subject_id = traits .String (
827
820
position = 1 , argstr = "%s" , mandatory = True , desc = "subject to visualize"
828
821
)
@@ -956,7 +949,6 @@ class SurfaceSnapshotsInputSpec(FSTraitedSpec):
956
949
957
950
958
951
class SurfaceSnapshotsOutputSpec (TraitedSpec ):
959
-
960
952
snapshots = OutputMultiPath (
961
953
File (exists = True ), desc = "tiff images of the surface from different perspectives"
962
954
)
@@ -1118,12 +1110,10 @@ def _gen_filename(self, name):
1118
1110
1119
1111
1120
1112
class ImageInfoInputSpec (FSTraitedSpec ):
1121
-
1122
1113
in_file = File (exists = True , position = 1 , argstr = "%s" , desc = "image to query" )
1123
1114
1124
1115
1125
1116
class ImageInfoOutputSpec (TraitedSpec ):
1126
-
1127
1117
info = traits .Any (desc = "output of mri_info" )
1128
1118
out_file = File (exists = True , desc = "text file with image information" )
1129
1119
data_type = traits .String (desc = "image data type" )
@@ -1138,7 +1128,6 @@ class ImageInfoOutputSpec(TraitedSpec):
1138
1128
1139
1129
1140
1130
class ImageInfo (FSCommand ):
1141
-
1142
1131
_cmd = "mri_info"
1143
1132
input_spec = ImageInfoInputSpec
1144
1133
output_spec = ImageInfoOutputSpec
@@ -2015,7 +2004,6 @@ def _gen_outfilename(self):
2015
2004
2016
2005
2017
2006
class AddXFormToHeaderInputSpec (FSTraitedSpec ):
2018
-
2019
2007
# required
2020
2008
in_file = File (
2021
2009
exists = True , mandatory = True , position = - 2 , argstr = "%s" , desc = "input volume"
@@ -2035,7 +2023,6 @@ class AddXFormToHeaderInputSpec(FSTraitedSpec):
2035
2023
2036
2024
2037
2025
class AddXFormToHeaderOutputSpec (TraitedSpec ):
2038
-
2039
2026
out_file = File (exists = True , desc = "output volume" )
2040
2027
2041
2028
0 commit comments