Skip to content
Snippets Groups Projects
Commit e5e80b87 authored by Arne Stabenau's avatar Arne Stabenau
Browse files

removed dodgy back reference from translation call to translate call

parent 35113b17
No related branches found
No related tags found
No related merge requests found
......@@ -231,13 +231,17 @@ sub translation {
"translation");
}
my $tmpSeq = new Bio::Seq( -id => "dummy",
-seq => $self->spliced_seq(),
-moltype => "dna" );
return Bio::EnsEMBL::Translation->new
(-ADAPTOR => $pta,
-START_EXON => $start_exon,
-END_EXON => $end_exon,
-SEQ_START => 1,
-SEQ_END => $end_exon->length(),
-SEQ => $self->translate()->seq());
-SEQ => $tmpSeq->translate()->seq());
}
......
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