Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
WebCvs | Raw content |
gap_end | Description | Code |
gap_length | Description | Code |
gap_start | Description | Code |
new | Description | Code |
gap_end | code | next | Top |
Arg[1] : (optional) int $gap_end |
gap_length | code | prev | next | Top |
Args : None |
gap_start | code | prev | next | Top |
Arg[1] : (optional) int $gap_start |
new | code | prev | next | Top |
Arg [1] : Bio::EnsEMBL::Mapper::Gap $gap |
gap_end | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'gap_end'} = $value; } return $self->{'gap_end'};}
gap_length | description | prev | next | Top |
my ($self) = @_; return $self->{'gap_end'} - $self->{'gap_start'} + 1; } 1;}
gap_start | description | prev | next | Top |
my ( $self, $value ) = @_; if ( defined($value) ) { $self->{'gap_start'} = $value; } return $self->{'gap_start'};}
new | description | prev | next | Top |
my ( $proto, $gap, $coordinate ) = @_; my $class = ref($proto) || $proto; return bless( { 'start' => $coordinate->start(), 'end' => $coordinate->end(), 'strand' => $coordinate->strand(), 'id' => $coordinate->id(), 'coord_system' => $coordinate->coord_system(), 'gap_start' => $gap->start(), 'gap_end' => $gap->end() }, $class );}
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>.