From ee895af9cff8053aa95d2272aab744eca3a81390 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Fri, 8 Nov 2024 07:39:56 -0500 Subject: [PATCH] Add ability to ignore phase data (#849) Add ability to ignore phase data. --- qsiprep/cli/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qsiprep/cli/parser.py b/qsiprep/cli/parser.py index 015649c6..6726b109 100644 --- a/qsiprep/cli/parser.py +++ b/qsiprep/cli/parser.py @@ -302,7 +302,7 @@ def _bids_filter(value, parser): action="store", nargs="+", default=[], - choices=["fieldmaps", "sbref", "t2w", "flair", "fmap-jacobian"], + choices=["fieldmaps", "sbref", "t2w", "flair", "fmap-jacobian", "phase"], help="Ignore selected aspects of the input dataset to disable corresponding " "parts of the workflow (a space delimited list)", )