From 7e12f9cd5bed8f1c3821b7fe4c2b65db723ac5b8 Mon Sep 17 00:00:00 2001 From: Gab-D-G Date: Mon, 2 Oct 2023 14:13:34 -0400 Subject: [PATCH] Describe 'auto' for TR options. --- rabies/parser.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rabies/parser.py b/rabies/parser.py index 517790b..f8e81e8 100644 --- a/rabies/parser.py +++ b/rabies/parser.py @@ -457,7 +457,8 @@ def get_parser(): g_stc.add_argument( '--TR', type=str, default='auto', help= - "Specify repetition time (TR) in seconds. (e.g. --TR 1.2)\n" + "Specify repetition time (TR) in seconds. (e.g. --TR 1.2). 'auto' will read the TR from \n" + "the nifti header. \n" "(default: %(default)s)\n" "\n" ) @@ -659,7 +660,8 @@ def get_parser(): confound_correction.add_argument( '--TR', type=str, default='auto', help= - "Specify repetition time (TR) in seconds. (e.g. --TR 1.2)\n" + "Specify repetition time (TR) in seconds. (e.g. --TR 1.2). 'auto' will read the TR from \n" + "the nifti header. \n" "(default: %(default)s)\n" "\n" )