Skip to content

Commit

Permalink
Add missing spaces to default help for bidsargs
Browse files Browse the repository at this point in the history
Resolves khanlab#411
  • Loading branch information
pvandyken committed Apr 29, 2024
1 parent f9c43db commit 6b6fa44
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions snakebids/plugins/bidsargs.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,17 +112,17 @@ def add_cli_arguments(
self.try_add_argument(
group,
dest="bids_dir",
help="The directory with the input dataset formatted according"
help="The directory with the input dataset formatted according "
"to the BIDS standard.",
type=Path,
)
if self.output_dir:
self.try_add_argument(
group,
dest="output_dir",
help="The directory where the output files"
"should be stored. If you are running group level analysis"
"this folder should be prepopulated with the results of the"
help="The directory where the output files "
"should be stored. If you are running group level analysis "
"this folder should be prepopulated with the results of the "
"participant level analysis.",
type=Path,
)
Expand Down Expand Up @@ -154,9 +154,9 @@ def add_cli_arguments(
"--participant-label",
"--participant_label",
help="The label(s) of the participant(s) that should be analyzed. The "
"label corresponds to sub-<participant_label> from the BIDS sec"
'(so it does not include "sub-"). If this parameter is not'
"provided all subjects should be analyzed. Multiple"
"label corresponds to sub-<participant_label> from the BIDS sec "
'(so it does not include "sub-"). If this parameter is not '
"provided all subjects should be analyzed. Multiple "
"participants can be specified with a space separated list.",
dest="participant_label",
metavar="LABEL",
Expand All @@ -168,9 +168,9 @@ def add_cli_arguments(
"--exclude-participant-label",
"--exclude_participant_label",
help="The label(s) of the participant(s) that should be excluded. The "
"label corresponds to sub-<participant_label> from the BIDS spec"
'(so it does not include "sub-"). If this parameter is not'
"provided all subjects should be analyzed. Multiple"
"label corresponds to sub-<participant_label> from the BIDS spec "
'(so it does not include "sub-"). If this parameter is not '
"provided all subjects should be analyzed. Multiple "
"participants can be specified with a space separated list.",
metavar="LABEL",
dest="exclude_participant_label",
Expand Down

0 comments on commit 6b6fa44

Please sign in to comment.