Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Old-Shatterhand committed Mar 21, 2024
1 parent 2e8b7e4 commit 7638294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def md_calculator():
@pytest.mark.parametrize("mode", ["CSV", "TSV", "PKL", "H5PY", "SDF"])
def test_input_formats(mode, md_calculator):
base = Path("data") / "pipeline" / "input_forms"
drugs = pd.read_csv(base / "drugs.tsv", sep="\t")
drugs = pd.read_csv(base.parent / "drugs.tsv", sep="\t")
ddict = {row["Drug_ID"]: row["SMILES"] for index, row in drugs.iterrows()}
base.mkdir(exist_ok=True, parents=True)

Expand Down

0 comments on commit 7638294

Please sign in to comment.