Skip to content
Snippets Groups Projects
Commit 5111f026 authored by Andy Yates's avatar Andy Yates
Browse files

Bad copy-paste bug from Transcript.pm. We have $new_gene not $new_transcript

parent 1d3332c4
No related branches found
No related tags found
No related merge requests found
......@@ -1163,7 +1163,7 @@ sub transform {
}
if(exists $self->{attributes}) {
$new_transcript->{attributes} = [@{$self->{attributes}}];
$new_gene->{attributes} = [@{$self->{attributes}}];
}
return $new_gene;
......@@ -1199,7 +1199,7 @@ sub transfer {
}
if(exists $self->{attributes}) {
$new_transcript->{attributes} = [@{$self->{attributes}}];
$new_gene->{attributes} = [@{$self->{attributes}}];
}
return $new_gene;
......
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