@molgenis/vip-report-template 6.1.1 → 7.0.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/.nvmrc +1 -1
- package/.travis.yml +9 -11
- package/README.md +411 -1
- package/eslint.config.mjs +11 -0
- package/package.json +40 -35
- package/scripts/deploy_npm_registry.sh +5 -0
- package/src/App.tsx +35 -29
- package/src/assets/sass/main.scss +12 -4
- package/src/components/Allele.tsx +95 -0
- package/src/components/Anchor.tsx +1 -1
- package/src/components/Breadcrumb.tsx +8 -5
- package/src/components/DatasetDropdown.tsx +10 -23
- package/src/components/ErrorNotification.tsx +9 -0
- package/src/components/GenomeBrowser.tsx +40 -23
- package/src/components/HpoTerm.tsx +1 -1
- package/src/components/{record/Pager.tsx → Pager.tsx} +21 -14
- package/src/components/RecordsPerPage.tsx +9 -7
- package/src/components/RecordsTable.tsx +130 -0
- package/src/components/SampleTable.tsx +70 -98
- package/src/components/SearchBox.tsx +8 -2
- package/src/components/Sort.tsx +28 -25
- package/src/components/Table.tsx +16 -0
- package/src/components/Tooltip.tsx +20 -0
- package/src/components/VariantBreadcrumb.tsx +54 -0
- package/src/components/VariantConsequenceContainer.tsx +100 -0
- package/src/components/VariantConsequenceTable.tsx +58 -0
- package/src/components/VariantContainer.tsx +71 -0
- package/src/components/VariantFilters.tsx +27 -0
- package/src/components/VariantGenotypeTable.tsx +44 -0
- package/src/components/VariantInfoTable.tsx +24 -33
- package/src/components/VariantResults.tsx +103 -0
- package/src/components/VariantTable.tsx +62 -66
- package/src/components/VariantTypeSelect.tsx +34 -0
- package/src/components/VariantsContainer.tsx +150 -0
- package/src/components/VariantsContainerHeader.tsx +70 -0
- package/src/components/field/Field.tsx +80 -0
- package/src/components/field/FieldAlt.tsx +19 -0
- package/src/components/field/FieldChrom.tsx +6 -0
- package/src/components/{record/Id.tsx → field/FieldFilter.tsx} +2 -1
- package/src/components/field/FieldFormat.tsx +10 -0
- package/src/components/{record/Filter.tsx → field/FieldId.tsx} +1 -1
- package/src/components/field/FieldPos.tsx +6 -0
- package/src/components/field/FieldQual.tsx +6 -0
- package/src/components/field/FieldRef.tsx +8 -0
- package/src/components/field/composed/FieldClinVar.tsx +72 -0
- package/src/components/field/composed/FieldComposed.tsx +68 -0
- package/src/components/field/composed/FieldGene.tsx +39 -0
- package/src/components/field/composed/FieldGenotype.tsx +35 -0
- package/src/components/{record/format/GenotypeField.tsx → field/composed/FieldGenotypeSnvSv.tsx} +20 -16
- package/src/components/field/composed/FieldGenotypeStr.tsx +31 -0
- package/src/components/field/composed/FieldGnomAd.tsx +58 -0
- package/src/components/field/composed/FieldHpo.tsx +50 -0
- package/src/components/field/composed/FieldInheritanceModes.tsx +32 -0
- package/src/components/field/composed/FieldLocus.tsx +18 -0
- package/src/components/field/composed/FieldVipC.tsx +25 -0
- package/src/components/field/composed/FieldVipCS.tsx +15 -0
- package/src/components/field/composed/FieldVkgl.tsx +37 -0
- package/src/components/field/genotype/FieldGenotype.tsx +19 -0
- package/src/components/field/genotype/FieldGenotypeType.tsx +9 -0
- package/src/components/field/info/FieldConsequence.tsx +15 -0
- package/src/components/{record/info/Hgvs.tsx → field/info/FieldHgvs.tsx} +4 -6
- package/src/components/field/info/FieldInfo.tsx +27 -0
- package/src/components/{record/info/PubMed.tsx → field/info/FieldPubMed.tsx} +4 -7
- package/src/components/field/typed/FieldCategorical.tsx +17 -0
- package/src/components/{record/field/FieldValueCharacter.tsx → field/typed/FieldCharacter.tsx} +3 -2
- package/src/components/{record/field/FieldValueFlag.tsx → field/typed/FieldFlag.tsx} +3 -2
- package/src/components/{record/field/FieldValueFloat.tsx → field/typed/FieldFloat.tsx} +3 -2
- package/src/components/{record/field/FieldValueInteger.tsx → field/typed/FieldInteger.tsx} +3 -2
- package/src/components/{record/field/FieldValueString.tsx → field/typed/FieldString.tsx} +3 -2
- package/src/components/field/typed/FieldTyped.tsx +20 -0
- package/src/components/field/typed/FieldTypedItem.tsx +49 -0
- package/src/components/field/typed/FieldTypedMultiple.tsx +21 -0
- package/src/components/filter/Filter.tsx +56 -48
- package/src/components/filter/FilterWrapper.scss +23 -0
- package/src/components/filter/FilterWrapper.tsx +63 -0
- package/src/components/filter/composed/FilterAllelicImbalance.tsx +26 -0
- package/src/components/filter/composed/FilterComposed.tsx +92 -0
- package/src/components/filter/composed/FilterDeNovo.tsx +35 -0
- package/src/components/filter/composed/FilterHpo.tsx +16 -0
- package/src/components/filter/composed/FilterInheritance.tsx +42 -0
- package/src/components/filter/composed/FilterLocus.tsx +75 -0
- package/src/components/filter/composed/FilterVipC.tsx +16 -0
- package/src/components/filter/composed/FilterVipCS.tsx +16 -0
- package/src/components/filter/fixed/FilterAlt.tsx +20 -0
- package/src/components/filter/fixed/FilterChrom.tsx +22 -0
- package/src/components/filter/fixed/FilterFilter.tsx +20 -0
- package/src/components/filter/fixed/FilterFixed.tsx +96 -0
- package/src/components/filter/fixed/FilterId.tsx +20 -0
- package/src/components/filter/fixed/FilterPos.tsx +22 -0
- package/src/components/filter/fixed/FilterQual.tsx +21 -0
- package/src/components/filter/fixed/FilterRef.tsx +22 -0
- package/src/components/filter/typed/FilterCategorical.tsx +119 -0
- package/src/components/filter/typed/FilterFlag.tsx +23 -0
- package/src/components/filter/typed/FilterInterval.tsx +72 -0
- package/src/components/filter/typed/FilterString.tsx +43 -0
- package/src/components/filter/typed/FilterTyped.tsx +56 -0
- package/src/components/form/ButtonApply.tsx +11 -0
- package/src/components/form/ButtonDownload.tsx +11 -0
- package/src/components/form/ButtonReset.tsx +9 -0
- package/src/components/{Checkbox.tsx → form/Checkbox.tsx} +4 -9
- package/src/components/form/Input.tsx +19 -0
- package/src/components/form/Select.scss +7 -0
- package/src/components/form/Select.tsx +34 -0
- package/src/components/tree/DecisionTreeBoolMultiQuery.tsx +1 -1
- package/src/components/tree/DecisionTreeBoolQuery.tsx +1 -1
- package/src/components/tree/DecisionTreeNode.tsx +41 -39
- package/src/components/tree/DecisionTreeNodeBool.tsx +1 -1
- package/src/components/tree/DecisionTreeNodeBoolMulti.tsx +1 -1
- package/src/components/tree/DecisionTreeNodeCategorical.tsx +1 -1
- package/src/components/tree/DecisionTreeNodeExists.tsx +1 -1
- package/src/components/tree/DecisionTreeNodeLeaf.tsx +1 -1
- package/src/components/tree/DecisionTreeOutcomeNode.tsx +1 -1
- package/src/components/tree/DecisionTreePath.tsx +1 -1
- package/src/igv.d.ts +2 -1
- package/src/index.tsx +48 -19
- package/src/mocks/GRCh37/decisionTree.json +23 -22
- package/src/mocks/GRCh37/field_metadata.json +435 -95
- package/src/mocks/GRCh37/sampleTree.json +143 -0
- package/src/mocks/GRCh37/static.ts +63 -133
- package/src/mocks/GRCh37/vcf/family.vcf.blob +37 -31
- package/src/mocks/GRCh38/decisionTree.json +52 -33
- package/src/mocks/GRCh38/decisionTreeStr.json +572 -0
- package/src/mocks/GRCh38/fasta/chr1_149380406-149403321.fasta.gz.blob +0 -0
- package/src/mocks/GRCh38/field_metadata.json +435 -95
- package/src/mocks/GRCh38/sampleTree.json +175 -0
- package/src/mocks/GRCh38/static.ts +101 -42
- package/src/mocks/GRCh38/str.cram.blob +0 -0
- package/src/mocks/GRCh38/str.cram.crai.blob +0 -0
- package/src/mocks/GRCh38/vcf/family.vcf.blob +25 -24
- package/src/mocks/GRCh38/vcf/no_vep.vcf.blob +29 -28
- package/src/mocks/GRCh38/vcf/samples_0.vcf.blob +28 -27
- package/src/mocks/GRCh38/vcf/samples_1.vcf.blob +29 -28
- package/src/mocks/GRCh38/vcf/samples_100.vcf.blob +28 -27
- package/src/mocks/GRCh38/vcf/str.vcf.blob +321 -0
- package/src/mocks/MockApiClient.ts +341 -328
- package/src/mocks/config_cram.json +701 -0
- package/src/mocks/config_vcf.json +699 -0
- package/src/store/app.ts +30 -0
- package/src/store/index.tsx +3 -168
- package/src/store/variants.ts +182 -0
- package/src/types/config.d.ts +190 -0
- package/src/types/configCellComposed.d.ts +86 -0
- package/src/types/configCells.d.ts +129 -0
- package/src/types/configFilter.d.ts +80 -0
- package/src/types/configFilterComposed.d.ts +60 -0
- package/src/types/configSort.d.ts +13 -0
- package/src/types/filter.d.ts +17 -0
- package/src/types/store.d.ts +34 -0
- package/src/utils/api.ts +281 -0
- package/src/utils/config/config.ts +182 -0
- package/src/utils/config/configCells.ts +74 -0
- package/src/utils/config/configCellsComposed.ts +508 -0
- package/src/utils/config/configCellsField.ts +61 -0
- package/src/utils/config/configCellsFixed.ts +126 -0
- package/src/utils/config/configFilters.ts +46 -0
- package/src/utils/config/configFiltersComposed.ts +208 -0
- package/src/utils/config/configFiltersField.ts +49 -0
- package/src/utils/config/configFiltersFixed.ts +106 -0
- package/src/utils/config/configSorts.ts +44 -0
- package/src/utils/config/configValidator.ts +380 -0
- package/src/utils/config/configVip.ts +25 -0
- package/src/utils/csq.ts +115 -0
- package/src/utils/decisionTree.ts +45 -0
- package/src/utils/download.ts +30 -0
- package/src/utils/error.ts +69 -0
- package/src/utils/query/query.ts +55 -0
- package/src/utils/query/queryFilter.ts +132 -0
- package/src/utils/query/queryFilterComposed.ts +247 -0
- package/src/utils/query/queryFilterField.ts +75 -0
- package/src/utils/query/queryFilterFixed.ts +44 -0
- package/src/utils/query/querySample.ts +18 -0
- package/src/utils/query/queryVariantType.ts +76 -0
- package/src/utils/query/selector.ts +41 -0
- package/src/utils/{sortUtils.ts → query/sort.ts} +32 -11
- package/src/utils/sample.ts +19 -35
- package/src/utils/utils.ts +66 -2
- package/src/utils/variantType.ts +43 -0
- package/src/utils/vcf.ts +352 -0
- package/src/views/Help.tsx +109 -114
- package/src/views/Home.tsx +3 -2
- package/src/views/Sample.tsx +12 -7
- package/src/views/SampleVariant.tsx +23 -112
- package/src/views/SampleVariantConsequence.tsx +54 -114
- package/src/views/SampleVariants.tsx +33 -445
- package/src/views/SampleVariantsRedirect.tsx +20 -0
- package/src/views/Samples.tsx +7 -10
- package/src/views/Variant.tsx +31 -61
- package/src/views/VariantConsequence.tsx +42 -72
- package/src/views/Variants.tsx +29 -138
- package/src/views/VariantsRedirect.tsx +25 -0
- package/src/views/data/data.tsx +32 -6
- package/tests/store/variants.test.ts +122 -0
- package/tests/utils/config/config.test.ts +167 -0
- package/tests/utils/config/configCells.test.ts +86 -0
- package/tests/utils/config/configCellsComposed.test.ts +1163 -0
- package/tests/utils/config/configCellsField.test.ts +164 -0
- package/tests/utils/config/configCellsFixed.test.ts +99 -0
- package/tests/utils/config/configFilters.test.ts +80 -0
- package/tests/utils/config/configFiltersComposed.test.ts +504 -0
- package/tests/utils/config/configFiltersField.test.ts +140 -0
- package/tests/utils/config/configFiltersFixed.test.ts +81 -0
- package/tests/utils/config/configSorts.test.ts +55 -0
- package/tests/utils/config/configValidator.test.ts +56 -0
- package/tests/utils/config/configVip.test.ts +53 -0
- package/tests/utils/decisionTree.test.ts +71 -0
- package/tests/utils/download.test.ts +20 -0
- package/tests/utils/query/query.test.ts +84 -0
- package/tests/utils/query/queryFilter.test.ts +243 -0
- package/tests/utils/query/queryFilterComposed.test.ts +301 -0
- package/tests/utils/query/queryFilterField.test.ts +75 -0
- package/tests/utils/query/queryFilterFixed.test.ts +86 -0
- package/tests/utils/query/querySample.test.ts +45 -0
- package/tests/utils/query/queryVariantType.test.ts +56 -0
- package/{src/__tests__/sortUtils.test.ts → tests/utils/query/sort.test.ts} +3 -4
- package/tests/utils/sample.test.ts +259 -0
- package/tests/utils/utils.test.ts +120 -0
- package/tests/utils/variantType.test.ts +48 -0
- package/tests/utils/vcf.test.ts +649 -0
- package/tsconfig.json +6 -2
- package/vite.config.mts +20 -3
- package/.eslintignore +0 -4
- package/.eslintrc.js +0 -23
- package/src/Api.ts +0 -12
- package/src/__tests__/decisionTreeUtils.test.ts +0 -75
- package/src/__tests__/field.test.ts +0 -107
- package/src/__tests__/query.test.ts +0 -188
- package/src/__tests__/sample.test.ts +0 -184
- package/src/__tests__/utils.test.ts +0 -24
- package/src/__tests__/viewUtils.test.ts +0 -125
- package/src/components/ConsequenceTable.tsx +0 -45
- package/src/components/Error.tsx +0 -9
- package/src/components/FieldHeader.tsx +0 -26
- package/src/components/InfoCollapsablePane.tsx +0 -90
- package/src/components/VariantInfoNestedTable.tsx +0 -127
- package/src/components/VariantSampleTable.tsx +0 -58
- package/src/components/VariantsSampleTable.tsx +0 -183
- package/src/components/VariantsTable.tsx +0 -124
- package/src/components/filter/FilterAllelicBalance.tsx +0 -81
- package/src/components/filter/FilterCategorical.tsx +0 -81
- package/src/components/filter/FilterClinVar.tsx +0 -21
- package/src/components/filter/FilterGene.tsx +0 -34
- package/src/components/filter/FilterHpo.tsx +0 -161
- package/src/components/filter/FilterInheritance.tsx +0 -162
- package/src/components/filter/FilterIntegerGq.tsx +0 -47
- package/src/components/filter/FilterVI.tsx +0 -68
- package/src/components/filter/FilterVariantType.tsx +0 -146
- package/src/components/filter/Filters.tsx +0 -29
- package/src/components/filter/InfoFilter.tsx +0 -39
- package/src/components/filter/InfoFilters.tsx +0 -35
- package/src/components/filter/SampleFilters.tsx +0 -93
- package/src/components/filter/SamplesFilters.tsx +0 -33
- package/src/components/record/Allele.tsx +0 -38
- package/src/components/record/AlleleBreakend.tsx +0 -5
- package/src/components/record/AlleleMissing.tsx +0 -5
- package/src/components/record/AlleleNucs.tsx +0 -49
- package/src/components/record/AlleleSymbolic.tsx +0 -5
- package/src/components/record/Alt.tsx +0 -17
- package/src/components/record/Chrom.tsx +0 -5
- package/src/components/record/Format.tsx +0 -40
- package/src/components/record/Info.tsx +0 -55
- package/src/components/record/Pos.tsx +0 -5
- package/src/components/record/Qual.tsx +0 -5
- package/src/components/record/RecordDownload.tsx +0 -66
- package/src/components/record/Ref.tsx +0 -6
- package/src/components/record/field/Field.tsx +0 -36
- package/src/components/record/field/FieldMultipleValue.tsx +0 -22
- package/src/components/record/field/FieldSingleValue.tsx +0 -35
- package/src/components/record/info/ClinVar.tsx +0 -81
- package/src/components/record/info/Consequence.tsx +0 -18
- package/src/components/record/info/Gene.tsx +0 -56
- package/src/components/record/info/GnomAD.tsx +0 -54
- package/src/components/record/info/Hpo.tsx +0 -52
- package/src/components/record/info/InheritanceModes.tsx +0 -22
- package/src/components/record/info/VipC.tsx +0 -23
- package/src/components/record/info/Vkgl.tsx +0 -42
- package/src/mocks/GRCh37/vcf/no_vep.vcf.blob +0 -61
- package/src/mocks/GRCh37/vcf/samples_0.vcf.blob +0 -93
- package/src/mocks/GRCh37/vcf/samples_1.vcf.blob +0 -93
- package/src/mocks/GRCh37/vcf/samples_100.vcf.blob +0 -93
- package/src/utils/ApiUtils.ts +0 -259
- package/src/utils/csqUtils.ts +0 -27
- package/src/utils/decisionTreeUtils.ts +0 -14
- package/src/utils/field.ts +0 -49
- package/src/utils/query.ts +0 -154
- package/src/utils/viewUtils.ts +0 -32
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
"rootNode": "MT",
|
|
8
8
|
"nodes": {
|
|
9
9
|
"MT": {
|
|
10
|
+
"label": "MT",
|
|
10
11
|
"type": "BOOL",
|
|
11
12
|
"description": "VariantonMTchrom",
|
|
12
13
|
"query": {
|
|
@@ -25,6 +26,7 @@
|
|
|
25
26
|
}
|
|
26
27
|
},
|
|
27
28
|
"blaat": {
|
|
29
|
+
"label": "blaat",
|
|
28
30
|
"type": "EXISTS",
|
|
29
31
|
"description": "blaatannotationexists",
|
|
30
32
|
"field": "INFO/CSQ/blaat",
|
|
@@ -36,6 +38,7 @@
|
|
|
36
38
|
}
|
|
37
39
|
},
|
|
38
40
|
"csq_exists": {
|
|
41
|
+
"label": "csq_exists",
|
|
39
42
|
"type": "EXISTS",
|
|
40
43
|
"description": "CSQannotationexists",
|
|
41
44
|
"field": "INFO/CSQ/Gene",
|
|
@@ -47,6 +50,7 @@
|
|
|
47
50
|
}
|
|
48
51
|
},
|
|
49
52
|
"genepanel": {
|
|
53
|
+
"label": "genepanel",
|
|
50
54
|
"type": "BOOL",
|
|
51
55
|
"description": "genepanel",
|
|
52
56
|
"query": {
|
|
@@ -62,6 +66,7 @@
|
|
|
62
66
|
}
|
|
63
67
|
},
|
|
64
68
|
"phenotype_match": {
|
|
69
|
+
"label": "phenotype_match",
|
|
65
70
|
"type": "EXISTS",
|
|
66
71
|
"description": "Phenotypematch",
|
|
67
72
|
"field": "INFO/CSQ/HPO",
|
|
@@ -73,6 +78,7 @@
|
|
|
73
78
|
}
|
|
74
79
|
},
|
|
75
80
|
"mvl": {
|
|
81
|
+
"label": "mvl",
|
|
76
82
|
"type": "CATEGORICAL",
|
|
77
83
|
"description": "ManagedVariantListclassification",
|
|
78
84
|
"field": "INFO/VKGL_UMCG",
|
|
@@ -98,6 +104,7 @@
|
|
|
98
104
|
}
|
|
99
105
|
},
|
|
100
106
|
"vkgl": {
|
|
107
|
+
"label": "vkgl",
|
|
101
108
|
"type": "CATEGORICAL",
|
|
102
109
|
"description": "VKGLclassification",
|
|
103
110
|
"field": "INFO/VKGL",
|
|
@@ -123,14 +130,13 @@
|
|
|
123
130
|
}
|
|
124
131
|
},
|
|
125
132
|
"filter": {
|
|
133
|
+
"label": "filter",
|
|
126
134
|
"type": "BOOL",
|
|
127
135
|
"description": "Allfilterspassed",
|
|
128
136
|
"query": {
|
|
129
137
|
"field": "FILTER",
|
|
130
138
|
"operator": "==",
|
|
131
|
-
"value": [
|
|
132
|
-
"PASS"
|
|
133
|
-
]
|
|
139
|
+
"value": ["PASS"]
|
|
134
140
|
},
|
|
135
141
|
"outcomeTrue": {
|
|
136
142
|
"nextNode": "artefact"
|
|
@@ -143,6 +149,7 @@
|
|
|
143
149
|
}
|
|
144
150
|
},
|
|
145
151
|
"artefact": {
|
|
152
|
+
"label": "artefact",
|
|
146
153
|
"type": "BOOL",
|
|
147
154
|
"description": "Variantonartefactlist",
|
|
148
155
|
"query": {
|
|
@@ -161,6 +168,7 @@
|
|
|
161
168
|
}
|
|
162
169
|
},
|
|
163
170
|
"capice": {
|
|
171
|
+
"label": "capice",
|
|
164
172
|
"type": "BOOL",
|
|
165
173
|
"description": "CAPICEscore>=0.2",
|
|
166
174
|
"query": {
|
|
@@ -179,6 +187,7 @@
|
|
|
179
187
|
}
|
|
180
188
|
},
|
|
181
189
|
"gnomad": {
|
|
190
|
+
"label": "gnomad",
|
|
182
191
|
"type": "BOOL",
|
|
183
192
|
"description": "gnomAD_AF<0.02",
|
|
184
193
|
"query": {
|
|
@@ -197,20 +206,13 @@
|
|
|
197
206
|
}
|
|
198
207
|
},
|
|
199
208
|
"HLA": {
|
|
209
|
+
"label": "HLA",
|
|
200
210
|
"type": "BOOL",
|
|
201
211
|
"description": "HLA",
|
|
202
212
|
"query": {
|
|
203
213
|
"field": "INFO/CSQ/SYMBOL",
|
|
204
214
|
"operator": "in",
|
|
205
|
-
"value": [
|
|
206
|
-
"HLA-A",
|
|
207
|
-
"HLA-B",
|
|
208
|
-
"HLA-C",
|
|
209
|
-
"HLA-DRB1",
|
|
210
|
-
"HLA-DRB5",
|
|
211
|
-
"HLA-DQA1",
|
|
212
|
-
"HLA-DQB1"
|
|
213
|
-
]
|
|
215
|
+
"value": ["HLA-A", "HLA-B", "HLA-C", "HLA-DRB1", "HLA-DRB5", "HLA-DQA1", "HLA-DQB1"]
|
|
214
216
|
},
|
|
215
217
|
"outcomeTrue": {
|
|
216
218
|
"nextNode": "exit_f"
|
|
@@ -223,14 +225,13 @@
|
|
|
223
225
|
}
|
|
224
226
|
},
|
|
225
227
|
"five_prime": {
|
|
228
|
+
"label": "five_prime",
|
|
226
229
|
"type": "BOOL",
|
|
227
230
|
"description": "5primeUTR",
|
|
228
231
|
"query": {
|
|
229
232
|
"field": "INFO/CSQ/Consequence",
|
|
230
233
|
"operator": "contains",
|
|
231
|
-
"value": [
|
|
232
|
-
"5_prime_UTR_variant"
|
|
233
|
-
]
|
|
234
|
+
"value": ["5_prime_UTR_variant"]
|
|
234
235
|
},
|
|
235
236
|
"outcomeTrue": {
|
|
236
237
|
"nextNode": "exit_f"
|
|
@@ -243,15 +244,13 @@
|
|
|
243
244
|
}
|
|
244
245
|
},
|
|
245
246
|
"inframe": {
|
|
247
|
+
"label": "inframe",
|
|
246
248
|
"type": "BOOL",
|
|
247
249
|
"description": "inframeinsertionordeletion",
|
|
248
250
|
"query": {
|
|
249
251
|
"field": "INFO/CSQ/Consequence",
|
|
250
252
|
"operator": "contains_any",
|
|
251
|
-
"value": [
|
|
252
|
-
"inframe_deletion",
|
|
253
|
-
"inframe_insertion"
|
|
254
|
-
]
|
|
253
|
+
"value": ["inframe_deletion", "inframe_insertion"]
|
|
255
254
|
},
|
|
256
255
|
"outcomeTrue": {
|
|
257
256
|
"nextNode": "exit_f"
|
|
@@ -264,16 +263,13 @@
|
|
|
264
263
|
}
|
|
265
264
|
},
|
|
266
265
|
"splice_acceptor": {
|
|
266
|
+
"label": "splice_acceptor",
|
|
267
267
|
"type": "BOOL",
|
|
268
268
|
"description": "Spliceacceptor",
|
|
269
269
|
"query": {
|
|
270
270
|
"field": "INFO/CSQ/Consequence",
|
|
271
271
|
"operator": "contains_any",
|
|
272
|
-
"value": [
|
|
273
|
-
"splice_acceptor_variant",
|
|
274
|
-
"splice_donor_variant",
|
|
275
|
-
"splice_region_variant"
|
|
276
|
-
]
|
|
272
|
+
"value": ["splice_acceptor_variant", "splice_donor_variant", "splice_region_variant"]
|
|
277
273
|
},
|
|
278
274
|
"outcomeTrue": {
|
|
279
275
|
"nextNode": "exit_t"
|
|
@@ -286,15 +282,13 @@
|
|
|
286
282
|
}
|
|
287
283
|
},
|
|
288
284
|
"intron": {
|
|
285
|
+
"label": "intron",
|
|
289
286
|
"type": "BOOL",
|
|
290
287
|
"description": "Intron",
|
|
291
288
|
"query": {
|
|
292
289
|
"field": "INFO/CSQ/Consequence",
|
|
293
290
|
"operator": "contains_any",
|
|
294
|
-
"value": [
|
|
295
|
-
"intron_variant",
|
|
296
|
-
"synonymous_variant"
|
|
297
|
-
]
|
|
291
|
+
"value": ["intron_variant", "synonymous_variant"]
|
|
298
292
|
},
|
|
299
293
|
"outcomeTrue": {
|
|
300
294
|
"nextNode": "exit_f"
|
|
@@ -307,11 +301,9 @@
|
|
|
307
301
|
}
|
|
308
302
|
},
|
|
309
303
|
"my_multi": {
|
|
304
|
+
"label": "my_multi",
|
|
310
305
|
"type": "BOOL_MULTI",
|
|
311
|
-
"fields": [
|
|
312
|
-
"my_multi_1",
|
|
313
|
-
"my_multi_2"
|
|
314
|
-
],
|
|
306
|
+
"fields": ["my_multi_1", "my_multi_2"],
|
|
315
307
|
"outcomeDefault": {
|
|
316
308
|
"nextNode": "exit_t"
|
|
317
309
|
},
|
|
@@ -358,12 +350,39 @@
|
|
|
358
350
|
]
|
|
359
351
|
},
|
|
360
352
|
"exit_t": {
|
|
353
|
+
"label": "True",
|
|
361
354
|
"type": "LEAF",
|
|
362
355
|
"class": "T"
|
|
363
356
|
},
|
|
364
357
|
"exit_f": {
|
|
358
|
+
"label": "False",
|
|
365
359
|
"type": "LEAF",
|
|
366
360
|
"class": "F"
|
|
361
|
+
},
|
|
362
|
+
"exit_b": {
|
|
363
|
+
"label": "Benign",
|
|
364
|
+
"type": "LEAF",
|
|
365
|
+
"class": "B"
|
|
366
|
+
},
|
|
367
|
+
"exit_lb": {
|
|
368
|
+
"label": "Likely Benign",
|
|
369
|
+
"type": "LEAF",
|
|
370
|
+
"class": "LB"
|
|
371
|
+
},
|
|
372
|
+
"exit_vus": {
|
|
373
|
+
"label": "Unknown Significance",
|
|
374
|
+
"type": "LEAF",
|
|
375
|
+
"class": "VUS"
|
|
376
|
+
},
|
|
377
|
+
"exit_lp": {
|
|
378
|
+
"label": "Likely pathogenic",
|
|
379
|
+
"type": "LEAF",
|
|
380
|
+
"class": "LP"
|
|
381
|
+
},
|
|
382
|
+
"exit_p": {
|
|
383
|
+
"label": "Pathogenic",
|
|
384
|
+
"type": "LEAF",
|
|
385
|
+
"class": "P"
|
|
367
386
|
}
|
|
368
387
|
}
|
|
369
|
-
}
|
|
388
|
+
}
|