Skip to content

Commit

Permalink
enh: add a command line argument to set up threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban committed Apr 10, 2024
1 parent bd14171 commit 92346d8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mriqc/cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,14 @@ def _bids_filter(value):

# Functional workflow settings
g_func = parser.add_argument_group('Functional MRI workflow configuration')
g_func.add_argument(
'--min-bold-length',
action='store',
default=config.workflow.min_len_bold,
dest='min_len_bold',
help='Drop BOLD runs with fewer time points than this threshold.',
type=int,
)
g_func.add_argument(
'--fft-spikes-detector',
action='store_true',
Expand Down

0 comments on commit 92346d8

Please sign in to comment.