Skip to content
Snippets Groups Projects
Commit b6f07de4 authored by JeanClement's avatar JeanClement
Browse files

Merge tag '0.1.2' into develop

0.1.2 0.1.2
parents f31a02f1 f7bd8d70
No related branches found
No related tags found
No related merge requests found
Pipeline #203734 passed
......@@ -372,6 +372,14 @@ export function MetExploreVizJSONToJSONGraph(metexplorevizGraph: string): string
position.y = n.y as number;
}
if (n.pathways) {
node.metadata['pathways'] = n.pathways;
}
if (n.compartment) {
node.metadata['compartment'] = n.compartment;
}
node.metadata['position'] = position;
jsonGraph.graph.nodes[id] = node;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment