From 924e37bc75974b8f2430d01b3f72b67345fbf971 Mon Sep 17 00:00:00 2001 From: Jakub Dylag <jjd1c23@soton.ac.uk> Date: Fri, 4 Apr 2025 00:56:33 +0100 Subject: [PATCH] metadata config schema --- acmc/phen.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/acmc/phen.py b/acmc/phen.py index 647f0f2..d2a1787 100644 --- a/acmc/phen.py +++ b/acmc/phen.py @@ -140,7 +140,11 @@ CONFIG_SCHEMA = { }, # Optional but must be string if present "actions": { "type": "dict", - "schema": {"divide_col": {"type": "string"}}, + "schema": { + "divide_col": {"type": "string"}, + "split_col": {"type": "string"}, + "codes_col": {"type": "string"} + }, }, }, -- GitLab