From 768b5d29a1aa7f08325943b7713a9dd9159b8787 Mon Sep 17 00:00:00 2001 From: Kirill Tsukanov Date: Wed, 3 Jul 2024 15:02:13 +0100 Subject: [PATCH] fix(finemapping): link configuration and step classes (#669) As it is, when the susie_finemapper step is triggered, nothing happens because the configuration class is not linked via _target_ to the step class. This commit addresses the problem --- src/gentropy/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gentropy/config.py b/src/gentropy/config.py index 2536f6c6e..409826ca4 100644 --- a/src/gentropy/config.py +++ b/src/gentropy/config.py @@ -432,6 +432,7 @@ class FinemapperConfig(StepConfig): imputed_r2_threshold: float = MISSING ld_score_threshold: float = MISSING output_path_log: str = MISSING + _target_: str = "gentropy.susie_finemapper.SusieFineMapperStep" @dataclass