Network package
From BioPerl
The bioperl-network or Bio::Network package parses and analyzes protein-protein interaction data provided by databases such as DIP, BIND, IntAct, HPRD, and MINT . It is derived from the Bio::Graph* modules written by Nat Goodman and Richard Adams.
The key difference between this package and its predecessor is that this package is based on Perl's Graph modules and uses them to supply an underlying suite of graph algorithms. In theory any Graph method can be used to query or analyze a Bio::Network::ProteinNet object. There are also a number of differences in the APIs of the Bio::Graph modules and the Bio::Network modules, discussed in Bio::Network::ProteinNet. The Bio::Network package is currently maintained by Brian Osborne.
The main components are the Node, Edge, Interaction, and Graph objects.
Contents |
Node
A node is one or more BioPerl sequence objects, a container for Bio::Seq or Bio::Seq::RichSeq object. Thus a node can represent a protein or a protein complex. The graph can contain any objects that implement Bio::AnnotatableI and Bio::IdentifiableI interfaces since these objects hold useful identifiers. This is relevant since the identity of nodes is determined by their identifiers.
Edge
A Bio::Network::Edge corresponds to a pair of nodes, and there is only one Edge per pair of Nodes.
Interaction
A Bio::Network::Interaction is an attribute of an Edge, and there can be 1 or more Interactions per Edge. It's useful to think of an Interaction as the results of a single biological experiment.
Graph
A Bio::Network::Graph object is a Graph object containing Nodes, Edges, and Interactions.
File I/O
The current release can read and write DIP tab-delimited format and can read some, but not all, of the fields in PSI MI XML 2.5 format.
The PSI MI files that can be downloaded from various interaction databases differ, some notes on these varieties of PSI MI can be found here.
The latest code
The latest code can be browsed and downloaded here:
http://code.open-bio.org/svnweb/index.cgi/bioperl/browse/bioperl-network
You can download it by following the instructions on the Bioperl Subversion page, its name is bioperl-network.

