1 package Bio
::GeneticRelationships
::Descendants
;
7 use Moose
::Util
::TypeConstraints
;
8 use Bio
::GeneticRelationships
::Individual
;
12 Bio::GeneticRelationships::Descendants - Descendants of an individual
16 my $variable = Bio::GeneticRelationships::Descendants->new();
20 This class stores an individual's descendants and their relationships.
31 has
'name' => (isa
=> 'Str',is
=> 'rw', predicate
=> 'has_name', required
=> 1,);
32 has
'offspring' => (isa
=> 'ArrayRef[Bio::GeneticRelationships::Individual]', is
=> 'rw', predicate
=> 'has_offspring');
49 Jeremy D. Edwards <jde22@cornell.edu>