-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restructuring PANDORA's files #164
Conversation
PANDORA/__init__.py
Outdated
@@ -7,7 +7,7 @@ | |||
:meta hide-value: | |||
''' | |||
|
|||
PANDORA_data = os.path.join(os.path.dirname(PANDORA_path), 'PANDORA_files', 'data') | |||
PANDORA_data = os.path.join(os.path.dirname(PANDORA_path), 'Databases', 'default') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @gcroci2 , I have a question.
By defining PANDORA_data like this, PANDORA will always use the default database also, for instance, for blasting the MHC sequence (Modelling_functions.py, line 847). Will this prevent a user from using their own generated database when blasting? If I am not wrong, there is not an option to select the blast db.
Any idea on how to solve this issue? Maybe just redefining PANDORA_data at the beginning of the user's script will be enough?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PANDORA_data
now is a global variable (in the package namespace) that is used internally in functions and classes, and the structure of the code does not take into account such a possibility for the user. We could either a) make PANDORA_data an attribute of the Database class, and then modify methods and functions accordingly or b) create a config file (.py, .yml, .toml, ...) in which we put the default folder path, that can be modified by the user. The init of the package then is just going to read out this config file, assigning PANDORA_data to the path that finds there.
No description provided.