Skip to content
Snippets Groups Projects
Commit 43930206 authored by Graham McVicker's avatar Graham McVicker
Browse files

correctly populate DBEntries for SNPs

parent a68304ca
No related branches found
No related tags found
No related merge requests found
......@@ -106,9 +106,10 @@ sub fetch_all_by_Slice {
if(!$link) {
$link = Bio::EnsEMBL::DBEntry->new_fast
({'_dbname' => $link_db,
'_primary_id' => $link_id});
$self->{'link_cache'}->{"$link_db:$link_id"};
({'dbname' => $link_db,
'primary_id' => $link_id,
'display_id' => $link_id});
$self->{'link_cache'}->{"$link_db:$link_id"} = $link;
}
push @links, $link;
......
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