You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -822,13 +829,11 @@ class MRTransformInputSpec(MRTrix3BaseInputSpec):
822
829
)
823
830
invert=traits.Bool(
824
831
argstr="-inverse",
825
-
position=1,
826
832
desc="Invert the specified transform before using it",
827
833
)
828
834
linear_transform=File(
829
835
exists=True,
830
836
argstr="-linear %s",
831
-
position=1,
832
837
desc=(
833
838
"Specify a linear transform to apply, in the form of a 3x4 or 4x4 ascii file. "
834
839
"Note the standard reverse convention is used, "
@@ -838,38 +843,32 @@ class MRTransformInputSpec(MRTrix3BaseInputSpec):
838
843
)
839
844
replace_transform=traits.Bool(
840
845
argstr="-replace",
841
-
position=1,
842
846
desc="replace the current transform by that specified, rather than applying it to the current transform",
843
847
)
844
848
transformation_file=File(
845
849
exists=True,
846
850
argstr="-transform %s",
847
-
position=1,
848
851
desc="The transform to apply, in the form of a 4x4 ascii file.",
849
852
)
850
853
template_image=File(
851
854
exists=True,
852
855
argstr="-template %s",
853
-
position=1,
854
856
desc="Reslice the input image to match the specified template image.",
855
857
)
856
858
reference_image=File(
857
859
exists=True,
858
860
argstr="-reference %s",
859
-
position=1,
860
861
desc="in case the transform supplied maps from the input image onto a reference image, use this option to specify the reference. Note that this implicitly sets the -replace option.",
861
862
)
862
863
flip_x=traits.Bool(
863
864
argstr="-flipx",
864
-
position=1,
865
865
desc="assume the transform is supplied assuming a coordinate system with the x-axis reversed relative to the MRtrix convention (i.e. x increases from right to left). This is required to handle transform matrices produced by FSL's FLIRT command. This is only used in conjunction with the -reference option.",
866
866
)
867
867
quiet=traits.Bool(
868
868
argstr="-quiet",
869
-
position=1,
870
869
desc="Do not display information messages or progress status.",
0 commit comments