GO::Model::GraphNodeInstance.3pm

Langue: en

Autres versions - même langue

Version: 2004-11-29 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

GO::Model::GraphNodeInstance - a graph node located in a tree

SYNOPSIS

   $it = $graph->create_iterator;
   # returns a GO::Model::GraphIterator object
 
   while (my $ni = $it->next_node_instance) {
     $depth = $ni->depth;
     $term = $ni->term;
     $reltype = $ni->parent_rel->type;
     printf 
       "%s %8s Term = %s (%s)  // depth=%d\n",
           "----" x $depth,
           $reltype,
           $term->name,
           $term->public_acc,
           $depth;
   }
 
 

DESCRIPTION

see GO::Model::Graph

term

   Usage   - 
   Returns - GO::Model::Term 
   Args    -
 
 

see GO::Model::Term

depth

   Usage   - 
   Returns - int
   Args    -
 
 

parent_rel

   Usage   - 
   Returns - GO::Model::Relationship
   Args    -
 
 

see GO::Model::Relationship