@molgenis/vip-report-template 8.3.2 → 8.4.0
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.
- package/package.json +13 -13
- package/src/assets/sass/main.scss +8 -0
- package/src/components/VariantConsequenceContainer.tsx +76 -57
- package/src/components/VariantConsequenceTable.tsx +22 -13
- package/src/components/VariantContainer.tsx +16 -3
- package/src/components/VariantInfoTable.tsx +16 -7
- package/src/components/field/info/FieldConsequence.tsx +21 -10
- package/src/mocks/GRCh38/field_metadata.json +425 -1
- package/src/mocks/GRCh38/vcf/family.db.blob +0 -0
- package/src/mocks/GRCh38/vcf/no_vep.db.blob +0 -0
- package/src/mocks/GRCh38/vcf/samples_0.db.blob +0 -0
- package/src/mocks/GRCh38/vcf/samples_1.db.blob +0 -0
- package/src/mocks/GRCh38/vcf/samples_1.vcf +0 -6
- package/src/mocks/GRCh38/vcf/samples_100.db.blob +0 -0
- package/src/mocks/GRCh38/vcf/str.db.blob +0 -0
- package/src/utils/query/query.ts +1 -1
- package/tests/utils/query/query.test.ts +28 -0
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@molgenis/vip-report-template",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"description": "Report Template for Variant Call Format (VCF) Report Generator",
|
|
5
5
|
"license": "LGPL-3.0",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@molgenis/vite-plugin-inline": "^2.0.
|
|
7
|
+
"@molgenis/vite-plugin-inline": "^2.0.2",
|
|
8
8
|
"@types/async-lock": "^1.4.2",
|
|
9
|
-
"@types/node": "^24.12.
|
|
10
|
-
"@vitest/coverage-v8": "^4.1.
|
|
9
|
+
"@types/node": "^24.12.2",
|
|
10
|
+
"@vitest/coverage-v8": "^4.1.3",
|
|
11
11
|
"async-lock": "^1.4.1",
|
|
12
12
|
"bulma": "^1.0.4",
|
|
13
|
-
"esbuild": "^0.
|
|
14
|
-
"eslint": "^10.
|
|
13
|
+
"esbuild": "^0.28.0",
|
|
14
|
+
"eslint": "^10.2.0",
|
|
15
15
|
"eslint-config-prettier": "^10.1.8",
|
|
16
16
|
"eslint-plugin-solid": "^0.14.5",
|
|
17
17
|
"husky": "^9.1.7",
|
|
18
|
-
"jsdom": "^29.0.
|
|
18
|
+
"jsdom": "^29.0.2",
|
|
19
19
|
"prettier": "^3.8.1",
|
|
20
|
-
"sass": "^1.
|
|
20
|
+
"sass": "^1.99.0",
|
|
21
21
|
"typescript": "^6.0.2",
|
|
22
22
|
"typescript-eslint": "^8.58.0",
|
|
23
|
-
"vite": "^8.0.
|
|
24
|
-
"vite-plugin-solid": "^2.11.
|
|
25
|
-
"vitest": "^4.1.
|
|
23
|
+
"vite": "^8.0.7",
|
|
24
|
+
"vite-plugin-solid": "^2.11.12",
|
|
25
|
+
"vitest": "^4.1.3"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@fortawesome/fontawesome-svg-core": "^7.2.0",
|
|
29
29
|
"@fortawesome/free-solid-svg-icons": "^7.2.0",
|
|
30
|
-
"@molgenis/vip-report-api": "7.0.
|
|
31
|
-
"@molgenis/vip-report-vcf": "^4.0.
|
|
30
|
+
"@molgenis/vip-report-api": "7.0.7",
|
|
31
|
+
"@molgenis/vip-report-vcf": "^4.0.8",
|
|
32
32
|
"@solidjs/router": "^0.16.1",
|
|
33
33
|
"ajv": "^8.18.0",
|
|
34
34
|
"base64-js": "^1.5.1",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, Show } from "solid-js";
|
|
1
|
+
import { Component, createSignal, Show } from "solid-js";
|
|
2
2
|
import { MetadataContainer, SampleContainer } from "../utils/api.ts";
|
|
3
3
|
import { VcfRecord } from "@molgenis/vip-report-vcf";
|
|
4
4
|
import { DecisionTree, Item, Sample } from "@molgenis/vip-report-api";
|
|
@@ -12,6 +12,7 @@ import { getPedigreeSamples } from "../utils/sample.ts";
|
|
|
12
12
|
import { ConfigJson } from "../types/config";
|
|
13
13
|
import { VariantGenotypeTable } from "./VariantGenotypeTable.tsx";
|
|
14
14
|
import { initConfig } from "../utils/config/config.ts";
|
|
15
|
+
import { A } from "@solidjs/router";
|
|
15
16
|
|
|
16
17
|
export const VariantConsequenceContainer: Component<{
|
|
17
18
|
config: ConfigJson;
|
|
@@ -36,66 +37,84 @@ export const VariantConsequenceContainer: Component<{
|
|
|
36
37
|
}
|
|
37
38
|
return false;
|
|
38
39
|
};
|
|
40
|
+
const [showEmptyInfo, setShowEmptyInfo] = createSignal(false);
|
|
41
|
+
const toggleShowEmptyInfo = () => setShowEmptyInfo((isShow) => !isShow);
|
|
42
|
+
const [showEmptyCsq, setShowEmptyCsq] = createSignal(false);
|
|
43
|
+
const toggleShowEmptyCsq = () => setShowEmptyCsq((isShow) => !isShow);
|
|
39
44
|
|
|
40
45
|
return (
|
|
41
|
-
|
|
42
|
-
<div class="
|
|
43
|
-
<div
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
<
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
</div>
|
|
57
|
-
<div class="mt-3">
|
|
58
|
-
<h1 class="title is-5">Record</h1>
|
|
59
|
-
<VariantTable variant={props.record.data} />
|
|
60
|
-
</div>
|
|
46
|
+
<div class="columns">
|
|
47
|
+
<div class="column is-4">
|
|
48
|
+
<div>
|
|
49
|
+
<h1 class="title is-5">
|
|
50
|
+
Info
|
|
51
|
+
<A href="#" onClick={toggleShowEmptyInfo} class="small-blue-link">
|
|
52
|
+
{showEmptyInfo() ? "(Hide empty fields)" : "(Show empty fields)"}
|
|
53
|
+
</A>
|
|
54
|
+
</h1>
|
|
55
|
+
<VariantInfoTable
|
|
56
|
+
variantType={props.variantType}
|
|
57
|
+
metadata={props.metadata}
|
|
58
|
+
record={props.record}
|
|
59
|
+
isShowEmpty={showEmptyInfo()}
|
|
60
|
+
/>
|
|
61
61
|
</div>
|
|
62
|
-
<div class="
|
|
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
|
-
|
|
62
|
+
<div class="mt-3">
|
|
63
|
+
<h1 class="title is-5">
|
|
64
|
+
Consequence
|
|
65
|
+
<A href="#" onClick={toggleShowEmptyCsq} class="small-blue-link">
|
|
66
|
+
{showEmptyCsq() ? "(Hide empty fields)" : "(Show empty fields)"}
|
|
67
|
+
</A>
|
|
68
|
+
</h1>
|
|
69
|
+
<VariantConsequenceTable
|
|
70
|
+
variantType={props.variantType}
|
|
71
|
+
metadata={props.metadata}
|
|
72
|
+
record={props.record}
|
|
73
|
+
consequenceId={props.consequenceId}
|
|
74
|
+
isShowEmpty={showEmptyCsq()}
|
|
75
|
+
/>
|
|
76
|
+
</div>
|
|
77
|
+
<div class="mt-3">
|
|
78
|
+
<h1 class="title is-5">Record</h1>
|
|
79
|
+
<VariantTable variant={props.record.data} />
|
|
80
|
+
</div>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="column is-8">
|
|
83
|
+
<Show when={config().variant.samplesCells}>
|
|
84
|
+
{(samplesCells) => (
|
|
85
|
+
<div class="column">
|
|
86
|
+
<h1 class="title is-5">Samples</h1>
|
|
87
|
+
<VariantGenotypeTable
|
|
88
|
+
config={samplesCells()}
|
|
89
|
+
samples={samples()}
|
|
90
|
+
metadata={props.metadata}
|
|
91
|
+
variantType={props.variantType}
|
|
92
|
+
record={props.record}
|
|
93
|
+
/>
|
|
94
|
+
</div>
|
|
95
|
+
)}
|
|
96
|
+
</Show>
|
|
97
|
+
<div class="columns mt-3">
|
|
98
|
+
{props.decisionTree !== null && hasDecisionTreePathMeta() && (
|
|
99
|
+
<div class="column is-6">
|
|
100
|
+
<h1 class="title is-5">Variant classification tree path</h1>
|
|
101
|
+
<DecisionTreePath
|
|
102
|
+
decisionTree={props.decisionTree}
|
|
103
|
+
path={getDecisionTreePath(props.metadata.records, props.record, props.consequenceId)}
|
|
104
|
+
/>
|
|
105
|
+
</div>
|
|
106
|
+
)}
|
|
107
|
+
{showSampleTree() && props.sampleTree !== null && hasSampleTreePathMeta() && props.sample && (
|
|
108
|
+
<div class="column is-6">
|
|
109
|
+
<h1 class="title is-5">Sample classification tree path</h1>
|
|
110
|
+
<DecisionTreePath
|
|
111
|
+
decisionTree={props.sampleTree}
|
|
112
|
+
path={getSampleTreePath(props.metadata.records, props.sample, props.record, props.consequenceId)}
|
|
113
|
+
/>
|
|
114
|
+
</div>
|
|
115
|
+
)}
|
|
97
116
|
</div>
|
|
98
117
|
</div>
|
|
99
|
-
|
|
118
|
+
</div>
|
|
100
119
|
);
|
|
101
120
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, For } from "solid-js";
|
|
1
|
+
import { Component, For, Show } from "solid-js";
|
|
2
2
|
import { VcfRecord } from "@molgenis/vip-report-vcf";
|
|
3
3
|
import { Item } from "@molgenis/vip-report-api";
|
|
4
4
|
import { Table } from "./Table.tsx";
|
|
@@ -6,12 +6,14 @@ import { initConfigCells } from "../utils/config/configCells.ts";
|
|
|
6
6
|
import { RecordsTableCellLine, RecordsTableHeaderCell } from "./RecordsTable.tsx";
|
|
7
7
|
import { VariantType } from "../utils/variantType.ts";
|
|
8
8
|
import { MetadataContainer } from "../utils/api.ts";
|
|
9
|
+
import { ConfigCellInfo } from "../types/configCells";
|
|
9
10
|
|
|
10
11
|
export const VariantConsequenceTable: Component<{
|
|
11
12
|
variantType: VariantType;
|
|
12
13
|
metadata: MetadataContainer;
|
|
13
14
|
record: Item<VcfRecord>;
|
|
14
15
|
consequenceId: number;
|
|
16
|
+
isShowEmpty: boolean;
|
|
15
17
|
}> = (props) => {
|
|
16
18
|
const configCells = () =>
|
|
17
19
|
initConfigCells(
|
|
@@ -26,21 +28,28 @@ export const VariantConsequenceTable: Component<{
|
|
|
26
28
|
null,
|
|
27
29
|
).filter((configCell) => configCell.type !== "group");
|
|
28
30
|
|
|
31
|
+
function isEmptyValue(fieldConfig: ConfigCellInfo) {
|
|
32
|
+
const value = fieldConfig.value(props.record, props.consequenceId);
|
|
33
|
+
return value === null || value === undefined || (Array.isArray(value) && value.length === 0);
|
|
34
|
+
}
|
|
35
|
+
|
|
29
36
|
return (
|
|
30
37
|
<Table borderless={true}>
|
|
31
38
|
<tbody>
|
|
32
|
-
<For each={configCells()}>
|
|
33
|
-
{(fieldConfig) => (
|
|
34
|
-
<
|
|
35
|
-
<
|
|
36
|
-
|
|
37
|
-
<
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
<For each={configCells() as ConfigCellInfo[]}>
|
|
40
|
+
{(fieldConfig: ConfigCellInfo) => (
|
|
41
|
+
<Show when={!isEmptyValue(fieldConfig) || props.isShowEmpty}>
|
|
42
|
+
<tr>
|
|
43
|
+
<RecordsTableHeaderCell fieldConfig={fieldConfig} showParentHeader={true} />
|
|
44
|
+
<td>
|
|
45
|
+
<RecordsTableCellLine
|
|
46
|
+
fieldConfig={fieldConfig}
|
|
47
|
+
record={props.record}
|
|
48
|
+
valueIndex={props.consequenceId}
|
|
49
|
+
/>
|
|
50
|
+
</td>
|
|
51
|
+
</tr>
|
|
52
|
+
</Show>
|
|
44
53
|
)}
|
|
45
54
|
</For>
|
|
46
55
|
</tbody>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, Show } from "solid-js";
|
|
1
|
+
import { Component, createSignal, Show } from "solid-js";
|
|
2
2
|
import { MetadataContainer, SampleContainer } from "../utils/api.ts";
|
|
3
3
|
import { Item, Sample } from "@molgenis/vip-report-api";
|
|
4
4
|
import { VcfRecord } from "@molgenis/vip-report-vcf";
|
|
@@ -11,6 +11,7 @@ import { VariantType } from "../utils/variantType.ts";
|
|
|
11
11
|
import { getPedigreeSamples } from "../utils/sample.ts";
|
|
12
12
|
import { VariantGenotypeTable } from "./VariantGenotypeTable.tsx";
|
|
13
13
|
import { initConfig } from "../utils/config/config.ts";
|
|
14
|
+
import { A } from "@solidjs/router";
|
|
14
15
|
|
|
15
16
|
export const VariantContainer: Component<{
|
|
16
17
|
config: ConfigJson;
|
|
@@ -21,6 +22,8 @@ export const VariantContainer: Component<{
|
|
|
21
22
|
}> = (props) => {
|
|
22
23
|
const config = () => initConfig(props.config, props.variantType, props.metadata, props.sample);
|
|
23
24
|
const samples = (): Item<Sample>[] => (props.sample ? getPedigreeSamples(props.sample) : []);
|
|
25
|
+
const [showEmpty, setShowEmpty] = createSignal(false);
|
|
26
|
+
const toggleShowEmpty = () => setShowEmpty((isShow) => !isShow);
|
|
24
27
|
|
|
25
28
|
return (
|
|
26
29
|
<>
|
|
@@ -35,8 +38,18 @@ export const VariantContainer: Component<{
|
|
|
35
38
|
<VariantTable variant={props.record.data} />
|
|
36
39
|
</div>
|
|
37
40
|
<div class="column is-3">
|
|
38
|
-
<h1 class="title is-5">
|
|
39
|
-
|
|
41
|
+
<h1 class="title is-5">
|
|
42
|
+
Info
|
|
43
|
+
<A href="#" onClick={toggleShowEmpty} class="small-blue-link">
|
|
44
|
+
{showEmpty() ? "(Hide empty fields)" : "(Show empty fields)"}
|
|
45
|
+
</A>
|
|
46
|
+
</h1>
|
|
47
|
+
<VariantInfoTable
|
|
48
|
+
variantType={props.variantType}
|
|
49
|
+
metadata={props.metadata}
|
|
50
|
+
record={props.record}
|
|
51
|
+
isShowEmpty={showEmpty()}
|
|
52
|
+
/>
|
|
40
53
|
</div>
|
|
41
54
|
<Show when={config().variant.samplesCells}>
|
|
42
55
|
{(samplesCells) => (
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component, For } from "solid-js";
|
|
1
|
+
import { Component, For, Show } from "solid-js";
|
|
2
2
|
import { VcfRecord } from "@molgenis/vip-report-vcf";
|
|
3
3
|
import { Table } from "./Table.tsx";
|
|
4
4
|
import { Item } from "@molgenis/vip-report-api";
|
|
@@ -6,11 +6,13 @@ import { RecordsTableCell, RecordsTableHeaderCell } from "./RecordsTable.tsx";
|
|
|
6
6
|
import { initConfigCells } from "../utils/config/configCells.ts";
|
|
7
7
|
import { MetadataContainer } from "../utils/api.ts";
|
|
8
8
|
import { VariantType } from "../utils/variantType.ts";
|
|
9
|
+
import { ConfigCellInfo } from "../types/configCells";
|
|
9
10
|
|
|
10
11
|
export const VariantInfoTable: Component<{
|
|
11
12
|
variantType: VariantType;
|
|
12
13
|
metadata: MetadataContainer;
|
|
13
14
|
record: Item<VcfRecord>;
|
|
15
|
+
isShowEmpty: boolean;
|
|
14
16
|
}> = (props) => {
|
|
15
17
|
const configCells = () =>
|
|
16
18
|
initConfigCells(
|
|
@@ -25,15 +27,22 @@ export const VariantInfoTable: Component<{
|
|
|
25
27
|
null,
|
|
26
28
|
).filter((configCell) => configCell.type !== "group");
|
|
27
29
|
|
|
30
|
+
function isEmptyValue(fieldConfig: ConfigCellInfo) {
|
|
31
|
+
const value = props.record.data.n[fieldConfig.field.id];
|
|
32
|
+
return value === null || value === undefined || (Array.isArray(value) && value.length === 0);
|
|
33
|
+
}
|
|
34
|
+
|
|
28
35
|
return (
|
|
29
36
|
<Table borderless={true}>
|
|
30
37
|
<tbody>
|
|
31
|
-
<For each={configCells()}>
|
|
32
|
-
{(fieldConfig) => (
|
|
33
|
-
<
|
|
34
|
-
<
|
|
35
|
-
|
|
36
|
-
|
|
38
|
+
<For each={configCells() as ConfigCellInfo[]}>
|
|
39
|
+
{(fieldConfig: ConfigCellInfo) => (
|
|
40
|
+
<Show when={!isEmptyValue(fieldConfig) || props.isShowEmpty}>
|
|
41
|
+
<tr>
|
|
42
|
+
<RecordsTableHeaderCell fieldConfig={fieldConfig} showParentHeader={true} />
|
|
43
|
+
<RecordsTableCell fieldConfig={fieldConfig} record={props.record} />
|
|
44
|
+
</tr>
|
|
45
|
+
</Show>
|
|
37
46
|
)}
|
|
38
47
|
</For>
|
|
39
48
|
</tbody>
|
|
@@ -1,15 +1,26 @@
|
|
|
1
|
-
import { Component } from "solid-js";
|
|
1
|
+
import { Component, Show } from "solid-js";
|
|
2
2
|
import { Abbr } from "../../Abbr";
|
|
3
|
+
import { ValueCategorical } from "../../../utils/vcf.ts";
|
|
3
4
|
|
|
4
|
-
export const FieldConsequence: Component<{ value:
|
|
5
|
+
export const FieldConsequence: Component<{ value: ValueCategorical[] }> = (props) => {
|
|
5
6
|
return (
|
|
6
|
-
|
|
7
|
-
<span>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
<Show when={props.value?.length > 0}>
|
|
8
|
+
<span>
|
|
9
|
+
{props.value[0]?.label}
|
|
10
|
+
{props.value.length > 1 && (
|
|
11
|
+
<>
|
|
12
|
+
,{" "}
|
|
13
|
+
<Abbr
|
|
14
|
+
title={props.value
|
|
15
|
+
.slice(1)
|
|
16
|
+
.filter((csq) => csq !== null)
|
|
17
|
+
.map((csq) => csq.label)
|
|
18
|
+
.join(", ")}
|
|
19
|
+
value="…"
|
|
20
|
+
/>
|
|
21
|
+
</>
|
|
22
|
+
)}
|
|
23
|
+
</span>
|
|
24
|
+
</Show>
|
|
14
25
|
);
|
|
15
26
|
};
|
|
@@ -126,6 +126,230 @@
|
|
|
126
126
|
"numberCount": 1,
|
|
127
127
|
"type": "FLOAT"
|
|
128
128
|
},
|
|
129
|
+
"apogee_Score": {
|
|
130
|
+
"label": "Apogee score",
|
|
131
|
+
"description": "Apogee score for protein coding mtDNA variants",
|
|
132
|
+
"numberType": "NUMBER",
|
|
133
|
+
"numberCount": 1,
|
|
134
|
+
"type": "FLOAT"
|
|
135
|
+
},
|
|
136
|
+
"apogee_Uscore": {
|
|
137
|
+
"label": "Apogee unbiased score",
|
|
138
|
+
"description": "Apogee unbiased score for protein coding mtDNA variants",
|
|
139
|
+
"numberType": "NUMBER",
|
|
140
|
+
"numberCount": 1,
|
|
141
|
+
"type": "FLOAT"
|
|
142
|
+
},
|
|
143
|
+
"BIOTYPE": {
|
|
144
|
+
"label": "Biotype",
|
|
145
|
+
"description": "The Ensembl VEP Biotype.",
|
|
146
|
+
"numberType": "NUMBER",
|
|
147
|
+
"numberCount": 1,
|
|
148
|
+
"type": "CATEGORICAL",
|
|
149
|
+
"categories": {
|
|
150
|
+
"IG_C_gene": {
|
|
151
|
+
"label": "IG C gene"
|
|
152
|
+
},
|
|
153
|
+
"protein_coding_CDS_not_defined": {
|
|
154
|
+
"label": "protein coding CDS not defined"
|
|
155
|
+
},
|
|
156
|
+
"Mt_tRNA": {
|
|
157
|
+
"label": "Mt tRNA"
|
|
158
|
+
},
|
|
159
|
+
"TR_V_pseudogene": {
|
|
160
|
+
"label": "TR V pseudogene"
|
|
161
|
+
},
|
|
162
|
+
"other": {
|
|
163
|
+
"label": "other"
|
|
164
|
+
},
|
|
165
|
+
"vault_RNA": {
|
|
166
|
+
"label": "vault RNA"
|
|
167
|
+
},
|
|
168
|
+
"scRNA": {
|
|
169
|
+
"label": "scRNA"
|
|
170
|
+
},
|
|
171
|
+
"transcribed_pseudogene": {
|
|
172
|
+
"label": "transcribed pseudogene"
|
|
173
|
+
},
|
|
174
|
+
"lncRNA": {
|
|
175
|
+
"label": "lncRNA"
|
|
176
|
+
},
|
|
177
|
+
"IG_pseudogene": {
|
|
178
|
+
"label": "IG pseudogene"
|
|
179
|
+
},
|
|
180
|
+
"transcribed_unprocessed_pseudogene": {
|
|
181
|
+
"label": "transcribed unprocessed pseudogene"
|
|
182
|
+
},
|
|
183
|
+
"IG_V_pseudogene": {
|
|
184
|
+
"label": "IG V pseudogene"
|
|
185
|
+
},
|
|
186
|
+
"transcribed_unitary_pseudogene": {
|
|
187
|
+
"label": "transcribed unitary pseudogene"
|
|
188
|
+
},
|
|
189
|
+
"pseudogene": {
|
|
190
|
+
"label": "pseudogene"
|
|
191
|
+
},
|
|
192
|
+
"RNase_P_RNA": {
|
|
193
|
+
"label": "RNase P RNA"
|
|
194
|
+
},
|
|
195
|
+
"rRNA": {
|
|
196
|
+
"label": "rRNA"
|
|
197
|
+
},
|
|
198
|
+
"TR_V_gene": {
|
|
199
|
+
"label": "TR V gene"
|
|
200
|
+
},
|
|
201
|
+
"rRNA_pseudogene": {
|
|
202
|
+
"label": "rRNA pseudogene"
|
|
203
|
+
},
|
|
204
|
+
"TR_J_gene": {
|
|
205
|
+
"label": "TR J gene"
|
|
206
|
+
},
|
|
207
|
+
"aligned_transcript": {
|
|
208
|
+
"label": "aligned transcript"
|
|
209
|
+
},
|
|
210
|
+
"RNase_MRP_RNA": {
|
|
211
|
+
"label": "RNase MRP RNA"
|
|
212
|
+
},
|
|
213
|
+
"TR_D_gene": {
|
|
214
|
+
"label": "TR D gene"
|
|
215
|
+
},
|
|
216
|
+
"unprocessed_pseudogene": {
|
|
217
|
+
"label": "unprocessed pseudogene"
|
|
218
|
+
},
|
|
219
|
+
"IG_J_pseudogene": {
|
|
220
|
+
"label": "IG J pseudogene"
|
|
221
|
+
},
|
|
222
|
+
"processed_transcript": {
|
|
223
|
+
"label": "processed transcript"
|
|
224
|
+
},
|
|
225
|
+
"telomerase_RNA": {
|
|
226
|
+
"label": "telomerase RNA"
|
|
227
|
+
},
|
|
228
|
+
"protein_coding_LoF": {
|
|
229
|
+
"label": "protein coding LoF"
|
|
230
|
+
},
|
|
231
|
+
"ncRNA": {
|
|
232
|
+
"label": "ncRNA"
|
|
233
|
+
},
|
|
234
|
+
"TR_J_pseudogene": {
|
|
235
|
+
"label": "TR J pseudogene"
|
|
236
|
+
},
|
|
237
|
+
"retained_intron": {
|
|
238
|
+
"label": "retained intron"
|
|
239
|
+
},
|
|
240
|
+
"nonsense_mediated_decay": {
|
|
241
|
+
"label": "nonsense mediated decay"
|
|
242
|
+
},
|
|
243
|
+
"snRNA": {
|
|
244
|
+
"label": "snRNA"
|
|
245
|
+
},
|
|
246
|
+
"transcribed_processed_pseudogene": {
|
|
247
|
+
"label": "transcribed processed pseudogene"
|
|
248
|
+
},
|
|
249
|
+
"TR_C_gene": {
|
|
250
|
+
"label": "TR C gene"
|
|
251
|
+
},
|
|
252
|
+
"processed_pseudogene": {
|
|
253
|
+
"label": "processed pseudogene"
|
|
254
|
+
},
|
|
255
|
+
"translated_processed_pseudogene": {
|
|
256
|
+
"label": "translated processed pseudogene"
|
|
257
|
+
},
|
|
258
|
+
"miRNA": {
|
|
259
|
+
"label": "miRNA"
|
|
260
|
+
},
|
|
261
|
+
"protein_coding": {
|
|
262
|
+
"label": "protein coding"
|
|
263
|
+
},
|
|
264
|
+
"antisense_RNA": {
|
|
265
|
+
"label": "antisense RNA"
|
|
266
|
+
},
|
|
267
|
+
"IG_D_gene": {
|
|
268
|
+
"label": "IG D gene"
|
|
269
|
+
},
|
|
270
|
+
"LRG_gene": {
|
|
271
|
+
"label": "LRG gene"
|
|
272
|
+
},
|
|
273
|
+
"Mt_rRNA": {
|
|
274
|
+
"label": "Mt rRNA"
|
|
275
|
+
},
|
|
276
|
+
"mRNA": {
|
|
277
|
+
"label": "mRNA"
|
|
278
|
+
},
|
|
279
|
+
"ribozyme": {
|
|
280
|
+
"label": "ribozyme"
|
|
281
|
+
},
|
|
282
|
+
"unitary_pseudogene": {
|
|
283
|
+
"label": "unitary pseudogene"
|
|
284
|
+
},
|
|
285
|
+
"IG_J_gene": {
|
|
286
|
+
"label": "IG J gene"
|
|
287
|
+
},
|
|
288
|
+
"IG_V_gene": {
|
|
289
|
+
"label": "IG V gene"
|
|
290
|
+
},
|
|
291
|
+
"artifact": {
|
|
292
|
+
"label": "artifact"
|
|
293
|
+
},
|
|
294
|
+
"cdna_update": {
|
|
295
|
+
"label": "cdna update"
|
|
296
|
+
},
|
|
297
|
+
"ncRNA_pseudogene": {
|
|
298
|
+
"label": "ncRNA pseudogene"
|
|
299
|
+
},
|
|
300
|
+
"IG_C_pseudogene": {
|
|
301
|
+
"label": "IG C pseudogene"
|
|
302
|
+
},
|
|
303
|
+
"TEC": {
|
|
304
|
+
"label": "TEC"
|
|
305
|
+
},
|
|
306
|
+
"non_stop_decay": {
|
|
307
|
+
"label": "non stop decay"
|
|
308
|
+
},
|
|
309
|
+
"sRNA": {
|
|
310
|
+
"label": "sRNA"
|
|
311
|
+
},
|
|
312
|
+
"ccds_gene": {
|
|
313
|
+
"label": "ccds gene"
|
|
314
|
+
},
|
|
315
|
+
"tRNA": {
|
|
316
|
+
"label": "tRNA"
|
|
317
|
+
},
|
|
318
|
+
"snoRNA": {
|
|
319
|
+
"label": "snoRNA"
|
|
320
|
+
},
|
|
321
|
+
"scaRNA": {
|
|
322
|
+
"label": "scaRNA"
|
|
323
|
+
},
|
|
324
|
+
"misc_RNA": {
|
|
325
|
+
"label": "misc RNA"
|
|
326
|
+
},
|
|
327
|
+
"Y_RNA": {
|
|
328
|
+
"label": "Y RNA"
|
|
329
|
+
},
|
|
330
|
+
"promoter": {
|
|
331
|
+
"label": "promoter"
|
|
332
|
+
},
|
|
333
|
+
"promoter_flanking_region": {
|
|
334
|
+
"label": "promoter flanking region"
|
|
335
|
+
},
|
|
336
|
+
"enhancer": {
|
|
337
|
+
"label": "enhancer"
|
|
338
|
+
},
|
|
339
|
+
"CTCF_binding_site": {
|
|
340
|
+
"label": "CTCF binding site"
|
|
341
|
+
},
|
|
342
|
+
"open_chromatin_region": {
|
|
343
|
+
"label": "open chromatin region"
|
|
344
|
+
},
|
|
345
|
+
"TF_binding_site": {
|
|
346
|
+
"label": "transcription factor binding site"
|
|
347
|
+
},
|
|
348
|
+
"non_transcribed_region": {
|
|
349
|
+
"label": "non-transcribed region"
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
},
|
|
129
353
|
"CAPICE_CL": {
|
|
130
354
|
"label": "CAPICE",
|
|
131
355
|
"description": "CAPICE classification",
|
|
@@ -323,7 +547,173 @@
|
|
|
323
547
|
"description": "Effect(s) described as Sequence Ontology term(s)",
|
|
324
548
|
"numberType": "OTHER",
|
|
325
549
|
"separator": "&",
|
|
326
|
-
"type": "
|
|
550
|
+
"type": "CATEGORICAL",
|
|
551
|
+
"categories": {
|
|
552
|
+
"transcript_ablation": {
|
|
553
|
+
"label": "transcript ablation",
|
|
554
|
+
"description": "A feature ablation whereby the deleted region includes a transcript feature"
|
|
555
|
+
},
|
|
556
|
+
"splice_acceptor_variant": {
|
|
557
|
+
"label": "splice acceptor variant",
|
|
558
|
+
"description": "A splice variant that changes the 2 base region at the 3' end of an intron"
|
|
559
|
+
},
|
|
560
|
+
"splice_donor_variant": {
|
|
561
|
+
"label": "splice donor variant",
|
|
562
|
+
"description": "A splice variant that changes the 2 base region at the 5' end of an intron"
|
|
563
|
+
},
|
|
564
|
+
"stop_gained": {
|
|
565
|
+
"label": "stop gained",
|
|
566
|
+
"description": "A sequence variant whereby at least one base of a codon is changed, resulting in a premature stop codon, leading to a shortened transcript"
|
|
567
|
+
},
|
|
568
|
+
"frameshift_variant": {
|
|
569
|
+
"label": "frameshift variant",
|
|
570
|
+
"description": "A sequence variant which causes a disruption of the translational reading frame, because the number of nucleotides inserted or deleted is not a multiple of three"
|
|
571
|
+
},
|
|
572
|
+
"stop_lost": {
|
|
573
|
+
"label": "stop lost",
|
|
574
|
+
"description": "A sequence variant where at least one base of the terminator codon (stop) is changed, resulting in an elongated transcript"
|
|
575
|
+
},
|
|
576
|
+
"start_lost": {
|
|
577
|
+
"label": "start lost",
|
|
578
|
+
"description": "A codon variant that changes at least one base of the canonical start codon"
|
|
579
|
+
},
|
|
580
|
+
"transcript_amplification": {
|
|
581
|
+
"label": "transcript amplification",
|
|
582
|
+
"description": "A feature amplification of a region containing a transcript"
|
|
583
|
+
},
|
|
584
|
+
"feature_elongation": {
|
|
585
|
+
"label": "feature elongation",
|
|
586
|
+
"description": "A sequence variant that causes the extension of a genomic feature, with regard to the reference sequence"
|
|
587
|
+
},
|
|
588
|
+
"feature_truncation": {
|
|
589
|
+
"label": "feature truncation",
|
|
590
|
+
"description": "A sequence variant that causes the reduction of a genomic feature, with regard to the reference sequence"
|
|
591
|
+
},
|
|
592
|
+
"inframe_insertion": {
|
|
593
|
+
"label": "inframe insertion",
|
|
594
|
+
"description": "An inframe non synonymous variant that inserts bases into in the coding sequence"
|
|
595
|
+
},
|
|
596
|
+
"inframe_deletion": {
|
|
597
|
+
"label": "inframe deletion",
|
|
598
|
+
"description": "An inframe non synonymous variant that deletes bases from the coding sequence"
|
|
599
|
+
},
|
|
600
|
+
"missense_variant": {
|
|
601
|
+
"label": "missense variant",
|
|
602
|
+
"description": "A sequence variant, that changes one or more bases, resulting in a different amino acid sequence but where the length is preserved"
|
|
603
|
+
},
|
|
604
|
+
"protein_altering_variant": {
|
|
605
|
+
"label": "protein altering variant",
|
|
606
|
+
"description": "A sequence_variant which is predicted to change the protein encoded in the coding sequence"
|
|
607
|
+
},
|
|
608
|
+
"splice_donor_5th_base_variant": {
|
|
609
|
+
"label": "splice donor 5th base variant",
|
|
610
|
+
"description": "A sequence variant that causes a change at the 5th base pair after the start of the intron in the orientation of the transcript"
|
|
611
|
+
},
|
|
612
|
+
"splice_region_variant": {
|
|
613
|
+
"label": "splice region variant",
|
|
614
|
+
"description": "A sequence variant in which a change has occurred within the region of the splice site, either within 1-3 bases of the exon or 3-8 bases of the intron"
|
|
615
|
+
},
|
|
616
|
+
"splice_donor_region_variant": {
|
|
617
|
+
"label": "splice donor region variant",
|
|
618
|
+
"description": "A sequence variant that falls in the region between the 3rd and 6th base after splice junction (5' end of intron)"
|
|
619
|
+
},
|
|
620
|
+
"splice_polypyrimidine_tract_variant": {
|
|
621
|
+
"label": "splice polypyrimidine tract variant",
|
|
622
|
+
"description": "A sequence variant that falls in the polypyrimidine tract at 3' end of intron between 17 and 3 bases from the end (acceptor -3 to acceptor -17)"
|
|
623
|
+
},
|
|
624
|
+
"incomplete_terminal_codon_variant": {
|
|
625
|
+
"label": "incomplete terminal codon variant",
|
|
626
|
+
"description": "A sequence variant where at least one base of the final codon of an incompletely annotated transcript is changed"
|
|
627
|
+
},
|
|
628
|
+
"start_retained_variant": {
|
|
629
|
+
"label": "start retained variant",
|
|
630
|
+
"description": "A sequence variant where at least one base in the start codon is changed, but the start remains"
|
|
631
|
+
},
|
|
632
|
+
"stop_retained_variant": {
|
|
633
|
+
"label": "stop retained variant",
|
|
634
|
+
"description": "A sequence variant where at least one base in the terminator codon is changed, but the terminator remains"
|
|
635
|
+
},
|
|
636
|
+
"synonymous_variant": {
|
|
637
|
+
"label": "synonymous variant",
|
|
638
|
+
"description": "A sequence variant where there is no resulting change to the encoded amino acid"
|
|
639
|
+
},
|
|
640
|
+
"coding_sequence_variant": {
|
|
641
|
+
"label": "coding sequence variant",
|
|
642
|
+
"description": "A sequence variant that changes the coding sequence"
|
|
643
|
+
},
|
|
644
|
+
"mature_miRNA_variant": {
|
|
645
|
+
"label": "mature miRNA variant",
|
|
646
|
+
"description": "A transcript variant located with the sequence of the mature miRNA"
|
|
647
|
+
},
|
|
648
|
+
"5_prime_UTR_variant": {
|
|
649
|
+
"label": "5 prime UTR variant",
|
|
650
|
+
"description": "A UTR variant of the 5' UTR"
|
|
651
|
+
},
|
|
652
|
+
"3_prime_UTR_variant": {
|
|
653
|
+
"label": "3 prime UTR variant",
|
|
654
|
+
"description": "A UTR variant of the 3' UTR"
|
|
655
|
+
},
|
|
656
|
+
"non_coding_transcript_exon_variant": {
|
|
657
|
+
"label": "non coding transcript exon variant",
|
|
658
|
+
"description": "A sequence variant that changes non-coding exon sequence in a non-coding transcript"
|
|
659
|
+
},
|
|
660
|
+
"intron_variant": {
|
|
661
|
+
"label": "intron variant",
|
|
662
|
+
"description": "A transcript variant occurring within an intron"
|
|
663
|
+
},
|
|
664
|
+
"NMD_transcript_variant": {
|
|
665
|
+
"label": "NMD transcript variant",
|
|
666
|
+
"description": "A variant in a transcript that is the target of NMD"
|
|
667
|
+
},
|
|
668
|
+
"non_coding_transcript_variant": {
|
|
669
|
+
"label": "non coding transcript variant",
|
|
670
|
+
"description": "A transcript variant of a non coding RNA gene"
|
|
671
|
+
},
|
|
672
|
+
"coding_transcript_variant": {
|
|
673
|
+
"label": "coding transcript variant",
|
|
674
|
+
"description": "A transcript variant of a protein coding gene"
|
|
675
|
+
},
|
|
676
|
+
"upstream_gene_variant": {
|
|
677
|
+
"label": "upstream gene variant",
|
|
678
|
+
"description": "A sequence variant located 5' of a gene"
|
|
679
|
+
},
|
|
680
|
+
"downstream_gene_variant": {
|
|
681
|
+
"label": "downstream gene variant",
|
|
682
|
+
"description": "A sequence variant located 3' of a gene"
|
|
683
|
+
},
|
|
684
|
+
"TFBS_ablation": {
|
|
685
|
+
"label": "TFBS ablation",
|
|
686
|
+
"description": "A feature ablation whereby the deleted region includes a transcription factor binding site"
|
|
687
|
+
},
|
|
688
|
+
"TFBS_amplification": {
|
|
689
|
+
"label": "TFBS amplification",
|
|
690
|
+
"description": "A feature amplification of a region containing a transcription factor binding site"
|
|
691
|
+
},
|
|
692
|
+
"TF_binding_site_variant": {
|
|
693
|
+
"label": "TF binding site variant",
|
|
694
|
+
"description": "A sequence variant located within a transcription factor binding site"
|
|
695
|
+
},
|
|
696
|
+
"regulatory_region_ablation": {
|
|
697
|
+
"label": "regulatory region ablation",
|
|
698
|
+
"description": "A feature ablation whereby the deleted region includes a regulatory region"
|
|
699
|
+
},
|
|
700
|
+
"regulatory_region_amplification": {
|
|
701
|
+
"label": "regulatory region amplification",
|
|
702
|
+
"description": "A feature amplification of a region containing a regulatory region"
|
|
703
|
+
},
|
|
704
|
+
"regulatory_region_variant": {
|
|
705
|
+
"label": "regulatory region variant",
|
|
706
|
+
"description": "A sequence variant located within a regulatory region"
|
|
707
|
+
},
|
|
708
|
+
"intergenic_variant": {
|
|
709
|
+
"label": "intergenic variant",
|
|
710
|
+
"description": "A sequence variant located in the intergenic region, between genes"
|
|
711
|
+
},
|
|
712
|
+
"sequence_variant": {
|
|
713
|
+
"label": "sequence variant",
|
|
714
|
+
"description": "A sequence_variant is a non exact copy of a sequence_feature or genome exhibiting one or more sequence_alteration"
|
|
715
|
+
}
|
|
716
|
+
}
|
|
327
717
|
},
|
|
328
718
|
"Existing_variation": {
|
|
329
719
|
"label": "Ex. var.",
|
|
@@ -509,6 +899,13 @@
|
|
|
509
899
|
"numberCount": 1,
|
|
510
900
|
"type": "STRING"
|
|
511
901
|
},
|
|
902
|
+
"hmtvar_DiseaseScore": {
|
|
903
|
+
"label": "HmtVar disease score",
|
|
904
|
+
"description": "HmtVar disease score for mtDNA tRNA variants",
|
|
905
|
+
"numberType": "NUMBER",
|
|
906
|
+
"numberCount": 1,
|
|
907
|
+
"type": "FLOAT"
|
|
908
|
+
},
|
|
512
909
|
"HPO": {
|
|
513
910
|
"label": "HPO",
|
|
514
911
|
"description": "Human Phenotype Ontology (HPO) terms describing phenotypic abnormalities, see https://hpo.jax.org/ and https://doi.org/10.1093/nar/gkad1005",
|
|
@@ -599,6 +996,20 @@
|
|
|
599
996
|
}
|
|
600
997
|
}
|
|
601
998
|
},
|
|
999
|
+
"mitoTip_Quartile": {
|
|
1000
|
+
"label": "MitoTIP Quartile",
|
|
1001
|
+
"description": "MitoTIP score quartile",
|
|
1002
|
+
"numberType": "NUMBER",
|
|
1003
|
+
"numberCount": 1,
|
|
1004
|
+
"type": "STRING"
|
|
1005
|
+
},
|
|
1006
|
+
"mitoTip_Score": {
|
|
1007
|
+
"label": "MitoTip Score",
|
|
1008
|
+
"description": "MitoTIP score for mtDNA tRNA variants",
|
|
1009
|
+
"numberType": "NUMBER",
|
|
1010
|
+
"numberCount": 1,
|
|
1011
|
+
"type": "FLOAT"
|
|
1012
|
+
},
|
|
602
1013
|
"ncER": {
|
|
603
1014
|
"label": "ncER",
|
|
604
1015
|
"description": "Non-coding essential regulation, from: 0(probably not essential for regulation) to 100 (probably essential for regulation).",
|
|
@@ -704,6 +1115,19 @@
|
|
|
704
1115
|
"numberCount": 1,
|
|
705
1116
|
"type": "STRING"
|
|
706
1117
|
},
|
|
1118
|
+
"SYMBOL_SOURCE": {
|
|
1119
|
+
"label": "Symbol Source",
|
|
1120
|
+
"description": "The source of the symbol.",
|
|
1121
|
+
"numberType": "NUMBER",
|
|
1122
|
+
"numberCount": 1,
|
|
1123
|
+
"type": "CATEGORICAL",
|
|
1124
|
+
"categories": {
|
|
1125
|
+
"EntrezGene": {
|
|
1126
|
+
"label": "EntrezGene",
|
|
1127
|
+
"description": "Symbol source Entrez Gene"
|
|
1128
|
+
}
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
707
1131
|
"VIPP": {
|
|
708
1132
|
"label": "VIP path",
|
|
709
1133
|
"description": "VIP decision tree path",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
##INFO=<ID=MATE_BND_DEPTH,Number=1,Type=Integer,Description="Read depth at remote translocation mate breakend">
|
|
15
15
|
##INFO=<ID=ReverseComplementedAlleles,Number=0,Type=Flag,Description="The REF and the ALT alleles have been reverse complemented in liftover since the mapping from the previous reference to the current one was on the negative strand.">
|
|
16
16
|
##INFO=<ID=SVLEN,Number=.,Type=Integer,Description="Difference in length between REF and ALT alleles">
|
|
17
|
-
##INFO=<ID=SVTYPE,Number=1,Type=String,Description="Type of structural variant">
|
|
18
17
|
##INFO=<ID=SwappedAlleles,Number=0,Type=Flag,Description="The REF and the ALT alleles have been swapped in liftover due to changes in the reference. It is possible that not all INFO annotations reflect this swap, and in the genotypes, only the GT:VIPC_S, PL, and AD fields have been modified. You should check the TAGS_TO_REVERSE parameter that was used during the LiftOver to be sure.">
|
|
19
18
|
##INFO=<ID=gnomAD,Number=.,Type=String,Description="/groups/solve-rd/tmp10/vip/resources/GRCh38/gnomad.genomes.v3.1.2.sites.stripped.vcf.gz (exact)">
|
|
20
19
|
##INFO=<ID=gnomAD_AF,Number=.,Type=String,Description="AF field from /groups/solve-rd/tmp10/vip/resources/GRCh38/gnomad.genomes.v3.1.2.sites.stripped.vcf.gz">
|
|
@@ -242,16 +241,11 @@ chr1 9982480 . C T . PASS CSQ=T|missense_variant|MODERATE|NMNAT1|64802|Transcrip
|
|
|
242
241
|
chr1 16049917 n_alt G N . PASS CSQ=N|splice_donor_variant|HIGH|CLCNKB|1188|Transcript|NM_000085.5|protein_coding||10/19||||||||CS1211892&CS971662|1||1||1|EntrezGene||||||||||1&1|||||||||||||||||VUS|0.45317215|HP:0000951||AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,N|splice_donor_variant|HIGH|CLCNKB|1188|Transcript|NM_001165945.2|protein_coding||3/12||||||||CS1211892&CS971662|1||1|||EntrezGene||||||||||1&1|||||||||||||||||VUS|0.45317215|HP:0000951||AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT:VIPC_S 1|1:U1
|
|
243
242
|
chr1 17022724 n_ref N A . PASS CSQ=A|coding_sequence_variant|MODIFIER|SDHB|6390|Transcript|NM_003000.3|protein_coding|7/8||NM_003000.3:c.649C>T||662/1015|649/843|217/280||Ngc/Tgc|CM1210440&CM094752|1||-1||1|EntrezGene||||||||||1&1|||||||||||||||||VUS|0.20536129|HP:0000951||AD&AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT:VIPC_S 1/0:U1
|
|
244
243
|
chr1 17022724 g_ref G A . PASS CSQ=A|missense_variant|MODERATE|SDHB|6390|Transcript|NM_003000.3|protein_coding|7/8||NM_003000.3:c.649C>T|NP_002991.2:p.Arg217Cys|662/1015|649/843|217/280|R/C|Cgc/Tgc|rs200245469&CM1210440&CM094752|1||-1||1|EntrezGene|||||0|1||pathogenic&likely_pathogenic||1&1&1||||||||28|6|6|5|0.00|0.00|0.00|0.00|SDHB|VUS|0.88626856|HP:0000951||AD&AR|LP||||chr1:17022724-17022724|6.57186e-06|0|P|filter&vkgl&exit_p| GT:VIPC_S 1/0:U1
|
|
245
|
-
chr1 152548312 symbolic1 A <DEL> . PASS CSQ=deletion|transcript_ablation|HIGH|LCE3D|84648|Transcript|NM_032563.2|protein_coding|||||||||||1||-1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|upstream_gene_variant|MODIFIER|LCE3C|353144|Transcript|NM_178434.3|protein_coding|||||||||||1|2608|1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|transcript_ablation|HIGH|LCE3E|353145|Transcript|NM_178435.4|protein_coding|||||||||||1||-1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000372937||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000013752||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000372939||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000372940||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001171682||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000254476||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000931036||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation®ulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001171683||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00191731851||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00189591243||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00078414360||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00078058090||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00000257725||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;SVLEN=-49314;SVTYPE=DEL GT:VIPC_S 1|1:U1
|
|
246
|
-
chr2 47408528 symbolic2 G <INS> . PASS CSQ=insertion|splice_polypyrimidine_tract_variant&coding_sequence_variant&intron_variant&feature_elongation|LOW|MSH2|4436|Transcript|NM_000251.3|protein_coding|2-8/16|2-8/15|||376-?/3115|340-?/2805|114-?/934||||1||1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|splice_polypyrimidine_tract_variant&coding_sequence_variant&intron_variant&feature_elongation|LOW|MSH2|4436|Transcript|NM_001258281.1|protein_coding|3-9/17|3-9/16|||281-?/3025|142-?/2607|48-?/868||||1||1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001031132||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000605106||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001031134||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000605107||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000605109||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001031136||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000605111||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00526224866||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00200869503||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00037157434||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00211420385||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00211397893||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00191281526||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00524206131||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00191128737||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00523779682||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00523716616||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00524736808||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522488084||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522348227||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00189912570||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00151154280||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00521803756||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00525714757||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522888937||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00003947213||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00190965228||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00189989760||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00190028111||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00525662463||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00190489771||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00524615628||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00000366692||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00208026052||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;SVLEN=-49314;SVTYPE=INS GT:VIPC_S 0|0:U1
|
|
247
244
|
chr4 105399137 . G A . PASS CSQ=A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_006903.4|protein_coding|7/11||NM_006903.4:c.596C>T|NP_008834.3:p.Pro199Leu|616/1586|596/918|199/305|P/L|cCg/cTg|rs138215926&CM1610192|1||-1|||EntrezGene|||||0|0.985||pathogenic||1&1||||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.79802734|||AR|LP||||chr4:105399137-105399137|0.000434159|0|P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_176866.2|protein_coding|4/8||NM_176866.2:c.377C>T|NP_789842.2:p.Pro126Leu|397/1367|377/699|126/232|P/L|cCg/cTg|rs138215926&CM1610192|1||-1|||EntrezGene|||||0|0.992||pathogenic||1&1||||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.76154137|||AR|LP||||chr4:105399137-105399137|0.000434159|0|P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_176867.3|protein_coding|2/6||NM_176867.3:c.185C>T|NP_789843.2:p.Pro62Leu|205/1175|185/507|62/168|P/L|cCg/cTg|rs138215926&CM1610192|1||-1|||EntrezGene|||||0|0.995||pathogenic||1&1||||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.7596747|||AR|LP||||chr4:105399137-105399137|0.000434159|0|P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_176869.3|protein_coding|8/12||NM_176869.3:c.683C>T|NP_789845.1:p.Pro228Leu|695/1665|683/1005|228/334|P/L|cCg/cTg|rs138215926&CM1610192|1||-1||1|EntrezGene|||||0|0.993||pathogenic||1&1||||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.7574089|||AR|LP||||chr4:105399137-105399137|0.000434159|0|P|filter&vkgl&exit_p|,A|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001252884|enhancer||||||||||rs138215926&CM1610192|1|||||||||||||pathogenic||1&1||||||||||||||||||||||||||chr4:105399137-105399137|0.000434159|0|P|filter&vkgl&clinVar&exit_p| GT:VIPC_S 0/0:U1
|
|
248
|
-
chr7 41977712 single_breakend_nation C C. . PASS CSQ=BND|coding_sequence_variant|MODIFIER|GLI3|2737|Transcript|NM_000168.6|protein_coding|12/15||||1938/8405|1657/4743|553/1580||||1||-1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000823237||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000325885||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;SVTYPE=BND GT:VIPC_S 0/1:U1
|
|
249
245
|
chr7 42025358 . GACTC G . PASS CSQ=-|frameshift_variant|HIGH|GLI3|2737|Transcript|NM_000168.6|protein_coding|9/15||NM_000168.6:c.1258_1261del|NP_000159.3:p.Glu420LeufsTer3|1539-1542/8405|1258-1261/4743|420-421/1580|ES/X|GAGTct/ct||1||-1||1|EntrezGene||||||||||||||||||18|21|-40|6|0.00|0.00|0.00|0.00|GLI3|VUS|0.98730624||1|AD|LP|||||||P|filter&vkgl&exit_p| GT:VIPC_S 0/1:U1
|
|
250
|
-
chr8 60852584 breakend1 G ]11:134014225]G . PASS BND_DEPTH=26;CSQ=BND|intron_variant|MODIFIER|CHD7|55636|Transcript|NM_001316690.1|protein_coding||2/4|||||||||1||1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|coding_sequence_variant|MODIFIER|CHD7|55636|Transcript|NM_017780.4|protein_coding|30/38||||6499/11606|5982/8994|1994/2997||||1||1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001138764||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;MATEID=breakend2;MATE_BND_DEPTH=39;SVTYPE=BND GT:VIPC_S 0/0:U1
|
|
251
246
|
chr8 144085597 . CAG C . PASS CSQ=-|frameshift_variant|HIGH|GPAA1|8733|Transcript|NM_003801.4|protein_coding|11/12||NM_003801.4:c.1477_1478del|NP_003792.1:p.Arg493GlyfsTer152|1574-1575/2054|1477-1478/1866|493/621|R/X|AGg/g|rs782339984|1||1||1|EntrezGene||||||||pathogenic||1||||||||-15|-8|12|-21|0.02|0.00|0.00|0.00|GPAA1|VUS|0.99313146|||AR|LP||||chr8:144085598-144085600|0.000144549|0|P|filter&vkgl&exit_p|,-|downstream_gene_variant|MODIFIER|EXOSC4|54512|Transcript|NM_019037.3|protein_coding||||||||||rs782339984|1|4950|1|||EntrezGene||||||||pathogenic||1||||||||-15|-8|12|-21|0.02|0.00|0.00|0.00|GPAA1|VUS|0.0936931||||||||chr8:144085598-144085600|0.000144549|0|P|filter&vkgl&clinVar&exit_p| GT:VIPC_S 1|1:U1
|
|
252
247
|
chr9 104784352 . AAAGAT A . PASS CSQ=-|frameshift_variant|HIGH|ABCA1|19|Transcript|NM_005502.4|protein_coding|50/50||NM_005502.4:c.6744_6748del|NP_005493.2:p.Phe2250ThrfsTer3|7057-7061/10408|6744-6748/6786|2248-2250/2261|TSF/TX|acATCTTtt/actt||1||-1||1|EntrezGene|||||||||||||||||||||||||||VUS|0.983508|HP:0000951||AD&AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,-|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000889339|promoter_flanking_region|||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT:VIPC_S 0/1:U1
|
|
253
248
|
chr10 124402930 . G C . PASS CSQ=C|stop_gained|HIGH|OAT|4942|Transcript|NM_000274.4|protein_coding|7/10||NM_000274.4:c.897C>G|NP_000265.1:p.Tyr299Ter|977/2039|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1||1|EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.98058724|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001171814.2|protein_coding|6/9||NM_001171814.2:c.483C>G|NP_001165285.1:p.Tyr161Ter|749/1811|483/906|161/301|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9785161|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322965.2|protein_coding|7/10||NM_001322965.2:c.897C>G|NP_001309894.1:p.Tyr299Ter|972/2034|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.98058724|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322966.2|protein_coding|8/11||NM_001322966.2:c.897C>G|NP_001309895.1:p.Tyr299Ter|1292/2354|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9811948|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322967.2|protein_coding|8/11||NM_001322967.2:c.897C>G|NP_001309896.1:p.Tyr299Ter|1097/2159|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9812247|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322968.2|protein_coding|9/12||NM_001322968.2:c.897C>G|NP_001309897.1:p.Tyr299Ter|1184/2246|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9810348|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322969.2|protein_coding|8/11||NM_001322969.2:c.897C>G|NP_001309898.1:p.Tyr299Ter|1064/2126|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.98210436|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322970.2|protein_coding|9/12||NM_001322970.2:c.897C>G|NP_001309899.1:p.Tyr299Ter|1280/2342|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9811948|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322971.2|protein_coding|5/8||NM_001322971.2:c.576C>G|NP_001309900.1:p.Tyr192Ter|656/1718|576/999|192/332|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9727213|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322974.2|protein_coding|7/10||NM_001322974.2:c.297C>G|NP_001309903.1:p.Tyr99Ter|863/1925|297/720|99/239|Y/*|taC/taG|rs121965057&CM920525|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic||1&1|1737786&23076989&1609808&22674428|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.974531|||AR|LP||||chr10:124402930-124402930|2.6295e-05|0|P|filter&vkgl&exit_p| GT:VIPC_S 1/1:U1
|
|
254
|
-
chr11 134144330 breakend2 G G[8:61765143[ . PASS BND_DEPTH=39;CSQ=BND|intron_variant|MODIFIER|JAM3|83700|Transcript|NM_001205329.2|protein_coding||3/7|||||||||1||1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|coding_sequence_variant|MODIFIER|JAM3|83700|Transcript|NM_032801.5|protein_coding|4/9||||359/3765|347/933|116/310||||1||1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;MATEID=breakend1;MATE_BND_DEPTH=26;SVTYPE=BND GT:VIPC_S 1/0:U1
|
|
255
249
|
chr13 76995993 . G A . PASS CSQ=A|missense_variant|MODERATE|CLN5|1203|Transcript|NM_001366624.2|protein_coding|3/5||NM_001366624.2:c.431G>A|NP_001353553.1:p.Cys144Tyr|449/5286|431/594|144/197|C/Y|tGt/tAt|rs1566219136|1||1|||EntrezGene|||||0|0.995||pathogenic||1||||||||-27|-43|-27|-1|0.00|0.00|0.01|0.00|CLN5|VUS|0.82795596|||AR|LP|||||||P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|CLN5|1203|Transcript|NM_006493.4|protein_coding|3/4||NM_006493.4:c.431G>A|NP_006484.2:p.Cys144Tyr|449/5243|431/1077|144/358|C/Y|tGt/tAt|rs1566219136|1||1||1|EntrezGene|||||0|0.999||pathogenic||1||||||||-27|-43|-27|-1|0.00|0.00|0.01|0.00|CLN5|VUS|0.8734921|||AR|LP|||||||P|filter&vkgl&exit_p| GT:VIPC_S 1/1:U1
|
|
256
250
|
chr14 88870063 . TG T . PASS CSQ=-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001288781.1|protein_coding|12/16||NM_001288781.1:c.963del|NP_001275710.1:p.Met321IlefsTer15|1159/2378|963/1596|321/531|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9879852|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001288782.1|protein_coding|10/14||NM_001288782.1:c.321del|NP_001275711.1:p.Met107IlefsTer15|1079/2298|321/954|107/317|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.985551|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001288783.1|protein_coding|11/15||NM_001288783.1:c.198del|NP_001275712.1:p.Met66IlefsTer15|1051/2270|198/831|66/276|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.98350626|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001366535.2|protein_coding|10/13||NM_001366535.2:c.885del|NP_001353464.1:p.Met295IlefsTer15|942/5160|885/1434|295/477|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9825065|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001366536.2|protein_coding|9/12||NM_001366536.2:c.795del|NP_001353465.1:p.Met265IlefsTer15|852/5070|795/1344|265/447|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9880476|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_144596.4|protein_coding|11/15||NM_144596.4:c.915del|NP_653197.2:p.Met305IlefsTer15|972/2183|915/1548|305/515|M/X|atG/at|rs1431207606|1||1||1|EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.97812086|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_198309.3|protein_coding|11/15||NM_198309.3:c.885del|NP_938051.1:p.Met295IlefsTer15|1081/2300|885/1518|295/505|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9879701|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_198310.3|protein_coding|10/14||NM_198310.3:c.795del|NP_938052.1:p.Met265IlefsTer15|991/2210|795/1428|265/475|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.98293847|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|non_coding_transcript_exon_variant|MODIFIER|TTC8|123016|Transcript|NR_159362.2|misc_RNA|11/15||NR_159362.2:n.1002del||1002/5304|||||rs1431207606|1||1|||EntrezGene||||||||likely_pathogenic||1||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.20394427|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p| GT:VIPC_S 0|1:U1
|
|
257
251
|
chr14 104701523 . T G . PASS CSQ=G|missense_variant|MODERATE|INF2|64423|Transcript|NM_001031714.4|protein_coding|2/22||NM_001031714.4:c.158T>G|NP_001026884.3:p.Leu53Arg|289/7566|158/3723|53/1240|L/R|cTg/cGg||1||1|||EntrezGene|||||0|0.999||||||||||||-28|-2|37|-2|0.00|0.00|0.00|0.00|INF2|VUS|0.89743406|||AD|LP|||||||P|filter&vkgl&exit_p|,G|missense_variant|MODERATE|INF2|64423|Transcript|NM_022489.4|protein_coding|2/23||NM_022489.4:c.158T>G|NP_071934.3:p.Leu53Arg|289/7623|158/3750|53/1249|L/R|cTg/cGg||1||1||1|EntrezGene|||||0|0.999||||||||||||-28|-2|37|-2|0.00|0.00|0.00|0.00|INF2|VUS|0.89743406|||AD|LP|||||||P|filter&vkgl&exit_p|,G|missense_variant|MODERATE|INF2|64423|Transcript|NM_032714.3|protein_coding|2/5||NM_032714.3:c.158T>G|NP_116103.1:p.Leu53Arg|289/1692|158/705|53/234|L/R|cTg/cGg||1||1|||EntrezGene|||||0|0.999||||||||||||-28|-2|37|-2|0.00|0.00|0.00|0.00|INF2|VUS|0.89743406|||AD|LP|||||||P|filter&vkgl&exit_p| GT:VIPC_S 0/0:U1
|
|
Binary file
|
|
Binary file
|
package/src/utils/query/query.ts
CHANGED
|
@@ -18,7 +18,7 @@ export function createQuery(
|
|
|
18
18
|
const queryParts: Query[] = [];
|
|
19
19
|
|
|
20
20
|
const queryVariantType = createQueryVariantType(variantType);
|
|
21
|
-
if (queryVariantType !== null) {
|
|
21
|
+
if (queryVariantType !== null && Object.hasOwn(meta.records.info, "SVTYPE")) {
|
|
22
22
|
queryParts.push(queryVariantType);
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -37,6 +37,7 @@ describe("query", () => {
|
|
|
37
37
|
const fieldMetadata = { id: "GT", number: { type: "NUMBER", count: 1 } } as FieldMetadataWrapper;
|
|
38
38
|
const vcfMetadata = {
|
|
39
39
|
format: { GT: fieldMetadata },
|
|
40
|
+
info: { SVTYPE: fieldMetadata},
|
|
40
41
|
} as Partial<VcfMetadataContainer> as VcfMetadataContainer;
|
|
41
42
|
const meta = {
|
|
42
43
|
app: {},
|
|
@@ -60,6 +61,33 @@ describe("query", () => {
|
|
|
60
61
|
expect(createQueryFilters).toHaveBeenCalledWith(configFilters, filterValues);
|
|
61
62
|
});
|
|
62
63
|
|
|
64
|
+
test("variant type missing, sample and filters", () => {
|
|
65
|
+
const querySample: Query = { selector: "c", operator: "==", args: "d" };
|
|
66
|
+
const queryFilters: Query = { selector: "e", operator: "==", args: "f" };
|
|
67
|
+
const fieldMetadata = { id: "GT", number: { type: "NUMBER", count: 1 } } as FieldMetadataWrapper;
|
|
68
|
+
const vcfMetadata = {
|
|
69
|
+
format: { GT: fieldMetadata },
|
|
70
|
+
info: { },
|
|
71
|
+
} as Partial<VcfMetadataContainer> as VcfMetadataContainer;
|
|
72
|
+
const meta = {
|
|
73
|
+
app: {},
|
|
74
|
+
records: vcfMetadata,
|
|
75
|
+
variantTypeIds: {},
|
|
76
|
+
} as MetadataContainer;
|
|
77
|
+
vi.mocked(createQuerySample).mockReturnValue(querySample);
|
|
78
|
+
vi.mocked(createQueryFilters).mockReturnValue(queryFilters);
|
|
79
|
+
|
|
80
|
+
expect(createQuery(config, meta, variantType, sample, filterValues)).toStrictEqual({
|
|
81
|
+
args: [
|
|
82
|
+
{ selector: "c", operator: "==", args: "d" },
|
|
83
|
+
{ selector: "e", operator: "==", args: "f" },
|
|
84
|
+
],
|
|
85
|
+
operator: "and",
|
|
86
|
+
});
|
|
87
|
+
expect(createQuerySample).toHaveBeenCalledWith(configVip, sample, meta);
|
|
88
|
+
expect(createQueryFilters).toHaveBeenCalledWith(configFilters, filterValues);
|
|
89
|
+
});
|
|
90
|
+
|
|
63
91
|
test("sample", () => {
|
|
64
92
|
const querySample: Query = { selector: "c", operator: "==", args: "d" };
|
|
65
93
|
const fieldMetadata = { id: "GT", number: { type: "NUMBER", count: 1 } } as FieldMetadataWrapper;
|