Bio::Ontology::SimpleGOEngine
GraphAdaptor02
Summary
Bio::Ontology::SimpleGOEngine::GraphAdaptor02 - Graph adaptor (v02.x) for
Bio::Ontology::SimpleGOEngine
Package variables
No package variables defined.
Inherit
Synopsis
No synopsis!
Description
Internal subclass of Bio::Ontology::SimpleGOEngine::GraphAdaptor for
Graph v0.2x.
Call this via Bio::Ontology::SimpleGOEngine::GraphAdaptor
Methods
| edges | No description | Code |
| edges_at | No description | Code |
| set_vertex_attribute | No description | Code |
| get_vertex_attribute | No description | Code |
| set_edge_attribute | No description | Code |
| get_edge_attribute | No description | Code |
Methods description
None available.
Methods code
sub edges
{ my $self=shift;
my @edges02=$self->_graph->edges(@_);
my @edges;
while (@edges02) {
my($u,$v)=(shift @edges02,shift @edges02);
push(@edges,[$u,$v]);
}
@edges;} |
sub edges_at
{ my $self=shift;
$self->edges(@_); } |
sub set_vertex_attribute
{ my($self,$v,$attribute,$value)=@_;
$self->_graph->set_attribute($attribute,$v,$value); } |
sub get_vertex_attribute
{ my($self,$v,$attribute)=@_;
$self->_graph->get_attribute($attribute,$v); } |
sub set_edge_attribute
{ my($self,$u,$v,$attribute,$value)=@_;
$self->_graph->set_attribute($attribute,$u,$v,$value); } |
| get_edge_attribute | description | prev | next | Top |
sub get_edge_attribute
{ my($self,$u,$v,$attribute)=@_;
$self->_graph->get_attribute($attribute,$u,$v); } |
General documentation
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to the
Bioperl mailing lists Your participation is much appreciated.
bioperl-l@bioperl.org - General discussion
http://bioperl.org/wiki/Mailing_lists - About the mailing lists
report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via the
web:
http://bugzilla.open-bio.org/
Nat Goodman
Email: natg at shore.net
Address:
Institute for Systems Biology
1441 N 34th St
Seattle, WA 98103-8904
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _