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 eabd7a5 commit 902739bCopy full SHA for 902739b
v03_pipeline/lib/model/constants.py
@@ -1,3 +1,4 @@
1
+LOCAL_DISK_MOUNT_PATH = '/var/seqr'
2
PROJECTS_EXCLUDED_FROM_LOOKUP = {
3
'R0555_seqr_demo',
4
'R0607_gregor_training_project_',
v03_pipeline/lib/paths.py
@@ -11,6 +11,7 @@
11
ReferenceGenome,
12
SampleType,
13
)
14
+from v03_pipeline.lib.model.constants import LOCAL_DISK_MOUNT_PATH
15
from v03_pipeline.lib.reference_datasets.reference_dataset import (
16
ReferenceDataset,
17
ReferenceDatasetQuery,
@@ -399,7 +400,7 @@ def project_pedigree_path(
399
400
401
def loading_pipeline_queue_path() -> str:
402
return os.path.join(
- Env.LOADING_DATASETS_DIR,
403
+ LOCAL_DISK_MOUNT_PATH,
404
'loading_pipeline_queue',
405
'request.json',
406
0 commit comments