Skip to content
Snippets Groups Projects
Commit 46b2c141 authored by Eugene Kulesha's avatar Eugene Kulesha
Browse files

stop displaying DAS tracks for data objects without IDs

parent 75f18f09
No related branches found
No related tags found
No related merge requests found
......@@ -774,7 +774,7 @@ sub get_all_DAS_Features{
my $db = $self->adaptor->db;
my $GeneAdaptor = $db->get_GeneAdaptor;
my $Gene = $GeneAdaptor->fetch_by_translation_stable_id($self->stable_id);
my $Gene = $GeneAdaptor->fetch_by_translation_stable_id($self->stable_id) || return;
my $slice = $Gene->feature_Slice;
foreach my $dasfact( @{$self->get_all_DASFactories} ){
......
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