@molgenis/vip-report-template 7.1.3 → 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 (155) hide show
  1. package/.gitattributes +3 -1
  2. package/README.md +13 -0
  3. package/eslint.config.mjs +6 -1
  4. package/package.json +6 -5
  5. package/scripts/validateConfig/README.txt +5 -0
  6. package/scripts/validateConfig/compileValidator.ts +17 -0
  7. package/scripts/validateConfig/createSchema.ts +6 -0
  8. package/scripts/validateConfig/schema.ts +370 -0
  9. package/src/App.tsx +2 -1
  10. package/src/components/DatasetDropdown.tsx +1 -1
  11. package/src/components/GenomeBrowser.tsx +14 -4
  12. package/src/components/RecordsTable.tsx +23 -6
  13. package/src/components/VariantConsequenceContainer.tsx +9 -2
  14. package/src/components/VariantInfoTable.tsx +1 -1
  15. package/src/components/VariantsContainer.tsx +47 -9
  16. package/src/components/VariantsContainerHeader.tsx +1 -8
  17. package/src/components/field/composed/FieldGenotype.tsx +1 -1
  18. package/src/components/field/composed/FieldGenotypeStr.tsx +18 -10
  19. package/src/components/field/composed/FieldGnomAd.tsx +1 -1
  20. package/src/components/field/composed/FieldInheritanceModes.tsx +1 -4
  21. package/src/components/field/composed/FieldVkgl.tsx +1 -1
  22. package/src/components/field/typed/FieldCategorical.tsx +1 -1
  23. package/src/components/field/typed/FieldCharacter.tsx +1 -1
  24. package/src/components/field/typed/FieldFlag.tsx +1 -1
  25. package/src/components/field/typed/FieldFloat.tsx +1 -1
  26. package/src/components/field/typed/FieldInteger.tsx +1 -1
  27. package/src/components/field/typed/FieldString.tsx +1 -1
  28. package/src/components/filter/Filter.tsx +1 -0
  29. package/src/components/filter/composed/FilterAllelicImbalance.tsx +1 -0
  30. package/src/components/filter/composed/FilterComposed.tsx +7 -0
  31. package/src/components/filter/composed/FilterDeNovo.tsx +1 -0
  32. package/src/components/filter/composed/FilterHpo.tsx +1 -0
  33. package/src/components/filter/composed/FilterInheritance.tsx +1 -0
  34. package/src/components/filter/composed/FilterLocus.tsx +17 -3
  35. package/src/components/filter/composed/FilterPick.tsx +30 -0
  36. package/src/components/filter/composed/FilterVipC.tsx +1 -0
  37. package/src/components/filter/composed/FilterVipCS.tsx +1 -0
  38. package/src/components/filter/fixed/FilterFixed.tsx +7 -0
  39. package/src/components/filter/typed/FilterCategorical.tsx +18 -1
  40. package/src/components/filter/typed/FilterFlag.tsx +2 -0
  41. package/src/components/filter/typed/FilterInterval.tsx +29 -1
  42. package/src/components/filter/typed/FilterString.tsx +8 -1
  43. package/src/components/filter/typed/FilterTyped.tsx +1 -0
  44. package/src/components/form/ButtonApply.tsx +6 -2
  45. package/src/mocks/GRCh38/README.txt +15 -0
  46. package/src/mocks/GRCh38/decisionTree.json +201 -0
  47. package/src/mocks/GRCh38/family.ped +6 -0
  48. package/src/mocks/GRCh38/field_metadata.json +36 -11
  49. package/src/mocks/GRCh38/sample1.ped +1 -0
  50. package/src/mocks/GRCh38/static.ts +36 -148
  51. package/src/mocks/GRCh38/str.ped +1 -0
  52. package/src/mocks/GRCh38/vcf/family.db.blob +0 -0
  53. package/src/mocks/GRCh38/vcf/family.vcf +312 -0
  54. package/src/mocks/GRCh38/vcf/fixPaths.sql +7 -0
  55. package/src/mocks/GRCh38/vcf/no_vep.db.blob +0 -0
  56. package/src/mocks/GRCh38/vcf/{no_vep.vcf.blob → no_vep.vcf} +1 -1
  57. package/src/mocks/GRCh38/vcf/samples_0.db.blob +0 -0
  58. package/src/mocks/GRCh38/vcf/samples_1.db.blob +0 -0
  59. package/src/mocks/GRCh38/vcf/samples_100.db.blob +0 -0
  60. package/src/mocks/GRCh38/vcf/{samples_100.vcf.blob → samples_100.vcf} +6 -6
  61. package/src/mocks/GRCh38/vcf/str.db.blob +0 -0
  62. package/src/mocks/GRCh38/vcf/{str.vcf.blob → str.vcf} +17 -17
  63. package/src/mocks/MockApiClient.ts +60 -226
  64. package/src/mocks/config_cram.json +4 -0
  65. package/src/mocks/config_default_values.json +722 -0
  66. package/src/mocks/config_vcf.json +15 -1
  67. package/src/mocks/sql-wasm.wasm.blob +0 -0
  68. package/src/types/config.d.ts +9 -5
  69. package/src/types/configCells.d.ts +1 -0
  70. package/src/types/configFilter.d.ts +1 -0
  71. package/src/types/configFilterComposed.d.ts +3 -0
  72. package/src/utils/api.ts +21 -49
  73. package/src/utils/config/configCellsComposed.ts +1 -1
  74. package/src/utils/config/configCellsField.ts +2 -0
  75. package/src/utils/config/configFiltersComposed.ts +7 -0
  76. package/src/utils/config/configFiltersField.ts +3 -2
  77. package/src/utils/config/configFiltersFixed.ts +7 -0
  78. package/src/utils/config/configValidator.precompiled.ts +83402 -0
  79. package/src/utils/config/configValidator.ts +3 -368
  80. package/src/utils/csq.ts +5 -10
  81. package/src/utils/decisionTree.ts +8 -9
  82. package/src/utils/query/query.ts +3 -2
  83. package/src/utils/query/queryFilter.ts +2 -3
  84. package/src/utils/query/queryFilterComposed.ts +12 -12
  85. package/src/utils/query/queryFilterField.ts +14 -7
  86. package/src/utils/query/queryFilterFixed.ts +5 -5
  87. package/src/utils/query/querySample.ts +15 -4
  88. package/src/utils/query/selector.ts +5 -20
  89. package/src/utils/query/sort.ts +4 -4
  90. package/src/utils/vcf.ts +20 -11
  91. package/src/views/Help.tsx +2 -2
  92. package/src/views/SampleVariant.tsx +4 -1
  93. package/src/views/Samples.tsx +10 -3
  94. package/src/views/data/data.tsx +2 -2
  95. package/tests/utils/config/configFiltersComposed.test.ts +2 -0
  96. package/tests/utils/config/configFiltersField.test.ts +4 -2
  97. package/tests/utils/config/configFiltersFixed.test.ts +23 -6
  98. package/tests/utils/query/query.test.ts +34 -6
  99. package/tests/utils/query/queryFilter.test.ts +4 -31
  100. package/tests/utils/query/queryFilterComposed.test.ts +13 -13
  101. package/tests/utils/query/queryFilterField.test.ts +5 -5
  102. package/tests/utils/query/queryFilterFixed.test.ts +5 -5
  103. package/tests/utils/query/querySample.test.ts +50 -10
  104. package/tests/utils/query/sort.test.ts +1 -1
  105. package/tests/utils/vcf.test.ts +1 -0
  106. package/vite.config.mts +2 -1
  107. package/src/mocks/GRCh37/alignment.cram.blob +0 -0
  108. package/src/mocks/GRCh37/alignment.cram.crai.blob +0 -0
  109. package/src/mocks/GRCh37/decisionTree.json +0 -355
  110. package/src/mocks/GRCh37/fasta/1-10042288-10042788.fasta.gz.blob +0 -0
  111. package/src/mocks/GRCh37/fasta/1-152520538-152521038.fasta.gz.blob +0 -0
  112. package/src/mocks/GRCh37/fasta/1-16375333-16375833.fasta.gz.blob +0 -0
  113. package/src/mocks/GRCh37/fasta/1-16376162-16376662.fasta.gz.blob +0 -0
  114. package/src/mocks/GRCh37/fasta/1-17348965-17349469.fasta.gz.blob +0 -0
  115. package/src/mocks/GRCh37/fasta/1-17348969-17349469.fasta.gz.blob +0 -0
  116. package/src/mocks/GRCh37/fasta/1-17354844-17355344.fasta.gz.blob +0 -0
  117. package/src/mocks/GRCh37/fasta/10-126091249-126091749.fasta.gz.blob +0 -0
  118. package/src/mocks/GRCh37/fasta/11-134013975-134014475.fasta.gz.blob +0 -0
  119. package/src/mocks/GRCh37/fasta/13-77569878-77570378.fasta.gz.blob +0 -0
  120. package/src/mocks/GRCh37/fasta/14-105167610-105168110.fasta.gz.blob +0 -0
  121. package/src/mocks/GRCh37/fasta/14-89307588-89308088.fasta.gz.blob +0 -0
  122. package/src/mocks/GRCh37/fasta/14-89309945-89310445.fasta.gz.blob +0 -0
  123. package/src/mocks/GRCh37/fasta/14-89336157-89336657.fasta.gz.blob +0 -0
  124. package/src/mocks/GRCh37/fasta/17-29555814-29556314.fasta.gz.blob +0 -0
  125. package/src/mocks/GRCh37/fasta/17-29585172-29585672.fasta.gz.blob +0 -0
  126. package/src/mocks/GRCh37/fasta/17-29663629-29664129.fasta.gz.blob +0 -0
  127. package/src/mocks/GRCh37/fasta/17-29675976-29676476.fasta.gz.blob +0 -0
  128. package/src/mocks/GRCh37/fasta/17-29683733-29684233.fasta.gz.blob +0 -0
  129. package/src/mocks/GRCh37/fasta/19-11215896-11216396.fasta.gz.blob +0 -0
  130. package/src/mocks/GRCh37/fasta/19-11223801-11224301.fasta.gz.blob +0 -0
  131. package/src/mocks/GRCh37/fasta/19-17449149-17449649.fasta.gz.blob +0 -0
  132. package/src/mocks/GRCh37/fasta/19-17451747-17452247.fasta.gz.blob +0 -0
  133. package/src/mocks/GRCh37/fasta/2-47635417-47635917.fasta.gz.blob +0 -0
  134. package/src/mocks/GRCh37/fasta/20-62326742-62327242.fasta.gz.blob +0 -0
  135. package/src/mocks/GRCh37/fasta/22-50627343-50627843.fasta.gz.blob +0 -0
  136. package/src/mocks/GRCh37/fasta/22-50721296-50721796.fasta.gz.blob +0 -0
  137. package/src/mocks/GRCh37/fasta/4-106320044-106320544.fasta.gz.blob +0 -0
  138. package/src/mocks/GRCh37/fasta/7-42017061-42017561.fasta.gz.blob +0 -0
  139. package/src/mocks/GRCh37/fasta/7-42064707-42065207.fasta.gz.blob +0 -0
  140. package/src/mocks/GRCh37/fasta/8-145140250-145140750.fasta.gz.blob +0 -0
  141. package/src/mocks/GRCh37/fasta/8-61764893-61765393.fasta.gz.blob +0 -0
  142. package/src/mocks/GRCh37/fasta/9-107546383-107546883.fasta.gz.blob +0 -0
  143. package/src/mocks/GRCh37/fasta/9-107584614-107585114.fasta.gz.blob +0 -0
  144. package/src/mocks/GRCh37/fasta/MT-15076-15576.fasta.gz.blob +0 -0
  145. package/src/mocks/GRCh37/fasta/X-48932771-48933271.fasta.gz.blob +0 -0
  146. package/src/mocks/GRCh37/fasta/Y-2655391-2655891.fasta.gz.blob +0 -0
  147. package/src/mocks/GRCh37/field_metadata.json +0 -794
  148. package/src/mocks/GRCh37/genes.gff.gz.blob +0 -0
  149. package/src/mocks/GRCh37/sampleTree.json +0 -143
  150. package/src/mocks/GRCh37/static.ts +0 -189
  151. package/src/mocks/GRCh37/vcf/family.vcf.blob +0 -134
  152. package/src/mocks/GRCh38/vcf/family.vcf.blob +0 -272
  153. package/src/mocks/static.ts +0 -1636
  154. /package/src/mocks/GRCh38/vcf/{samples_0.vcf.blob → samples_0.vcf} +0 -0
  155. /package/src/mocks/GRCh38/vcf/{samples_1.vcf.blob → samples_1.vcf} +0 -0
