We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2deaa0 commit fdaef5cCopy full SHA for fdaef5c
v03_pipeline/lib/model/constants.py
@@ -1,4 +1,4 @@
1
-from v03_pipeline.lib.model.feature_flag import FeatureFlag
+import os
2
3
LOCAL_DISK_MOUNT_PATH = '/var/seqr'
4
PROJECTS_EXCLUDED_FROM_LOOKUP = {
@@ -15,11 +15,11 @@
15
}
16
GRCH37_TO_GRCH38_LIFTOVER_REF_PATH = (
17
'gs://hail-common/references/grch37_to_grch38.over.chain.gz'
18
- if FeatureFlag.RUN_PIPELINE_ON_DATAPROC
+ if os.environ.get('HAIL_DATAPROC') == '1'
19
else 'v03_pipeline/var/liftover/grch37_to_grch38.over.chain.gz'
20
)
21
GRCH38_TO_GRCH37_LIFTOVER_REF_PATH = (
22
'gs://hail-common/references/grch38_to_grch37.over.chain.gz'
23
24
else 'v03_pipeline/var/liftover/grch38_to_grch37.over.chain.gz'
25
0 commit comments