# $Id$ # Subversion: $Rev: 186 $ package Bio::Phylo::Matrices; use strict; use warnings FATAL => 'all'; use Bio::Phylo; use Bio::Phylo::Listable; use Bio::Phylo::Util::CONSTANT qw(_NONE_ _MATRICES_); use vars qw($VERSION @ISA); # set version based on svn rev my $version = $Bio::Phylo::VERSION; my $rev = '$Id$'; $rev =~ s/^[^\d]+(\d+)\b.*$/$1/; $version =~ s/_.+$/_$rev/; $VERSION = $version; # classic @ISA manipulation, not using 'base' @ISA = qw(Bio::Phylo::Listable); { =head1 NAME Bio::Phylo::Matrices - Holds a set of matrix objects. =head1 SYNOPSIS use Bio::Phylo::Matrices; use Bio::Phylo::Matrices::Matrix; my $matrices = Bio::Phylo::Matrices->new; my $matrix = Bio::Phylo::Matrices::Matrix->new; $matrices->insert($matrix); =head1 DESCRIPTION The L object models a set of matrices. It inherits from the L object, and so the filtering methods of that object are available to apply to a set of matrices. =head1 METHODS =head2 CONSTRUCTOR =over =item new() Type : Constructor Title : new Usage : my $matrices = Bio::Phylo::Matrices->new; Function: Initializes a Bio::Phylo::Matrices object. Returns : A Bio::Phylo::Matrices object. Args : None required. =cut sub new { # could be child class my $class = shift; # notify user $class->info("constructor called for '$class'"); # recurse up inheritance tree, get ID my $self = $class->SUPER::new( @_ ); # local fields would be set here return $self; } =begin comment Type : Internal method Title : _cleanup Usage : $trees->_cleanup; Function: Called during object destruction, for cleanup of instance data Returns : Args : =end comment =cut sub _cleanup { my $self = shift; $self->info("cleaning up '$self'"); } =begin comment Type : Internal method Title : _container Usage : $matrices->_container; Function: Returns : CONSTANT Args : =end comment =cut sub _container { _NONE_ } =begin comment Type : Internal method Title : _type Usage : $matrices->_type; Function: Returns : CONSTANT Args : =end comment =cut sub _type { _MATRICES_ } =back =head1 SEE ALSO =over =item L The L object inherits from the L object. Look there for more methods applicable to the matrices object. =item L Also see the manual: L. =back =head1 FORUM CPAN hosts a discussion forum for Bio::Phylo. If you have trouble using this module the discussion forum is a good place to start posting questions (NOT bug reports, see below): L =head1 BUGS Please report any bugs or feature requests to C<< bug-bio-phylo@rt.cpan.org >>, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. Be sure to include the following in your request or comment, so that I know what version you're using: $Id$ =head1 AUTHOR Rutger Vos, =over =item email: C<< rvosa@sfu.ca >> =item web page: L =back =head1 ACKNOWLEDGEMENTS The author would like to thank Jason Stajich for many ideas borrowed from BioPerl L, and CIPRES L and FAB* L for comments and requests. =head1 COPYRIGHT & LICENSE Copyright 2005 Rutger Vos, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut } 1;