Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions src/bioetl/infrastructure/adapters/chembl/entity_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,22 +181,6 @@ def has_composite_key(entity_type: str) -> bool:
"""
return has_entity_composite_key(entity_type)

@staticmethod
def get_resource_name(entity_type: str) -> str | None:
"""Get the ChEMBL resource name for entity type.

Args:
entity_type: Entity type (e.g., 'activity', 'publication').

Returns:
Resource name or None if unknown.

Example:
>>> ChemblEntityMapper.get_resource_name("publication")
'document'
"""
return resolve_resource_name(entity_type)

@staticmethod
def is_known_entity(entity_type: str) -> bool:
"""Check if entity type is known (publication or non-publication).
Expand Down
Loading