Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Default user committed Dec 8, 2023
1 parent 804ebe8 commit 685250d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ tmp/
__pycache__/
.pytest_cache
.ipynb_checkpoints/
*.log
3 changes: 2 additions & 1 deletion src/train_opentargets.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def ensembl_to_uniprot():


def train_opentargets(input_dir, out_dir):
"""Main function to orchestrate the extraction and saving process."""
"""Train the model using opentargets data."""
os.makedirs(out_dir, exist_ok=True)
known_drug_targets = []

Expand Down Expand Up @@ -82,6 +82,7 @@ def train_opentargets(input_dir, out_dir):


def train_drugbank():
"""Train the model using drugbank data."""
df_known_dt = "data/drugbank/DB_DTI_4vectordb.csv"
out_dir = "data/drugbank"

Expand Down

0 comments on commit 685250d

Please sign in to comment.