Skip to content

Commit 4f77eaa

Browse files
committed
default to hail
1 parent 6aa334d commit 4f77eaa

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

v03_pipeline/lib/model/constants.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
'R0815_gregor_training_project_',
1313
'R0816_gregor_training_project_',
1414
}
15-
GRCH37_TO_GRCH38_LIFTOVER_REF_PATH = importlib.resources.path(
16-
'v03_pipeline.var.liftover',
17-
'grch37_to_grch38.over.chain.gz',
18-
).as_posix()
19-
GRCH38_TO_GRCH37_LIFTOVER_REF_PATH = importlib.resources.path(
20-
'v03_pipeline.var.liftover',
21-
'grch38_to_grch37.over.chain.gz',
22-
).as_posix()
15+
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'
18+
)
19+
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+
)

0 commit comments

Comments
 (0)