Skip to content

Commit

Permalink
[r] Fix: AnVIL indexer doesn't follow downstream links from files to …
Browse files Browse the repository at this point in the history
…files (#4761)
  • Loading branch information
nadove-ucsc committed Nov 29, 2022
1 parent 35d3b27 commit 8f4df5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/azul/plugins/repository/tdr_anvil/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def _bundle_entity(self, bundle_fqid: SourcedBundleFQID) -> KeyReference:
return bundle_entity

def _consolidate_by_type(self, entities: Keys) -> MutableKeysByType:
result = defaultdict(set)
result = {entity_type: set() for entity_type in self.indexed_columns_by_entity_type}
for e in entities:
result[e.entity_type].add(e.key)
return result
Expand Down Expand Up @@ -259,7 +259,7 @@ def _follow_downstream(self,
) -> Links:
return set.union(
self._downstream_from_biosamples(source, entities['biosample']),
self._downstream_from_files(source, entities['files'])
self._downstream_from_files(source, entities['file'])
)

def _upstream_from_biosamples(self,
Expand Down Expand Up @@ -446,6 +446,8 @@ def _retrieve_entities(self,
entity_type: EntityType,
keys: AbstractSet[Key],
) -> MutableJSONs:
if not keys:
return []
table_name = self._full_table_name(source, entity_type)
columns = set.union(
self.common_indexed_columns,
Expand Down

0 comments on commit 8f4df5c

Please sign in to comment.