@molgenis/vip-report-template 7.1.2 → 8.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.
Files changed (156) hide show
  1. package/.gitattributes +3 -1
  2. package/.travis.yml +1 -0
  3. package/README.md +13 -0
  4. package/eslint.config.mjs +6 -1
  5. package/package.json +6 -5
  6. package/scripts/validateConfig/README.txt +5 -0
  7. package/scripts/validateConfig/compileValidator.ts +17 -0
  8. package/scripts/validateConfig/createSchema.ts +6 -0
  9. package/scripts/validateConfig/schema.ts +370 -0
  10. package/src/App.tsx +2 -1
  11. package/src/components/DatasetDropdown.tsx +1 -1
  12. package/src/components/GenomeBrowser.tsx +14 -4
  13. package/src/components/RecordsTable.tsx +23 -6
  14. package/src/components/VariantConsequenceContainer.tsx +9 -2
  15. package/src/components/VariantInfoTable.tsx +1 -1
  16. package/src/components/VariantsContainer.tsx +47 -9
  17. package/src/components/VariantsContainerHeader.tsx +1 -8
  18. package/src/components/field/composed/FieldGenotype.tsx +1 -1
  19. package/src/components/field/composed/FieldGenotypeStr.tsx +18 -10
  20. package/src/components/field/composed/FieldGnomAd.tsx +1 -1
  21. package/src/components/field/composed/FieldInheritanceModes.tsx +1 -4
  22. package/src/components/field/composed/FieldVkgl.tsx +1 -1
  23. package/src/components/field/typed/FieldCategorical.tsx +1 -1
  24. package/src/components/field/typed/FieldCharacter.tsx +1 -1
  25. package/src/components/field/typed/FieldFlag.tsx +1 -1
  26. package/src/components/field/typed/FieldFloat.tsx +1 -1
  27. package/src/components/field/typed/FieldInteger.tsx +1 -1
  28. package/src/components/field/typed/FieldString.tsx +1 -1
  29. package/src/components/filter/Filter.tsx +1 -0
  30. package/src/components/filter/composed/FilterAllelicImbalance.tsx +1 -0
  31. package/src/components/filter/composed/FilterComposed.tsx +7 -0
  32. package/src/components/filter/composed/FilterDeNovo.tsx +1 -0
  33. package/src/components/filter/composed/FilterHpo.tsx +1 -0
  34. package/src/components/filter/composed/FilterInheritance.tsx +1 -0
  35. package/src/components/filter/composed/FilterLocus.tsx +17 -3
  36. package/src/components/filter/composed/FilterPick.tsx +30 -0
  37. package/src/components/filter/composed/FilterVipC.tsx +1 -0
  38. package/src/components/filter/composed/FilterVipCS.tsx +1 -0
  39. package/src/components/filter/fixed/FilterFixed.tsx +7 -0
  40. package/src/components/filter/typed/FilterCategorical.tsx +18 -1
  41. package/src/components/filter/typed/FilterFlag.tsx +2 -0
  42. package/src/components/filter/typed/FilterInterval.tsx +29 -1
  43. package/src/components/filter/typed/FilterString.tsx +8 -1
  44. package/src/components/filter/typed/FilterTyped.tsx +1 -0
  45. package/src/components/form/ButtonApply.tsx +6 -2
  46. package/src/mocks/GRCh38/README.txt +15 -0
  47. package/src/mocks/GRCh38/decisionTree.json +201 -0
  48. package/src/mocks/GRCh38/family.ped +6 -0
  49. package/src/mocks/GRCh38/field_metadata.json +36 -11
  50. package/src/mocks/GRCh38/sample1.ped +1 -0
  51. package/src/mocks/GRCh38/static.ts +36 -148
  52. package/src/mocks/GRCh38/str.ped +1 -0
  53. package/src/mocks/GRCh38/vcf/family.db.blob +0 -0
  54. package/src/mocks/GRCh38/vcf/family.vcf +312 -0
  55. package/src/mocks/GRCh38/vcf/fixPaths.sql +7 -0
  56. package/src/mocks/GRCh38/vcf/no_vep.db.blob +0 -0
  57. package/src/mocks/GRCh38/vcf/{no_vep.vcf.blob → no_vep.vcf} +1 -1
  58. package/src/mocks/GRCh38/vcf/samples_0.db.blob +0 -0
  59. package/src/mocks/GRCh38/vcf/samples_1.db.blob +0 -0
  60. package/src/mocks/GRCh38/vcf/samples_100.db.blob +0 -0
  61. package/src/mocks/GRCh38/vcf/{samples_100.vcf.blob → samples_100.vcf} +6 -6
  62. package/src/mocks/GRCh38/vcf/str.db.blob +0 -0
  63. package/src/mocks/GRCh38/vcf/{str.vcf.blob → str.vcf} +17 -17
  64. package/src/mocks/MockApiClient.ts +60 -226
  65. package/src/mocks/config_cram.json +4 -0
  66. package/src/mocks/config_default_values.json +722 -0
  67. package/src/mocks/config_vcf.json +15 -1
  68. package/src/mocks/sql-wasm.wasm.blob +0 -0
  69. package/src/types/config.d.ts +9 -5
  70. package/src/types/configCells.d.ts +1 -0
  71. package/src/types/configFilter.d.ts +1 -0
  72. package/src/types/configFilterComposed.d.ts +3 -0
  73. package/src/utils/api.ts +21 -49
  74. package/src/utils/config/configCellsComposed.ts +1 -1
  75. package/src/utils/config/configCellsField.ts +2 -0
  76. package/src/utils/config/configFiltersComposed.ts +7 -0
  77. package/src/utils/config/configFiltersField.ts +3 -2
  78. package/src/utils/config/configFiltersFixed.ts +7 -0
  79. package/src/utils/config/configValidator.precompiled.ts +83402 -0
  80. package/src/utils/config/configValidator.ts +3 -368
  81. package/src/utils/csq.ts +5 -10
  82. package/src/utils/decisionTree.ts +8 -9
  83. package/src/utils/query/query.ts +3 -2
  84. package/src/utils/query/queryFilter.ts +2 -3
  85. package/src/utils/query/queryFilterComposed.ts +12 -12
  86. package/src/utils/query/queryFilterField.ts +14 -7
  87. package/src/utils/query/queryFilterFixed.ts +5 -5
  88. package/src/utils/query/querySample.ts +15 -4
  89. package/src/utils/query/selector.ts +5 -20
  90. package/src/utils/query/sort.ts +4 -4
  91. package/src/utils/vcf.ts +20 -11
  92. package/src/views/Help.tsx +2 -2
  93. package/src/views/SampleVariant.tsx +4 -1
  94. package/src/views/Samples.tsx +10 -3
  95. package/src/views/data/data.tsx +2 -2
  96. package/tests/utils/config/configFiltersComposed.test.ts +2 -0
  97. package/tests/utils/config/configFiltersField.test.ts +4 -2
  98. package/tests/utils/config/configFiltersFixed.test.ts +23 -6
  99. package/tests/utils/query/query.test.ts +34 -6
  100. package/tests/utils/query/queryFilter.test.ts +4 -31
  101. package/tests/utils/query/queryFilterComposed.test.ts +13 -13
  102. package/tests/utils/query/queryFilterField.test.ts +5 -5
  103. package/tests/utils/query/queryFilterFixed.test.ts +5 -5
  104. package/tests/utils/query/querySample.test.ts +50 -10
  105. package/tests/utils/query/sort.test.ts +1 -1
  106. package/tests/utils/vcf.test.ts +1 -0
  107. package/vite.config.mts +2 -1
  108. package/src/mocks/GRCh37/alignment.cram.blob +0 -0
  109. package/src/mocks/GRCh37/alignment.cram.crai.blob +0 -0
  110. package/src/mocks/GRCh37/decisionTree.json +0 -355
  111. package/src/mocks/GRCh37/fasta/1-10042288-10042788.fasta.gz.blob +0 -0
  112. package/src/mocks/GRCh37/fasta/1-152520538-152521038.fasta.gz.blob +0 -0
  113. package/src/mocks/GRCh37/fasta/1-16375333-16375833.fasta.gz.blob +0 -0
  114. package/src/mocks/GRCh37/fasta/1-16376162-16376662.fasta.gz.blob +0 -0
  115. package/src/mocks/GRCh37/fasta/1-17348965-17349469.fasta.gz.blob +0 -0
  116. package/src/mocks/GRCh37/fasta/1-17348969-17349469.fasta.gz.blob +0 -0
  117. package/src/mocks/GRCh37/fasta/1-17354844-17355344.fasta.gz.blob +0 -0
  118. package/src/mocks/GRCh37/fasta/10-126091249-126091749.fasta.gz.blob +0 -0
  119. package/src/mocks/GRCh37/fasta/11-134013975-134014475.fasta.gz.blob +0 -0
  120. package/src/mocks/GRCh37/fasta/13-77569878-77570378.fasta.gz.blob +0 -0
  121. package/src/mocks/GRCh37/fasta/14-105167610-105168110.fasta.gz.blob +0 -0
  122. package/src/mocks/GRCh37/fasta/14-89307588-89308088.fasta.gz.blob +0 -0
  123. package/src/mocks/GRCh37/fasta/14-89309945-89310445.fasta.gz.blob +0 -0
  124. package/src/mocks/GRCh37/fasta/14-89336157-89336657.fasta.gz.blob +0 -0
  125. package/src/mocks/GRCh37/fasta/17-29555814-29556314.fasta.gz.blob +0 -0
  126. package/src/mocks/GRCh37/fasta/17-29585172-29585672.fasta.gz.blob +0 -0
  127. package/src/mocks/GRCh37/fasta/17-29663629-29664129.fasta.gz.blob +0 -0
  128. package/src/mocks/GRCh37/fasta/17-29675976-29676476.fasta.gz.blob +0 -0
  129. package/src/mocks/GRCh37/fasta/17-29683733-29684233.fasta.gz.blob +0 -0
  130. package/src/mocks/GRCh37/fasta/19-11215896-11216396.fasta.gz.blob +0 -0
  131. package/src/mocks/GRCh37/fasta/19-11223801-11224301.fasta.gz.blob +0 -0
  132. package/src/mocks/GRCh37/fasta/19-17449149-17449649.fasta.gz.blob +0 -0
  133. package/src/mocks/GRCh37/fasta/19-17451747-17452247.fasta.gz.blob +0 -0
  134. package/src/mocks/GRCh37/fasta/2-47635417-47635917.fasta.gz.blob +0 -0
  135. package/src/mocks/GRCh37/fasta/20-62326742-62327242.fasta.gz.blob +0 -0
  136. package/src/mocks/GRCh37/fasta/22-50627343-50627843.fasta.gz.blob +0 -0
  137. package/src/mocks/GRCh37/fasta/22-50721296-50721796.fasta.gz.blob +0 -0
  138. package/src/mocks/GRCh37/fasta/4-106320044-106320544.fasta.gz.blob +0 -0
  139. package/src/mocks/GRCh37/fasta/7-42017061-42017561.fasta.gz.blob +0 -0
  140. package/src/mocks/GRCh37/fasta/7-42064707-42065207.fasta.gz.blob +0 -0
  141. package/src/mocks/GRCh37/fasta/8-145140250-145140750.fasta.gz.blob +0 -0
  142. package/src/mocks/GRCh37/fasta/8-61764893-61765393.fasta.gz.blob +0 -0
  143. package/src/mocks/GRCh37/fasta/9-107546383-107546883.fasta.gz.blob +0 -0
  144. package/src/mocks/GRCh37/fasta/9-107584614-107585114.fasta.gz.blob +0 -0
  145. package/src/mocks/GRCh37/fasta/MT-15076-15576.fasta.gz.blob +0 -0
  146. package/src/mocks/GRCh37/fasta/X-48932771-48933271.fasta.gz.blob +0 -0
  147. package/src/mocks/GRCh37/fasta/Y-2655391-2655891.fasta.gz.blob +0 -0
  148. package/src/mocks/GRCh37/field_metadata.json +0 -794
  149. package/src/mocks/GRCh37/genes.gff.gz.blob +0 -0
  150. package/src/mocks/GRCh37/sampleTree.json +0 -143
  151. package/src/mocks/GRCh37/static.ts +0 -189
  152. package/src/mocks/GRCh37/vcf/family.vcf.blob +0 -134
  153. package/src/mocks/GRCh38/vcf/family.vcf.blob +0 -272
  154. package/src/mocks/static.ts +0 -1636
  155. /package/src/mocks/GRCh38/vcf/{samples_0.vcf.blob → samples_0.vcf} +0 -0
  156. /package/src/mocks/GRCh38/vcf/{samples_1.vcf.blob → samples_1.vcf} +0 -0
