@molgenis/vip-report-template 6.2.0 → 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.
Files changed (285) hide show
  1. package/.nvmrc +1 -1
  2. package/.travis.yml +8 -8
  3. package/README.md +411 -1
  4. package/eslint.config.mjs +11 -0
  5. package/package.json +40 -35
  6. package/scripts/deploy_npm_registry.sh +5 -0
  7. package/src/App.tsx +30 -24
  8. package/src/assets/sass/main.scss +12 -4
  9. package/src/components/Allele.tsx +95 -0
  10. package/src/components/Anchor.tsx +1 -1
  11. package/src/components/Breadcrumb.tsx +6 -4
  12. package/src/components/DatasetDropdown.tsx +12 -25
  13. package/src/components/ErrorNotification.tsx +9 -0
  14. package/src/components/GenomeBrowser.tsx +40 -23
  15. package/src/components/HpoTerm.tsx +1 -1
  16. package/src/components/{record/Pager.tsx → Pager.tsx} +21 -14
  17. package/src/components/RecordsPerPage.tsx +9 -7
  18. package/src/components/RecordsTable.tsx +130 -0
  19. package/src/components/SampleTable.tsx +70 -98
  20. package/src/components/SearchBox.tsx +8 -2
  21. package/src/components/Sort.tsx +28 -25
  22. package/src/components/Table.tsx +16 -0
  23. package/src/components/Tooltip.tsx +20 -0
  24. package/src/components/VariantBreadcrumb.tsx +54 -0
  25. package/src/components/VariantConsequenceContainer.tsx +100 -0
  26. package/src/components/VariantConsequenceTable.tsx +58 -0
  27. package/src/components/VariantContainer.tsx +71 -0
  28. package/src/components/VariantFilters.tsx +27 -0
  29. package/src/components/VariantGenotypeTable.tsx +44 -0
  30. package/src/components/VariantInfoTable.tsx +24 -33
  31. package/src/components/VariantResults.tsx +103 -0
  32. package/src/components/VariantTable.tsx +62 -66
  33. package/src/components/VariantTypeSelect.tsx +34 -0
  34. package/src/components/VariantsContainer.tsx +150 -0
  35. package/src/components/VariantsContainerHeader.tsx +70 -0
  36. package/src/components/field/Field.tsx +80 -0
  37. package/src/components/field/FieldAlt.tsx +19 -0
  38. package/src/components/field/FieldChrom.tsx +6 -0
  39. package/src/components/{record/Id.tsx → field/FieldFilter.tsx} +2 -1
  40. package/src/components/field/FieldFormat.tsx +10 -0
  41. package/src/components/{record/Filter.tsx → field/FieldId.tsx} +1 -1
  42. package/src/components/field/FieldPos.tsx +6 -0
  43. package/src/components/field/FieldQual.tsx +6 -0
  44. package/src/components/field/FieldRef.tsx +8 -0
  45. package/src/components/field/composed/FieldClinVar.tsx +72 -0
  46. package/src/components/field/composed/FieldComposed.tsx +68 -0
  47. package/src/components/field/composed/FieldGene.tsx +39 -0
  48. package/src/components/field/composed/FieldGenotype.tsx +35 -0
  49. package/src/components/{record/format/GenotypeField.tsx → field/composed/FieldGenotypeSnvSv.tsx} +20 -16
  50. package/src/components/field/composed/FieldGenotypeStr.tsx +31 -0
  51. package/src/components/field/composed/FieldGnomAd.tsx +58 -0
  52. package/src/components/field/composed/FieldHpo.tsx +50 -0
  53. package/src/components/field/composed/FieldInheritanceModes.tsx +32 -0
  54. package/src/components/field/composed/FieldLocus.tsx +18 -0
  55. package/src/components/field/composed/FieldVipC.tsx +25 -0
  56. package/src/components/field/composed/FieldVipCS.tsx +15 -0
  57. package/src/components/field/composed/FieldVkgl.tsx +37 -0
  58. package/src/components/field/genotype/FieldGenotype.tsx +19 -0
  59. package/src/components/field/genotype/FieldGenotypeType.tsx +9 -0
  60. package/src/components/field/info/FieldConsequence.tsx +15 -0
  61. package/src/components/{record/info/Hgvs.tsx → field/info/FieldHgvs.tsx} +4 -6
  62. package/src/components/field/info/FieldInfo.tsx +27 -0
  63. package/src/components/{record/info/PubMed.tsx → field/info/FieldPubMed.tsx} +4 -7
  64. package/src/components/field/typed/FieldCategorical.tsx +17 -0
  65. package/src/components/{record/field/FieldValueCharacter.tsx → field/typed/FieldCharacter.tsx} +3 -2
  66. package/src/components/{record/field/FieldValueFlag.tsx → field/typed/FieldFlag.tsx} +3 -2
  67. package/src/components/{record/field/FieldValueFloat.tsx → field/typed/FieldFloat.tsx} +3 -2
  68. package/src/components/{record/field/FieldValueInteger.tsx → field/typed/FieldInteger.tsx} +3 -2
  69. package/src/components/{record/field/FieldValueString.tsx → field/typed/FieldString.tsx} +3 -2
  70. package/src/components/field/typed/FieldTyped.tsx +20 -0
  71. package/src/components/field/typed/FieldTypedItem.tsx +49 -0
  72. package/src/components/field/typed/FieldTypedMultiple.tsx +21 -0
  73. package/src/components/filter/Filter.tsx +56 -48
  74. package/src/components/filter/FilterWrapper.scss +23 -0
  75. package/src/components/filter/FilterWrapper.tsx +63 -0
  76. package/src/components/filter/composed/FilterAllelicImbalance.tsx +26 -0
  77. package/src/components/filter/composed/FilterComposed.tsx +92 -0
  78. package/src/components/filter/composed/FilterDeNovo.tsx +35 -0
  79. package/src/components/filter/composed/FilterHpo.tsx +16 -0
  80. package/src/components/filter/composed/FilterInheritance.tsx +42 -0
  81. package/src/components/filter/composed/FilterLocus.tsx +75 -0
  82. package/src/components/filter/composed/FilterVipC.tsx +16 -0
  83. package/src/components/filter/composed/FilterVipCS.tsx +16 -0
  84. package/src/components/filter/fixed/FilterAlt.tsx +20 -0
  85. package/src/components/filter/fixed/FilterChrom.tsx +22 -0
  86. package/src/components/filter/fixed/FilterFilter.tsx +20 -0
  87. package/src/components/filter/fixed/FilterFixed.tsx +96 -0
  88. package/src/components/filter/fixed/FilterId.tsx +20 -0
  89. package/src/components/filter/fixed/FilterPos.tsx +22 -0
  90. package/src/components/filter/fixed/FilterQual.tsx +21 -0
  91. package/src/components/filter/fixed/FilterRef.tsx +22 -0
  92. package/src/components/filter/typed/FilterCategorical.tsx +119 -0
  93. package/src/components/filter/typed/FilterFlag.tsx +23 -0
  94. package/src/components/filter/typed/FilterInterval.tsx +72 -0
  95. package/src/components/filter/typed/FilterString.tsx +43 -0
  96. package/src/components/filter/typed/FilterTyped.tsx +56 -0
  97. package/src/components/form/ButtonApply.tsx +11 -0
  98. package/src/components/form/ButtonDownload.tsx +11 -0
  99. package/src/components/form/ButtonReset.tsx +9 -0
  100. package/src/components/{Checkbox.tsx → form/Checkbox.tsx} +4 -9
  101. package/src/components/form/Input.tsx +19 -0
  102. package/src/components/form/Select.scss +7 -0
  103. package/src/components/form/Select.tsx +34 -0
  104. package/src/components/tree/DecisionTreeBoolMultiQuery.tsx +1 -1
  105. package/src/components/tree/DecisionTreeBoolQuery.tsx +1 -1
  106. package/src/components/tree/DecisionTreeNode.tsx +41 -39
  107. package/src/components/tree/DecisionTreeNodeBool.tsx +1 -1
  108. package/src/components/tree/DecisionTreeNodeBoolMulti.tsx +1 -1
  109. package/src/components/tree/DecisionTreeNodeCategorical.tsx +1 -1
  110. package/src/components/tree/DecisionTreeNodeExists.tsx +1 -1
  111. package/src/components/tree/DecisionTreeNodeLeaf.tsx +1 -1
  112. package/src/components/tree/DecisionTreeOutcomeNode.tsx +1 -1
  113. package/src/components/tree/DecisionTreePath.tsx +1 -1
  114. package/src/igv.d.ts +2 -1
  115. package/src/index.tsx +48 -19
  116. package/src/mocks/GRCh37/decisionTree.json +23 -22
  117. package/src/mocks/GRCh37/field_metadata.json +435 -95
  118. package/src/mocks/GRCh37/sampleTree.json +21 -1
  119. package/src/mocks/GRCh37/static.ts +62 -134
  120. package/src/mocks/GRCh37/vcf/family.vcf.blob +9 -3
  121. package/src/mocks/GRCh38/decisionTree.json +52 -33
  122. package/src/mocks/GRCh38/decisionTreeStr.json +572 -0
  123. package/src/mocks/GRCh38/fasta/chr1_149380406-149403321.fasta.gz.blob +0 -0
  124. package/src/mocks/GRCh38/field_metadata.json +435 -95
  125. package/src/mocks/GRCh38/sampleTree.json +175 -0
  126. package/src/mocks/GRCh38/static.ts +101 -42
  127. package/src/mocks/GRCh38/str.cram.blob +0 -0
  128. package/src/mocks/GRCh38/str.cram.crai.blob +0 -0
  129. package/src/mocks/GRCh38/vcf/family.vcf.blob +25 -24
  130. package/src/mocks/GRCh38/vcf/no_vep.vcf.blob +29 -28
  131. package/src/mocks/GRCh38/vcf/samples_0.vcf.blob +28 -27
  132. package/src/mocks/GRCh38/vcf/samples_1.vcf.blob +29 -28
  133. package/src/mocks/GRCh38/vcf/samples_100.vcf.blob +28 -27
  134. package/src/mocks/GRCh38/vcf/str.vcf.blob +321 -0
  135. package/src/mocks/MockApiClient.ts +339 -332
  136. package/src/mocks/config_cram.json +701 -0
  137. package/src/mocks/config_vcf.json +699 -0
  138. package/src/store/app.ts +30 -0
  139. package/src/store/index.tsx +3 -168
  140. package/src/store/variants.ts +182 -0
  141. package/src/types/config.d.ts +190 -0
  142. package/src/types/configCellComposed.d.ts +86 -0
  143. package/src/types/configCells.d.ts +129 -0
  144. package/src/types/configFilter.d.ts +80 -0
  145. package/src/types/configFilterComposed.d.ts +60 -0
  146. package/src/types/configSort.d.ts +13 -0
  147. package/src/types/filter.d.ts +17 -0
  148. package/src/types/store.d.ts +34 -0
  149. package/src/utils/api.ts +281 -0
  150. package/src/utils/config/config.ts +182 -0
  151. package/src/utils/config/configCells.ts +74 -0
  152. package/src/utils/config/configCellsComposed.ts +508 -0
  153. package/src/utils/config/configCellsField.ts +61 -0
  154. package/src/utils/config/configCellsFixed.ts +126 -0
  155. package/src/utils/config/configFilters.ts +46 -0
  156. package/src/utils/config/configFiltersComposed.ts +208 -0
  157. package/src/utils/config/configFiltersField.ts +49 -0
  158. package/src/utils/config/configFiltersFixed.ts +106 -0
  159. package/src/utils/config/configSorts.ts +44 -0
  160. package/src/utils/config/configValidator.ts +380 -0
  161. package/src/utils/config/configVip.ts +25 -0
  162. package/src/utils/csq.ts +115 -0
  163. package/src/utils/decisionTree.ts +45 -0
  164. package/src/utils/download.ts +30 -0
  165. package/src/utils/error.ts +69 -0
  166. package/src/utils/query/query.ts +55 -0
  167. package/src/utils/query/queryFilter.ts +132 -0
  168. package/src/utils/query/queryFilterComposed.ts +247 -0
  169. package/src/utils/query/queryFilterField.ts +75 -0
  170. package/src/utils/query/queryFilterFixed.ts +44 -0
  171. package/src/utils/query/querySample.ts +18 -0
  172. package/src/utils/query/queryVariantType.ts +76 -0
  173. package/src/utils/query/selector.ts +41 -0
  174. package/src/utils/{sortUtils.ts → query/sort.ts} +32 -11
  175. package/src/utils/sample.ts +19 -35
  176. package/src/utils/utils.ts +66 -2
  177. package/src/utils/variantType.ts +43 -0
  178. package/src/utils/vcf.ts +352 -0
  179. package/src/views/Help.tsx +109 -114
  180. package/src/views/Home.tsx +3 -2
  181. package/src/views/Sample.tsx +12 -7
  182. package/src/views/SampleVariant.tsx +23 -112
  183. package/src/views/SampleVariantConsequence.tsx +54 -144
  184. package/src/views/SampleVariants.tsx +33 -445
  185. package/src/views/SampleVariantsRedirect.tsx +20 -0
  186. package/src/views/Samples.tsx +7 -10
  187. package/src/views/Variant.tsx +31 -61
  188. package/src/views/VariantConsequence.tsx +42 -72
  189. package/src/views/Variants.tsx +29 -138
  190. package/src/views/VariantsRedirect.tsx +25 -0
  191. package/src/views/data/data.tsx +32 -6
  192. package/tests/store/variants.test.ts +122 -0
  193. package/tests/utils/config/config.test.ts +167 -0
  194. package/tests/utils/config/configCells.test.ts +86 -0
  195. package/tests/utils/config/configCellsComposed.test.ts +1163 -0
  196. package/tests/utils/config/configCellsField.test.ts +164 -0
  197. package/tests/utils/config/configCellsFixed.test.ts +99 -0
  198. package/tests/utils/config/configFilters.test.ts +80 -0
  199. package/tests/utils/config/configFiltersComposed.test.ts +504 -0
  200. package/tests/utils/config/configFiltersField.test.ts +140 -0
  201. package/tests/utils/config/configFiltersFixed.test.ts +81 -0
  202. package/tests/utils/config/configSorts.test.ts +55 -0
  203. package/tests/utils/config/configValidator.test.ts +56 -0
  204. package/tests/utils/config/configVip.test.ts +53 -0
  205. package/tests/utils/decisionTree.test.ts +71 -0
  206. package/tests/utils/download.test.ts +20 -0
  207. package/tests/utils/query/query.test.ts +84 -0
  208. package/tests/utils/query/queryFilter.test.ts +243 -0
  209. package/tests/utils/query/queryFilterComposed.test.ts +301 -0
  210. package/tests/utils/query/queryFilterField.test.ts +75 -0
  211. package/tests/utils/query/queryFilterFixed.test.ts +86 -0
  212. package/tests/utils/query/querySample.test.ts +45 -0
  213. package/tests/utils/query/queryVariantType.test.ts +56 -0
  214. package/{src/__tests__/sortUtils.test.ts → tests/utils/query/sort.test.ts} +3 -4
  215. package/tests/utils/sample.test.ts +259 -0
  216. package/tests/utils/utils.test.ts +120 -0
  217. package/tests/utils/variantType.test.ts +48 -0
  218. package/tests/utils/vcf.test.ts +649 -0
  219. package/tsconfig.json +6 -2
  220. package/vite.config.mts +20 -3
  221. package/.eslintignore +0 -4
  222. package/.eslintrc.js +0 -23
  223. package/src/Api.ts +0 -12
  224. package/src/__tests__/decisionTreeUtils.test.ts +0 -75
  225. package/src/__tests__/field.test.ts +0 -107
  226. package/src/__tests__/query.test.ts +0 -188
  227. package/src/__tests__/sample.test.ts +0 -184
  228. package/src/__tests__/utils.test.ts +0 -24
  229. package/src/__tests__/viewUtils.test.ts +0 -125
  230. package/src/components/ConsequenceTable.tsx +0 -45
  231. package/src/components/Error.tsx +0 -9
  232. package/src/components/FieldHeader.tsx +0 -26
  233. package/src/components/InfoCollapsablePane.tsx +0 -90
  234. package/src/components/VariantInfoNestedTable.tsx +0 -127
  235. package/src/components/VariantSampleTable.tsx +0 -58
  236. package/src/components/VariantsSampleTable.tsx +0 -184
  237. package/src/components/VariantsTable.tsx +0 -125
  238. package/src/components/filter/FilterAllelicBalance.tsx +0 -81
  239. package/src/components/filter/FilterCategorical.tsx +0 -81
  240. package/src/components/filter/FilterClinVar.tsx +0 -21
  241. package/src/components/filter/FilterGene.tsx +0 -34
  242. package/src/components/filter/FilterHpo.tsx +0 -161
  243. package/src/components/filter/FilterInheritance.tsx +0 -162
  244. package/src/components/filter/FilterIntegerGq.tsx +0 -47
  245. package/src/components/filter/FilterVI.tsx +0 -68
  246. package/src/components/filter/FilterVariantType.tsx +0 -146
  247. package/src/components/filter/Filters.tsx +0 -29
  248. package/src/components/filter/InfoFilter.tsx +0 -39
  249. package/src/components/filter/InfoFilters.tsx +0 -35
  250. package/src/components/filter/SampleFilters.tsx +0 -93
  251. package/src/components/filter/SamplesFilters.tsx +0 -33
  252. package/src/components/record/Allele.tsx +0 -38
  253. package/src/components/record/AlleleBreakend.tsx +0 -5
  254. package/src/components/record/AlleleMissing.tsx +0 -5
  255. package/src/components/record/AlleleNucs.tsx +0 -49
  256. package/src/components/record/AlleleSymbolic.tsx +0 -5
  257. package/src/components/record/Alt.tsx +0 -17
  258. package/src/components/record/Chrom.tsx +0 -5
  259. package/src/components/record/Format.tsx +0 -40
  260. package/src/components/record/Info.tsx +0 -55
  261. package/src/components/record/Pos.tsx +0 -5
  262. package/src/components/record/Qual.tsx +0 -5
  263. package/src/components/record/RecordDownload.tsx +0 -66
  264. package/src/components/record/Ref.tsx +0 -6
  265. package/src/components/record/field/Field.tsx +0 -36
  266. package/src/components/record/field/FieldMultipleValue.tsx +0 -22
  267. package/src/components/record/field/FieldSingleValue.tsx +0 -35
  268. package/src/components/record/info/ClinVar.tsx +0 -81
  269. package/src/components/record/info/Consequence.tsx +0 -18
  270. package/src/components/record/info/Gene.tsx +0 -56
  271. package/src/components/record/info/GnomAD.tsx +0 -54
  272. package/src/components/record/info/Hpo.tsx +0 -52
  273. package/src/components/record/info/InheritanceModes.tsx +0 -22
  274. package/src/components/record/info/VipC.tsx +0 -23
  275. package/src/components/record/info/Vkgl.tsx +0 -42
  276. package/src/mocks/GRCh37/vcf/no_vep.vcf.blob +0 -61
  277. package/src/mocks/GRCh37/vcf/samples_0.vcf.blob +0 -93
  278. package/src/mocks/GRCh37/vcf/samples_1.vcf.blob +0 -93
  279. package/src/mocks/GRCh37/vcf/samples_100.vcf.blob +0 -93
  280. package/src/utils/ApiUtils.ts +0 -263
  281. package/src/utils/csqUtils.ts +0 -27
  282. package/src/utils/decisionTreeUtils.ts +0 -31
  283. package/src/utils/field.ts +0 -49
  284. package/src/utils/query.ts +0 -154
  285. package/src/utils/viewUtils.ts +0 -32
