Skip to content

Commit 78448c2

Browse files
authored
Merge pull request #1080 from poldracklab/chrisfilo-patch-1
Improve CLI docs
2 parents a783c38 + f9419d8 commit 78448c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fmriprep/cli/run.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def get_parser():
5757

5858
g_bids = parser.add_argument_group('Options for filtering BIDS queries')
5959
g_bids.add_argument('--participant_label', '--participant-label', action='store', nargs='+',
60-
help='one or more participant identifiers (the sub- prefix can be '
61-
'removed)')
60+
help='a space delimited list of participant identifiers or a single '
61+
'identifier (the sub- prefix can be removed)')
6262
# Re-enable when option is actually implemented
6363
# g_bids.add_argument('-s', '--session-id', action='store', default='single_session',
6464
# help='select a specific session to be processed')
@@ -97,7 +97,7 @@ def get_parser():
9797
'--ignore', required=False, action='store', nargs="+", default=[],
9898
choices=['fieldmaps', 'slicetiming'],
9999
help='ignore selected aspects of the input dataset to disable corresponding '
100-
'parts of the workflow')
100+
'parts of the workflow (a space delimited list)')
101101
g_conf.add_argument(
102102
'--longitudinal', action='store_true',
103103
help='treat dataset as longitudinal - may increase runtime')

0 commit comments

Comments
 (0)