Skip to content

Commit

Permalink
Fix logic of network file construction
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Oct 23, 2024
1 parent 9cc6c13 commit 3ab5079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PopPUNK/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def outputsForCytoscape(G, G_mst, isolate_names, clustering, outPrefix, epiCsv,
suffix = '_cytoscape'
else:
suffix = suffix + '_cytoscape'
if not use_partial_query_graph:
if use_partial_query_graph is None:
save_network(G, prefix = outPrefix, suffix = suffix, use_graphml = True)

# Save each component too (useful for very large graphs)
Expand Down

0 comments on commit 3ab5079

Please sign in to comment.