-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_config.py
More file actions
53 lines (44 loc) · 2.26 KB
/
project_config.py
File metadata and controls
53 lines (44 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from pathlib import Path
# Path('PATH/TO/REPO')
PROJECT_DIR = Path("/mnt/disks/gmiller_data1/pnet-simu-private/")
DATA_DIR = PROJECT_DIR / "data" # where to find data
RESULT_DIR = (
PROJECT_DIR / "results"
) # where to save results (performance metrics, processed outputs, etc.)
FIGURE_DIR = PROJECT_DIR / "figures" # where to save figures
GERMLINE_DATA_DIR = (
DATA_DIR / "germline"
) # where to find all non-finalized germline data (raw VCFs, intermediate files, metadata, etc.)
PROCESSED_GERMLINE_VCFS_DIR = (
GERMLINE_DATA_DIR / "processed_germline_vcfs"
) # where to save processed germline VCFs (universal filters applied, pathogenicity filters applied, etc.)
PNET_DATABASE_DIR = (
DATA_DIR / "pnet_database"
) # path to pnet_germline database extracted from the P1000 manuscript
# RAW_DATA_DIR = DATA_DIR / "raw" # where to find raw data (original datasets: Reactome, raw somatic/germline data, etc.)
PROCESSED_DATA_DIR = (
DATA_DIR / "processed"
) # where to find model-ready, processed data (harmonized data, simulated datasets, etc.)
# Reactome pathway data
REACTOME_DATA_DIR = DATA_DIR / "reactome"
REACTOME_PATHWAYS_GMT = REACTOME_DATA_DIR / "ReactomePathways.gmt"
REACTOME_PATHWAYS_TXT = REACTOME_DATA_DIR / "ReactomePathways.txt"
REACTOME_PATHWAYS_RELATION = REACTOME_DATA_DIR / "ReactomePathwaysRelation.txt"
# Regulatory data
REGULATORY_DATA_DIR = DATA_DIR / "regulatory"
COLLECTRI_FILTERED = REGULATORY_DATA_DIR / "collectri_filtered.csv"
# Joint distribution simulations (Figure 1)
FIGURE_1_DIR = FIGURE_DIR / "figure_1_joint_distributions"
RESULT_DIR_FIGURE_1 = RESULT_DIR / "figure_1_joint_distributions"
# Single-gene spike-in perturbations (Figure 2)
FIGURE_2_DIR = FIGURE_DIR / "figure_2_single_gene_spike_in"
RESULT_DIR_FIGURE_2 = RESULT_DIR / "figure_2_single_gene_spike_in"
# Empirical analysis with P1000 somatic and germline data (Figure 3)
FIGURE_3_DIR = FIGURE_DIR / "figure_3_empirical_analysis"
RESULT_DIR_FIGURE_3 = RESULT_DIR / "figure_3_empirical_analysis"
# Supplementary figures
SUPPLEMENTARY_FIGURE_DIR = FIGURE_DIR / "supplementary_figures"
SUPPLEMENTARY_TABLES_DIR = RESULT_DIR / "supplementary_tables"
# Reviewer requests
FIGURE_REVIEWER_DIR = FIGURE_DIR / "reviewer_requests"
RESULT_REVIEWER_DIR = RESULT_DIR / "reviewer_requests"