-
Notifications
You must be signed in to change notification settings - Fork 0
/
yaml_keys.py
101 lines (86 loc) · 3.36 KB
/
yaml_keys.py
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# constant keys in the yaml file (for config information)
# Author: Prag Batra ([email protected])
############## DATASETS ###############
kDatasets = 'Datasets' # key to access unordered dictionary of datasets (with all info) in parsed yaml
kDatasetDefaults = 'Dataset_Defaults' # key to access default parameters in parsed yaml
kDatasetOrder = 'Dataset_Order' # key to access ordered list of dataset NAMES ONLY in parsed yaml
# key for default parameters in datasets.yml (prior to parsing)
kDDefaults = 'default'
kDBuild = 'Build'
kDDBPath = 'Database_Path'
kDDatasetsPath = 'Dataset_Path'
# Dataset description keys
kDImportIfMissing = 'Import_If_Missing'
kDBedPath = 'Bed_Path'
kDAnnotation = 'Annotation'
kDCategory = 'Category'
kDCategoryTypeRegion = 'region'
kDMultimatchDelimiter = 'Delimiter_for_multiple_matches'
kDColumnHeaders = 'ColumnHeaders'
kDColumnTypes = 'DataType'
kDSource = 'Source'
kDStartingLine = 'StartingLine'
############## MODULES ###############
kModules = 'Modules'
## Global Defaults (across multiple modules)
kMDefaults = 'default'
kMFilterPassValues = 'Filter_Pass_Values'
## Testing keys
kTesting = 'testing'
kTeTestDatasetPath = 'Test_Dataset_Path'
kTeTestDefaultOutPath = 'Default_Test_Output_Dir'
## Annotation keys
kAnnotation = 'annotation' # annotation module spec, NOT dataset parameter
kAAnnovarPath = 'Annovar_Path'
kASnpeffPath = 'Snpeff_Path'
kASnpeffMemory = 'Snpeff_Memory'
# format tag extraction
kAFormatTags = 'Format_Tags'
kAFormatTagMultisampleDelimiter = 'Format_Tag_Multisample_Delimiter'
kAFormatTagMultimatchDelimiter = 'Format_Tag_Multimatch_Delimiter'
# consensus cols
kAConsensusColumnSuffix = 'Consensus_Column_Suffix'
kAConsensusColumnOffset = 'Consensus_Column_Insertion_Offset'
kAConsensusColumns = 'Consensus_Columns'
kAConsensusCriteria = 'Consensus_Criteria'
kAConsensusCriteriaTypeMaxFreq = 'Max_Freq'
kAConsensusColumnsOrder = 'Order'
kAConsensusColumnsGene = 'Gene'
# bed file compaction and expansion (for range annotation)
kABedMultimatchInternalDelimiter = 'Bed_Multimatch_Internal_Delimiter'
kABedInternalDelimiter = 'Bed_Internal_Delimiter'
## Tiering
kTiering = 'tiering'
kTTieredOutputSubdir = 'Tiered_Output_Subdir'
kTMaxNumVariantsPerTier = 'Max_Num_Variants_Per_Tier'
# kTFilterPassValues = 'Filter_Pass_Values'
kTSkipFilterPassCheck = 'Skip_Filter_Pass_Check_If_Needed'
kTRareAlleleFreqCutoff='Rare_Allele_Frequency_Cutoff'
kTGeneNameCol='Gene_Name_Column'
kTAlleleFreqCols='Allele_Frequency_Columns'
kTGenotype = 'Genotype'
kTFunctionalCols = 'Functional_Columns'
kTColMultipleThresholdSeparator = 'Column_Multiple_Threshold_Separator'
# conservation
kTConservationCols = 'Conservation_Columns'
kTConservationThresholds = 'Conservation_Thresholds'
kTConservationGlobalThreshold = 'Conservation_Global_Threshold'
# pathogenicity
kTPathogenicityCols = 'Pathogenicity_Columns'
kTPathogenicityThresholds = 'Pathogenicity_Thresholds'
kTPathogenicityGlobalThreshold = 'Pathogenicity_Global_Threshold'
# tolerance
kTToleranceZScoreCols = 'Tolerance_Zscore_Columns'
kTToleranceZScoreCutoff = 'Tolerance_Zscore_Cutoff'
# Targeted gene lists
kTTargetGeneLists = 'Target_Gene_Lists'
kTClinicalGeneList = 'Clinical'
kTClinicalClinvarGeneList = 'Clinical_Clinvar'
kTClinicalPanelGeneList = 'Clinical_Panel'
kTActionableGeneList = 'Actionable'
## PGX
# TBA
## Trio
kTrio = 'trio'
kTrTrioOutputSubdir = 'Trio_Output_Subdir'
kTrGeneNameCol = 'Gene_Name_Column'