-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxrefs-external.template
142 lines (115 loc) · 4.27 KB
/
xrefs-external.template
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
include "xrefs-common.conseq"
# SET_TAIGA_PREPROCESSOR virtual_dataset_id "public-24q4-31a4.61"
let RELEASE_LABEL="Public 24Q4"
add-if-missing {
"type": "depmap_data_taiga_id",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id)
}
# Sample info file
add-if-missing {
"type": "sample_info_dataset_id",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "Model"),
}
add-if-missing {
"type": "crispr-confounder-parameters",
"achilles_qc_report_taiga_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "AchillesScreenQCReport"),
"crispr_screen_map_taiga_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "CRISPRScreenMap")
}
# Chronos Combined
add-if-missing {
"type": "raw-dep-prob-matrix",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "CRISPRGeneDependency"),
"label": "Chronos_Combined",
"rows": "cell-lines"
}
add-if-missing {
"type": "crispr-screen-sequence-map",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "ScreenSequenceMap")
}
add-if-missing {
"type": "raw-dep-matrix",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "CRISPRGeneEffect"),
"label": "Chronos_Combined",
"rows": "cell-lines",
"confounders_label": "crispr-confounders",
}
# Chronos Achilles
add-if-missing {
"type": "confounders-matrix-essential-genes",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "AchillesCommonEssentialControls")
}
add-if-missing {
"type": "confounders-matrix-nonessential-genes",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "AchillesNonessentialControls")
}
# Mutation table
add-if-missing {
"type": "mutation-maf",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsSomaticMutations")
}
add-if-missing {
"type": "other-taiga-dataset",
"category": "fusions",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsFusionFiltered")
}
# CRISPRInferredCommonEssentials
add-if-missing {
"type": "crispr-inferred-common-essentials",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "CRISPRInferredCommonEssentials")
}
# biomarker-matrix
add-if-missing {
'type': 'raw-expr-matrix',
'dataset_id' : PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsExpressionProteinCodingGenesTPMLogp1"),
'category' : 'expression',
}
# Log2-transformed CNGene data
add-if-missing {
'type': 'biomarker-needing-transpose',
'dataset_id' : PREPROCESS_TAIGA_ID(virtual_dataset_id, "PortalOmicsCNGeneLog2"),
'category': 'copy-number-relative'
}
add-if-missing {
"type": "raw-mutations-bool-matrix",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsSomaticMutationsMatrixDamaging"),
"category": "damaging"
}
add-if-missing {
"type": "raw-mutations-bool-matrix",
"dataset_id": PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsSomaticMutationsMatrixHotspot"),
"category": "hotspot"
}
# These below are used to label datasets. It's a little odd that the display label is stored
# seperately from the artifact with the data (and so we'll have to update both when versions change)
# but doing it this way saves us from having to re-run rules when the display name changes
add-if-missing {
'type': 'dataset-display-name',
'display_name': 'Copy Number {{ config.RELEASE_LABEL }} (Log2 transformed)',
'label': 'copy_number_relative',
'dataset_id': PREPROCESS_TAIGA_ID(virtual_dataset_id, "PortalOmicsCNGeneLog2")
}
add-if-missing {
'type': 'dataset-display-name',
'display_name': 'Expression {{ config.RELEASE_LABEL }}',
'label': 'expression',
'dataset_id' : PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsExpressionProteinCodingGenesTPMLogp1"),
}
add-if-missing {
'type': 'dataset-display-name',
'display_name': 'Fusions {{ config.RELEASE_LABEL }}',
'label': 'fusions',
'dataset_id' : PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsFusionFiltered"),
}
add-if-missing {
'type': 'dataset-display-name',
'display_name': 'Mutation {{ config.RELEASE_LABEL }}',
'label': 'mutation_pearson',
'dataset_id' : PREPROCESS_TAIGA_ID(virtual_dataset_id, "OmicsSomaticMutations"),
}
add-if-missing {
'type': 'dataset-display-name',
'display_name': 'CRISPR (DepMap {{ config.RELEASE_LABEL }}+Score, Chronos)',
'label': 'Chronos_Combined',
'dataset_id' : PREPROCESS_TAIGA_ID(virtual_dataset_id, "CRISPRGeneEffect"),
}
# TAIGA_PREPROCESSOR_INCLUDE "xrefs-public.template"