Summary | Package variables | Synopsis | Description | General documentation | Methods |
WebCvs | Raw content |
coord_system | Description | Code |
end | Description | Code |
id | Description | Code |
length | Description | Code |
new | Description | Code |
start | Description | Code |
strand | Description | Code |
coord_system | code | next | Top |
Arg 1 Bio::EnsEMBL::CoordSystem |
end | code | prev | next | Top |
Arg 1 int $end |
id | code | prev | next | Top |
Arg 1 char|int $id |
length | code | prev | next | Top |
Function getter method |
new | code | prev | next | Top |
Arg [1] char|int id of object in mapped region |
start | code | prev | next | Top |
Arg 1 int $start |
strand | code | prev | next | Top |
Arg 1 int $strand |
coord_system | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'coord_system'} = $value; } return $self->{'coord_system'};}
end | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'end'} = $value; } return $self->{'end'};}
id | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'id'} = $value; } return $self->{'id'};}
length | description | prev | next | Top |
my ($self) = @_; return $self->{'end'} - $self->{'start'} + 1; } 1;}
new | description | prev | next | Top |
my ( $proto, $id, $start, $end, $strand, $coord_system ) = @_; my $class = ref($proto) || $proto; return bless( { 'id' => $id, 'start' => $start, 'end' => $end, 'strand' => $strand, 'coord_system' => $coord_system }, $class );}
start | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'start'} = $value; } return $self->{'start'};}
strand | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'strand'} = $value; } return $self->{'strand'};}
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>.