Bipartite Graphs

726 views
Skip to first unread message

Saatviga Sudhahar

unread,
Mar 8, 2011, 11:02:04 AM3/8/11
to cytoscap...@googlegroups.com
Hi,

Does anybody know if there is a plug-in for Cytoscape to generate a bipartite graph?
I'm trying to create a bipartite graph with the interacting nodes and edges.

Thanks
Saatviga S.


nickfyson

unread,
Apr 3, 2011, 11:24:56 AM4/3/11
to cytoscape-discuss

You could try the following Cytoscape plugin, it might do what you're
after...

http://bilayout.bioinf.mpi-inf.mpg.de/index.php

James Prabhakaran

unread,
Nov 16, 2013, 2:41:18 AM11/16/13
to cytoscap...@googlegroups.com, saat...@gmail.com

Matthias König

unread,
Nov 16, 2013, 10:10:11 AM11/16/13
to cytoscap...@googlegroups.com, saat...@gmail.com
You could generate your network as SBML which is by design bipartite (species and reactions) and than import the SBML in Cytoscape (CySBML). There are good tools for SBML generation like Antimony or you can write the SBML programatically.

http://sbml.org/Main_Page
http://www.charite.de/sysbio/people/koenig/software/cysbml/
http://antimony.sourceforge.net/main.html

Matthias

Nader Fathzadeh

unread,
Jul 6, 2016, 11:28:15 AM7/6/16
to cytoscape-discuss, nick...@gmail.com
This version doesn't work with cytoscape 3 ...
looking for a plugin for latest version of cytoscape.

Matthias König

unread,
Jul 11, 2016, 2:23:27 PM7/11/16
to cytoscape-discuss, nick...@gmail.com
Hi Nader,

Cytoscape 3 version is available here
https://github.com/matthiaskoenig/cy3sbml
and in the app store
http://apps.cytoscape.org/apps/cy3sbml

To create a simple bipartite SBML graph in python with tellurium use

import tellurium as te

ant = """
model graph()
// bipartite reaction-species graph (R-S graph)
// all ingoing edges on the left, outgoing on the right
R1: A + B => C;
R2: C => D;
R3: D => E;
end
"""

sbml = te.antimonyToSBML(ant)
with open("bipartite-graph.xml", "w") as f:
f.write(sbml)

Than load the SBML with cy3sbml:


Hope this helps.
Matthias
bipartite-graph.png
bipartite_graph.py
bipartite-graph.xml
Auto Generated Inline Image 1
Reply all
Reply to author
Forward
0 new messages