@@ -0,0 +1,722 @@
1
+ {
2
+ "vip": {
3
+ "filter_field": {
4
+ "type": "genotype",
5
+ "name": "VIPC_S"
6
+ },
7
+ "params": {
8
+ "assembly": "GRCh38",
9
+ "GRCh37": {
10
+ "reference": {
11
+ "fasta": "/path/to/vip/resources/GRCh37/human_g1k_v37.fasta.gz",
12
+ "fastaFai": "/path/to/vip/resources/GRCh37/human_g1k_v37.fasta.gz.fai",
13
+ "fastaGzi": "/path/to/vip/resources/GRCh37/human_g1k_v37.fasta.gz.gzi"
14
+ },
15
+ "chain": {
16
+ "GRCh38": "/path/to/vip/resources/b37ToHg38.over.chain"
17
+ }
18
+ },
19
+ "GRCh38": {
20
+ "reference": {
21
+ "fasta": "/path/to/vip/resources/GRCh38/GCA_000001405.15_GRCh38_no_alt_analysis_set.fna.gz",
22
+ "fastaFai": "/path/to/vip/resources/GRCh38/GCA_000001405.15_GRCh38_no_alt_analysis_set.fna.gz.fai",
23
+ "fastaGzi": "/path/to/vip/resources/GRCh38/GCA_000001405.15_GRCh38_no_alt_analysis_set.fna.gz.gzi"
24
+ }
25
+ },
26
+ "T2T": {
27
+ "reference": {
28
+ "fasta": "",
29
+ "fastaFai": "",
30
+ "fastaGzi": ""
31
+ },
32
+ "chain": {
33
+ "GRCh38": "/path/to/vip/resources/chm13v2-hg38.over.chain.gz"
34
+ }
35
+ },
36
+ "vcf": {
37
+ "start": "",
38
+ "annotate": {
39
+ "annotsv_cache_dir": "/path/to/vip/resources/annotsv/v3.3.6",
40
+ "ensembl_gene_mapping": "/path/to/vip/resources/biomart_ensembl_entrez_mapping.txt",
41
+ "gado_genes": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/genesProteinCoding.txt",
42
+ "gado_hpo": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/hp.obo",
43
+ "gado_predict_info": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/HPO_2024_04_04_prediction_info.txt.gz",
44
+ "gado_predict_matrix": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/HPO_2024_04_04_prediction_matrix",
45
+ "vep_buffer_size": 1000,
46
+ "vep_cache_dir": "/path/to/vip/resources/vep/cache",
47
+ "vep_plugin_dir": "/path/to/vip/resources/vep/plugins",
48
+ "vep_plugin_hpo": "/path/to/vip/resources/hpo_20240404.tsv",
49
+ "vep_plugin_inheritance": "/path/to/vip/resources/inheritance_20240115.tsv",
50
+ "vep_plugin_vkgl_mode": 1,
51
+ "vep_plugin_green_db_enabled": false,
52
+ "GRCh38": {
53
+ "capice_model": "/path/to/vip/resources/GRCh38/capice_model_v5.1.2-v3.ubj",
54
+ "expansionhunter_variant_catalog": "/path/to/vip/resources/GRCh38/expansionhunter_variant_catalog.json",
55
+ "stranger_catalog": "/path/to/vip/resources/GRCh38/variant_catalog_grch38_fixed.json",
56
+ "vep_custom_phylop": "/path/to/vip/resources/GRCh38/hg38.phyloP100way.bw",
57
+ "vep_plugin_clinvar": "/path/to/vip/resources/GRCh38/clinvar_20241001-stripped.tsv.gz",
58
+ "vep_plugin_gnomad": "/path/to/vip/resources/GRCh38/gnomad.total.v4.1.sites.stripped.tsv.gz",
59
+ "vep_plugin_spliceai_indel": "/path/to/vip/resources/GRCh38/spliceai_scores.masked.indel.hg38.vcf.gz",
60
+ "vep_plugin_spliceai_snv": "/path/to/vip/resources/GRCh38/spliceai_scores.masked.snv.hg38.vcf.gz",
61
+ "vep_plugin_utrannotator": "/path/to/vip/resources/GRCh38/uORF_5UTR_PUBLIC.txt",
62
+ "vep_plugin_vkgl": "/path/to/vip/resources/GRCh38/vkgl_consensus_20240701.tsv",
63
+ "vep_plugin_alphscore": "/path/to/vip/resources/GRCh38/AlphScore_final_20230825_stripped_GRCh38.tsv.gz",
64
+ "vep_plugin_ncer": "/path/to/vip/resources/GRCh38/GRCh38_ncER_perc.bed.gz",
65
+ "vep_plugin_green_db": "/path/to/vip/resources/GRCh38/GRCh38_GREEN-DB.bed.gz",
66
+ "vep_plugin_fathmm_MKL_scores": "/path/to/vip/resources/GRCh38/GRCh38_FATHMM-MKL_NC.tsv.gz",
67
+ "vep_plugin_ReMM_scores": "/path/to/vip/resources/GRCh38/GRCh38_ReMM.tsv.gz"
68
+ }
69
+ },
70
+ "classify": {
71
+ "annotate_path": 1,
72
+ "metadata": "/path/to/vip/resources/field_metadata.json",
73
+ "GRCh38": {
74
+ "decision_tree": "/path/to/vip/resources/decision_tree_GRCh38.json"
75
+ }
76
+ },
77
+ "classify_samples": {
78
+ "annotate_path": 1,
79
+ "metadata": "/path/to/vip/resources/field_metadata.json",
80
+ "GRCh38": {
81
+ "decision_tree": "/path/to/vip/resources/decision_tree_samples.json"
82
+ }
83
+ },
84
+ "filter": {
85
+ "classes": "VUS,LP,P",
86
+ "consequences": true
87
+ },
88
+ "filter_samples": {
89
+ "classes": "OK,U1,U2"
90
+ },
91
+ "report": {
92
+ "include_crams": true,
93
+ "max_records": "",
94
+ "max_samples": "",
95
+ "template": "/path/to/vip/resources/vip-report-template-v6.2.0.html",
96
+ "metadata": "/path/to/vip/resources/field_metadata.json",
97
+ "GRCh38": {
98
+ "genes": "/path/to/vip/resources/GRCh38/GCF_000001405.39_GRCh38.p13_genomic_mapped.gff.gz"
99
+ }
100
+ }
101
+ },
102
+ "input": "/path/to/vip/test/suites/vcf/resources/empty_input.tsv",
103
+ "output": "/path/to/vip/test/output/vcf/empty_input"
104
+ }
105
+ },
106
+ "sample_variants": {
107
+ "sorts": {
108
+ "all": [
109
+ {
110
+ "selected": true,
111
+ "orders": [
112
+ {
113
+ "direction": "desc",
114
+ "field": {
115
+ "type": "info",
116
+ "name": "CSQ/CAPICE_SC"
117
+ }
118
+ }
119
+ ]
120
+ },
121
+ {
122
+ "selected": false,
123
+ "orders": [
124
+ {
125
+ "direction": "asc",
126
+ "field": {
127
+ "type": "info",
128
+ "name": "CSQ/CAPICE_SC"
129
+ }
130
+ }
131
+ ]
132
+ },
133
+ {
134
+ "selected": false,
135
+ "orders": [
136
+ {
137
+ "direction": "desc",
138
+ "field": {
139
+ "type": "info",
140
+ "name": "CSQ/gnomAD_HN"
141
+ }
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "selected": false,
147
+ "orders": [
148
+ {
149
+ "direction": "asc",
150
+ "field": {
151
+ "type": "info",
152
+ "name": "CSQ/gnomAD_HN"
153
+ }
154
+ }
155
+ ]
156
+ }
157
+ ],
158
+ "str": [
159
+ {
160
+ "selected": false,
161
+ "orders": [
162
+ {
163
+ "direction": "desc",
164
+ "field": {
165
+ "type": "info",
166
+ "name": "STR_NORMAL_MAX"
167
+ }
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "selected": false,
173
+ "orders": [
174
+ {
175
+ "direction": "asc",
176
+ "field": {
177
+ "type": "info",
178
+ "name": "STR_NORMAL_MAX"
179
+ }
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "selected": false,
185
+ "orders": [
186
+ {
187
+ "direction": "desc",
188
+ "field": {
189
+ "type": "info",
190
+ "name": "STR_PATHOLOGIC_MIN"
191
+ }
192
+ }
193
+ ]
194
+ },
195
+ {
196
+ "selected": false,
197
+ "orders": [
198
+ {
199
+ "direction": "asc",
200
+ "field": {
201
+ "type": "info",
202
+ "name": "STR_PATHOLOGIC_MIN"
203
+ }
204
+ }
205
+ ]
206
+ }
207
+ ]
208
+ },
209
+ "cells": {
210
+ "all": [
211
+ {
212
+ "type": "composed",
213
+ "name": "locus"
214
+ },
215
+ {
216
+ "type": "fixed",
217
+ "name": "ref"
218
+ },
219
+ {
220
+ "type": "info",
221
+ "name": "SVTYPE",
222
+ "label": "Type"
223
+ },
224
+ {
225
+ "type": "composed",
226
+ "name": "genotype",
227
+ "label": "Proband"
228
+ },
229
+ {
230
+ "type": "composed",
231
+ "name": "genotype_maternal",
232
+ "label": "Mother"
233
+ },
234
+ {
235
+ "type": "composed",
236
+ "name": "genotype_paternal",
237
+ "label": "Father"
238
+ },
239
+ {
240
+ "type": "group",
241
+ "fields": [
242
+ {
243
+ "type": "info",
244
+ "name": "CSQ/Consequence"
245
+ },
246
+ {
247
+ "type": "composed",
248
+ "name": "gene"
249
+ },
250
+ {
251
+ "type": "composed",
252
+ "name": "inheritancePattern"
253
+ },
254
+ {
255
+ "type": "composed",
256
+ "name": "hpo"
257
+ },
258
+ {
259
+ "type": "info",
260
+ "name": "CSQ/HGVSc"
261
+ },
262
+ {
263
+ "type": "info",
264
+ "name": "CSQ/HGVSp"
265
+ },
266
+ {
267
+ "type": "info",
268
+ "name": "CSQ/CAPICE_SC"
269
+ },
270
+ {
271
+ "type": "composed",
272
+ "name": "vipC"
273
+ },
274
+ {
275
+ "type": "composed",
276
+ "name": "vipCS"
277
+ },
278
+ {
279
+ "type": "composed",
280
+ "name": "vkgl"
281
+ },
282
+ {
283
+ "type": "composed",
284
+ "name": "clinVar"
285
+ },
286
+ {
287
+ "type": "composed",
288
+ "name": "gnomAdAf"
289
+ },
290
+ {
291
+ "type": "info",
292
+ "name": "CSQ/gnomAD_HN"
293
+ },
294
+ {
295
+ "type": "info",
296
+ "name": "CSQ/PUBMED"
297
+ }
298
+ ]
299
+ }
300
+ ],
301
+ "snv": [
302
+ {
303
+ "type": "composed",
304
+ "name": "locus"
305
+ },
306
+ {
307
+ "type": "fixed",
308
+ "name": "ref"
309
+ },
310
+ {
311
+ "type": "info",
312
+ "name": "SVTYPE"
313
+ },
314
+ {
315
+ "type": "composed",
316
+ "name": "genotype",
317
+ "label": "Proband"
318
+ },
319
+ {
320
+ "type": "composed",
321
+ "name": "genotype_maternal",
322
+ "label": "Mother"
323
+ },
324
+ {
325
+ "type": "composed",
326
+ "name": "genotype_paternal",
327
+ "label": "Father"
328
+ },
329
+ {
330
+ "type": "group",
331
+ "fields": [
332
+ {
333
+ "type": "info",
334
+ "name": "CSQ/Consequence"
335
+ },
336
+ {
337
+ "type": "composed",
338
+ "name": "gene"
339
+ },
340
+ {
341
+ "type": "info",
342
+ "name": "CSQ/IncompletePenetrance"
343
+ },
344
+ {
345
+ "type": "composed",
346
+ "name": "inheritancePattern"
347
+ },
348
+ {
349
+ "type": "info",
350
+ "name": "CSQ/HGVSc"
351
+ },
352
+ {
353
+ "type": "info",
354
+ "name": "CSQ/HGVSp"
355
+ },
356
+ {
357
+ "type": "info",
358
+ "name": "CSQ/CAPICE_SC"
359
+ },
360
+ {
361
+ "type": "composed",
362
+ "name": "vipC"
363
+ },
364
+ {
365
+ "type": "composed",
366
+ "name": "vipCS"
367
+ },
368
+ {
369
+ "type": "composed",
370
+ "name": "vipCS"
371
+ },
372
+ {
373
+ "type": "composed",
374
+ "name": "vkgl"
375
+ },
376
+ {
377
+ "type": "info",
378
+ "name": "CSQ/clinVar_CLNSIG"
379
+ },
380
+ {
381
+ "type": "info",
382
+ "name": "CSQ/gnomAD_AF"
383
+ },
384
+ {
385
+ "type": "info",
386
+ "name": "CSQ/gnomAD_HN"
387
+ },
388
+ {
389
+ "type": "info",
390
+ "name": "CSQ/PUBMED"
391
+ }
392
+ ]
393
+ }
394
+ ],
395
+ "str": [
396
+ {
397
+ "type": "composed",
398
+ "name": "locus"
399
+ },
400
+ {
401
+ "type": "composed",
402
+ "name": "genotype",
403
+ "label": "Proband"
404
+ },
405
+ {
406
+ "type": "composed",
407
+ "name": "genotype_maternal",
408
+ "label": "Mother"
409
+ },
410
+ {
411
+ "type": "composed",
412
+ "name": "genotype_paternal",
413
+ "label": "Father"
414
+ },
415
+ {
416
+ "type": "genotype",
417
+ "name": "REPCI"
418
+ },
419
+ {
420
+ "type": "genotype",
421
+ "name": "LC"
422
+ },
423
+ {
424
+ "type": "genotype",
425
+ "name": "ADSP"
426
+ },
427
+ {
428
+ "type": "info",
429
+ "name": "STR_NORMAL_MAX"
430
+ },
431
+ {
432
+ "type": "info",
433
+ "name": "STR_PATHOLOGIC_MIN"
434
+ },
435
+ {
436
+ "type": "group",
437
+ "fields": [
438
+ {
439
+ "type": "composed",
440
+ "name": "gene"
441
+ },
442
+ {
443
+ "type": "info",
444
+ "name": "CSQ/Feature"
445
+ },
446
+ {
447
+ "type": "composed",
448
+ "name": "inheritancePattern"
449
+ },
450
+ {
451
+ "type": "composed",
452
+ "name": "vipC"
453
+ },
454
+ {
455
+ "type": "composed",
456
+ "name": "vipCS"
457
+ }
458
+ ]
459
+ }
460
+ ]
461
+ },
462
+ "filters": {
463
+ "all": [
464
+ {
465
+ "type": "composed",
466
+ "name": "locus",
467
+ "defaultValue": "chr8:60850000-60855000"
468
+ },
469
+ {
470
+ "type": "info",
471
+ "name": "CSQ/PICK",
472
+ "defaultValue": "true"
473
+ },
474
+ {
475
+ "type": "info",
476
+ "name": "n_object0/n_string1"
477
+ },
478
+ {
479
+ "type": "info",
480
+ "name": "CSQ/SYMBOL",
481
+ "defaultValue": "CHD7"
482
+ },
483
+ {
484
+ "type": "info",
485
+ "name": "BND_DEPTH",
486
+ "defaultValue": "20,100"
487
+ },
488
+ {
489
+ "type": "composed",
490
+ "name": "hpo",
491
+ "label": "Gene-phenotype association (HPO)"
492
+ },
493
+ {
494
+ "type": "info",
495
+ "name": "CSQ/GADO_PD",
496
+ "label": "Gene-phenotype association (GADO)"
497
+ },
498
+ {
499
+ "type": "info",
500
+ "name": "CSQ/IncompletePenetrance"
501
+ },
502
+ {
503
+ "type": "composed",
504
+ "name": "vipC",
505
+ "defaultValue": "P,LP"
506
+ },
507
+ {
508
+ "type": "composed",
509
+ "name": "vipCS"
510
+ },
511
+ {
512
+ "type": "info",
513
+ "name": "CSQ/VKGL_CL",
514
+ "defaultValue": "__null"
515
+ },
516
+ {
517
+ "type": "info",
518
+ "name": "CSQ/clinVar_CLNSIG"
519
+ },
520
+ {
521
+ "type": "genotype",
522
+ "name": "VI"
523
+ },
524
+ {
525
+ "type": "composed",
526
+ "name": "inheritanceMatch",
527
+ "label": "Inheritance match",
528
+ "description": "Indication if the inheritance pattern of any gene associated with the variant matches the inheritance pattern suitable for the samples in the family of the sample. For more information see https://github.com/molgenis/vip-inheritance-matcher ."
529
+ },
530
+ {
531
+ "type": "composed",
532
+ "name": "deNovo",
533
+ "label": "De Novo",
534
+ "description": "Indication if the variant is De Novo or inherited from the parents of the sample.",
535
+ "defaultValue": "true"
536
+ },
537
+ {
538
+ "type": "composed",
539
+ "name": "allelicImbalance",
540
+ "label": "Allelic Imbalance",
541
+ "description": "Sample genotype shows allelic imbalance, calculated by: the allelic depth (AD) value of the first allele divided by the sum of the AD values for the genotype. For hetrozygotic genotypes values below 0.02 or above 0.8 are considered imbalanced. For homozygotic genotypes values between 0.02 and 0.98 are considered imbalanced."
542
+ }
543
+ ],
544
+ "str": [
545
+ {
546
+ "type": "composed",
547
+ "name": "locus"
548
+ },
549
+ {
550
+ "type": "info",
551
+ "name": "CSQ/HPO",
552
+ "label": "Gene-phenotype association (HPO)"
553
+ },
554
+ {
555
+ "type": "info",
556
+ "name": "CSQ/PICK"
557
+ },
558
+ {
559
+ "type": "info",
560
+ "name": "CSQ/GADO_PD",
561
+ "label": "Gene-phenotype association (GADO)"
562
+ },
563
+ {
564
+ "type": "info",
565
+ "name": "CSQ/SYMBOL"
566
+ },
567
+ {
568
+ "type": "composed",
569
+ "name": "vipC"
570
+ },
571
+ {
572
+ "type": "composed",
573
+ "name": "vipCS"
574
+ }
575
+ ]
576
+ },
577
+ "recordsPerPage": {
578
+ "str": [
579
+ {
580
+ "number": 10
581
+ },
582
+ {
583
+ "number": 20,
584
+ "selected": true
585
+ },
586
+ {
587
+ "number": 50
588
+ },
589
+ {
590
+ "number": 100
591
+ }
592
+ ]
593
+ }
594
+ },
595
+ "variants": {
596
+ "cells": {
597
+ "all": [
598
+ {
599
+ "type": "composed",
600
+ "name": "locus"
601
+ },
602
+ {
603
+ "type": "fixed",
604
+ "name": "id"
605
+ },
606
+ {
607
+ "type": "fixed",
608
+ "name": "ref"
609
+ },
610
+ {
611
+ "type": "fixed",
612
+ "name": "alt"
613
+ },
614
+ {
615
+ "type": "fixed",
616
+ "name": "qual"
617
+ },
618
+ {
619
+ "type": "fixed",
620
+ "name": "filter"
621
+ },
622
+ {
623
+ "type": "info",
624
+ "name": ".*"
625
+ }
626
+ ]
627
+ },
628
+ "filters": {
629
+ "all": [
630
+ {
631
+ "type": "composed",
632
+ "name": "locus"
633
+ },
634
+ {
635
+ "type": "fixed",
636
+ "name": "id"
637
+ },
638
+ {
639
+ "type": "fixed",
640
+ "name": "ref"
641
+ },
642
+ {
643
+ "type": "fixed",
644
+ "name": "alt"
645
+ },
646
+ {
647
+ "type": "fixed",
648
+ "name": "qual"
649
+ },
650
+ {
651
+ "type": "fixed",
652
+ "name": "filter"
653
+ },
654
+ {
655
+ "type": "info",
656
+ "name": ".*"
657
+ }
658
+ ]
659
+ }
660
+ },
661
+ "sample_variant": {
662
+ "cells": {
663
+ "all": [
664
+ {
665
+ "type": "composed",
666
+ "name": "vipC"
667
+ },
668
+ {
669
+ "type": "composed",
670
+ "name": "vipCS"
671
+ },
672
+ {
673
+ "type": "info",
674
+ "name": "CSQ/((?!VIPC|VIPP).)*"
675
+ }
676
+ ]
677
+ },
678
+ "sample_cells": {
679
+ "all": [
680
+ {
681
+ "type": "composed",
682
+ "name": "genotype",
683
+ "label": "Genotype"
684
+ },
685
+ {
686
+ "type": "genotype",
687
+ "name": "((?!GT|VIPC_S|VIPP_S).)*"
688
+ }
689
+ ]
690
+ }
691
+ },
692
+ "variant": {
693
+ "cells": {
694
+ "all": [
695
+ {
696
+ "type": "composed",
697
+ "name": "vipC"
698
+ },
699
+ {
700
+ "type": "info",
701
+ "name": "CSQ/((?!VIPC|VIPP).)*"
702
+ }
703
+ ]
704
+ }
705
+ },
706
+ "sample_variant_consequence": {
707
+ "sample_cells": {
708
+ "all": [
709
+ {
710
+ "type": "composed",
711
+ "name": "genotype",
712
+ "label": "Genotype"
713
+ },
714
+ {
715
+ "type": "genotype",
716
+ "name": "((?!GT|VIPC_S|VIPP_S).)*"
717
+ }
718
+ ]
719
+ }
720
+ },
721
+ "variant_consequence": {}
722
+ }