So we have a bunch of experimental data on blood proteins/metabolites and we'd like to view the strength of interactions between these points. Each value is a number from -1 to 1 (Spearman's correlation) like this:
Have you tried the wonderful cytoscape? www.cytoscape.org
I've only used v2.x, but you can introduce your scores as edgeweights for use in edge-weighted layouts; I believe that v3 (beta?) is now available. Or indeed, you could introduce the scores as edge-colours
Kind regards, Russ
Hi Russ, aside from the small amount of data formatting cytoscape requires, it looks like the perfect platform designed just for what I'm trying to accomplish. Thanks for turning me on to this.
No problem, I used to be a Csc junkie. So long as you can convert the data into
sourceNodettargetNodetscore
it will be easy to import. Watch out for reciprocated edges if they're something you don't want (that is, the edge A<->B and the edge B<->A may both be represented in cytoscape, if you naively convert your matrix to tha above format, which doubles the size of your network without adding any additional value).
I reckon the thickness (or joint with color) of edges (interactions) between nodes (genes or proteins) could be a good visual representation of your data. Cytoscape or CytoscapeWeb are among the popular tools.
Hi Russ, aside from the small amount of data formatting cytoscape requires, it looks like the perfect platform designed just for what I'm trying to accomplish. Thanks for turning me on to this.
No problem, I used to be a Csc junkie. So long as you can convert the data into sourceNodettargetNodetscore it will be easy to import. Watch out for reciprocated edges if they're something you don't want (that is, the edge A<->B and the edge B<->A may both be represented in cytoscape, if you naively convert your matrix to tha above format, which doubles the size of your network without adding any additional value).