Included libraries | Package variables | Description | General documentation | Methods |
WebCvs | Raw content |
desc | Description | Code |
length | Description | Code |
name | Description | Code |
new | Description | Code |
new_fast | Description | Code |
repeat_class | Description | Code |
repeat_consensus | Description | Code |
repeat_type | Description | Code |
seq | Description | Code |
desc | code | next | Top |
Arg [1] : none |
length | code | prev | next | Top |
Arg [1] : int $length (optional) |
name | code | prev | next | Top |
Arg [1] : string $name (optional) |
new | code | prev | next | Top |
Arg [NAME] : string (optional) |
new_fast | code | prev | next | Top |
Arg [1] : hashref to bless as a new RepeatConsensus |
repeat_class | code | prev | next | Top |
Arg [1] : string $class (optional) |
repeat_consensus | code | prev | next | Top |
Arg [1] : string $consensus_seq (optional) |
repeat_type | code | prev | next | Top |
Arg [1] : string $type (optional) |
seq | code | prev | next | Top |
Arg [1] : none |
desc | description | prev | next | Top |
my $self = shift; my $class = $self->repeat_class or return; return "class=$class";}
length | description | prev | next | Top |
my $self = shift; $self->{'length'} = shift if(@_); return $self->{'length'};}
name | description | prev | next | Top |
my $self = shift; $self->{'name'} = shift if(@_); return $self->{'name'};}
new | description | prev | next | Top |
my $caller = shift; my $class = ref($caller) || $caller; my $self = $class->SUPER::new(@_); my ($name, $length, $repeat_class, $repeat_consensus, $repeat_type ) = rearrange(['NAME', 'LENGTH', 'REPEAT_CLASS', 'REPEAT_CONSENSUS', 'REPEAT_TYPE'], @_); $self->{'name'} = $name; $self->{'length'} = $length; $self->{'repeat_class'} = $repeat_class; $self->{'repeat_consensus'} = $repeat_consensus; $self->{'repeat_type'} = $repeat_type; return $self;}
new_fast | description | prev | next | Top |
my $class = shift; my $hashref = shift; return bless $hashref, $class;}
repeat_class | description | prev | next | Top |
my $self = shift; $self->{'repeat_class'} = shift if(@_); return $self->{'repeat_class'};}
repeat_consensus | description | prev | next | Top |
my $self = shift; $self->{'repeat_consensus'} = shift if(@_); return $self->{'repeat_consensus'};}
repeat_type | description | prev | next | Top |
my $self = shift; $self->{'repeat_type'} = shift if(@_); return $self->{'repeat_type'};}
seq | description | prev | next | Top |
my( $self ) = @_; return $self->repeat_consensus; } 1; __END__}
LICENSE | Top |
Copyright (c) 1999-2009 The European Bioinformatics Institute and
Genome Research Limited. All rights reserved.
This software is distributed under a modified Apache license. For license details, please see /info/about/code_licence.html
CONTACT | Top |
Please email comments or questions to the public Ensembl
developers list at <ensembl-dev@ebi.ac.uk>.
Questions may also be sent to the Ensembl help desk at <helpdesk@ensembl.org>.
NAME - Bio::EnsEMBL::RepeatConsensus | Top |
AUTHOR | Top |