From f0960b1b024ae1343d6e9f370dce20c4769b18b5 Mon Sep 17 00:00:00 2001 From: Kirill Tsukanov Date: Wed, 29 May 2024 13:45:17 +0100 Subject: [PATCH] fix(ld): correct syntax for the static method (#624) --- src/gentropy/datasource/gnomad/ld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gentropy/datasource/gnomad/ld.py b/src/gentropy/datasource/gnomad/ld.py index a1d211f11..66fe52fce 100644 --- a/src/gentropy/datasource/gnomad/ld.py +++ b/src/gentropy/datasource/gnomad/ld.py @@ -503,7 +503,7 @@ def get_numpy_matrix( half_matrix = ( BlockMatrix.read( - GnomADLDMatrix.ld_matrix_template.format(POP=gnomad_ancestry) + GnomADLDMatrix().ld_matrix_template.format(POP=gnomad_ancestry) ) .filter(idx, idx) .to_numpy()