Skip to content
Snippets Groups Projects
Commit 567db8a3 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Set the associated transcript using the transcript() method in

Transcript.pm.  Avoids littering the code with calls to weaken().
parent 4fb569e1
No related branches found
No related tags found
No related merge requests found
......@@ -177,8 +177,8 @@ sub fetch_all_by_Transcript {
$transcript->dbID() ) );
}
push( @{$translations},
Bio::EnsEMBL::Translation->new_fast( {
my $tranlsation =
Bio::EnsEMBL::Translation->new_fast( {
'dbID' => $translation_id,
'adaptor' => $self,
'start' => $seq_start,
......@@ -189,7 +189,12 @@ sub fetch_all_by_Transcript {
'version' => $version,
'created_date' => $created_date || undef,
'modified_date' => $modified_date || undef,
'transcript' => $transcript } ) );
} );
$translation->transcript($transcript);
push( @{$translations}, $translation );
} ## end while ( $sth->fetch() )
return $translations;
......@@ -279,7 +284,9 @@ sub fetch_by_Transcript {
'version' => $version,
'created_date' => $created_date || undef,
'modified_date' => $modified_date || undef,
'transcript' => $transcript } );
} );
$translation->transcript($transcript);
return $translation;
} ## end sub fetch_by_Transcript
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment