# $Id: Alignment.pm,v 1.12 2006/05/19 02:08:56 rvosa Exp $ package Bio::Phylo::Matrices::Alignment; use strict; use Bio::Phylo::Listable; use Bio::Phylo::Util::IDPool; use Bio::Phylo::Util::CONSTANT qw(_ALIGNMENT_ _MATRICES_); # One line so MakeMaker sees it. use Bio::Phylo; our $VERSION = $Bio::Phylo::VERSION; # classic @ISA manipulation, not using 'base' use vars qw($VERSION @ISA); @ISA = qw(Bio::Phylo::Listable); { =head1 NAME Bio::Phylo::Matrices::Alignment - The alignment object to aggregate sequences. =head1 SYNOPSIS use Bio::Phylo::Matrices::Alignment; use Bio::Phylo::Matrices::Sequence; my $alignment = Bio::Phylo::Matrices::Alignment->new; my $sequence = Bio::Phylo::Matrices::Sequence->new; $alignment->insert($sequence); =head1 DESCRIPTION This module aggregates sequence objects in a larger container object. The alignment object inherits from the L object, so look there for more methods applicable to alignment objects. =head1 METHODS =head2 CONSTRUCTOR =over =item new() Type : Constructor Title : new Usage : my $alignment = Bio::Phylo::Matrices::Alignment->new; Function: Instantiates a Bio::Phylo::Matrices::Alignment object. Returns : A Bio::Phylo::Matrices::Alignment object. Args : NONE required. =cut sub new { my ( $class, $self ) = shift; $self = Bio::Phylo::Matrices::Alignment->SUPER::new(@_); bless $self, __PACKAGE__; return $self; } =back =head2 DESTRUCTOR =over =item DESTROY() Type : Destructor Title : DESTROY Usage : $phylo->DESTROY Function: Destroys Phylo object Alias : Returns : TRUE Args : none Comments: You don't really need this, it is called automatically when the object goes out of scope. =cut sub DESTROY { my $self = shift; $self->SUPER::DESTROY; return 1; } =begin comment Type : Internal method Title : _container Usage : $alignment->_container; Function: Returns : CONSTANT Args : =end comment =cut sub _container { _MATRICES_ } =begin comment Type : Internal method Title : _type Usage : $alignment->_type; Function: Returns : CONSTANT Args : =end comment =cut sub _type { _ALIGNMENT_ } =back =head1 SEE ALSO =over =item L This object inherits from L, so the methods defined therein are also applicable to L objects. =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: Alignment.pm,v 1.12 2006/05/19 02:08:56 rvosa Exp $ =head1 AUTHOR Rutger A. 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 A. 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;