Visualizing (Your Own) Protein-Protein (Or Gene-Gene) Interactions
4
3
Entering edit mode
12.9 years ago
Ryan D ★ 3.4k

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:

Marker    Ckine    AFP    Aldose
Ckine    1.00    0.13    0.30
AFP        0.13    1.00    0.12
Aldose    0.30    0.12    1.00

My question is: how do I visualize the interactions between our own data in a manner like STRING permits ( http://yfrog.com/h2ch9qp ), a spirograph ( http://www.nature.com/ng/journal/v41/n12/fig_tab/ng.479_F2.html ), or some other means which can take into account my own weighting?

Thanks, Rx @delahar

visualization protein interaction • 3.7k views
ADD COMMENT
8
Entering edit mode
12.9 years ago
Russh ★ 1.2k

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

ADD COMMENT
1
Entering edit mode

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.

ADD REPLY
0
Entering edit mode

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).

ADD REPLY
2
Entering edit mode
12.9 years ago
Boboppie ▴ 550

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.

ADD COMMENT
2
Entering edit mode
12.9 years ago
Rajarshi Guha ▴ 880

If you're in R (or Python) igraph will do this easily and programmatically

ADD COMMENT
1
Entering edit mode

Networkx is another library for Python http://networkx.lanl.gov/

ADD REPLY
1
Entering edit mode
12.9 years ago

I would use awk/perl to parse the file and generate a GEXF file for http://gephi.org/

e.g; (not tested)


<gexf xmlns="&lt;a href=" http:="" www.gexf.net="" 1.2draft"="" rel="nofollow">http://www.gexf.net/1.2draft" version="1.2">
    <meta>
        <creator>Gexf.net</creator>
        <description>test</description>
    </meta>
    <graph mode="static" defaultedgetype="directed">
        <nodes>
            <node id="iCkine" label="Ckine"/>
            <node id="iAFP" label="AFP"/>
            <node id="iAldose" label="Aldose"/>
        </nodes>
        <edges>
            <edge id="1" source="iCkine" target="iAFP" weight="0.13"/>
            <edge id="2" source="iCkine" target="iAldose" weight="0.30"/>
            <edge id="3" source="iAFP" target="iAldose" weight="0.12"/>
        </edges>
    </graph>
</gexf>
ADD COMMENT

Login before adding your answer.

Traffic: 2457 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6