Skip to content
Snippets Groups Projects
Commit 805de831 authored by Ian Longden's avatar Ian Longden
Browse files

added end_phase to key for exon hash, to stop overwriting of valid exons.

parent d3ebb6f8
No related branches found
No related tags found
No related merge requests found
......@@ -499,7 +499,7 @@ sub get_all_Exons {
foreach my $trans ( @{$self->get_all_Transcripts} ) {
foreach my $e ( @{$trans->get_all_Exons} ) {
$h{$e->start()."-".$e->end()."-".$e->strand()."-".$e->phase()} = $e;
$h{$e->start()."-".$e->end()."-".$e->strand()."-".$e->phase()."-".$e->end_phase()} = $e;
}
}
......
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