No need to clone Bio-Root
[bioperl-live.git] / Bio / Taxonomy / Node.pm
blob7f2e6c297dd04369ed6cc68a024b14685aef027a
2 # BioPerl module for Bio::Taxonomy::Node
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Jason Stajich <jason-at-bioperl-dot-org>
8 # Copyright Jason Stajich
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
14 =head1 NAME
16 Bio::Taxonomy::Node - A node in a represented taxonomy
18 =head1 SYNOPSIS
20 use Bio::Taxon;
21 # This module has been renamed Bio::Taxon - use that instead
23 =head1 DESCRIPTION
25 This module has been renamed Bio::Taxon - use that instead.
27 =head1 FEEDBACK
29 =head2 Mailing Lists
31 User feedback is an integral part of the evolution of this and other
32 Bioperl modules. Send your comments and suggestions preferably to
33 the Bioperl mailing list. Your participation is much appreciated.
35 bioperl-l@bioperl.org - General discussion
36 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
38 =head2 Support
40 Please direct usage questions or support issues to the mailing list:
42 I<bioperl-l@bioperl.org>
44 rather than to the module maintainer directly. Many experienced and
45 reponsive experts will be able look at the problem and quickly
46 address it. Please include a thorough description of the problem
47 with code and data examples if at all possible.
49 =head2 Reporting Bugs
51 Report bugs to the Bioperl bug tracking system to help us keep track
52 of the bugs and their resolution. Bug reports can be submitted via
53 the web:
55 https://github.com/bioperl/bioperl-live/issues
57 =head1 AUTHOR - Jason Stajich
59 Email jason-at-bioperl-dot-org
61 =head1 CONTRIBUTORS
63 Juguang Xiao, juguang@tll.org.sg
64 Gabriel Valiente, valiente@lsi.upc.edu
65 Sendu Bala, bix@sendu.me.uk
67 =head1 APPENDIX
69 The rest of the documentation details each of the object methods.
70 Internal methods are usually preceded with a _
72 =cut
74 package Bio::Taxonomy::Node;
75 use strict;
78 use base qw(Bio::Taxon);
80 sub new {
81 my ($class, @args) = @_;
82 my $self = $class->SUPER::new(@args);
83 $self->warn("This module has been renamed Bio::Taxon - use that instead");
84 return $self;