@@ -1,794 +0,0 @@
1
- {
2
- "format": {
3
- "ADFL": {
4
- "label": "Flanking reads",
5
- "description": "Number of flanking reads consistent with the allele",
6
- "numberType": "NUMBER",
7
- "numberCount": 1,
8
- "type": "STRING"
9
- },
10
- "ADIR": {
11
- "label": "In-repeat reads",
12
- "description": "Number of in-repeat reads consistent with the allele",
13
- "numberType": "NUMBER",
14
- "numberCount": 1,
15
- "type": "STRING"
16
- },
17
- "ADSP": {
18
- "label": "Spanning reads",
19
- "description": "Number of spanning reads consistent with the allele",
20
- "numberType": "NUMBER",
21
- "numberCount": 1,
22
- "type": "STRING"
23
- },
24
- "LC": {
25
- "label": "Coverage",
26
- "description": "Locus coverage",
27
- "numberType": "NUMBER",
28
- "numberCount": 1,
29
- "type": "FLOAT"
30
- },
31
- "REPCI": {
32
- "label": "Repeat CI",
33
- "description": "Confidence interval for the number of repeat units spanned by the allele",
34
- "numberType": "NUMBER",
35
- "numberCount": 1,
36
- "type": "STRING"
37
- },
38
- "REPCN": {
39
- "label": "Repeats",
40
- "description": "Number of repeat units spanned by the allele",
41
- "numberType": "NUMBER",
42
- "numberCount": 1,
43
- "type": "STRING"
44
- },
45
- "VI": {
46
- "label": "Inheritance",
47
- "description": "An enumeration of possible inheritance modes based on the pedigree of the sample. Potential values: AD, AD_IP, AR, AR_C, XLR, XLD, YL, MT",
48
- "numberType": "OTHER",
49
- "separator": ",",
50
- "type": "CATEGORICAL",
51
- "categories": {
52
- "AD": {
53
- "label": "AD",
54
- "description": "Autosomal dominant"
55
- },
56
- "AD_IP": {
57
- "label": "AD_IP",
58
- "description": "Autosomal dominant incomplete penetrance"
59
- },
60
- "AR": {
61
- "label": "AR",
62
- "description": "Autosomal recessive"
63
- },
64
- "AR_C": {
65
- "label": "AR_C",
66
- "description": "Autosomal recessive compound hetrozygote"
67
- },
68
- "XLD": {
69
- "label": "XLD",
70
- "description": "X-linked dominant"
71
- },
72
- "XLR": {
73
- "label": "XLR",
74
- "description": "X-linked recessive"
75
- },
76
- "YL": {
77
- "label": "YL",
78
- "description": "Y-linked"
79
- },
80
- "MT": {
81
- "label": "MT",
82
- "description": "Mitochondrial"
83
- }
84
- }
85
- },
86
- "VIPC_S": {
87
- "label": "VIP sample classification",
88
- "numberType": "OTHER",
89
- "type": "STRING",
90
- "separator": ","
91
- }
92
- },
93
- "info": {
94
- "CSQ": {
95
- "nestedFields": {
96
- "ALLELE_NUM": {
97
- "label": "Allele Nr.",
98
- "description": "Allele nr within the VCF file.",
99
- "numberType": "NUMBER",
100
- "numberCount": 1,
101
- "type": "INTEGER"
102
- },
103
- "ALPHSCORE": {
104
- "label": "AlphScore",
105
- "description": "AlphScore pathogenicity score for missense variants",
106
- "numberType": "NUMBER",
107
- "numberCount": 1,
108
- "type": "FLOAT"
109
- },
110
- "CAPICE_CL": {
111
- "label": "CAPICE",
112
- "description": "CAPICE classification",
113
- "numberType": "NUMBER",
114
- "numberCount": 1,
115
- "type": "CATEGORICAL",
116
- "categories": {
117
- "B": {
118
- "label": "B",
119
- "description": "Benign"
120
- },
121
- "LB": {
122
- "label": "LB",
123
- "description": "Likely benign"
124
- },
125
- "VUS": {
126
- "label": "VUS",
127
- "description": "Variant of uncertain significance"
128
- },
129
- "LP": {
130
- "label": "LP",
131
- "description": "Likely pathogenic"
132
- },
133
- "P": {
134
- "label": "P",
135
- "description": "Pathogenic"
136
- }
137
- }
138
- },
139
- "CAPICE_SC": {
140
- "label": "CAPICE",
141
- "description": "CAPICE pathogenicity score",
142
- "numberType": "NUMBER",
143
- "numberCount": 1,
144
- "type": "FLOAT"
145
- },
146
- "cDNA_position": {
147
- "label": "cDNA pos",
148
- "description": "Position within the cDNA.",
149
- "numberType": "NUMBER",
150
- "numberCount": 1,
151
- "type": "STRING"
152
- },
153
- "CDS_position": {
154
- "label": "CDS pos",
155
- "description": "Position within the coding sequence.",
156
- "numberType": "NUMBER",
157
- "numberCount": 1,
158
- "type": "STRING"
159
- },
160
- "CLIN_SIG": {
161
- "label": "ClinVar",
162
- "description": "ClinVar classification(s)",
163
- "numberType": "OTHER",
164
- "separator": "&",
165
- "type": "STRING"
166
- },
167
- "clinVar": {
168
- "label": "ClinVar ID",
169
- "description": "ClinVar Variation ID",
170
- "numberType": "OTHER",
171
- "type": "INTEGER"
172
- },
173
- "clinVar_CLNID": {
174
- "label": "ClinVar ID",
175
- "description": "ClinVar Variation ID",
176
- "numberType": "OTHER",
177
- "type": "INTEGER"
178
- },
179
- "clinVar_CLNSIG": {
180
- "label": "ClinVar",
181
- "description": "Clinical significance for this single variant",
182
- "numberType": "OTHER",
183
- "separator": "&",
184
- "type": "CATEGORICAL",
185
- "categories": {
186
- "Benign": {
187
- "label": "B",
188
- "description": "Benign"
189
- },
190
- "Likely_benign": {
191
- "label": "LB",
192
- "description": "Likely benign"
193
- },
194
- "Uncertain_significance": {
195
- "label": "VUS",
196
- "description": "Variant of uncertain significance"
197
- },
198
- "Likely_pathogenic": {
199
- "label": "LP",
200
- "description": "Likely pathogenic"
201
- },
202
- "Pathogenic": {
203
- "label": "P",
204
- "description": "Pathogenic"
205
- },
206
- "Conflicting_interpretations_of_pathogenicity": {
207
- "label": "Conflict",
208
- "description": "Conflicting interpretations of pathogenicity"
209
- }
210
- }
211
- },
212
- "clinVar_CLNSIGINCL": {
213
- "label": "ClinVar variant combination",
214
- "description": "Clinical significance for a haplotype or genotype that includes this variant",
215
- "numberType": "OTHER",
216
- "separator": "&",
217
- "type": "CATEGORICAL",
218
- "categories": {
219
- "Benign": {
220
- "label": "B",
221
- "description": "Benign"
222
- },
223
- "Likely_benign": {
224
- "label": "LB",
225
- "description": "Likely benign"
226
- },
227
- "Uncertain_significance": {
228
- "label": "VUS",
229
- "description": "Variant of uncertain significance"
230
- },
231
- "Likely_pathogenic": {
232
- "label": "LP",
233
- "description": "Likely pathogenic"
234
- },
235
- "Pathogenic": {
236
- "label": "P",
237
- "description": "Pathogenic"
238
- },
239
- "Conflicting_interpretations_of_pathogenicity": {
240
- "label": "Conflict",
241
- "description": "Conflicting interpretations of pathogenicity"
242
- }
243
- }
244
- },
245
- "clinVar_CLNREVSTAT": {
246
- "label": "ClinVar status",
247
- "description": "ClinVar review status",
248
- "numberType": "OTHER",
249
- "separator": "&",
250
- "type": "CATEGORICAL",
251
- "categories": {
252
- "practice_guideline": {
253
- "label": "Practice guideline",
254
- "description": "There is a submitted record with a classification from a practice guideline"
255
- },
256
- "reviewed_by_expert_panel": {
257
- "label": "Reviewed by expert panel",
258
- "description": "There is a submitted record with a classification from an expert panel"
259
- },
260
- "criteria_provided": {
261
- "label": "Criteria provided",
262
- "description": "Assertion criteria and evidence for the classification (or a public contact) were provided"
263
- },
264
- "_multiple_submitters": {
265
- "label": "Multiple submitters",
266
- "description": "There are multiple submitted records with a classification"
267
- },
268
- "_no_conflicts": {
269
- "label": "No conflicts",
270
- "description": "The classifications agree"
271
- },
272
- "_single_submitter": {
273
- "label": "Single submitter",
274
- "description": "There is a single submitted record with a classification"
275
- },
276
- "_conflicting_interpretations": {
277
- "label": "Conflicting_interpretations",
278
- "description": "There are conflicting classifications"
279
- },
280
- "no_assertion_criteria_provided": {
281
- "label": "No assertion criteria provided",
282
- "description": "There are one or more submitted records with a classification but without assertion criteria and evidence for the classification (or a public contact)"
283
- },
284
- "no_assertion_provided": {
285
- "label": "No assertion provided"
286
- }
287
- }
288
- },
289
- "Consequence": {
290
- "label": "Effect",
291
- "description": "Effect(s) described as Sequence Ontology term(s)",
292
- "numberType": "OTHER",
293
- "separator": "&",
294
- "type": "STRING"
295
- },
296
- "Existing_variation": {
297
- "label": "Ex. var.",
298
- "description": "Existing variation.",
299
- "numberType": "OTHER",
300
- "separator": "&",
301
- "type": "STRING"
302
- },
303
- "FATHMM_MKL_NC": {
304
- "label": "FATHMM-MKL-NC",
305
- "description": "Predict the Functional Consequences of Non-Coding Single Nucleotide Variants (SNVs)",
306
- "numberType": "NUMBER",
307
- "numberCount": 1,
308
- "type": "FLOAT"
309
- },
310
- "GDB_PRO": {
311
- "label": "GDB_PRO",
312
- "description": "Highest GREEN-DB constraint score for overlapping promotor regions.",
313
- "numberType": "NUMBER",
314
- "numberCount": 1,
315
- "type": "FLOAT"
316
- },
317
- "GDB_ENH": {
318
- "label": "GDB_ENH",
319
- "description": "Highest GREEN-DB constraint score for overlapping enhancer regions.",
320
- "numberType": "NUMBER",
321
- "numberCount": 1,
322
- "type": "FLOAT"
323
- },
324
- "GDB_BIV": {
325
- "label": "GDB_BIV",
326
- "description": "Highest GREEN-DB constraint score for overlapping bivalent regions.",
327
- "numberType": "NUMBER",
328
- "numberCount": 1,
329
- "type": "FLOAT"
330
- },
331
- "GDB_SIL": {
332
- "label": "GDB_SIL",
333
- "description": "Highest GREEN-DB constraint score for overlapping silencer regions.",
334
- "numberType": "NUMBER",
335
- "numberCount": 1,
336
- "type": "FLOAT"
337
- },
338
- "GDB_INS": {
339
- "label": "GDB_INS",
340
- "description": "Highest GREEN-DB constraint score for overlapping insulater regions.",
341
- "numberType": "NUMBER",
342
- "numberCount": 1,
343
- "type": "FLOAT"
344
- },
345
- "Feature_type": {
346
- "label": "Feature Type.",
347
- "description": "The VEP feature type",
348
- "numberType": "NUMBER",
349
- "numberCount": 1,
350
- "type": "CATEGORICAL",
351
- "categories": {
352
- "Transcript": {
353
- "label": "Transcript",
354
- "description": "Transcript"
355
- },
356
- "RegulatoryFeature": {
357
- "label": "Regulatory",
358
- "description": "Regulatory feature"
359
- },
360
- "MotifFeature": {
361
- "label": "Motif",
362
- "description": "Motif feature"
363
- }
364
- },
365
- "required": true
366
- },
367
- "FLAGS": {
368
- "label": "Flags",
369
- "description": "Flags",
370
- "numberType": "OTHER",
371
- "separator": "&",
372
- "type": "STRING"
373
- },
374
- "GADO_PD": {
375
- "label": "GADO_PD",
376
- "description": "Gene-phenotypes association based on the GeneNetwork Assisted Diagnostic Optimization (GADO) gene prioritization Z-scores, see https://www.genenetwork.nl/gado and https://doi.org/10.1038/s41467-019-10649-4",
377
- "numberType": "NUMBER",
378
- "numberCount": 1,
379
- "type": "CATEGORICAL",
380
- "categories": {
381
- "HC": {
382
- "label": "High confidence",
383
- "description": "Z-Score >= 5"
384
- },
385
- "LC": {
386
- "label": "Low confidence",
387
- "description": "Z-Score >= 3 and < 5"
388
- }
389
- }
390
- },
391
- "GADO_SC": {
392
- "label": "GADO_SC",
393
- "description": "The combined prioritization GADO Z-score over the HPO of the proband(s) terms for this case.",
394
- "numberType": "NUMBER",
395
- "numberCount": 1,
396
- "type": "FLOAT"
397
- },
398
- "gnomAD_AF": {
399
- "label": "gnomAD AF",
400
- "description": "gnomAD allele frequency",
401
- "numberType": "NUMBER",
402
- "numberCount": 1,
403
- "type": "FLOAT"
404
- },
405
- "gnomAD_COV": {
406
- "label": "gnomAD COV",
407
- "description": "gnomAD coverage (percent of individuals in gnomAD source)",
408
- "numberType": "NUMBER",
409
- "numberCount": 1,
410
- "type": "FLOAT"
411
- },
412
- "gnomAD_FAF95": {
413
- "label": "gnomAD FAF95",
414
- "description": "gnomAD filter allele frequency (95% confidence)",
415
- "numberType": "NUMBER",
416
- "numberCount": 1,
417
- "type": "FLOAT"
418
- },
419
- "gnomAD_FAF99": {
420
- "label": "gnomAD FAF99",
421
- "description": "gnomAD filter allele frequency (99% confidence)",
422
- "numberType": "NUMBER",
423
- "numberCount": 1,
424
- "type": "FLOAT"
425
- },
426
- "gnomAD_HN": {
427
- "label": "gnomAD HN",
428
- "description": "gnomAD number of homozygotes",
429
- "numberType": "NUMBER",
430
- "numberCount": 1,
431
- "type": "INTEGER"
432
- },
433
- "gnomAD_SRC": {
434
- "label": "gnomAD SRC",
435
- "description": "gnomAD source",
436
- "numberType": "NUMBER",
437
- "numberCount": 1,
438
- "type": "CATEGORICAL",
439
- "categories": {
440
- "E": {
441
- "label": "Exomes"
442
- },
443
- "G": {
444
- "label": "Genomes"
445
- },
446
- "T": {
447
- "label": "Total",
448
- "description": "Total: exomes & genomes"
449
- }
450
- }
451
- },
452
- "gnomAD_QC": {
453
- "label": "gnomAD QC",
454
- "description": "gnomAD quality control filters that failed",
455
- "numberType": "OTHER",
456
- "separator": "&",
457
- "type": "STRING"
458
- },
459
- "HGNC_ID": {
460
- "label": "HGNC ID",
461
- "description": "The HGNC gene ID",
462
- "numberType": "NUMBER",
463
- "numberCount": 1,
464
- "type": "INTEGER"
465
- },
466
- "HGVSc": {
467
- "label": "HGVS C",
468
- "description": "HGVS nomenclature: coding DNA reference sequence",
469
- "numberType": "NUMBER",
470
- "numberCount": 1,
471
- "type": "STRING"
472
- },
473
- "HGVSp": {
474
- "label": "HGVS P",
475
- "description": "HGVS nomenclature: protein reference sequence",
476
- "numberType": "NUMBER",
477
- "numberCount": 1,
478
- "type": "STRING"
479
- },
480
- "HPO": {
481
- "label": "HPO",
482
- "description": "Human Phenotype Ontology (HPO) terms describing phenotypic abnormalities, see https://hpo.jax.org/ and https://doi.org/10.1093/nar/gkad1005",
483
- "numberType": "OTHER",
484
- "separator": "&",
485
- "type": "STRING"
486
- },
487
- "IMPACT": {
488
- "label": "Impact",
489
- "description": "The Impact as predicted by VEP",
490
- "numberType": "NUMBER",
491
- "numberCount": 1,
492
- "type": "CATEGORICAL",
493
- "categories": {
494
- "LOW": {
495
- "label": "Low"
496
- },
497
- "MODERATE": {
498
- "label": "Moderate"
499
- },
500
- "HIGH": {
501
- "label": "High"
502
- },
503
- "MODIFIER": {
504
- "label": "Modifier"
505
- }
506
- },
507
- "required": true
508
- },
509
- "IncompletePenetrance": {
510
- "label": "Gene: Inc.Pen.",
511
- "description": "Is gene associated with incomplete penetrance?",
512
- "numberType": "NUMBER",
513
- "numberCount": 1,
514
- "type": "CATEGORICAL",
515
- "categories": {
516
- "1": {
517
- "label": "True",
518
- "description": "Gene is associated with incomplete penetrance"
519
- }
520
- },
521
- "nullValue": {
522
- "label": "False"
523
- }
524
- },
525
- "InheritanceModesGene": {
526
- "label": "Inh.Pat.",
527
- "description": "Inheritance pattern",
528
- "numberType": "OTHER",
529
- "separator": "&",
530
- "type": "CATEGORICAL",
531
- "categories": {
532
- "AD": {
533
- "label": "AD",
534
- "description": "Autosomal dominant"
535
- },
536
- "AD_IP": {
537
- "label": "AD_IP",
538
- "description": "Autosomal dominant incomplete penetrance"
539
- },
540
- "AR": {
541
- "label": "AR",
542
- "description": "Autosomal recessive"
543
- },
544
- "AR_C": {
545
- "label": "AR_C",
546
- "description": "Autosomal recessive compound hetrozygote"
547
- },
548
- "XL": {
549
- "label": "XL",
550
- "description": "X-linked"
551
- },
552
- "XLD": {
553
- "label": "XLD",
554
- "description": "X-linked dominant"
555
- },
556
- "XLR": {
557
- "label": "XLR",
558
- "description": "X-linked recessive"
559
- },
560
- "YL": {
561
- "label": "YL",
562
- "description": "Y-linked"
563
- },
564
- "MT": {
565
- "label": "MT",
566
- "description": "Mitochondrial"
567
- }
568
- }
569
- },
570
- "ncER": {
571
- "label": "ncER",
572
- "description": "Non-coding essential regulation, from: 0(probably not essential for regulation) to 100 (probably essential for regulation).",
573
- "numberType": "NUMBER",
574
- "numberCount": 1,
575
- "type": "FLOAT"
576
- },
577
- "PHENO": {
578
- "label": "Pheno",
579
- "description": "Phenotype match.",
580
- "numberType": "OTHER",
581
- "separator": "&",
582
- "type": "INTEGER"
583
- },
584
- "PICK": {
585
- "label": "PICK",
586
- "description": "Boolean indicating if this is the VEP picked transcript.",
587
- "numberType": "NUMBER",
588
- "numberCount": 1,
589
- "type": "INTEGER"
590
- },
591
- "PolyPhen": {
592
- "label": "PolyPhen",
593
- "description": "PolyPhen score.",
594
- "numberType": "NUMBER",
595
- "numberCount": 1,
596
- "type": "FLOAT"
597
- },
598
- "Protein_position": {
599
- "label": "Protein pos",
600
- "description": "Position within the protein.",
601
- "numberType": "NUMBER",
602
- "numberCount": 1,
603
- "type": "STRING"
604
- },
605
- "PUBMED": {
606
- "label": "PubMed",
607
- "description": "PubMed citations",
608
- "numberType": "OTHER",
609
- "separator": "&",
610
- "type": "INTEGER"
611
- },
612
- "ReMM": {
613
- "label": "ReMM",
614
- "description": "The Regulatory Mendelian Mutation (ReMM) score was created for relevance prediction of non-coding variations (SNVs and small InDels) in the human genome (hg19) in terms of Mendelian diseases.",
615
- "numberType": "NUMBER",
616
- "numberCount": 1,
617
- "type": "FLOAT"
618
- },
619
- "SIFT": {
620
- "label": "SIFT",
621
- "description": "SIFT score.",
622
- "numberType": "NUMBER",
623
- "numberCount": 1,
624
- "type": "FLOAT"
625
- },
626
- "SOMATIC": {
627
- "label": "Somatic",
628
- "description": "Somatic.",
629
- "numberType": "OTHER",
630
- "separator": "&",
631
- "type": "INTEGER"
632
- },
633
- "SpliceAI_pred_DS_AG": {
634
- "label": "SpliceAI AG",
635
- "description": "SpliceAI Delta score (acceptor gain).",
636
- "numberType": "NUMBER",
637
- "numberCount": 1,
638
- "type": "FLOAT"
639
- },
640
- "SpliceAI_pred_DS_AL": {
641
- "label": "SpliceAI AL",
642
- "description": "SpliceAI Delta score (acceptor loss).",
643
- "numberType": "NUMBER",
644
- "numberCount": 1,
645
- "type": "FLOAT"
646
- },
647
- "SpliceAI_pred_DS_DG": {
648
- "label": "SpliceAI DG",
649
- "description": "SpliceAI Delta score (donor gain).",
650
- "numberType": "NUMBER",
651
- "numberCount": 1,
652
- "type": "FLOAT"
653
- },
654
- "SpliceAI_pred_DS_DL": {
655
- "label": "SpliceAI DL",
656
- "description": "SpliceAI Delta score (donor loss).",
657
- "numberType": "NUMBER",
658
- "numberCount": 1,
659
- "type": "FLOAT"
660
- },
661
- "STRAND": {
662
- "label": "Strand",
663
- "description": "The strand of the gene (0=- 1=+).",
664
- "numberType": "NUMBER",
665
- "numberCount": 1,
666
- "type": "INTEGER"
667
- },
668
- "SYMBOL": {
669
- "label": "Gene",
670
- "description": "Gene symbol",
671
- "numberType": "NUMBER",
672
- "numberCount": 1,
673
- "type": "STRING"
674
- },
675
- "VIPC": {
676
- "label": "VIP classification",
677
- "description": "Variant consequence classification predicted by the Variant Interpretation Pipeline (VIP), see https://vip.molgeniscloud.org/ and https://doi.org/10.1101/2024.04.11.24305656",
678
- "numberType": "NUMBER",
679
- "numberCount": 1,
680
- "type": "STRING",
681
- "required": true
682
- },
683
- "VIPP": {
684
- "label": "VIP path",
685
- "description": "VIP decision tree path",
686
- "numberType": "OTHER",
687
- "separator": "&",
688
- "type": "STRING",
689
- "required": true
690
- },
691
- "VKGL_CL": {
692
- "label": "VKGL",
693
- "description": "Variant consensus classification from the Vereniging Klinisch Genetische Laboratoriumdiagnostiek (VKGL) datashare database, see https://vkgl.nl/nl/diagnostiek/vkgl-datashare-database",
694
- "numberType": "NUMBER",
695
- "numberCount": 1,
696
- "type": "CATEGORICAL",
697
- "categories": {
698
- "B": {
699
- "label": "B",
700
- "description": "Benign"
701
- },
702
- "LB": {
703
- "label": "LB",
704
- "description": "Likely benign"
705
- },
706
- "VUS": {
707
- "label": "VUS",
708
- "description": "Variant of uncertain significance"
709
- },
710
- "LP": {
711
- "label": "LP",
712
- "description": "Likely pathogenic"
713
- },
714
- "P": {
715
- "label": "P",
716
- "description": "Pathogenic"
717
- }
718
- }
719
- },
720
- "VKGL_UMCG": {
721
- "label": "MVL",
722
- "description": "UMCG managed variant list classification",
723
- "numberType": "NUMBER",
724
- "numberCount": 1,
725
- "type": "CATEGORICAL",
726
- "categories": {
727
- "B": {
728
- "label": "B",
729
- "description": "Benign"
730
- },
731
- "LB": {
732
- "label": "LB",
733
- "description": "Likely benign"
734
- },
735
- "VUS": {
736
- "label": "VUS",
737
- "description": "Variant of uncertain significance"
738
- },
739
- "LP": {
740
- "label": "LP",
741
- "description": "Likely pathogenic"
742
- },
743
- "P": {
744
- "label": "P",
745
- "description": "Pathogenic"
746
- }
747
- }
748
- }
749
- }
750
- },
751
- "STR_NORMAL_MAX": {
752
- "label": "STR normal max",
753
- "description": "Maximum number of repeats allowed to call as normal as defined in the Stranger catalogue",
754
- "numberType": "NUMBER",
755
- "numberCount": 1,
756
- "type": "INTEGER"
757
- },
758
- "STR_PATHOLOGIC_MIN": {
759
- "label": "STR pathologic min",
760
- "description": "Mininum number of repeats required to call as pathologic as defined in the Stranger catalogue",
761
- "numberType": "NUMBER",
762
- "numberCount": 1,
763
- "type": "INTEGER"
764
- },
765
- "STR_STATUS": {
766
- "label": "STR status",
767
- "description": "Repeat expansion status as decided by Stranger",
768
- "numberType": "PER_ALT",
769
- "separator": ",",
770
- "type": "CATEGORICAL",
771
- "categories": {
772
- "normal": {
773
- "label": "normal",
774
- "description": "Repeat count is smaller than or equal to the maximum number of repeats allowed to call as normal"
775
- },
776
- "pre_mutation": {
777
- "label": "pre-mutation",
778
- "description": "Repeat count is greater than the maximum number of repeats allowed to call as normal and smaller than the minimum number of repeats required to call as pathologic"
779
- },
780
- "full_mutation": {
781
- "label": "full-mutation",
782
- "description": "Repeat count is greater than or equal to the minimum number of repeats required to call as pathologic"
783
- }
784
- }
785
- },
786
- "SVTYPE": {
787
- "label": "SV type",
788
- "description": "Type of structural variant",
789
- "numberType": "NUMBER",
790
- "numberCount": 1,
791
- "type": "STRING"
792
- }
793
- }
794
- }