Skip to content

Commit

Permalink
Fix structural->std space transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
mcraig-ibme committed Aug 20, 2018
1 parent 195ff71 commit 4fc7846
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/asl/gui/run_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,10 @@ def get_run_sequence(self):
if self.structure.transform():
if self.structure.transform_type() == self.structure.TRANS_MATRIX:
self.check_exists("Transformation matrix", self.structure.transform_file())
cmd.add('--asl2struc "%s"' % self.structure.transform_file())
cmd.add('-t "%s"' % self.structure.transform_file())
elif self.structure.transform_type() == self.structure.TRANS_IMAGE:
self.check_exists("Warp image", self.structure.transform_file())
cmd.add('--regfrom "%s"' % self.structure.transform_file())
cmd.add('--warp "%s"' % self.structure.transform_file())
else:
# This implies that FSLANAT output is being used, and hence
# --fslanat is already specified
Expand Down

0 comments on commit 4fc7846

Please sign in to comment.