RBVI / stringApp

Cytoscape interface to STRING and STITCH
BSD 2-Clause "Simplified" License
10 stars 11 forks source link

Change attribute name for exporting node fill color style json accurately #9

Closed LHuang2019 closed 6 years ago

LHuang2019 commented 6 years ago

The mapping function for Node Fill Color has the attribute name "Name", making the fill color not map correctly when export the network and style as json files. The reason behind it is because that String Network Node Table has the field "name" instead of "Name."

The problem can be fixed by changing the attribute name parameter for createVisualMappingFunction method in ViewUtils.java line 383 from "Name" to "name".

LHuang2019 commented 6 years ago

See pull request #10