proksee-project / proksee-cmd

Repo for Proksee Cmd Line Tools
Apache License 2.0
21 stars 2 forks source link

database.csv is not being installed correctly #29

Closed emarinier closed 3 years ago

emarinier commented 3 years ago

The assemble command is expecting the database to be installed at:

miniconda3/envs/proksee/lib/python3.7/site-packages/database/database.csv

It is probably not being installed there because of how setup.py is installing, and because the database files exist outside the python source directory. This location is derived from:

DATABASE_PATH = os.path.join(Path(__file__).parent.parent.parent.absolute(), "database", "database.csv")

We'll need to change the installation process and/or file location to make this work correctly.

emarinier commented 3 years ago

Addressed in #30