Skip to content

Commit f913424

Browse files
committed
feature flag
1 parent 4f77eaa commit f913424

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

v03_pipeline/lib/model/constants.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import importlib.resources
1+
from v03_pipeline.lib.model.feature_flag import FeatureFlag
22

33
PROJECTS_EXCLUDED_FROM_LOOKUP = {
44
'R0555_seqr_demo',
@@ -13,10 +13,12 @@
1313
'R0816_gregor_training_project_',
1414
}
1515
GRCH37_TO_GRCH38_LIFTOVER_REF_PATH = (
16-
'gs://hail-common/references/grch37_to_grch38.over.chain.gz'
17-
if FeatureFlag.RUN_PIPELINE_ON_DATAPROC else 'v03_pipeline/var/liftover/grch37_to_grch38.over.chain.gz'
16+
'gs://hail-common/references/grch37_to_grch38.over.chain.gz'
17+
if FeatureFlag.RUN_PIPELINE_ON_DATAPROC
18+
else 'v03_pipeline/var/liftover/grch37_to_grch38.over.chain.gz'
1819
)
1920
GRCH38_TO_GRCH37_LIFTOVER_REF_PATH = (
20-
'gs://hail-common/references/grch38_to_grch37.over.chain.gz'
21-
if FeatureFlag.RUN_PIPELINE_ON_DATAPROC else 'v03_pipeline/var/liftover/grch38_to_grch37.over.chain.gz'
22-
)
21+
'gs://hail-common/references/grch38_to_grch37.over.chain.gz'
22+
if FeatureFlag.RUN_PIPELINE_ON_DATAPROC
23+
else 'v03_pipeline/var/liftover/grch38_to_grch37.over.chain.gz'
24+
)

0 commit comments

Comments
 (0)