From 4f26d4d9b4aef23f9533c46a61c393e6a3d07fc1 Mon Sep 17 00:00:00 2001 From: Guillaume GAUTREAU Date: Thu, 16 Nov 2023 16:22:21 +0100 Subject: [PATCH] fix a bug about the GEXF file export process --- ppanggolin/formats/writeFlat.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ppanggolin/formats/writeFlat.py b/ppanggolin/formats/writeFlat.py index e12170dd..08dcda31 100644 --- a/ppanggolin/formats/writeFlat.py +++ b/ppanggolin/formats/writeFlat.py @@ -311,6 +311,7 @@ def write_gexf_edges(gexf: TextIO, light: bool = True): gexf.write(' \n') edgeids = 0 index = pan.get_org_index() + shift = 14 for edge in pan.edges: gexf.write(f' \n') + f' \n') gexf.write(' \n') gexf.write(' \n') edgeids += 1