From ef3f3c24c31edc688e3ec8caaa1248cdcab1f9e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kusalananda=20K=C3=A4h=C3=A4ri?= <ak4@sanger.ac.uk> Date: Fri, 2 Jul 2010 09:42:36 +0000 Subject: [PATCH] Be more careful in transcript(). Simplify cdna_start() and cdna_end() by use of transcript(). --- modules/Bio/EnsEMBL/Translation.pm | 97 ++++++++++++++---------------- 1 file changed, 44 insertions(+), 53 deletions(-) diff --git a/modules/Bio/EnsEMBL/Translation.pm b/modules/Bio/EnsEMBL/Translation.pm index 842bafb3b7..31ed17f928 100755 --- a/modules/Bio/EnsEMBL/Translation.pm +++ b/modules/Bio/EnsEMBL/Translation.pm @@ -143,10 +143,15 @@ sub transcript { my ( $self, $transcript ) = @_; if ( defined($transcript) ) { + if ( !ref($transcript) + || !$transcript->isa('Bio::EnsEMBL::Transcript') ) + { + throw("Argument is not a transcript"); + } $self->{'transcript'} = $transcript; - weaken($self->{'transcript'}); + weaken( $self->{'transcript'} ); } elsif ( !defined( $self->{'transcript'} ) ) { my $adaptor = $self->{'adaptor'}; @@ -165,11 +170,11 @@ sub transcript { $adaptor->db()->get_TranscriptAdaptor() ->fetch_by_translation_id($dbID); - weaken($self->{'transcript'}); + weaken( $self->{'transcript'} ); } return $self->{'transcript'}; -} +} ## end sub transcript =head2 start @@ -302,35 +307,28 @@ sub end_Exon { =cut sub cdna_start { - my $self = shift; - my ($transcript) = @_; - - if ( defined $transcript - && ( !ref $transcript - || !$transcript->isa('Bio::EnsEMBL::Transcript') ) ) - { - throw("Argument is not a transcript"); - } - - if ( !exists $self->{'cdna_start'} ) { - if ( !defined $transcript ) { - # We were not given a transcript, get the transcript out of - # the database. - - my $transcript_adaptor = - $self->adaptor()->db()->get_TranscriptAdaptor(); + my ( $self, $transcript ) = @_; - $transcript = - $transcript_adaptor->fetch_by_translation_id( - $self->dbID() ); - } + if ( defined($transcript) + && ( !ref($transcript) + || !$transcript->isa('Bio::EnsEMBL::Transcript') ) ) + { + throw("Argument is not a transcript"); + } - $self->{'cdna_start'} = - $self->start_Exon()->cdna_coding_start($transcript); + if ( !exists( $self->{'cdna_start'} ) ) { + if ( !defined($transcript) ) { + # We were not given a transcript, get the transcript out of + # the database. + $transcript = $self->transcript(); } - return $self->{'cdna_start'}; -} ## end sub cdna_start + $self->{'cdna_start'} = + $self->start_Exon()->cdna_coding_start($transcript); + } + + return $self->{'cdna_start'}; +} =head2 cdna_end @@ -351,35 +349,28 @@ sub cdna_start { =cut sub cdna_end { - my $self = shift; - my ($transcript) = @_; - - if ( defined $transcript - && ( !ref $transcript - || !$transcript->isa('Bio::EnsEMBL::Transcript') ) ) - { - throw("Argument is not a transcript"); - } - - if ( !exists $self->{'cdna_end'} ) { - if ( !defined $transcript ) { - # We were not given a transcript, get the transcript out of - # the database. - - my $transcript_adaptor = - $self->adaptor()->db()->get_TranscriptAdaptor(); + my ( $self, $transcript ) = @_; - $transcript = - $transcript_adaptor->fetch_by_translation_id( - $self->dbID() ); - } + if ( defined($transcript) + && ( !ref($transcript) + || !$transcript->isa('Bio::EnsEMBL::Transcript') ) ) + { + throw("Argument is not a transcript"); + } - $self->{'cdna_end'} = - $self->end_Exon()->cdna_coding_end($transcript); + if ( !exists( $self->{'cdna_end'} ) ) { + if ( !defined($transcript) ) { + # We were not given a transcript, get the transcript out of + # the database. + $transcript = $self->transcript(); } - return $self->{'cdna_end'}; -} ## end sub cdna_end + $self->{'cdna_end'} = + $self->end_Exon()->cdna_coding_end($transcript); + } + + return $self->{'cdna_end'}; +} =head2 genomic_start -- GitLab