Summary | Package variables | Synopsis | General documentation | Methods |
WebCvs | Raw content |
$ex = new Bio::EnsEMBL::UnconventionalTranscriptAssociation( $gene,
$transcript, $type );
gene | Description | Code |
interaction_type | Description | Code |
new | Description | Code |
transcript | Description | Code |
gene | code | next | Top |
Args : none |
interaction_type | code | prev | next | Top |
Args : none |
new | code | prev | next | Top |
Args [1] : Bio::EnsEMBL::Gene - the gene which is associated. |
transcript | code | prev | next | Top |
Args : none |
gene | description | prev | next | Top |
my ($self) = shift; $self->{'gene'} = shift if (@_); return $self->{'gene'};}
interaction_type | description | prev | next | Top |
my ($self) = shift; $self->{'interaction_type'} = shift if (@_); return $self->{'interaction_type'}; } 1;}
new | description | prev | next | Top |
my ($class, $transcript, $gene, $type) = @_; $class = ref $class || $class; my $self = {}; if( !ref $gene || ! $gene->isa("Bio::EnsEMBL::Gene") ) { throw("$gene is not a Bio::EnsEMBL::Gene!"); } if( !ref $transcript || ! $transcript->isa("Bio::EnsEMBL::Transcript") ) { throw("$transcript is not a Bio::EnsEMBL::Transcript!"); } $self->{'gene'} = $gene; $self->{'transcript'} = $transcript; $self->{'type'} = $type; return bless $self, $class;}
transcript | description | prev | next | Top |
my ($self) = shift; $self->{'transcript'} = shift if (@_); return $self->{'transcript'};}
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>.