Меня спрашивали про cytoscape для Dash.jl. Вообщем я не знаю почему его не релизят как пакет для Джулии, но ветка с Джулевским пакетом есть давным давно:
pkg> add https://github.com/plotly/dash-cytoscape.git#jl
using Dash
using DashCoreComponents
using DashHtmlComponents
using DashCytoscape
app = dash()
app.layout = html_div() do
cyto_cytoscape(
id="cytoscape",
elements=[
(data = (id = "one", label = "Node 1"), position = (x = 50, y = 50)),
(data = (id = "two", label = "Node 2"), position = (x = 200, y = 200)),
(data = (source = "one", target = "two", label = "Node 1 to 2"), ),
],
layout=(name = "preset",)
)
end
run_server(app)