From 5ae38c5fc5984cb804887b554f12b2d7b76fa8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abel=20Gonz=C3=A1lez?= Date: Thu, 6 Sep 2018 14:49:41 -0500 Subject: [PATCH] Change in normalize_mc_params I've modified the docstring in the function normalize_mc_params, after discussing with @satra. There was a mismatch in the description of the parameters ry and rz. ry -> roll, rz -> yaw --- nipype/utils/misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nipype/utils/misc.py b/nipype/utils/misc.py index 6b7629e32a..f73443b348 100644 --- a/nipype/utils/misc.py +++ b/nipype/utils/misc.py @@ -233,8 +233,8 @@ def normalize_mc_params(params, source): y Anterior-Posterior (mm) z Superior-Inferior (mm) rx Pitch (rad) - ry Yaw (rad) - rz Roll (rad) + ry Roll (rad) + rz Yaw (rad) """ if source.upper() == 'FSL': params = params[[3, 4, 5, 0, 1, 2]]