From d8d590cbc0a427c2f508c66bc91cd8af97aba606 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 28 Jun 2022 09:32:14 +0300 Subject: Parse the method from UI before passing it to external process To reduce the chances of the system failing due to the external process being launched with the wrong parameters, add a parsing stage that converts the method from the UI into a form acceptable by the CLI script. * gn3/commands.py: parse the method from UI * scripts/partial_correlations.py: simplify the acceptable methods --- scripts/partial_correlations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/partial_correlations.py b/scripts/partial_correlations.py index d28a17a..1fbab78 100644 --- a/scripts/partial_correlations.py +++ b/scripts/partial_correlations.py @@ -107,7 +107,7 @@ def process_cli_arguments(): "method", help="The correlation method to use", type=str, - choices=("Pearson's r", "Spearman's rho")) + choices=("pearsons", "spearmans")) against_db_parser(against_traits_parser( parser.add_subparsers( title="subcommands", -- cgit v1.2.3