Similarity heatmap [message #1150] |
Wed, 02 December 2020 13:54 |
cfuttrup
Messages: 2 Registered: December 2020 Location: Copenhagen
|
Junior Member |
|
|
We are looking at the possibility of using openmolecules as a way of determining with proteins we need to analyse closer based on similarity and heatmap. I can see that Openmolecules doesn't have a heapmap currently and I am wondering, were to look to implement this functionality.
|
|
|
|
|
Re: Similarity heatmap [message #1162 is a reply to message #1153] |
Fri, 04 December 2020 16:29 |
thomas
Messages: 711 Registered: June 2014
|
Senior Member |
|
|
It would need two parts: First the columns from a hierarchical clustering result would have to contain more information: at least a reference to the parent column and the similarity value to its partner in the similarity graph. The clustering in DataWarrior is hierarchical, but doesn't store these values. One might reconsider, whether there are alternatives to the algorithm, which is brute force and needs the full similarity matrix.
Second and much more effort: Currently all 2D-views are calculated and drawn by one class JVisualization2D (with support of its parent class JVisualization). It is overdue to break up the various 2-dimensional views (scatter, bars, boxes, whiskers, pies) into separate classes, which still share a lot of properties (marker size, color, labels, font size, ...), but I didn't ever have the time, because a lot would be involved including reorganising the way view properties are saved in templates and how macro properties interact with views.
The fastest, but messy approach would be to add another preferred view (heat map) to the JVisualization2D class, but working on the foundation first would be the better approach. I suggest you look into the source code and get a picture. If you then really like to contribute substancial time, then we should closer discuss options. Of course, I am grateful for any support.
Thomas
[Updated on: Fri, 04 December 2020 16:29] Report message to a moderator
|
|
|