Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions qsirecon/cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ def _bids_filter(value, parser):
'--recon-spec',
action='store',
type=str,
help='json file specifying a reconstruction pipeline to be run after preprocessing',
help='YAML file specifying a reconstruction pipeline to be run.',
required=True,
)
g_recon.add_argument(
'--input-type',
Expand Down Expand Up @@ -422,8 +423,11 @@ def _bids_filter(value, parser):
'--config-file',
action='store',
metavar='FILE',
help='Use pre-generated configuration file. Values in file will be overridden '
'by command-line arguments.',
help=(
'Use pre-generated configuration file. Values in file will be overridden '
'by command-line arguments. '
'This is not currently used by QSIRecon.'
),
)
g_other.add_argument(
'--write-graph',
Expand Down