Skip to content

Commit

Permalink
small fix in get_lineage_graph
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Jan 10, 2024
1 parent eec4f52 commit 5bbec0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fafbseg/flywire/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def get_lineage_graph(x, size=False, user=False, synapses=False,
n_syn = {n: n_pre[n] + n_post[n] for n in G.nodes}
nx.set_node_attributes(G, n_pre, name='presynapses')
nx.set_node_attributes(G, n_post, name='postsynapses')
nx.set_node_attributes(G, n_post, name='synapses')
nx.set_node_attributes(G, n_syn, name='synapses')

if proofreading_status:
from .annotations import get_annotations
Expand Down

0 comments on commit 5bbec0a

Please sign in to comment.