Skip to content

Commit

Permalink
Add missing ChEMBL target source import
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Jan 16, 2025
1 parent 888c96a commit 0f14061
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pyobo/sources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .bigg import BiGGCompartmentGetter, BiGGMetaboliteGetter, BiGGModelGetter, BiGGReactionGetter
from .ccle import CCLEGetter
from .cgnc import CGNCGetter
from .chembl import ChEMBLCompoundGetter
from .chembl import ChEMBLCompoundGetter, ChEMBLTargetGetter
from .civic_gene import CIVICGeneGetter
from .clinicaltrials import ClinicalTrialsGetter
from .complexportal import ComplexPortalGetter
Expand Down Expand Up @@ -72,6 +72,7 @@
"CPTGetter",
"CVXGetter",
"ChEMBLCompoundGetter",
"ChEMBLTargetGetter",
"ClinicalTrialsGetter",
"ComplexPortalGetter",
"CreditGetter",
Expand Down
2 changes: 2 additions & 0 deletions src/pyobo/sources/chembl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""Resources from ChEMBL."""

from .chembl_compound import ChEMBLCompoundGetter
from .chembl_target import ChEMBLTargetGetter

__all__ = [
"ChEMBLCompoundGetter",
"ChEMBLTargetGetter",
]

0 comments on commit 0f14061

Please sign in to comment.