From 51688d31004f8f7453d8190927b9c11503a453c0 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 27 Oct 2025 14:21:01 -0500 Subject: Pass `TEXTDIR` configuration on to the script. Pass the `TEXXDIR` configuration variable on to the script. --- gn3/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gn3/commands.py') diff --git a/gn3/commands.py b/gn3/commands.py index 3598e2f..697db42 100644 --- a/gn3/commands.py +++ b/gn3/commands.py @@ -77,7 +77,8 @@ def compose_pcorrs_command_for_database( criteria: int = 500) -> Tuple[str, ...]: """Build command for partial correlations against an entire dataset.""" return prefix_cmd + ( - "against-db", f"{target_database}", f"--criteria={criteria}") + "against-db", f"{target_database}", "--criteria", str(criteria), + "--textdir", current_app.config["TEXTDIR"]) def compose_pcorrs_command( -- cgit 1.4.1