genome-spy-python 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- genome_spy/__init__.py +199 -0
- genome_spy/_chart_authoring.py +231 -0
- genome_spy/_conditions.py +72 -0
- genome_spy/_embed.py +87 -0
- genome_spy/_expressions.py +271 -0
- genome_spy/_parameters.py +267 -0
- genome_spy/_render.py +207 -0
- genome_spy/_utils.py +75 -0
- genome_spy/_widget.py +262 -0
- genome_spy/api.py +198 -0
- genome_spy/arrow.py +155 -0
- genome_spy/channels.py +193 -0
- genome_spy/chart.py +1240 -0
- genome_spy/data.py +56 -0
- genome_spy/data_transformers.py +267 -0
- genome_spy/datasets/__init__.py +189 -0
- genome_spy/datasets/_airway.py +219 -0
- genome_spy/datasets/_annotations.py +37 -0
- genome_spy/datasets/_gistic.py +43 -0
- genome_spy/datasets/_grammar.py +66 -0
- genome_spy/datasets/_hapmap.py +180 -0
- genome_spy/datasets/_mutation.py +289 -0
- genome_spy/datasets/_oncoprint.py +523 -0
- genome_spy/datasets/data/airway_metadata.csv +9 -0
- genome_spy/datasets/data/airway_scaledcounts.csv +38695 -0
- genome_spy/datasets/data/brca.maf.gz +0 -0
- genome_spy/datasets/data/hapmap_gwas.csv +14413 -0
- genome_spy/datasets/data/mutation_impact_reference.json +27 -0
- genome_spy/datasets/data/oncoprint_dataset3.json +266 -0
- genome_spy/datasets/data/p53_sequence_comparison.json.gz +0 -0
- genome_spy/datasets/data/pik3ca_mutations.json +1 -0
- genome_spy/datasets/data/pik3ca_tcga_brca_lollipop.json +38 -0
- genome_spy/datasets/data/refseq_gene_bodies.csv.gz +0 -0
- genome_spy/datasets/data/tal1_alphagenome_reference.json.gz +0 -0
- genome_spy/datasets/data/tcga.tsv +146 -0
- genome_spy/datasets/data/tcga_laml.maf.gz +0 -0
- genome_spy/datasets/data/tcga_laml_annot.tsv +201 -0
- genome_spy/datasets/data/tcga_laml_combined_oncoplot.json.gz +0 -0
- genome_spy/datasets/data/tcga_ov_gistic_lesions.tsv.gz +0 -0
- genome_spy/datasets/data/tcga_ov_gistic_scores.tsv.gz +0 -0
- genome_spy/helpers.py +185 -0
- genome_spy/jupyter.py +5 -0
- genome_spy/py.typed +0 -0
- genome_spy/schema/__init__.py +784 -0
- genome_spy/schema/_kwds.py +1394 -0
- genome_spy/schema/_typing.py +186 -0
- genome_spy/schema/capabilities.json +593 -0
- genome_spy/schema/channels.py +8943 -0
- genome_spy/schema/composition.py +1064 -0
- genome_spy/schema/core.py +51821 -0
- genome_spy/schema/ergonomics.py +2056 -0
- genome_spy/schema/expressions.py +476 -0
- genome_spy/schema/genome-spy-schema.json +33657 -0
- genome_spy/schema/lazy.py +326 -0
- genome_spy/schema/mixins.py +11684 -0
- genome_spy/schemapi.py +264 -0
- genome_spy/static/widget.js +345 -0
- genome_spy_python-0.1.0.dist-info/METADATA +185 -0
- genome_spy_python-0.1.0.dist-info/RECORD +64 -0
- genome_spy_python-0.1.0.dist-info/WHEEL +4 -0
- genome_spy_python-0.1.0.dist-info/licenses/LICENSE +21 -0
- genome_spy_python-0.1.0.dist-info/licenses/LICENSES/ALTAIR-BSD-3-Clause.txt +27 -0
- genome_spy_python-0.1.0.dist-info/licenses/LICENSES/GALLERY-DATA-MIT.txt +22 -0
- genome_spy_python-0.1.0.dist-info/licenses/THIRD_PARTY_NOTICES.md +42 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"assembly": "synthetic-v1",
|
|
3
|
+
"chrom": "chrSynthetic",
|
|
4
|
+
"description": "Deterministic reference window for the Marimo mutation-impact prototype.",
|
|
5
|
+
"rows": [
|
|
6
|
+
{"position": 100, "base": "A", "value": 0.25},
|
|
7
|
+
{"position": 101, "base": "C", "value": 0.4},
|
|
8
|
+
{"position": 102, "base": "G", "value": 0.55},
|
|
9
|
+
{"position": 103, "base": "T", "value": 0.7},
|
|
10
|
+
{"position": 104, "base": "T", "value": 0.3},
|
|
11
|
+
{"position": 105, "base": "C", "value": 0.45},
|
|
12
|
+
{"position": 106, "base": "G", "value": 0.6},
|
|
13
|
+
{"position": 107, "base": "A", "value": 0.75},
|
|
14
|
+
{"position": 108, "base": "G", "value": 0.35},
|
|
15
|
+
{"position": 109, "base": "T", "value": 0.5},
|
|
16
|
+
{"position": 110, "base": "A", "value": 0.65},
|
|
17
|
+
{"position": 111, "base": "C", "value": 0.25},
|
|
18
|
+
{"position": 112, "base": "C", "value": 0.4},
|
|
19
|
+
{"position": 113, "base": "G", "value": 0.55},
|
|
20
|
+
{"position": 114, "base": "T", "value": 0.7},
|
|
21
|
+
{"position": 115, "base": "A", "value": 0.3},
|
|
22
|
+
{"position": 116, "base": "T", "value": 0.45},
|
|
23
|
+
{"position": 117, "base": "G", "value": 0.6},
|
|
24
|
+
{"position": 118, "base": "C", "value": 0.75},
|
|
25
|
+
{"position": 119, "base": "A", "value": 0.35}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
[{
|
|
2
|
+
"sample": "TCGA-23-1027-01",
|
|
3
|
+
"gene": "BRCA1",
|
|
4
|
+
"alteration": "E23fs",
|
|
5
|
+
"type": "TRUNC"
|
|
6
|
+
}, {
|
|
7
|
+
"sample": "TCGA-25-1632-01",
|
|
8
|
+
"gene": "BRCA1",
|
|
9
|
+
"alteration": "L1216fs",
|
|
10
|
+
"type": "TRUNC"
|
|
11
|
+
}, {
|
|
12
|
+
"sample": "TCGA-23-1026-01",
|
|
13
|
+
"gene": "BRCA1",
|
|
14
|
+
"alteration": "G813fs",
|
|
15
|
+
"type": "TRUNC"
|
|
16
|
+
}, {
|
|
17
|
+
"sample": "TCGA-13-0804-01",
|
|
18
|
+
"gene": "BRCA1",
|
|
19
|
+
"alteration": "C47W",
|
|
20
|
+
"type": "MISSENSE"
|
|
21
|
+
}, {
|
|
22
|
+
"sample": "TCGA-24-2298-01",
|
|
23
|
+
"gene": "BRCA1",
|
|
24
|
+
"alteration": "Q1395fs",
|
|
25
|
+
"type": "TRUNC"
|
|
26
|
+
}, {
|
|
27
|
+
"sample": "TCGA-61-2008-01",
|
|
28
|
+
"gene": "BRCA1",
|
|
29
|
+
"alteration": "W1815*",
|
|
30
|
+
"type": "TRUNC"
|
|
31
|
+
}, {
|
|
32
|
+
"sample": "TCGA-09-2045-01",
|
|
33
|
+
"gene": "BRCA1",
|
|
34
|
+
"alteration": "Q1779fs",
|
|
35
|
+
"type": "TRUNC"
|
|
36
|
+
}, {
|
|
37
|
+
"sample": "TCGA-04-1356-01",
|
|
38
|
+
"gene": "BRCA1",
|
|
39
|
+
"alteration": "V722fs",
|
|
40
|
+
"type": "TRUNC"
|
|
41
|
+
}, {
|
|
42
|
+
"sample": "TCGA-25-1630-01",
|
|
43
|
+
"gene": "BRCA1",
|
|
44
|
+
"alteration": "K519fs",
|
|
45
|
+
"type": "TRUNC"
|
|
46
|
+
}, {
|
|
47
|
+
"sample": "TCGA-24-1470-01",
|
|
48
|
+
"gene": "BRCA1",
|
|
49
|
+
"alteration": "L1676fs",
|
|
50
|
+
"type": "TRUNC"
|
|
51
|
+
}, {
|
|
52
|
+
"sample": "TCGA-13-0730-01",
|
|
53
|
+
"gene": "BRCA1",
|
|
54
|
+
"alteration": "R1835*",
|
|
55
|
+
"type": "TRUNC"
|
|
56
|
+
}, {
|
|
57
|
+
"sample": "TCGA-13-0883-01",
|
|
58
|
+
"gene": "BRCA1",
|
|
59
|
+
"alteration": "Q1756fs",
|
|
60
|
+
"type": "TRUNC"
|
|
61
|
+
}, {
|
|
62
|
+
"sample": "TCGA-25-2401-01",
|
|
63
|
+
"gene": "BRCA1",
|
|
64
|
+
"alteration": "Q1756fs",
|
|
65
|
+
"type": "TRUNC"
|
|
66
|
+
}, {
|
|
67
|
+
"sample": "TCGA-13-0903-01",
|
|
68
|
+
"gene": "BRCA1",
|
|
69
|
+
"alteration": "R504fs",
|
|
70
|
+
"type": "TRUNC"
|
|
71
|
+
}, {
|
|
72
|
+
"sample": "TCGA-13-0887-01",
|
|
73
|
+
"gene": "BRCA1",
|
|
74
|
+
"alteration": "E23fs",
|
|
75
|
+
"type": "TRUNC"
|
|
76
|
+
}, {
|
|
77
|
+
"sample": "TCGA-13-1494-01",
|
|
78
|
+
"gene": "BRCA1",
|
|
79
|
+
"alteration": "K45_splice",
|
|
80
|
+
"type": "TRUNC"
|
|
81
|
+
}, {
|
|
82
|
+
"sample": "TCGA-09-2051-01",
|
|
83
|
+
"gene": "BRCA1",
|
|
84
|
+
"alteration": "Q1756fs",
|
|
85
|
+
"type": "TRUNC"
|
|
86
|
+
}, {
|
|
87
|
+
"sample": "TCGA-23-2078-01",
|
|
88
|
+
"gene": "BRCA1",
|
|
89
|
+
"alteration": "E23fs",
|
|
90
|
+
"type": "TRUNC"
|
|
91
|
+
}, {
|
|
92
|
+
"sample": "TCGA-23-2079-01",
|
|
93
|
+
"gene": "BRCA1",
|
|
94
|
+
"alteration": "E23fs",
|
|
95
|
+
"type": "TRUNC"
|
|
96
|
+
}, {
|
|
97
|
+
"sample": "TCGA-10-0931-01",
|
|
98
|
+
"gene": "BRCA1",
|
|
99
|
+
"alteration": "E23fs",
|
|
100
|
+
"type": "TRUNC"
|
|
101
|
+
}, {
|
|
102
|
+
"sample": "TCGA-59-2348-01",
|
|
103
|
+
"gene": "BRCA1",
|
|
104
|
+
"alteration": "E797*",
|
|
105
|
+
"type": "TRUNC"
|
|
106
|
+
}, {
|
|
107
|
+
"sample": "TCGA-23-2077-01",
|
|
108
|
+
"gene": "BRCA1",
|
|
109
|
+
"alteration": "Q1756fs",
|
|
110
|
+
"type": "TRUNC"
|
|
111
|
+
}, {
|
|
112
|
+
"sample": "TCGA-09-1669-01",
|
|
113
|
+
"gene": "BRCA1",
|
|
114
|
+
"alteration": "E1345fs",
|
|
115
|
+
"type": "TRUNC"
|
|
116
|
+
}, {
|
|
117
|
+
"sample": "TCGA-23-2081-01",
|
|
118
|
+
"gene": "BRCA1",
|
|
119
|
+
"alteration": "Q1756fs",
|
|
120
|
+
"type": "TRUNC"
|
|
121
|
+
}, {
|
|
122
|
+
"sample": "TCGA-13-1408-01",
|
|
123
|
+
"gene": "BRCA1",
|
|
124
|
+
"alteration": "E23fs",
|
|
125
|
+
"type": "TRUNC"
|
|
126
|
+
}, {
|
|
127
|
+
"sample": "TCGA-13-1489-01",
|
|
128
|
+
"gene": "BRCA1",
|
|
129
|
+
"alteration": "N1265fs",
|
|
130
|
+
"type": "TRUNC"
|
|
131
|
+
}, {
|
|
132
|
+
"sample": "TCGA-25-1318-01",
|
|
133
|
+
"gene": "BRCA2",
|
|
134
|
+
"alteration": "L1491fs",
|
|
135
|
+
"type": "TRUNC"
|
|
136
|
+
}, {
|
|
137
|
+
"sample": "TCGA-13-0793-01",
|
|
138
|
+
"gene": "BRCA2",
|
|
139
|
+
"alteration": "T3085fs",
|
|
140
|
+
"type": "TRUNC"
|
|
141
|
+
}, {
|
|
142
|
+
"sample": "TCGA-24-1463-01",
|
|
143
|
+
"gene": "BRCA2",
|
|
144
|
+
"alteration": "G602fs",
|
|
145
|
+
"type": "TRUNC"
|
|
146
|
+
}, {
|
|
147
|
+
"sample": "TCGA-13-0913-01",
|
|
148
|
+
"gene": "BRCA2",
|
|
149
|
+
"alteration": "E1857fs",
|
|
150
|
+
"type": "TRUNC"
|
|
151
|
+
}, {
|
|
152
|
+
"sample": "TCGA-04-1367-01",
|
|
153
|
+
"gene": "BRCA2",
|
|
154
|
+
"alteration": "E294*",
|
|
155
|
+
"type": "TRUNC"
|
|
156
|
+
}, {
|
|
157
|
+
"sample": "TCGA-24-1562-01",
|
|
158
|
+
"gene": "BRCA2",
|
|
159
|
+
"alteration": "K3326*",
|
|
160
|
+
"type": "TRUNC"
|
|
161
|
+
}, {
|
|
162
|
+
"sample": "TCGA-04-1331-01",
|
|
163
|
+
"gene": "BRCA2",
|
|
164
|
+
"alteration": "C711*",
|
|
165
|
+
"type": "TRUNC"
|
|
166
|
+
}, {
|
|
167
|
+
"sample": "TCGA-24-1103-01",
|
|
168
|
+
"gene": "BRCA2",
|
|
169
|
+
"alteration": "K1638E",
|
|
170
|
+
"type": "MISSENSE"
|
|
171
|
+
}, {
|
|
172
|
+
"sample": "TCGA-13-0885-01",
|
|
173
|
+
"gene": "BRCA2",
|
|
174
|
+
"alteration": "K1406fs",
|
|
175
|
+
"type": "TRUNC"
|
|
176
|
+
}, {
|
|
177
|
+
"sample": "TCGA-13-0890-01",
|
|
178
|
+
"gene": "BRCA2",
|
|
179
|
+
"alteration": "V1229fs",
|
|
180
|
+
"type": "TRUNC"
|
|
181
|
+
}, {
|
|
182
|
+
"sample": "TCGA-13-1512-01",
|
|
183
|
+
"gene": "BRCA2",
|
|
184
|
+
"alteration": "K3326*",
|
|
185
|
+
"type": "TRUNC"
|
|
186
|
+
}, {
|
|
187
|
+
"sample": "TCGA-23-1030-01",
|
|
188
|
+
"gene": "BRCA2",
|
|
189
|
+
"alteration": "T1354M",
|
|
190
|
+
"type": "MISSENSE"
|
|
191
|
+
}, {
|
|
192
|
+
"sample": "TCGA-23-1026-01",
|
|
193
|
+
"gene": "BRCA2",
|
|
194
|
+
"alteration": "K3326*",
|
|
195
|
+
"type": "TRUNC"
|
|
196
|
+
}, {
|
|
197
|
+
"sample": "TCGA-25-1634-01",
|
|
198
|
+
"gene": "BRCA2",
|
|
199
|
+
"alteration": "E2878_splice",
|
|
200
|
+
"type": "TRUNC"
|
|
201
|
+
}, {
|
|
202
|
+
"sample": "TCGA-24-1555-01",
|
|
203
|
+
"gene": "BRCA2",
|
|
204
|
+
"alteration": "T2607fs",
|
|
205
|
+
"type": "TRUNC"
|
|
206
|
+
}, {
|
|
207
|
+
"sample": "TCGA-13-0886-01",
|
|
208
|
+
"gene": "BRCA2",
|
|
209
|
+
"alteration": "S1982fs",
|
|
210
|
+
"type": "TRUNC"
|
|
211
|
+
}, {
|
|
212
|
+
"sample": "TCGA-13-0792-01",
|
|
213
|
+
"gene": "BRCA2",
|
|
214
|
+
"alteration": "E1143D",
|
|
215
|
+
"type": "MISSENSE"
|
|
216
|
+
}, {
|
|
217
|
+
"sample": "TCGA-24-2293-01",
|
|
218
|
+
"gene": "BRCA2",
|
|
219
|
+
"alteration": "R2520*",
|
|
220
|
+
"type": "TRUNC"
|
|
221
|
+
}, {
|
|
222
|
+
"sample": "TCGA-23-1120-01",
|
|
223
|
+
"gene": "BRCA2",
|
|
224
|
+
"alteration": "L3277fs",
|
|
225
|
+
"type": "TRUNC"
|
|
226
|
+
}, {
|
|
227
|
+
"sample": "TCGA-25-2396-01",
|
|
228
|
+
"gene": null,
|
|
229
|
+
"alteration": null,
|
|
230
|
+
"type": null
|
|
231
|
+
}, {
|
|
232
|
+
"sample": "TCGA-25-2397-01",
|
|
233
|
+
"gene": null,
|
|
234
|
+
"alteration": null,
|
|
235
|
+
"type": null
|
|
236
|
+
}, {
|
|
237
|
+
"sample": "TCGA-25-2398-01",
|
|
238
|
+
"gene": null,
|
|
239
|
+
"alteration": null,
|
|
240
|
+
"type": null
|
|
241
|
+
}, {
|
|
242
|
+
"sample": "TCGA-25-2399-01",
|
|
243
|
+
"gene": null,
|
|
244
|
+
"alteration": null,
|
|
245
|
+
"type": null
|
|
246
|
+
}, {
|
|
247
|
+
"sample": "TCGA-25-2400-01",
|
|
248
|
+
"gene": null,
|
|
249
|
+
"alteration": null,
|
|
250
|
+
"type": null
|
|
251
|
+
}, {
|
|
252
|
+
"sample": "TCGA-25-2401-01",
|
|
253
|
+
"gene": null,
|
|
254
|
+
"alteration": null,
|
|
255
|
+
"type": null
|
|
256
|
+
}, {
|
|
257
|
+
"sample": "TCGA-25-2392-01",
|
|
258
|
+
"gene": null,
|
|
259
|
+
"alteration": null,
|
|
260
|
+
"type": null
|
|
261
|
+
}, {
|
|
262
|
+
"sample": "TCGA-25-2393-01",
|
|
263
|
+
"gene": null,
|
|
264
|
+
"alteration": null,
|
|
265
|
+
"type": null
|
|
266
|
+
}]
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"x": ["271.0-279.0", "808.0-825.0", "661.0-672.0", "1016.0-1025.0", "513.0-515.0", "609.0-622.0", "489.0-492.0", "237.0-242.0", "134.0-142.0", "1032.0-1047.0", "160.0-166.0", "306.0-309.0", "890.0-911.0", "65.0-67.0", "508.0-512.0", "625.0-638.0", "327.0-329.0", "108.0-121.0", "887.0-889.0", "648.0-657.0", "558.0-560.0", "495.0-498.0", "89.0-91.0", "876.0-884.0", "517.0-520.0", "958.0-964.0", "246.0-248.0", "290.0-294.0", "562.0-564.0", "639.0-641.0", "942.0-945.0", "577.0-589.0", "526.0-536.0", "698.0-720.0", "545.0-553.0", "857.0-861.0", "42.0-52.0", "565.0-571.0", "144.0-155.0", "728.0-739.0", "995.0-1003.0", "871.0-873.0", "681.0-694.0", "59.0-61.0", "595.0-598.0", "179.0-182.0", "766.0-768.0", "742.0-748.0", "393.0-395.0", "267.0-269.0", "975.0-993.0", "126.0-130.0", "217.0-226.0", "790.0-792.0", "53.0-55.0", "599.0-602.0", "845.0-849.0", "468.0-470.0", "232.0-234.0", "1056.0-1058.0", "439.0-444.0", "774.0-776.0", "454.0-456.0", "852.0-856.0", "920.0-924.0", "18.0-25.0", "1053.0-1055.0", "263.0-265.0", "481.0-485.0", "376.0-379.0", "319.0-321.0", "249.0-254.0", "969.0-971.0", "382.0-392.0", "929.0-931.0", "185.0-198.0", "353.0-362.0", "86.0-88.0", "27.0-29.0", "862.0-864.0", "972.0-974.0", "365.0-368.0", "332.0-342.0", "838.0-842.0", "79.0-82.0", "458.0-460.0", "779.0-784.0", "434.0-436.0", "1013.0-1015.0", "472.0-477.0", "56.0-58.0", "5.0-10.0", "401.0-413.0", "756.0-761.0", "69.0-74.0", "749.0-753.0", "539.0-541.0", "75.0-77.0", "323.0-326.0", "795.0-805.0", "13.0-15.0", "416.0-430.0", "284.0-289.0", "105.0-107.0", "203.0-212.0", "94.0-102.0", "31.0-37.0", "643.0-646.0", "504.0-506.0", "1048.0-1050.0", "546.0", "1047.0", "542.0", "1021.0", "545.0", "1065.0", "453.0", "1025.0", "218.0", "356.0", "343.0", "332.0", "118.0", "135.0", "365.0", "112.0", "106.0", "88.0", "81.0", "43.0", "364.0", "420.0", "378.0", "382.0", "391.0", "1052.0", "726.0", "914.0", "1007.0", "1023.0", "1035.0", "1043.0", "1049.0", "1050.0", "38.0", "228.0-230.0", "673.0-676.0", "965.0-967.0", "156.0-159.0", "348.0-350.0", "1026.0-1029.0", "826.0-828.0", "243.0-245.0", "865.0-867.0", "721.0-725.0", "1004.0-1007.0", "938.0-941.0", "255.0-258.0", "199.0-202.0", "678.0-680.0", "554.0-557.0", "751.0", "286.0-287.0", "187.0", "346.0", "767.0", "170.0", "723.0", "187.0-289.0", "330.0-487.0", "16.0-105.0", "517.0-694.0", "797.0-1068.0"], "y": ["1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "4", "3", "3", "3", "3", "2", "2", "2", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1"], "mutationGroups": ["Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Helix", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Beta strand", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Natural variant", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Turn", "Sequence conflict", "Sequence conflict", "Sequence conflict", "Sequence conflict", "Sequence conflict", "Sequence conflict", "Sequence conflict", "Domain", "Domain", "Domain", "Domain", "Domain"], "domains": [{"name": "PI3K_p85B", "coord": "32-107"}, {"name": "PI3K_rbd", "coord": "173-292"}, {"name": "PI3K_C2", "coord": "350-485"}, {"name": "PI3Ka", "coord": "519-704"}, {"name": "PI3_PI4_kinase", "coord": "796-1015"}]}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"proteinLength": 1068,
|
|
3
|
+
"mutations": [
|
|
4
|
+
{"position": 81, "mutation": "E81K", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "81/1068"},
|
|
5
|
+
{"position": 88, "mutation": "R88Q", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "88/1068"},
|
|
6
|
+
{"position": 108, "mutation": "R108H", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "108/1068"},
|
|
7
|
+
{"position": 110, "mutation": "E110del", "sampleCount": 2, "variantClass": "In_Frame_Del", "sourceProteinPosition": "109/1068"},
|
|
8
|
+
{"position": 111, "mutation": "K111del", "sampleCount": 2, "variantClass": "In_Frame_Del", "sourceProteinPosition": "111/1068"},
|
|
9
|
+
{"position": 118, "mutation": "G118D", "sampleCount": 5, "variantClass": "Missense_Mutation", "sourceProteinPosition": "118/1068"},
|
|
10
|
+
{"position": 345, "mutation": "N345K", "sampleCount": 17, "variantClass": "Missense_Mutation", "sourceProteinPosition": "345/1068"},
|
|
11
|
+
{"position": 366, "mutation": "P366R", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "366/1068"},
|
|
12
|
+
{"position": 420, "mutation": "C420R", "sampleCount": 4, "variantClass": "Missense_Mutation", "sourceProteinPosition": "420/1068"},
|
|
13
|
+
{"position": 447, "mutation": "P447_L455del", "sampleCount": 3, "variantClass": "In_Frame_Del", "sourceProteinPosition": "446-455/1068"},
|
|
14
|
+
{"position": 453, "mutation": "E453K", "sampleCount": 7, "variantClass": "Missense_Mutation", "sourceProteinPosition": "453/1068"},
|
|
15
|
+
{"position": 542, "mutation": "E542K", "sampleCount": 41, "variantClass": "Missense_Mutation", "sourceProteinPosition": "542/1068"},
|
|
16
|
+
{"position": 545, "mutation": "E545A", "sampleCount": 5, "variantClass": "Missense_Mutation", "sourceProteinPosition": "545/1068"},
|
|
17
|
+
{"position": 545, "mutation": "E545K", "sampleCount": 67, "variantClass": "Missense_Mutation", "sourceProteinPosition": "545/1068"},
|
|
18
|
+
{"position": 546, "mutation": "Q546K", "sampleCount": 4, "variantClass": "Missense_Mutation", "sourceProteinPosition": "546/1068"},
|
|
19
|
+
{"position": 546, "mutation": "Q546R", "sampleCount": 6, "variantClass": "Missense_Mutation", "sourceProteinPosition": "546/1068"},
|
|
20
|
+
{"position": 726, "mutation": "E726K", "sampleCount": 8, "variantClass": "Missense_Mutation", "sourceProteinPosition": "726/1068"},
|
|
21
|
+
{"position": 939, "mutation": "D939G", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "939/1068"},
|
|
22
|
+
{"position": 1004, "mutation": "M1004I", "sampleCount": 3, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1004/1068"},
|
|
23
|
+
{"position": 1007, "mutation": "G1007R", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1007/1068"},
|
|
24
|
+
{"position": 1043, "mutation": "M1043I", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1043/1068"},
|
|
25
|
+
{"position": 1044, "mutation": "N1044Y", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1044/1068"},
|
|
26
|
+
{"position": 1047, "mutation": "H1047L", "sampleCount": 13, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1047/1068"},
|
|
27
|
+
{"position": 1047, "mutation": "H1047R", "sampleCount": 120, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1047/1068"},
|
|
28
|
+
{"position": 1047, "mutation": "H1047Y", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1047/1068"},
|
|
29
|
+
{"position": 1049, "mutation": "G1049R", "sampleCount": 2, "variantClass": "Missense_Mutation", "sourceProteinPosition": "1049/1068"}
|
|
30
|
+
],
|
|
31
|
+
"domains": [
|
|
32
|
+
{"start": 16, "end": 105, "label": "ABD", "description": "PI3K-ABD"},
|
|
33
|
+
{"start": 187, "end": 289, "label": "RBD", "description": "PI3K-RBD"},
|
|
34
|
+
{"start": 330, "end": 487, "label": "C2", "description": "C2 PI3K-type"},
|
|
35
|
+
{"start": 517, "end": 694, "label": "Helical", "description": "PIK helical"},
|
|
36
|
+
{"start": 765, "end": 1051, "label": "Kinase", "description": "PI3K/PI4K catalytic"}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
Binary file
|
|
Binary file
|