| Summary | Package variables | Synopsis | Description | General documentation | Methods |
| Summary | Top |
| Clair::Network::Reader - Abstract class for reading in network formats |
| Package variables | Top |
| No package variables defined. |
| Included modules | Top |
| Carp |
| Synopsis | Top |
| Clair::Network::Reader should not be called directly, but instead inherited from a concrete Reader class. |
| Description | Top |
| This object is a base class for reading in Clair::Network objects from different file formats. |
| Methods | Top |
| new | No description | Code |
| read_network | No description | Code |
| new | description | prev | next | Top |
sub new
{ my $class = shift;
my $net = shift;
my $self = {};
bless($self, $class);
return $self;} |
| read_network | description | prev | next | Top |
sub read_network
{my $self = shift; my $filename = shift; return $self->_read_network($filename, @_);} |
| write_network | Top |
| Write graph to file. Subclasses must implement the _read_network method, and return a Clair::Network object. |