Skip to content

Commit

Permalink
Fix empty case
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaRenauld committed Jan 21, 2025
1 parent 7239bc3 commit 270599c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/scil_connectivity_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ def _build_arg_parser():
help='Output mask (matrix) resulting from the provided '
'conditions (.npy).')

p.add_argument('--lower_than', nargs='*', action='append',
p.add_argument('--lower_than', nargs='*', action='append', default=[],
metavar='MATRICES_LIST VALUE_THR POPULATION_PERC',
help='Lower than condition using the VALUE_THR in '
'at least POPULATION_PERC (from MATRICES_LIST).\n'
'See description for more details.')
p.add_argument('--greater_than', nargs='*', action='append',
p.add_argument('--greater_than', nargs='*', action='append', default=[],
metavar='MATRICES_LIST VALUE_THR POPULATION_PERC',
help='Greater than condition using the VALUE_THR in '
'at least POPULATION_PERC (from MATRICES_LIST).\n'
Expand Down

0 comments on commit 270599c

Please sign in to comment.