| Included libraries | Package variables | General documentation | Methods |
| WebCvs |
| new | No description | Code |
| next_seq | No description | Code |
| TIEHANDLE | No description | Code |
| READLINE | No description | Code |
| new | description | prev | next | Top |
my ($class, $db) = @_; my $key = $db->FIRSTKEY; return bless { db => $db, key => $key }, $class;}
| next_seq | description | prev | next | Top |
my $self = shift; my ($key, $db) = @{$self}{'key', 'db'}; while ($key =~ /^__/) { $key = $db->NEXTKEY($key); return unless defined $key; } my $value = $db->get_Qual_by_id($key); $self->{key} = $db->NEXTKEY($key); $value;}
| TIEHANDLE | description | prev | next | Top |
my ($class, $db) = @_; return $class->new($db);}
| READLINE | description | prev | next | Top |
my $self = shift; $self->next_seq; } 1; __END__}