From 2c36ac39c9c6401e92d84976c6ffb25b651e79b2 Mon Sep 17 00:00:00 2001 From: Vincent Du <54586336+vyudu@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:39:36 -0500 Subject: [PATCH] Update ext/CatalystGraphMakieExtension/rn_graph_plot.jl Co-authored-by: Sam Isaacson --- ext/CatalystGraphMakieExtension/rn_graph_plot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/CatalystGraphMakieExtension/rn_graph_plot.jl b/ext/CatalystGraphMakieExtension/rn_graph_plot.jl index 93de84cb3..0214b1a52 100644 --- a/ext/CatalystGraphMakieExtension/rn_graph_plot.jl +++ b/ext/CatalystGraphMakieExtension/rn_graph_plot.jl @@ -146,7 +146,7 @@ end - The `interactive` flag sets the ability to interactively drag nodes and edges in the generated plot. Only allowed if `GLMakie` is the loaded Makie backend. """ -function ComplexGraph(rn::ReactionSystem; interactive = false) +function plot_complex_graph(rn::ReactionSystem; interactive = false) img = incidencematgraph(rn) specs = species(rn); rxs = reactions(rn) edgecolors = [:black for i in 1:ne(img)]