Skip to content

Commit

Permalink
use double in minc_displacement
Browse files Browse the repository at this point in the history
  • Loading branch information
nzxwang committed Oct 15, 2018
1 parent 8c8106d commit ca50847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/compute_determinant.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def run_subprocess(cmds):

# Start the linear pipeline
displacement = os.path.join(tempdir, output_name + "_displacement.mnc")
p = run_subprocess(["minc_displacement",
p = run_subprocess(["minc_displacement -double",
"-clobber" if args.clobber else "",
args.input_like,
transform,
Expand Down

2 comments on commit ca50847

@gdevenyi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like you force pushed a new release here.... Some of my automated builds will need a manual poke to rebuild since no versions have changed.

Maybe next time do a v.0.1.23.1 release?

@nzxwang
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am sorry. The last release I made was somewhat broken as compute_determinant.py did not clean up after itself so I wanted to overwrite it. Next time I will follow your suggested convention

Please sign in to comment.