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

added non phase zero start exon N padding

parent e5e80b87
No related branches found
No related tags found
No related merge requests found
......@@ -492,6 +492,10 @@ sub translateable_seq {
my $start = $self->cdna_coding_start();
my $end = $self->cdna_coding_end();
my $start_phase = $self->translation->start_Exon->phase();
if( $start_phase > 0 ) {
$mrna = "N"x$start_phase . $mrna;
}
if( ! $start || ! $end ) {
return "";
}
......
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