Included libraries | Package variables | General documentation | Methods |
WebCvs | Raw content |
entry_id | No description | Code |
ncbi_tax_id | No description | Code |
new | No description | Code |
entry_id | description | prev | next | Top |
my $self = shift; $self->{'entry_id'} = shift if ( @_ ); return $self->{'entry_id'};}
ncbi_tax_id | description | prev | next | Top |
my $self = shift; $self->{'ncbi_tax_id'} = shift if ( @_ ); return $self->{'ncbi_tax_id'}; } 1;}
new | description | prev | next | Top |
my $caller = shift; my $class = ref($caller) || $caller; my $self = $class->SUPER::new(@_); my ($dbid, $entry_id, $adaptor, $ncbi_tax_id) = rearrange([qw(DBID ENTRY_ID ADAPTOR NCBI_TAX_ID )],@_); $self->dbID ( $dbid ); $self->entry_id ( $entry_id ); $self->adaptor ( $adaptor ); $self->ncbi_tax_id ( $ncbi_tax_id ); return $self; # success - we hope!}