We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would be worth looking around for projects, or best practices we can learn from
One of the current pains is that if you have eg:
ANNOTATION_BASE_DIR = "/data/annotation" ANNOTATION_VEP_BASE_DIR = os.path.join(ANNOTATION_BASE_DIR, "VEP") ANNOTATION_VEP_VERSION_DIR = os.path.join(ANNOTATION_VEP_BASE_DIR, "vep_code", ANNOTATION_VEP_VERSION)
and you want to change ANNOTATION_BASE_DIR you have to re-declare everything that depends on it
ANNOTATION_BASE_DIR
There might be some way to get around this like evaluating at run time, or being immutable and setting 1st - check for what others do
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would be worth looking around for projects, or best practices we can learn from
One of the current pains is that if you have eg:
and you want to change
ANNOTATION_BASE_DIR
you have to re-declare everything that depends on itThere might be some way to get around this like evaluating at run time, or being immutable and setting 1st - check for what others do
The text was updated successfully, but these errors were encountered: