From a2fa98d97c5d1c63d349d4722d0765a3cf0c6990 Mon Sep 17 00:00:00 2001 From: Matthias Bernt Date: Fri, 14 Jun 2024 22:25:27 +0200 Subject: [PATCH] Allow in_range validator for selects this is for instance needed if we have a data table with version information and we want to restrict the chosen options by the version column. --- lib/galaxy/tool_util/linters/inputs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/galaxy/tool_util/linters/inputs.py b/lib/galaxy/tool_util/linters/inputs.py index 7f0e8889543f..6ebd64d83bee 100644 --- a/lib/galaxy/tool_util/linters/inputs.py +++ b/lib/galaxy/tool_util/linters/inputs.py @@ -94,6 +94,7 @@ ], "text": ["regex", "length", "empty_field", "value_in_data_table", "value_not_in_data_table", "expression"], "select": [ + "in_range", "no_options", "regex", "length",