@@ -0,0 +1,701 @@
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
+ "cram": {
37
+ "call_snv": false,
38
+ "call_str": true,
39
+ "call_sv": false,
40
+ "call_cnv": false
41
+ },
42
+ "vcf": {
43
+ "start": "",
44
+ "annotate": {
45
+ "annotsv_cache_dir": "/path/to/vip/resources/annotsv/v3.3.6",
46
+ "ensembl_gene_mapping": "/path/to/vip/resources/biomart_ensembl_entrez_mapping.txt",
47
+ "gado_genes": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/genesProteinCoding.txt",
48
+ "gado_hpo": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/hp.obo",
49
+ "gado_predict_info": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/HPO_2024_04_04_prediction_info.txt.gz",
50
+ "gado_predict_matrix": "/path/to/vip/resources/gado/v1.0.4_HPO_v2024-04-04/HPO_2024_04_04_prediction_matrix",
51
+ "vep_buffer_size": 1000,
52
+ "vep_cache_dir": "/path/to/vip/resources/vep/cache",
53
+ "vep_plugin_dir": "/path/to/vip/resources/vep/plugins",
54
+ "vep_plugin_hpo": "/path/to/vip/resources/hpo_20240404.tsv",
55
+ "vep_plugin_inheritance": "/path/to/vip/resources/inheritance_20240115.tsv",
56
+ "vep_plugin_vkgl_mode": 1,
57
+ "vep_plugin_green_db_enabled": false,
58
+ "GRCh38": {
59
+ "capice_model": "/path/to/vip/resources/GRCh38/capice_model_v5.1.2-v3.ubj",
60
+ "expansionhunter_variant_catalog": "/path/to/vip/resources/GRCh38/expansionhunter_variant_catalog.json",
61
+ "stranger_catalog": "/path/to/vip/resources/GRCh38/variant_catalog_grch38_fixed.json",
62
+ "vep_custom_phylop": "/path/to/vip/resources/GRCh38/hg38.phyloP100way.bw",
63
+ "vep_plugin_clinvar": "/path/to/vip/resources/GRCh38/clinvar_20241001-stripped.tsv.gz",
64
+ "vep_plugin_gnomad": "/path/to/vip/resources/GRCh38/gnomad.total.v4.1.sites.stripped.tsv.gz",
65
+ "vep_plugin_spliceai_indel": "/path/to/vip/resources/GRCh38/spliceai_scores.masked.indel.hg38.vcf.gz",
66
+ "vep_plugin_spliceai_snv": "/path/to/vip/resources/GRCh38/spliceai_scores.masked.snv.hg38.vcf.gz",
67
+ "vep_plugin_utrannotator": "/path/to/vip/resources/GRCh38/uORF_5UTR_PUBLIC.txt",
68
+ "vep_plugin_vkgl": "/path/to/vip/resources/GRCh38/vkgl_consensus_20240701.tsv",
69
+ "vep_plugin_alphscore": "/path/to/vip/resources/GRCh38/AlphScore_final_20230825_stripped_GRCh38.tsv.gz",
70
+ "vep_plugin_ncer": "/path/to/vip/resources/GRCh38/GRCh38_ncER_perc.bed.gz",
71
+ "vep_plugin_green_db": "/path/to/vip/resources/GRCh38/GRCh38_GREEN-DB.bed.gz",
72
+ "vep_plugin_fathmm_MKL_scores": "/path/to/vip/resources/GRCh38/GRCh38_FATHMM-MKL_NC.tsv.gz",
73
+ "vep_plugin_ReMM_scores": "/path/to/vip/resources/GRCh38/GRCh38_ReMM.tsv.gz"
74
+ }
75
+ },
76
+ "classify": {
77
+ "annotate_path": 1,
78
+ "metadata": "/path/to/vip/resources/field_metadata.json",
79
+ "GRCh38": {
80
+ "decision_tree": "/path/to/vip/resources/decision_tree_GRCh38.json"
81
+ }
82
+ },
83
+ "classify_samples": {
84
+ "annotate_path": 1,
85
+ "metadata": "/path/to/vip/resources/field_metadata.json",
86
+ "GRCh38": {
87
+ "decision_tree": "/path/to/vip/resources/decision_tree_samples.json"
88
+ }
89
+ },
90
+ "filter": {
91
+ "classes": "VUS,LP,P",
92
+ "consequences": true
93
+ },
94
+ "filter_samples": {
95
+ "classes": "OK,U1,U2"
96
+ },
97
+ "report": {
98
+ "include_crams": true,
99
+ "max_records": "",
100
+ "max_samples": "",
101
+ "template": "/path/to/vip/resources/vip-report-template-v6.2.0.html",
102
+ "metadata": "/path/to/vip/resources/field_metadata.json",
103
+ "GRCh38": {
104
+ "genes": "/path/to/vip/resources/GRCh38/GCF_000001405.39_GRCh38.p13_genomic_mapped.gff.gz"
105
+ }
106
+ }
107
+ },
108
+ "input": "/path/to/vip/test/suites/vcf/resources/empty_input.tsv",
109
+ "output": "/path/to/vip/test/output/vcf/empty_input"
110
+ }
111
+ },
112
+ "sample_variants": {
113
+ "sorts": {
114
+ "all": [
115
+ {
116
+ "selected": true,
117
+ "orders": [
118
+ {
119
+ "direction": "desc",
120
+ "field": {
121
+ "type": "info",
122
+ "name": "CSQ/CAPICE_SC"
123
+ }
124
+ }
125
+ ]
126
+ },
127
+ {
128
+ "selected": false,
129
+ "orders": [
130
+ {
131
+ "direction": "asc",
132
+ "field": {
133
+ "type": "info",
134
+ "name": "CSQ/CAPICE_SC"
135
+ }
136
+ }
137
+ ]
138
+ },
139
+ {
140
+ "selected": false,
141
+ "orders": [
142
+ {
143
+ "direction": "desc",
144
+ "field": {
145
+ "type": "info",
146
+ "name": "CSQ/gnomAD_HN"
147
+ }
148
+ }
149
+ ]
150
+ },
151
+ {
152
+ "selected": false,
153
+ "orders": [
154
+ {
155
+ "direction": "asc",
156
+ "field": {
157
+ "type": "info",
158
+ "name": "CSQ/gnomAD_HN"
159
+ }
160
+ }
161
+ ]
162
+ }
163
+ ],
164
+ "str": [
165
+ {
166
+ "selected": false,
167
+ "orders": [
168
+ {
169
+ "direction": "desc",
170
+ "field": {
171
+ "type": "info",
172
+ "name": "STR_NORMAL_MAX"
173
+ }
174
+ }
175
+ ]
176
+ },
177
+ {
178
+ "selected": false,
179
+ "orders": [
180
+ {
181
+ "direction": "asc",
182
+ "field": {
183
+ "type": "info",
184
+ "name": "STR_NORMAL_MAX"
185
+ }
186
+ }
187
+ ]
188
+ },
189
+ {
190
+ "selected": false,
191
+ "orders": [
192
+ {
193
+ "direction": "desc",
194
+ "field": {
195
+ "type": "info",
196
+ "name": "STR_PATHOLOGIC_MIN"
197
+ }
198
+ }
199
+ ]
200
+ },
201
+ {
202
+ "selected": false,
203
+ "orders": [
204
+ {
205
+ "direction": "asc",
206
+ "field": {
207
+ "type": "info",
208
+ "name": "STR_PATHOLOGIC_MIN"
209
+ }
210
+ }
211
+ ]
212
+ }
213
+ ]
214
+ },
215
+ "cells": {
216
+ "all": [
217
+ {
218
+ "type": "composed",
219
+ "name": "locus"
220
+ },
221
+ {
222
+ "type": "fixed",
223
+ "name": "ref"
224
+ },
225
+ {
226
+ "type": "info",
227
+ "name": "SVTYPE",
228
+ "label": "Type"
229
+ },
230
+ {
231
+ "type": "composed",
232
+ "name": "genotype",
233
+ "label": "Proband"
234
+ },
235
+ {
236
+ "type": "composed",
237
+ "name": "genotype_maternal",
238
+ "label": "Mother"
239
+ },
240
+ {
241
+ "type": "composed",
242
+ "name": "genotype_paternal",
243
+ "label": "Father"
244
+ },
245
+ {
246
+ "type": "group",
247
+ "fields": [
248
+ {
249
+ "type": "info",
250
+ "name": "CSQ/Consequence"
251
+ },
252
+ {
253
+ "type": "composed",
254
+ "name": "gene"
255
+ },
256
+ {
257
+ "type": "composed",
258
+ "name": "inheritancePattern"
259
+ },
260
+ {
261
+ "type": "composed",
262
+ "name": "hpo"
263
+ },
264
+ {
265
+ "type": "info",
266
+ "name": "CSQ/HGVSc"
267
+ },
268
+ {
269
+ "type": "info",
270
+ "name": "CSQ/HGVSp"
271
+ },
272
+ {
273
+ "type": "info",
274
+ "name": "CSQ/CAPICE_SC"
275
+ },
276
+ {
277
+ "type": "composed",
278
+ "name": "vipC"
279
+ },
280
+ {
281
+ "type": "composed",
282
+ "name": "vipCS"
283
+ },
284
+ {
285
+ "type": "composed",
286
+ "name": "vkgl"
287
+ },
288
+ {
289
+ "type": "composed",
290
+ "name": "clinVar"
291
+ },
292
+ {
293
+ "type": "composed",
294
+ "name": "gnomAdAf"
295
+ },
296
+ {
297
+ "type": "info",
298
+ "name": "CSQ/gnomAD_HN"
299
+ },
300
+ {
301
+ "type": "info",
302
+ "name": "CSQ/PUBMED"
303
+ }
304
+ ]
305
+ }
306
+ ],
307
+ "snv": [
308
+ {
309
+ "type": "composed",
310
+ "name": "locus"
311
+ },
312
+ {
313
+ "type": "fixed",
314
+ "name": "ref"
315
+ },
316
+ {
317
+ "type": "info",
318
+ "name": "SVTYPE"
319
+ },
320
+ {
321
+ "type": "composed",
322
+ "name": "genotype",
323
+ "label": "Proband"
324
+ },
325
+ {
326
+ "type": "composed",
327
+ "name": "genotype_maternal",
328
+ "label": "Mother"
329
+ },
330
+ {
331
+ "type": "composed",
332
+ "name": "genotype_paternal",
333
+ "label": "Father"
334
+ },
335
+ {
336
+ "type": "group",
337
+ "fields": [
338
+ {
339
+ "type": "info",
340
+ "name": "CSQ/Consequence"
341
+ },
342
+ {
343
+ "type": "composed",
344
+ "name": "gene"
345
+ },
346
+ {
347
+ "type": "info",
348
+ "name": "CSQ/IncompletePenetrance"
349
+ },
350
+ {
351
+ "type": "composed",
352
+ "name": "inheritancePattern"
353
+ },
354
+ {
355
+ "type": "info",
356
+ "name": "CSQ/HGVSc"
357
+ },
358
+ {
359
+ "type": "info",
360
+ "name": "CSQ/HGVSp"
361
+ },
362
+ {
363
+ "type": "info",
364
+ "name": "CSQ/CAPICE_SC"
365
+ },
366
+ {
367
+ "type": "composed",
368
+ "name": "vipC"
369
+ },
370
+ {
371
+ "type": "composed",
372
+ "name": "vipCS"
373
+ },
374
+ {
375
+ "type": "composed",
376
+ "name": "vkgl"
377
+ },
378
+ {
379
+ "type": "info",
380
+ "name": "CSQ/clinVar_CLNSIG"
381
+ },
382
+ {
383
+ "type": "info",
384
+ "name": "CSQ/gnomAD_AF"
385
+ },
386
+ {
387
+ "type": "info",
388
+ "name": "CSQ/gnomAD_HN"
389
+ },
390
+ {
391
+ "type": "info",
392
+ "name": "CSQ/PUBMED"
393
+ }
394
+ ]
395
+ }
396
+ ],
397
+ "str": [
398
+ {
399
+ "type": "composed",
400
+ "name": "locus"
401
+ },
402
+ {
403
+ "type": "composed",
404
+ "name": "genotype",
405
+ "label": "Proband"
406
+ },
407
+ {
408
+ "type": "composed",
409
+ "name": "genotype_maternal",
410
+ "label": "Mother"
411
+ },
412
+ {
413
+ "type": "composed",
414
+ "name": "genotype_paternal",
415
+ "label": "Father"
416
+ },
417
+ {
418
+ "type": "genotype",
419
+ "name": "REPCI"
420
+ },
421
+ {
422
+ "type": "genotype",
423
+ "name": "LC"
424
+ },
425
+ {
426
+ "type": "genotype",
427
+ "name": "ADSP"
428
+ },
429
+ {
430
+ "type": "info",
431
+ "name": "STR_NORMAL_MAX"
432
+ },
433
+ {
434
+ "type": "info",
435
+ "name": "STR_PATHOLOGIC_MIN"
436
+ },
437
+ {
438
+ "type": "group",
439
+ "fields": [
440
+ {
441
+ "type": "composed",
442
+ "name": "gene"
443
+ },
444
+ {
445
+ "type": "info",
446
+ "name": "CSQ/Feature"
447
+ },
448
+ {
449
+ "type": "composed",
450
+ "name": "inheritancePattern"
451
+ },
452
+ {
453
+ "type": "composed",
454
+ "name": "vipC"
455
+ },
456
+ {
457
+ "type": "composed",
458
+ "name": "vipCS"
459
+ }
460
+ ]
461
+ }
462
+ ]
463
+ },
464
+ "filters": {
465
+ "all": [
466
+ {
467
+ "type": "composed",
468
+ "name": "locus"
469
+ },
470
+ {
471
+ "type": "info",
472
+ "name": "CSQ/SYMBOL"
473
+ },
474
+ {
475
+ "type": "composed",
476
+ "name": "hpo",
477
+ "label": "Gene-phenotype association (HPO)"
478
+ },
479
+ {
480
+ "type": "info",
481
+ "name": "CSQ/GADO_PD",
482
+ "label": "Gene-phenotype association (GADO)"
483
+ },
484
+ {
485
+ "type": "info",
486
+ "name": "CSQ/IncompletePenetrance"
487
+ },
488
+ {
489
+ "type": "composed",
490
+ "name": "vipC"
491
+ },
492
+ {
493
+ "type": "composed",
494
+ "name": "vipCS"
495
+ },
496
+ {
497
+ "type": "info",
498
+ "name": "CSQ/VKGL_CL"
499
+ },
500
+ {
501
+ "type": "info",
502
+ "name": "CSQ/clinVar_CLNSIG"
503
+ },
504
+ {
505
+ "type": "genotype",
506
+ "name": "VI"
507
+ },
508
+ {
509
+ "type": "composed",
510
+ "name": "inheritanceMatch",
511
+ "label": "Inheritance match",
512
+ "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 ."
513
+ },
514
+ {
515
+ "type": "composed",
516
+ "name": "deNovo",
517
+ "label": "De Novo",
518
+ "description": "Indication if the variant is De Novo or inherited from the parents of the sample."
519
+ },
520
+ {
521
+ "type": "composed",
522
+ "name": "allelicImbalance",
523
+ "label": "Allelic Imbalance",
524
+ "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."
525
+ }
526
+ ],
527
+ "str": [
528
+ {
529
+ "type": "composed",
530
+ "name": "locus"
531
+ },
532
+ {
533
+ "type": "info",
534
+ "name": "CSQ/HPO",
535
+ "label": "Gene-phenotype association (HPO)"
536
+ },
537
+ {
538
+ "type": "info",
539
+ "name": "CSQ/GADO_PD",
540
+ "label": "Gene-phenotype association (GADO)"
541
+ },
542
+ {
543
+ "type": "info",
544
+ "name": "CSQ/SYMBOL"
545
+ },
546
+ {
547
+ "type": "composed",
548
+ "name": "vipC"
549
+ },
550
+ {
551
+ "type": "composed",
552
+ "name": "vipCS"
553
+ }
554
+ ]
555
+ },
556
+ "recordsPerPage": {
557
+ "str": [
558
+ {
559
+ "number": 10
560
+ },
561
+ {
562
+ "number": 20,
563
+ "selected": true
564
+ },
565
+ {
566
+ "number": 50
567
+ },
568
+ {
569
+ "number": 100
570
+ }
571
+ ]
572
+ }
573
+ },
574
+ "variants": {
575
+ "cells": {
576
+ "all": [
577
+ {
578
+ "type": "composed",
579
+ "name": "locus"
580
+ },
581
+ {
582
+ "type": "fixed",
583
+ "name": "id"
584
+ },
585
+ {
586
+ "type": "fixed",
587
+ "name": "ref"
588
+ },
589
+ {
590
+ "type": "fixed",
591
+ "name": "alt"
592
+ },
593
+ {
594
+ "type": "fixed",
595
+ "name": "qual"
596
+ },
597
+ {
598
+ "type": "fixed",
599
+ "name": "filter"
600
+ },
601
+ {
602
+ "type": "info",
603
+ "name": ".*"
604
+ }
605
+ ]
606
+ },
607
+ "filters": {
608
+ "all": [
609
+ {
610
+ "type": "composed",
611
+ "name": "locus"
612
+ },
613
+ {
614
+ "type": "fixed",
615
+ "name": "id"
616
+ },
617
+ {
618
+ "type": "fixed",
619
+ "name": "ref"
620
+ },
621
+ {
622
+ "type": "fixed",
623
+ "name": "alt"
624
+ },
625
+ {
626
+ "type": "fixed",
627
+ "name": "qual"
628
+ },
629
+ {
630
+ "type": "fixed",
631
+ "name": "filter"
632
+ },
633
+ {
634
+ "type": "info",
635
+ "name": ".*"
636
+ }
637
+ ]
638
+ }
639
+ },
640
+ "sample_variant": {
641
+ "cells": {
642
+ "all": [
643
+ {
644
+ "type": "composed",
645
+ "name": "vipC"
646
+ },
647
+ {
648
+ "type": "composed",
649
+ "name": "vipCS"
650
+ },
651
+ {
652
+ "type": "info",
653
+ "name": "CSQ/((?!VIPC|VIPP).)*"
654
+ }
655
+ ]
656
+ },
657
+ "sample_cells": {
658
+ "all": [
659
+ {
660
+ "type": "composed",
661
+ "name": "genotype",
662
+ "label": "Genotype"
663
+ },
664
+ {
665
+ "type": "genotype",
666
+ "name": "((?!GT|VIPC_S|VIPP_S).)*"
667
+ }
668
+ ]
669
+ }
670
+ },
671
+ "variant": {
672
+ "cells": {
673
+ "all": [
674
+ {
675
+ "type": "composed",
676
+ "name": "vipC"
677
+ },
678
+ {
679
+ "type": "info",
680
+ "name": "CSQ/((?!VIPC|VIPP).)*"
681
+ }
682
+ ]
683
+ }
684
+ },
685
+ "sample_variant_consequence": {
686
+ "sample_cells": {
687
+ "all": [
688
+ {
689
+ "type": "composed",
690
+ "name": "genotype",
691
+ "label": "Genotype"
692
+ },
693
+ {
694
+ "type": "genotype",
695
+ "name": "((?!GT|VIPC_S|VIPP_S).)*"
696
+ }
697
+ ]
698
+ }
699
+ },
700
+ "variant_consequence": {}
701
+ }