Skip to content

Commit 902739b

Browse files
committed
Use local disk only for mount path
1 parent eabd7a5 commit 902739b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

v03_pipeline/lib/model/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
LOCAL_DISK_MOUNT_PATH = '/var/seqr'
12
PROJECTS_EXCLUDED_FROM_LOOKUP = {
23
'R0555_seqr_demo',
34
'R0607_gregor_training_project_',

v03_pipeline/lib/paths.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
ReferenceGenome,
1212
SampleType,
1313
)
14+
from v03_pipeline.lib.model.constants import LOCAL_DISK_MOUNT_PATH
1415
from v03_pipeline.lib.reference_datasets.reference_dataset import (
1516
ReferenceDataset,
1617
ReferenceDatasetQuery,
@@ -399,7 +400,7 @@ def project_pedigree_path(
399400

400401
def loading_pipeline_queue_path() -> str:
401402
return os.path.join(
402-
Env.LOADING_DATASETS_DIR,
403+
LOCAL_DISK_MOUNT_PATH,
403404
'loading_pipeline_queue',
404405
'request.json',
405406
)

0 commit comments

Comments
 (0)