with pytest.raises(ValueError): sl.writeSBMLFile("ftest_layout_override.xml") # This will write if allowed, and when it is read back in, it displays as # a single blob of garbage because everything is plotted with the same centers # sl.writeSBMLFile("test_layout_override.xml") # slr = SBMLlayout("test_layout_override.xml", autoComputeLayout=False) slr = SBMLlayout(str(model_file), autoComputeLayout=False) slr._describeModel() slr.drawNetwork() assert slr.getNodeTextAnchor("MKK_P") == "center" # bottom means top in this situation assert slr.getNodeVTextAnchor("MAPK") == "bottom" assert slr.getNodeFontSize("MKK") == 11 assert slr.getNodeEdgeColor("MKKK") == "#969696" assert slr.getNodeFillColor("MAPK_P") == "#c9e0fb" assert slr.getReactionEdgeColor("J1") == [('MKKK_P', 'SUBSTRATE', '#ff9900'), ('MKKK', 'PRODUCT', '#ff9900')] assert slr.getReactionFillColor("J2") == [('MKK', 'SUBSTRATE', '#ff9900'), ('MKK_P', 'PRODUCT', '#ff9900'), ('MKKK_P', 'ACTIVATOR', '#ff9900')]
sl.setNodeEdgeWidth(["D", "X1", "C"], 3) sl.setNodeFontWeight(["X0", "A", "B", "C", "D", "X1"], "bold") sl.setNodeTextAnchor("X0", "right") sl.setNodeTextAnchor("A", "left") sl.setNodeVTextAnchor("B", "center") sl.drawNetwork() print("_J0 width: ", sl.getReactionCurveWidth("_J0")) print("_J1 edge color: ", sl.getReactionEdgeColor("_J1")) print("_J1 fill color: ", sl.getReactionFillColor("_J1")) print("_J3 edge color: ", sl.getReactionEdgeColor("_J3")) print("_J3 fill color: ", sl.getReactionFillColor("_J3")) print("_J4 edge color: ", sl.getReactionEdgeColor("_J4")) print("_J4 fill color: ", sl.getReactionFillColor("_J4")) print("A: fill color: ", sl.getNodeFillColor("A")) print("B: edge color: ", sl.getNodeEdgeColor("B")) print("C: edge width: ", sl.getNodeEdgeWidth("C")) print("X0: text anchor: ", sl.getNodeTextAnchor("X0")) print("A: text anchor: ", sl.getNodeTextAnchor("A")) print("B: vtext anchor: ", sl.getNodeVTextAnchor("B")) sl.writeSBMLFile("model_simple_out.xml")