From 2d4da359d4a6ee3789763e35d7035770dc0fb972 Mon Sep 17 00:00:00 2001 From: Peter Van Dyken Date: Sat, 13 Jul 2024 12:41:18 -0400 Subject: [PATCH] Update documentation with new filter syntax --- snakebids/plugins/__init__.py | 1 + snakebids/plugins/__init__.pyi | 2 ++ snakebids/plugins/component_edit.py | 29 +++++++++++++++---- .../tests/test_plugins/test_component_edit.py | 10 ++----- 4 files changed, 30 insertions(+), 12 deletions(-) diff --git a/snakebids/plugins/__init__.py b/snakebids/plugins/__init__.py index 85600ae3..9b0713a4 100644 --- a/snakebids/plugins/__init__.py +++ b/snakebids/plugins/__init__.py @@ -20,6 +20,7 @@ "CliConfig", "ComponentEdit", "FilterParse", + "FilterParseError", "InvalidBidsError", "Pybidsdb", "SnakemakeBidsApp", diff --git a/snakebids/plugins/__init__.pyi b/snakebids/plugins/__init__.pyi index 50a17fa1..76368913 100644 --- a/snakebids/plugins/__init__.pyi +++ b/snakebids/plugins/__init__.pyi @@ -7,6 +7,7 @@ from .cli_config import ( from .component_edit import ( ComponentEdit, FilterParse, + FilterParseError, ) from .pybidsdb import ( Pybidsdb, @@ -29,6 +30,7 @@ __all__ = [ "CliConfig", "ComponentEdit", "FilterParse", + "FilterParseError", "InvalidBidsError", "Pybidsdb", "SnakemakeBidsApp", diff --git a/snakebids/plugins/component_edit.py b/snakebids/plugins/component_edit.py index 51fc898d..818b1a0f 100644 --- a/snakebids/plugins/component_edit.py +++ b/snakebids/plugins/component_edit.py @@ -10,6 +10,7 @@ from snakebids import bidsapp from snakebids.plugins.base import PluginBase from snakebids.types import OptionalFilter +from snakebids.utils.utils import text_fold class FilterParseError(Exception): @@ -111,6 +112,16 @@ class ComponentEdit(PluginBase): arguments are read and used to update the original component specification within config. + Filters are specified on the CLI using ``ENTITY[:METHOD][=VALUE]``, as follows: + + 1. ``ENTITY=VALUE`` selects paths based on an exact value match. + 2. ``ENTITY:match=REGEX`` and ``ENTITY:search=REGEX`` selects paths using regex + with :func:`re.match` and :func:`re.search` respectively. This syntax can be used + to select multiple values (e.g. ``'session:match=01|02'``). + 3. ``ENTITY:required`` selects all paths with the entity, regardless of value. + 4. ``ENTITY:none`` selects all paths without the entity. + 5. ``ENTITY:any`` removes filters for the entity. + CLI arguments created by this plugin cannot be overriden. Parameters @@ -139,9 +150,17 @@ def add_cli_arguments( # create filter parsers, one for each input_type filter_opts = parser.add_argument_group( "BIDS FILTERS", - "Filters to customize PyBIDS get() as key=value pairs, or as " - "key:{REQUIRED|OPTIONAL|NONE} (case-insensitive), to enforce the presence " - "or absence of values for that key.", + text_fold( + """ + Update filters for input components. Each filter can be specified as a + ENTITY=VALUE pair to select an value directly. To use regex filtering, + ENTITY:match=REGEX or ENTITY:search=REGEX can be used for re.match() or + re.search() respectively. Regex can also be used to select multiple + values, e.g. 'session:match=01|02'. ENTITY:required and ENTITY:none can + be used to require or prohibit presence of an entity in selected paths, + respectively. ENTITY:optional can be used to remove a filter. + """ + ), ) for input_type in pybids_inputs: @@ -155,7 +174,7 @@ def add_cli_arguments( nargs="+", action=FilterParse, dest=f"{self.PREFIX}.filter.{input_type}", - metavar="ENTITY=VALUE", + metavar="ENTITY[:METHOD][=VALUE]", help=f"(default: {' '.join(arglist_default)})", ) @@ -164,7 +183,7 @@ def add_cli_arguments( # create wildcards parsers, one for each input_type wildcards_opts = parser.add_argument_group( "INPUT WILDCARDS", - "File path entities to use as wildcards in snakemake", + "Provide entities to be used as wildcards.", ) for input_type in pybids_inputs: diff --git a/snakebids/tests/test_plugins/test_component_edit.py b/snakebids/tests/test_plugins/test_component_edit.py index f41f7f89..76ca725c 100644 --- a/snakebids/tests/test_plugins/test_component_edit.py +++ b/snakebids/tests/test_plugins/test_component_edit.py @@ -183,9 +183,7 @@ def test_filter_with_invalid_spec( with pytest.raises( FilterParseError, - match=re.compile( - rf"':{re.escape(flag.lower())}' is not a valid filter method" - ), + match=re.compile(r"is not a valid filter method"), ): p.parse_args(argv) @@ -207,7 +205,7 @@ def test_filter_with_missing_value_errors( with pytest.raises( FilterParseError, - match=re.compile(rf"':{re.escape(flag.lower())}' requires a value"), + match=re.compile(rf"':{flag}' requires a value"), ): p.parse_args(argv) @@ -230,9 +228,7 @@ def test_boolean_filter_with_value_errors( with pytest.raises( FilterParseError, - match=re.compile( - rf"'entity:{re.escape(flag.lower())}' should not be given a value" - ), + match=re.compile(rf"'entity:{flag}' should not be given a value"), ): p.parse_args(argv)