From 759f92624939115d298fc833f665d9d625df0ec7 Mon Sep 17 00:00:00 2001 From: Rob Court Date: Wed, 23 Oct 2024 13:52:48 +0100 Subject: [PATCH] fix debug --- src/uk/ac/ebi/vfb/neo4j/flybase2neo/expression_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uk/ac/ebi/vfb/neo4j/flybase2neo/expression_runner.py b/src/uk/ac/ebi/vfb/neo4j/flybase2neo/expression_runner.py index 20d14f7a..63430f5a 100644 --- a/src/uk/ac/ebi/vfb/neo4j/flybase2neo/expression_runner.py +++ b/src/uk/ac/ebi/vfb/neo4j/flybase2neo/expression_runner.py @@ -239,7 +239,7 @@ def proc_splits(eng): "WHERE al = '%s'" % (t[2], t[0])) allele_ids.append(t[0]) transgenes = fm.add_feature_relations(al2tg) # Dict tg_id: feature object - print(f"Added {len(transgenes)} transgenes and linked them to alleles.") + print(f"Added {len(al2tg)} transgenes and linked them to alleles.") # Find and process splits splits = proc_splits(engine)