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
Copy file name to clipboardexpand all lines: nipype/interfaces/mrtrix3/utils.py
+1-9
Original file line number
Diff line number
Diff line change
@@ -822,13 +822,11 @@ class MRTransformInputSpec(MRTrix3BaseInputSpec):
822
822
)
823
823
invert=traits.Bool(
824
824
argstr="-inverse",
825
-
position=1,
826
825
desc="Invert the specified transform before using it",
827
826
)
828
827
linear_transform=File(
829
828
exists=True,
830
829
argstr="-linear %s",
831
-
position=1,
832
830
desc=(
833
831
"Specify a linear transform to apply, in the form of a 3x4 or 4x4 ascii file. "
834
832
"Note the standard reverse convention is used, "
@@ -838,38 +836,32 @@ class MRTransformInputSpec(MRTrix3BaseInputSpec):
838
836
)
839
837
replace_transform=traits.Bool(
840
838
argstr="-replace",
841
-
position=1,
842
839
desc="replace the current transform by that specified, rather than applying it to the current transform",
843
840
)
844
841
transformation_file=File(
845
842
exists=True,
846
843
argstr="-transform %s",
847
-
position=1,
848
844
desc="The transform to apply, in the form of a 4x4 ascii file.",
849
845
)
850
846
template_image=File(
851
847
exists=True,
852
848
argstr="-template %s",
853
-
position=1,
854
849
desc="Reslice the input image to match the specified template image.",
855
850
)
856
851
reference_image=File(
857
852
exists=True,
858
853
argstr="-reference %s",
859
-
position=1,
860
854
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
855
)
862
856
flip_x=traits.Bool(
863
857
argstr="-flipx",
864
-
position=1,
865
858
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
859
)
867
860
quiet=traits.Bool(
868
861
argstr="-quiet",
869
-
position=1,
870
862
desc="Do not display information messages or progress status.",
0 commit comments