From ca344d42902de0531d50bd80772254ccc6b6ff2c Mon Sep 17 00:00:00 2001 From: Robert Petryszak Date: Wed, 18 Oct 2023 17:29:44 +0100 Subject: [PATCH] Fixed method signature --- cellphonedb/src/core/utils/cellsign.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cellphonedb/src/core/utils/cellsign.py b/cellphonedb/src/core/utils/cellsign.py index 76defba..02bc21f 100644 --- a/cellphonedb/src/core/utils/cellsign.py +++ b/cellphonedb/src/core/utils/cellsign.py @@ -8,6 +8,7 @@ def get_active_cts_tf_for_interaction( col_name: str, id_cp_interaction: str, receptor2tfs: dict, + separator: str, active_tf2cell_types: dict, active_interactions: pd.DataFrame ) -> list: @@ -48,7 +49,7 @@ def collect_active_interactions_across_cell_types( active_cts_for_interaction, tf = \ get_active_cts_tf_for_interaction( - partner, col_name, id_cp_interaction, receptor2tfs, + partner, col_name, id_cp_interaction, receptor2tfs, separator, active_tf2cell_types, active_interactions) interaction_active = active_cts_for_interaction is not None