Sync with trunk. This will appear in final release.
[bioperl-live.git] / Bio / Taxonomy / Node.pm
blobba96492795ae57d8353c4558e801fd95027e211a
1 # $Id$
3 # BioPerl module for Bio::Taxonomy::Node
5 # Cared for by Jason Stajich <jason-at-bioperl-dot-org>
7 # Copyright Jason Stajich
9 # You may distribute this module under the same terms as perl itself
11 # POD documentation - main docs before the code
13 =head1 NAME
15 Bio::Taxonomy::Node - A node in a represented taxonomy
17 =head1 SYNOPSIS
19 use Bio::Taxon;
20 # This module has been renamed Bio::Taxon - use that instead
22 =head1 DESCRIPTION
24 This module has been renamed Bio::Taxon - use that instead.
26 =head1 FEEDBACK
28 =head2 Mailing Lists
30 User feedback is an integral part of the evolution of this and other
31 Bioperl modules. Send your comments and suggestions preferably to
32 the Bioperl mailing list. Your participation is much appreciated.
34 bioperl-l@bioperl.org - General discussion
35 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
37 =head2 Reporting Bugs
39 Report bugs to the Bioperl bug tracking system to help us keep track
40 of the bugs and their resolution. Bug reports can be submitted via
41 the web:
43 http://bugzilla.open-bio.org/
45 =head1 AUTHOR - Jason Stajich
47 Email jason-at-bioperl-dot-org
49 =head1 CONTRIBUTORS
51 Juguang Xiao, juguang@tll.org.sg
52 Gabriel Valiente, valiente@lsi.upc.edu
53 Sendu Bala, bix@sendu.me.uk
55 =head1 APPENDIX
57 The rest of the documentation details each of the object methods.
58 Internal methods are usually preceded with a _
60 =cut
62 package Bio::Taxonomy::Node;
63 use strict;
66 use base qw(Bio::Taxon);
68 sub new {
69 my ($class, @args) = @_;
70 my $self = $class->SUPER::new(@args);
71 $self->warn("This module has been renamed Bio::Taxon - use that instead");
72 return $self;