@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.
Files changed (285) hide show
  1. package/.nvmrc +1 -1
  2. package/.travis.yml +9 -11
  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 +35 -29
  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 +8 -5
  12. package/src/components/DatasetDropdown.tsx +10 -23
  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 +143 -0
  119. package/src/mocks/GRCh37/static.ts +63 -133
  120. package/src/mocks/GRCh37/vcf/family.vcf.blob +37 -31
  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 +341 -328
  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 -114
  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 -183
  237. package/src/components/VariantsTable.tsx +0 -124
  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 -259
  281. package/src/utils/csqUtils.ts +0 -27
  282. package/src/utils/decisionTreeUtils.ts +0 -14
  283. package/src/utils/field.ts +0 -49
  284. package/src/utils/query.ts +0 -154
  285. package/src/utils/viewUtils.ts +0 -32
@@ -1,93 +0,0 @@
1
- ##fileformat=VCFv4.2
2
- ##ALT=<ID=DEL,Description="Deletion">
3
- ##ASV_ACMG_class=AnnotSv 'ACMG_class' output.
4
- ##ASV_AnnotSV_ranking_criteria=AnnotSv 'AnnotSV_ranking_criteria' output.
5
- ##ASV_AnnotSV_ranking_score=AnnotSv 'AnnotSV_ranking_score' output.
6
- ##CAPICE_CL=CAPICE classification
7
- ##CAPICE_SC=CAPICE score
8
- ##FILTER=<ID=PASS,Description="All filters passed">
9
- ##FORMAT=<ID=GT,Number=1,Type=String,Description="Genotype">
10
- ##HPO=List of HPO terms for the gene
11
- ##INFO=<ID=BND_DEPTH,Number=1,Type=Integer,Description="Read depth at local translocation breakend">
12
- ##INFO=<ID=CSQ,Number=.,Type=String,Description="Consequence annotations from Ensembl VEP. Format: Allele|Consequence|IMPACT|SYMBOL|Gene|Feature_type|Feature|BIOTYPE|EXON|INTRON|HGVSc|HGVSp|cDNA_position|CDS_position|Protein_position|Amino_acids|Codons|Existing_variation|ALLELE_NUM|DISTANCE|STRAND|FLAGS|PICK|SYMBOL_SOURCE|HGNC_ID|REFSEQ_MATCH|REFSEQ_OFFSET|SOURCE|SIFT|PolyPhen|HGVS_OFFSET|CLIN_SIG|SOMATIC|PHENO|PUBMED|CHECK_REF|MOTIF_NAME|MOTIF_POS|HIGH_INF_POS|MOTIF_SCORE_CHANGE|TRANSCRIPTION_FACTORS|SpliceAI_pred_DP_AG|SpliceAI_pred_DP_AL|SpliceAI_pred_DP_DG|SpliceAI_pred_DP_DL|SpliceAI_pred_DS_AG|SpliceAI_pred_DS_AL|SpliceAI_pred_DS_DG|SpliceAI_pred_DS_DL|SpliceAI_pred_SYMBOL|CAPICE_CL|CAPICE_SC|HPO|IncompletePenetrance|InheritanceModesGene|VKGL_CL|ASV_ACMG_class|ASV_AnnotSV_ranking_criteria|ASV_AnnotSV_ranking_score|gnomAD|gnomAD_AF|gnomAD_HN|VIPC|VIPP|VIPL">
13
- ##INFO=<ID=MATEID,Number=.,Type=String,Description="ID of mate breakend">
14
- ##INFO=<ID=MATE_BND_DEPTH,Number=1,Type=Integer,Description="Read depth at remote translocation mate breakend">
15
- ##INFO=<ID=SVLEN,Number=.,Type=Integer,Description="Difference in length between REF and ALT alleles">
16
- ##INFO=<ID=SVTYPE,Number=1,Type=String,Description="Type of structural variant">
17
- ##INFO=<ID=gnomAD,Number=.,Type=String,Description="/groups/solve-rd/tmp10/vip/resources/GRCh37/gnomad.total.r2.1.1.sites.stripped.vcf.gz (exact)">
18
- ##INFO=<ID=gnomAD_AF,Number=.,Type=String,Description="AF field from /groups/solve-rd/tmp10/vip/resources/GRCh37/gnomad.total.r2.1.1.sites.stripped.vcf.gz">
19
- ##INFO=<ID=gnomAD_HN,Number=.,Type=String,Description="HN field from /groups/solve-rd/tmp10/vip/resources/GRCh37/gnomad.total.r2.1.1.sites.stripped.vcf.gz">
20
- ##IncompletePenetrance=Boolean indicating if the gene is known for incomplete penetrance.
21
- ##InheritanceModesGene=List of inheritance modes for the gene
22
- ##SpliceAI_pred_DP_AG=SpliceAI predicted effect on splicing. Delta position for acceptor gain
23
- ##SpliceAI_pred_DP_AL=SpliceAI predicted effect on splicing. Delta position for acceptor loss
24
- ##SpliceAI_pred_DP_DG=SpliceAI predicted effect on splicing. Delta position for donor gain
25
- ##SpliceAI_pred_DP_DL=SpliceAI predicted effect on splicing. Delta position for donor loss
26
- ##SpliceAI_pred_DS_AG=SpliceAI predicted effect on splicing. Delta score for acceptor gain
27
- ##SpliceAI_pred_DS_AL=SpliceAI predicted effect on splicing. Delta score for acceptor loss
28
- ##SpliceAI_pred_DS_DG=SpliceAI predicted effect on splicing. Delta score for donor gain
29
- ##SpliceAI_pred_DS_DL=SpliceAI predicted effect on splicing. Delta score for donor loss
30
- ##SpliceAI_pred_SYMBOL=SpliceAI gene symbol
31
- ##VEP="v105" time="2022-03-25 12:46:48" cache="/groups/solve-rd/tmp10/vip/resources/vep/cache/homo_sapiens_refseq/105_GRCh37" ensembl=105.525fbcb ensembl-io=105.2a0a40c ensembl-variation=105.ac8178e ensembl-funcgen=105.660df8f 1000genomes="phase3" COSMIC="92" ClinVar="202012" HGMD-PUBLIC="20204" assembly="GRCh37.p13" dbSNP="154" gencode="GENCODE 19" genebuild="2011-04" gnomAD="r2.1" polyphen="2.2.2" refseq="2020-10-26 17:03:42 - GCF_000001405.25_GRCh37.p13_genomic.gff" regbuild="1.0" sift="sift5.2.2"
32
- ##VIPC=VIP decision tree classification
33
- ##VIPL=VIP decision tree labels (ampersand separated)
34
- ##VIPP=VIP decision tree path (ampersand separated)
35
- ##VIP_Command=nextflow run ./main.nf --input /groups/solve-rd/tmp10/testdata/testdata_b37_100Samples.vcf --output /groups/solve-rd/tmp10/testdata_out/ --keep --probands SAMPLE0,SAMPLE1,SAMPLE2,SAMPLE3,SAMPLE4,SAMPLE5,SAMPLE6,SAMPLE7,SAMPLE8,SAMPLE9,SAMPLE10,SAMPLE11,SAMPLE12,SAMPLE13,SAMPLE14,SAMPLE15,SAMPLE16,SAMPLE17,SAMPLE18,SAMPLE19,SAMPLE20,SAMPLE21,SAMPLE22,SAMPLE23,SAMPLE24,SAMPLE25,SAMPLE26,SAMPLE27,SAMPLE28,SAMPLE29,SAMPLE30,SAMPLE31,SAMPLE32,SAMPLE33,SAMPLE34,SAMPLE35,SAMPLE36,SAMPLE37,SAMPLE38,SAMPLE39,SAMPLE40,SAMPLE41,SAMPLE42,SAMPLE43,SAMPLE44,SAMPLE45,SAMPLE46,SAMPLE47,SAMPLE48,SAMPLE49,SAMPLE50,SAMPLE51,SAMPLE52,SAMPLE53,SAMPLE54,SAMPLE55,SAMPLE56,SAMPLE57,SAMPLE58,SAMPLE59,SAMPLE60,SAMPLE61,SAMPLE62,SAMPLE63,SAMPLE64,SAMPLE65,SAMPLE66,SAMPLE67,SAMPLE68,SAMPLE69,SAMPLE70,SAMPLE71,SAMPLE72,SAMPLE73,SAMPLE74,SAMPLE75,SAMPLE76,SAMPLE77,SAMPLE78,SAMPLE79,SAMPLE80,SAMPLE81,SAMPLE82,SAMPLE83,SAMPLE84,SAMPLE85,SAMPLE86,SAMPLE87,SAMPLE88,SAMPLE89,SAMPLE90,SAMPLE91,SAMPLE92,SAMPLE93,SAMPLE94,SAMPLE95,SAMPLE96,SAMPLE97,SAMPLE98,SAMPLE99 --phenotypes 'HP:0000951' --assembly GRCh37
36
- ##VIP_Version=4.0.1
37
- ##VIP_treeCommand=--input testdata_b37_100Samples_chunk0_annotated.vcf.gz --config /groups/solve-rd/tmp10/vip/resources/decision_tree.json --labels 0 --path 0 --output testdata_b37_100Samples_chunk0_classified.vcf.gz
38
- ##VIP_treeVersion=2.2.0
39
- ##VKGL_CL=VKGL consensus variant classification.
40
- ##contig=<ID=1,length=249250621,assembly=b37>
41
- ##contig=<ID=2,length=243199373,assembly=b37>
42
- ##contig=<ID=3,length=198022430,assembly=b37>
43
- ##contig=<ID=4,length=191154276,assembly=b37>
44
- ##contig=<ID=5,length=180915260,assembly=b37>
45
- ##contig=<ID=6,length=171115067,assembly=b37>
46
- ##contig=<ID=7,length=159138663,assembly=b37>
47
- ##contig=<ID=8,length=146364022,assembly=b37>
48
- ##contig=<ID=9,length=141213431,assembly=b37>
49
- ##contig=<ID=10,length=135534747,assembly=b37>
50
- ##contig=<ID=11,length=135006516,assembly=b37>
51
- ##contig=<ID=12,length=133851895,assembly=b37>
52
- ##contig=<ID=13,length=115169878,assembly=b37>
53
- ##contig=<ID=14,length=107349540,assembly=b37>
54
- ##contig=<ID=15,length=102531392,assembly=b37>
55
- ##contig=<ID=16,length=90354753,assembly=b37>
56
- ##contig=<ID=17,length=81195210,assembly=b37>
57
- ##contig=<ID=18,length=78077248,assembly=b37>
58
- ##contig=<ID=19,length=59128983,assembly=b37>
59
- ##contig=<ID=20,length=63025520,assembly=b37>
60
- ##contig=<ID=21,length=48129895,assembly=b37>
61
- ##contig=<ID=22,length=51304566,assembly=b37>
62
- ##contig=<ID=X,length=155270560,assembly=b37>
63
- ##contig=<ID=Y,length=59373566,assembly=b37>
64
- ##contig=<ID=MT,length=16569,assembly=b37>
65
- ##fileDate=20200320
66
- #CHROM POS ID REF ALT QUAL FILTER INFO FORMAT SAMPLE0 SAMPLE1 SAMPLE2 SAMPLE3 SAMPLE4 SAMPLE5 SAMPLE6 SAMPLE7 SAMPLE8 SAMPLE9 SAMPLE10 SAMPLE11 SAMPLE12 SAMPLE13 SAMPLE14 SAMPLE15 SAMPLE16 SAMPLE17 SAMPLE18 SAMPLE19 SAMPLE20 SAMPLE21 SAMPLE22 SAMPLE23 SAMPLE24 SAMPLE25 SAMPLE26 SAMPLE27 SAMPLE28 SAMPLE29 SAMPLE30 SAMPLE31 SAMPLE32 SAMPLE33 SAMPLE34 SAMPLE35 SAMPLE36 SAMPLE37 SAMPLE38 SAMPLE39 SAMPLE40 SAMPLE41 SAMPLE42 SAMPLE43 SAMPLE44 SAMPLE45 SAMPLE46 SAMPLE47 SAMPLE48 SAMPLE49 SAMPLE50 SAMPLE51 SAMPLE52 SAMPLE53 SAMPLE54 SAMPLE55 SAMPLE56 SAMPLE57 SAMPLE58 SAMPLE59 SAMPLE60 SAMPLE61 SAMPLE62 SAMPLE63 SAMPLE64 SAMPLE65 SAMPLE66 SAMPLE67 SAMPLE68 SAMPLE69 SAMPLE70 SAMPLE71 SAMPLE72 SAMPLE73 SAMPLE74 SAMPLE75 SAMPLE76 SAMPLE77 SAMPLE78 SAMPLE79 SAMPLE80 SAMPLE81 SAMPLE82 SAMPLE83 SAMPLE84 SAMPLE85 SAMPLE86 SAMPLE87 SAMPLE88 SAMPLE89 SAMPLE90 SAMPLE91 SAMPLE92 SAMPLE93 SAMPLE94 SAMPLE95 SAMPLE96 SAMPLE97 SAMPLE98 SAMPLE99
67
- 1 10042538 . C T . PASS CSQ=T|missense_variant|MODERATE|NMNAT1|64802|Transcript|NM_001297778.1|protein_coding|5/5||NM_001297778.1:c.619C>T|NP_001284707.1:p.Arg207Trp|778/3796|619/840|207/279|R/W|Cgg/Tgg|rs142968179&CM127756|1||1||1|EntrezGene|||||0.04|0.08||pathogenic||1&1|26103963&22842229&22842230|||||||0|-36|-16|17|0.00|0.00|0.00|0.00|NMNAT1|VUS|0.16572298|||AR|LP||||1:10042538-10042538|3.88948e-05|0|P|filter&vkgl&exit_p|,T|downstream_gene_variant|MODIFIER|NMNAT1|64802|Transcript|NM_001297779.2|protein_coding||||||||||rs142968179&CM127756|1|714|1|||EntrezGene||||||||pathogenic||1&1|26103963&22842229&22842230|||||||0|-36|-16|17|0.00|0.00|0.00|0.00|NMNAT1|VUS|0.033541594|||AR|LP||||1:10042538-10042538|3.88948e-05|0|P|filter&vkgl&exit_p|,T|missense_variant|MODERATE|NMNAT1|64802|Transcript|NM_022787.4|protein_coding|5/5||NM_022787.4:c.619C>T|NP_073624.2:p.Arg207Trp|716/3734|619/840|207/279|R/W|Cgg/Tgg|rs142968179&CM127756|1||1|||EntrezGene|||||0.04|0.08||pathogenic||1&1|26103963&22842229&22842230|||||||0|-36|-16|17|0.00|0.00|0.00|0.00|NMNAT1|VUS|0.14321531|||AR|LP||||1:10042538-10042538|3.88948e-05|0|P|filter&vkgl&exit_p| GT 1|0 1|1 0/0 1/0 1|0 1/0 0/1 1/0 1|1 0/0 0/1 1|0 0/0 1|1 0|0 0/0 1/0 1/0 0/0 0|1 0/1 0/0 0/1 0/1 0|1 0|0 0/1 0|1 0/0 1/1 0|1 1|0 1/1 1|0 0|0 1|1 1|1 0/0 1/1 1|0 1|0 0/0 0/0 0|1 0|0 1/0 0/0 0/1 1|0 0/1 0/1 1|0 0|0 1|0 0/0 0|0 0/1 1/0 0/0 1|0 1|0 0|0 1/0 0|1 1/0 0|0 0|0 0/0 0/0 1|0 0|0 1/1 1|1 0/1 0|0 1/1 0|0 1/0 0|0 1|0 1/0 1/0 1/0 0|0 0|0 1|1 0/0 0|1 0/1 0|0 0/0 1/0 0|0 1/0 0|1 0/0 0/0 0|0 1/0 0|0
68
- 1 16376412 n_alt G N . PASS CSQ=N|splice_donor_variant|HIGH|CLCNKB|1188|Transcript|NM_000085.5|protein_coding||10/19||||||||CS1211892&CS971662|1||1||1|EntrezGene||||||||||1&1|||||||||||||||||VUS|0.373989|HP:0000951||AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,N|splice_donor_variant|HIGH|CLCNKB|1188|Transcript|NM_001165945.2|protein_coding||3/12||||||||CS1211892&CS971662|1||1|||EntrezGene||||||||||1&1|||||||||||||||||VUS|0.373989|HP:0000951||AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 1/0 0/0 0/0 0|0 0|0 0|0 0/0 1|0 1|0 1|1 1/1 0/0 1/0 0/1 0/0 0|1 1/0 1/0 1|1 0/1 0|1 0|1 0|0 1|1 0|0 1|1 1/0 0/1 0/0 1|0 1/0 0|1 0/1 0|1 1/1 0/0 0/0 1|1 0/0 1/0 0|0 0/1 1/1 1/0 1/1 1/1 0|0 1/0 0|1 1|1 1|0 1/0 0/0 0|0 0|1 0|0 1/1 1/0 1/0 0/1 0/0 0/0 0|0 0|0 0|1 1|1 0|0 0/1 1|0 1/1 1/0 0/1 1|0 0/0 0|0 0/0 1/1 0/1 0|1 1/0 0|0 0|0 1|0 0/1 0/0 0/0 1|0 0/1 1|0 0|0 0|1 1/1 0/0 0|0 0/0 1|0 0|0 0|1 0|0 1/1
69
- 1 17349219 n_ref N A . PASS CSQ=A|coding_sequence_variant|MODIFIER|SDHB|6390|Transcript|NM_003000.3|protein_coding|7/8||NM_003000.3:c.649C>T||662/1015|649/843|217/280||Ngc/Tgc|CM094752&CM1210440&COSV64965760|1||-1||1|EntrezGene|||||||||0&0&1|1&1&1|||||||||||||||||VUS|0.48189265|HP:0000951||AD&AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 0|1 0|0 0|1 1|0 0|0 0/0 0|1 0|0 0|0 0/1 1|0 0/0 1/0 0|1 1/1 0|0 0|0 0|1 0/0 0/1 1/1 1|0 0/0 0|0 1|1 1|0 0/1 0|0 1/0 1|1 0|0 0|0 1/0 0|1 1|0 1/1 1|0 0/1 0/1 0|1 0|0 0/1 1/0 0/0 0/0 0|1 0|1 0/1 0/0 1/1 1/0 0/0 0/0 1/0 0|1 1/1 0|0 1/0 1|1 0/0 1/0 1/1 1/1 0/0 0|0 1/0 0/1 0|0 0|0 0|1 0|0 1|1 1/0 0/0 0/1 0/0 0/1 0/0 0|1 1|1 0/0 0/0 0/0 0/1 0/0 0|0 0|0 0/0 0|1 0|1 1/0 0|0 0/1 1|1 0|1 0|0 1|0 0/0 0|0 0|1
70
- 1 17349219 g_ref G A . PASS CSQ=A|missense_variant|MODERATE|SDHB|6390|Transcript|NM_003000.3|protein_coding|7/8||NM_003000.3:c.649C>T|NP_002991.2:p.Arg217Cys|662/1015|649/843|217/280|R/C|Cgc/Tgc|rs200245469&CM094752&CM1210440&COSV64965760|1||-1||1|EntrezGene|||||0|1||likely_pathogenic|0&0&0&1|1&1&1&1||||||||28|6|6|5|0.00|0.00|0.00|0.00|SDHB|VUS|0.89070946|HP:0000951||AD&AR|LP|||||||P|filter&vkgl&exit_p| GT 1|1 0/0 1/1 0|1 1|0 0/1 0|0 0/0 0|1 0/0 1/1 1|0 0|0 1|0 1/0 0|0 0/1 0/1 1|1 0/1 0|0 0/0 1/0 0|0 0/0 1/1 1|0 1|1 0/1 0/0 1/0 0|1 1/0 1|0 0/0 0|1 0|0 1|1 1/0 1/1 0|1 1|1 0/0 1|0 1/1 1|1 1/1 0/1 0|1 0/0 0/0 0/0 1|1 1/1 0|1 1|0 1/0 0|0 1/1 1/1 1/0 0|0 0|1 0/1 1/1 0|0 0/0 1/0 0/0 1|0 1/0 0/1 0|1 0/0 0|0 0|0 0|0 0|0 0/0 0/1 0|0 1/0 0/0 0/0 1/0 1/1 0/0 0|0 0|0 1|1 1|0 1/0 0|0 0|0 0|0 0|0 0/0 1|1 0|0 0/1
71
- 1 152520788 symbolic1 A <DEL> . PASS CSQ=deletion|transcript_ablation|HIGH|LCE3D|84648|Transcript|NM_032563.2|protein_coding|||||||||||1||-1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|upstream_gene_variant|MODIFIER|LCE3C|353144|Transcript|NM_178434.3|protein_coding|||||||||||1|2608|1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|transcript_ablation|HIGH|LCE3E|353145|Transcript|NM_178435.4|protein_coding|||||||||||1||-1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000946440||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001787329||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000013752||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000946442||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000946443||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001505919||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001787330||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001787331||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|regulatory_region_ablation&regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001787332||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00701519957||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00905971885||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,deletion|TFBS_ablation&TF_binding_site_variant|MODERATE|||MotifFeature|ENSM00522719201||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;SVLEN=-49314;SVTYPE=DEL GT 0|0 1|0 1|1 0/0 0/0 0|1 0/0 0|1 0/0 1/1 1|1 0/0 0/1 0|1 0/1 0/1 0/0 0|0 0|1 0/0 0|0 0|0 1/0 0/0 0/1 0/1 0/1 0/1 1|0 1/0 0/1 0|0 0|0 1|0 0|0 0/0 0/1 1|1 0|0 0/0 0/0 0|1 1/0 1/0 1|0 0/1 1/0 1/0 0/0 0|0 1/1 1|0 1/0 1/0 1|0 0|0 0/0 0|0 0|1 0/0 1/0 1|1 1|1 0/0 1/0 1/0 1/1 0/1 0/0 1/0 1|1 0/0 1/0 0|1 0|1 1/0 1/0 0|0 1|0 0|0 0|0 1|0 0/0 0|1 0|0 1|1 0|1 0|0 0|0 0/1 1|0 0|1 1|1 0|0 0|0 0|0 1/1 1/0 1|0 0/0
72
- 2 47635667 symbolic2 G <INS> . PASS CSQ=insertion|splice_polypyrimidine_tract_variant&coding_sequence_variant&intron_variant&feature_elongation|LOW|MSH2|4436|Transcript|NM_000251.3|protein_coding|2-8/16|2-8/15|||376-?/3115|340-?/2805|114-?/934||||1||1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|splice_polypyrimidine_tract_variant&coding_sequence_variant&intron_variant&feature_elongation|LOW|MSH2|4436|Transcript|NM_001258281.1|protein_coding|3-9/17|3-9/16|||281-?/3025|142-?/2607|48-?/868||||1||1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001919953||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001919954||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001919955||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001619621||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001919956||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001619622||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001919957||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530589128||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530502780||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00525298438||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530512660||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530431919||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522077931||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00533275472||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530460887||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530563027||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530550696||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530602292||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522015626||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00533060686||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00525131899||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530576102||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530666750||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00521962166||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530450113||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530544207||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530711816||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530598979||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530595684||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530473938||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530525851||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530621224||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522057275||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530464197||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530443827||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530506057||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530582758||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530663480||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00907424037||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530647393||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00521890195||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530480339||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00525492134||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530592365||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530618016||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530477292||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00907390759||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00533222876||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530556431||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530547368||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530457296||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530627902||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530559755||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530566326||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530529094||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00792006282||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530691966||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530435489||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530427760||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00532972809||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530519223||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530579454||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530695223||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530467446||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530572820||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530585944||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530605579||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530453303||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530655502||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530446920||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530492633||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00532804158||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00908072887||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00776750923||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00907553345||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530470669||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00907757558||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530509374||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00530515926||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00522584830||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,insertion|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00525790028||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;SVLEN=-49314;SVTYPE=INS GT 0|1 1|0 1|0 0|0 0/1 1|0 1|0 1|1 0/0 1|1 0/1 1|0 1|0 1|0 1|0 1/0 1/1 0|1 1/0 0/0 0/1 0|0 1|0 0|0 0|0 0|0 0|0 1|0 0/0 0|0 1/1 1/1 1/1 0/0 1/0 0|1 0/0 0|1 0|1 0|0 0|1 0/0 1|0 0/0 1|0 0/1 0/0 0|0 0/1 0/0 0|0 1/1 1|1 0/1 0|0 0/1 1/0 0|1 0/0 1/0 0/0 1/0 1|0 0/0 1|0 0/1 0/1 0|0 0|0 0|0 0|0 0|0 0|0 0|0 0|0 0|1 0/1 0/1 0|0 0|0 0/0 0/1 0|0 1/0 1/1 0|0 1/1 1|1 0|0 1|1 1/1 0/1 0/1 0|0 0|0 0|0 0|0 0/0 0|0 1|0
73
- 4 106320294 . G A . PASS CSQ=A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_006903.4|protein_coding|7/11||NM_006903.4:c.596C>T|NP_008834.3:p.Pro199Leu|616/1586|596/918|199/305|P/L|cCg/cTg|rs138215926&CM1610192&COSV58994362|1||-1|||EntrezGene|||||0|0.985||pathogenic|0&0&1|1&1&1|27523597|||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.8097311|||AR|LP||||4:106320294-106320294|0.000211803|0|P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_176866.2|protein_coding|4/8||NM_176866.2:c.377C>T|NP_789842.2:p.Pro126Leu|397/1367|377/699|126/232|P/L|cCg/cTg|rs138215926&CM1610192&COSV58994362|1||-1|||EntrezGene|||||0|0.992||pathogenic|0&0&1|1&1&1|27523597|||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.7550335|||AR|LP||||4:106320294-106320294|0.000211803|0|P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_176867.3|protein_coding|2/6||NM_176867.3:c.185C>T|NP_789843.2:p.Pro62Leu|205/1175|185/507|62/168|P/L|cCg/cTg|rs138215926&CM1610192&COSV58994362|1||-1|||EntrezGene|||||0|0.995||pathogenic|0&0&1|1&1&1|27523597|||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.8145551|||AR|LP||||4:106320294-106320294|0.000211803|0|P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|PPA2|27068|Transcript|NM_176869.3|protein_coding|8/12||NM_176869.3:c.683C>T|NP_789845.1:p.Pro228Leu|695/1665|683/1005|228/334|P/L|cCg/cTg|rs138215926&CM1610192&COSV58994362|1||-1||1|EntrezGene|||||0|0.993||pathogenic|0&0&1|1&1&1|27523597|||||||-34|27|-2|-43|0.00|0.00|0.00|0.00|PPA2|VUS|0.76490384|||AR|LP||||4:106320294-106320294|0.000211803|0|P|filter&vkgl&exit_p|,A|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001994744|promoter_flanking_region||||||||||rs138215926&CM1610192&COSV58994362|1|||||||||||||pathogenic|0&0&1|1&1&1|27523597|||||||||||||||||||||||||4:106320294-106320294|0.000211803|0|P|filter&vkgl&clinVar&exit_p| GT 0/0 0|0 0|1 1|0 1|1 0/0 0|0 1|0 1/0 0|0 1|1 1/0 0/0 0|1 0|1 0|0 0/0 1|0 1|1 1|1 1|0 0/0 0|1 1/0 0/1 1|0 0/0 1/0 0|0 0|0 1/1 0/0 1|0 0/0 1/0 0/0 1/1 0|1 0/1 0|0 0/0 0|0 0|1 1|0 0|1 1|1 1|0 1/1 0/0 1/0 1|0 0/0 0/0 0/0 0|0 0|0 1/1 0|1 0/1 1/0 1/0 1|0 1|1 0|1 0/0 0|1 1|0 0/0 0|0 1/0 1/0 0/0 0/0 0|0 0|0 1|0 0/0 1/1 1/1 0|1 0|0 1/0 0/1 1|0 1|1 0/1 0/1 1/0 0/0 1|1 0|0 1|0 0/0 0|0 0/0 0/1 0|1 1/0 0|0 1/1
74
- 7 42017311 single_breakend_nation C C. . PASS CSQ=BND|coding_sequence_variant|MODIFIER|GLI3|2737|Transcript|NM_000168.6|protein_coding|12/15||||1938/8405|1657/4743|553/1580||||1||-1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001394462||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000325885||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;SVTYPE=BND GT 0|1 1|0 1/0 1/1 0/0 1|1 0/0 0|0 1/0 1|1 1|0 1/0 1/1 0/0 0|1 0|1 1|0 0|1 1|0 1|0 0|1 0/0 0|1 0|0 0/0 1|1 1/1 0/1 0/1 0/1 1|0 1|1 1|0 1/1 1|0 0/1 0|0 1|0 1/0 1/1 0|0 0|0 1|0 0/0 1/0 0/0 1/0 0/0 0|1 0|1 1/1 0|0 0|1 0|0 0|1 1|0 1/1 0|0 0|0 0|0 0/0 1/1 1/0 0/0 1|0 0/0 0|1 0/0 0/0 0|0 0/1 0|0 0/0 0/1 0|1 1/0 1/1 0|0 0/0 0/0 0/1 1|0 0/1 0/1 0/0 1|0 0|1 1|0 0/1 0/0 1/0 0/1 0/0 0|1 1/0 1/1 0|0 0|0 1/1 1|1
75
- 7 42064957 . GACTC G . PASS CSQ=-|frameshift_variant|HIGH|GLI3|2737|Transcript|NM_000168.6|protein_coding|9/15||NM_000168.6:c.1258_1261del|NP_000159.3:p.Glu420LeufsTer3|1539-1542/8405|1258-1261/4743|420-421/1580|ES/X|GAGTct/ct||1||-1||1|EntrezGene||||||||||||||||||18|21|-40|6|0.00|0.00|0.00|0.00|GLI3|VUS|0.9822135||1|AD|LP|||||||P|filter&vkgl&exit_p| GT 0|0 1|1 0/0 0|1 1/1 0|1 0|0 0/0 0|0 0|1 1|0 0/1 1|0 0|1 1/1 0/1 0/0 0/0 1|0 0/1 0/1 1/0 1|0 0|1 1/0 1/0 0|0 1/1 1|1 0/1 0/0 1/0 0/0 0/1 0/0 0|0 1/1 1|0 0|1 0|1 0/0 1/0 0/0 1|1 1|0 0/1 0/0 0/0 1|1 0|0 0/1 0/1 0|0 1|1 1/0 0|1 0|0 0/0 0/0 0/1 1|0 0|1 0|1 1|1 1|1 0/1 1/0 1/0 0/1 0|0 0|0 0|0 0/1 0/0 1/0 0/0 1/1 0|1 0/1 0|0 0/1 1|0 0/1 1/0 0/0 0/1 0/0 0/1 0/1 0/0 0|0 0/0 1/1 0/1 0|0 1/0 0|1 0|1 1/0 0/0
76
- 8 61765143 breakend1 G ]11:134014225]G . PASS BND_DEPTH=26;CSQ=BND|intron_variant|MODIFIER|CHD7|55636|Transcript|NM_001316690.1|protein_coding||2/4|||||||||1||1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|coding_sequence_variant|MODIFIER|CHD7|55636|Transcript|NM_017780.4|protein_coding|30/38||||6499/11606|5982/8994|1994/2997||||1||1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000225105||||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;MATEID=breakend2;MATE_BND_DEPTH=39;SVTYPE=BND GT 0/0 1/0 1/1 0/1 1/1 0|1 0|0 1/1 0|0 0|0 0|0 0|0 0/1 0|0 0|1 0|0 1|0 0|0 1|0 0/0 1/0 0/0 0/0 0|0 1/1 1|0 0/1 0/0 0/1 0|0 0|1 0|1 0/0 0|1 1/0 1/0 0/0 0|0 0|0 1/0 1/1 0/0 1/0 0|0 0/1 0|1 1/1 1|0 1|0 0/0 0/0 0|0 0/0 1/1 0/0 0/1 0|1 0/0 0/1 0|0 0/1 1/0 0/0 1|1 0|1 1|1 1|0 1/0 1/0 1/1 1|0 1/0 0|1 0/0 1/1 0/0 0|0 1/0 0/1 1/1 1|0 1|0 0/1 1/0 1|1 1/1 0/0 1/1 1/0 0/1 0/1 0|1 0/0 1|0 1/0 1/1 0|0 0|1 1|0 0|1
77
- 8 145140500 . CAG C . PASS CSQ=-|frameshift_variant|HIGH|GPAA1|8733|Transcript|NM_003801.4|protein_coding|11/12||NM_003801.4:c.1477_1478del|NP_003792.1:p.Arg493GlyfsTer152|1574-1575/2054|1477-1478/1866|493/621|R/X|AGg/g|rs782339984|1||1||1|EntrezGene||||||||pathogenic||1||||||||-15|-8|12|-21|0.02|0.00|0.00|0.00|GPAA1|VUS|0.99260485|||AR|LP||||8:145140501-145140503|0.000142617|0|P|filter&vkgl&exit_p|,-|downstream_gene_variant|MODIFIER|EXOSC4|54512|Transcript|NM_019037.3|protein_coding||||||||||rs782339984|1|4950|1|||EntrezGene||||||||pathogenic||1||||||||-15|-8|12|-21|0.02|0.00|0.00|0.00|GPAA1|VUS|0.14952277||||||||8:145140501-145140503|0.000142617|0|P|filter&vkgl&clinVar&exit_p| GT 1/1 1/0 1/0 0/1 0|0 0|0 0|1 0/0 1/0 0/0 0/0 0/0 0/0 1|1 1/0 1/1 1/0 1|1 0/0 0/1 1/0 0/0 0/0 0|1 0|1 0/1 0/1 1/1 0/0 0/0 0|1 0|0 0|1 0/0 0/1 1|0 0|0 0/0 1/0 0|1 0|1 0|1 0/0 1/1 0|1 0|0 0|1 1/1 0/0 0/1 0|0 0|1 0|0 1|0 0/0 0|0 0|1 0/0 0|1 1/0 1|0 1/1 0|1 0|0 0/1 1|0 0|0 0|0 0/0 1/0 0/0 0|0 0/0 0|0 1|1 1|0 0|1 0/0 1/0 0/1 0/0 0/0 1|0 1/1 1|0 0|0 0/1 0/0 0/0 1/1 0/0 1/0 1|0 1|0 0/1 0/0 1|0 0|1 1/1 0/0
78
- 9 107546633 . AAAGAT A . PASS CSQ=-|frameshift_variant|HIGH|ABCA1|19|Transcript|NM_005502.4|protein_coding|50/50||NM_005502.4:c.6744_6748del|NP_005493.2:p.Phe2250ThrfsTer3|7057-7061/10408|6744-6748/6786|2248-2250/2261|TSF/TX|acATCTTtt/actt||1||-1||1|EntrezGene|||||||||||||||||||||||||||VUS|0.9823047|HP:0000951||AD&AR||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 1/1 1|0 1/1 0|0 0/0 0|1 0/1 1|1 0|1 1|0 1|1 0/0 0|0 1/0 1|0 0/1 0/0 1/1 0/1 0/0 0/0 0|0 1/0 0/0 1|1 0|0 0/1 1/1 0|1 0/0 0/0 1/0 0|0 0|1 1|1 1|0 1|0 0/0 0/0 1/1 1/0 1|1 1|0 1/0 0/0 0|1 0|1 0|1 1/0 1/0 0/0 1|0 0/0 0/0 0/0 1|0 0|0 0|0 1/0 1|0 1|0 1/0 0|1 0/0 0/0 0/1 1|0 0/0 1/0 1/1 0/0 0/0 1/0 0|1 0/1 1/1 0/1 0|1 1/0 1|1 0|0 0|0 1/0 1|0 0/0 0/0 1/0 1/1 1/1 0|0 0|0 0/0 1|0 0/0 0|0 0|1 0/0 1/0 0/1 0|0
79
- 10 126091499 . G C . PASS CSQ=C|stop_gained|HIGH|OAT|4942|Transcript|NM_000274.4|protein_coding|7/10||NM_000274.4:c.897C>G|NP_000265.1:p.Tyr299Ter|977/2039|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.979408|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001171814.2|protein_coding|6/9||NM_001171814.2:c.483C>G|NP_001165285.1:p.Tyr161Ter|749/1811|483/906|161/301|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.97846687|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322965.2|protein_coding|7/10||NM_001322965.2:c.897C>G|NP_001309894.1:p.Tyr299Ter|972/2034|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.979408|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322966.2|protein_coding|8/11||NM_001322966.2:c.897C>G|NP_001309895.1:p.Tyr299Ter|1292/2354|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1||1|EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9796912|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322967.2|protein_coding|8/11||NM_001322967.2:c.897C>G|NP_001309896.1:p.Tyr299Ter|1097/2159|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9819772|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322968.2|protein_coding|9/12||NM_001322968.2:c.897C>G|NP_001309897.1:p.Tyr299Ter|1184/2246|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9819772|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322969.2|protein_coding|8/11||NM_001322969.2:c.897C>G|NP_001309898.1:p.Tyr299Ter|1064/2126|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9819772|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322970.2|protein_coding|9/12||NM_001322970.2:c.897C>G|NP_001309899.1:p.Tyr299Ter|1280/2342|897/1320|299/439|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9796912|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322971.2|protein_coding|5/8||NM_001322971.2:c.576C>G|NP_001309900.1:p.Tyr192Ter|656/1718|576/999|192/332|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9760591|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p|,C|stop_gained|HIGH|OAT|4942|Transcript|NM_001322974.2|protein_coding|7/10||NM_001322974.2:c.297C>G|NP_001309903.1:p.Tyr99Ter|863/1925|297/720|99/239|Y/*|taC/taG|rs121965057&CM920525&COSV64348333|1||-1|||EntrezGene||||||||likely_pathogenic&pathogenic|0&0&1|1&1&1|1609808|||||||-1|-3|-3|4|0.00|0.00|0.00|0.00|OAT|VUS|0.9775237|||AR|LP||||10:126091499-126091499|1.59133e-05|0|P|filter&vkgl&exit_p| GT 0/1 1|0 1/0 0|0 1|0 0/1 0/1 0/1 0|0 0/0 1/1 0/1 1/1 1|0 1|1 0/1 0/0 1/0 0/0 1|0 0/0 1|1 0|1 0|0 0|0 0/1 0|1 0|0 1|1 0/0 0/1 0|0 0/0 0/0 0/1 1|1 0|0 1|1 0/0 1|0 0/1 1/0 0|0 1|0 1/0 0/0 0|0 0/0 0/0 0|0 0|1 1/1 0|0 0/0 0|1 1/0 0|1 1/1 0/1 0/1 0/1 1/1 1/0 1/0 1|1 0/0 1|0 1/0 1/1 0/0 1|0 1|1 0/0 0/1 0/0 1|0 0|0 0|1 1/1 0|0 1|1 0|1 0/0 0/0 1|1 0/0 1|0 1|0 0/1 1/0 1/1 0/1 1/1 0/1 1|0 1/0 1|0 1/0 0/0 1|0
80
- 11 134014225 breakend2 G G[8:61765143[ . PASS BND_DEPTH=39;CSQ=BND|intron_variant|MODIFIER|JAM3|83700|Transcript|NM_001205329.2|protein_coding||3/7|||||||||1||1|||EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,BND|coding_sequence_variant|MODIFIER|JAM3|83700|Transcript|NM_032801.5|protein_coding|4/9||||359/3765|347/933|116/310||||1||1||1|EntrezGene|||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|;MATEID=breakend1;MATE_BND_DEPTH=26;SVTYPE=BND GT 0|1 0/0 1|1 0/1 0/0 0|1 0/1 0|1 0/0 0/0 0|0 0|1 0|0 0|0 0/1 1|0 1/0 1/0 0/0 1/0 0/1 0|0 0/1 0/0 1/0 1/1 1/0 0|0 0/0 1/1 0|0 1/1 1|0 1|1 0/0 0/0 1/0 0/1 1/1 0|1 0/0 1|0 0|1 1/1 0/1 1|0 0|0 1|0 1|0 1|0 1|0 0/0 0/0 0/0 1/0 0|0 0|0 0|1 0/0 1/0 1/0 0/1 0|1 1|0 1/0 1|0 0/1 1/0 0/0 1|0 0/0 1|0 1/0 0/0 1/0 1|0 1|0 1|1 0/0 0/0 0/0 1/1 1|1 0|1 0|0 0/1 1|0 0/1 0/0 0|1 1/1 0|0 1|1 0|0 0/1 1|0 0/0 0/0 1/0 1|0
81
- 13 77570128 . G A . PASS CSQ=A|missense_variant|MODERATE|CLN5|1203|Transcript|NM_001366624.2|protein_coding|3/5||NM_001366624.2:c.431G>A|NP_001353553.1:p.Cys144Tyr|449/5286|431/594|144/197|C/Y|tGt/tAt|rs1566219136|1||1|||EntrezGene|||||0|0.995||pathogenic||1||||||||-27|-43|-27|-1|0.00|0.00|0.01|0.00|CLN5|VUS|0.79378206|||AR|LP|||||||P|filter&vkgl&exit_p|,A|missense_variant|MODERATE|CLN5|1203|Transcript|NM_006493.4|protein_coding|3/4||NM_006493.4:c.431G>A|NP_006484.2:p.Cys144Tyr|449/5243|431/1077|144/358|C/Y|tGt/tAt|rs1566219136|1||1||1|EntrezGene|||||0|0.999||pathogenic||1||||||||-27|-43|-27|-1|0.00|0.00|0.01|0.00|CLN5|VUS|0.862269|||AR|LP|||||||P|filter&vkgl&exit_p| GT 1|1 1|0 1/0 0|0 1/0 1|0 0/0 1/1 1|1 0/1 1|1 0/0 1/1 1|0 0|1 0/0 1|1 0|0 1/1 0|0 0/0 0/0 0|1 1/0 0/1 1/0 1|1 0/1 1|1 0|0 0/0 1/0 0/0 0|0 0/0 0/1 0|0 0/1 0|0 0/0 1/1 1/0 0/0 0|1 1|1 0|1 1|0 0|0 1|0 0/0 1/0 0/1 0|0 0|0 1|1 0|1 1|1 1/0 0|0 1/1 0|0 1/0 1/0 0|0 1/0 0/1 1/1 0|1 0|1 0/1 0/0 0/0 0/0 0/0 1|0 1|0 0|0 0|0 1/0 1|1 1/1 0/1 0/0 0|0 0/0 1|1 1|0 0/1 1/0 0/0 0/0 0/1 1/0 0|0 0/1 1/0 0/1 1|0 1/1 0/0
82
- 14 89336407 . TG T . PASS CSQ=-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001288781.1|protein_coding|12/16||NM_001288781.1:c.963del|NP_001275710.1:p.Met321IlefsTer15|1159/2378|963/1596|321/531|M/X|atG/at|rs1431207606|1||1||1|EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9807489|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001288782.1|protein_coding|10/14||NM_001288782.1:c.321del|NP_001275711.1:p.Met107IlefsTer15|1079/2298|321/954|107/317|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9838007|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001288783.1|protein_coding|11/15||NM_001288783.1:c.198del|NP_001275712.1:p.Met66IlefsTer15|1051/2270|198/831|66/276|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.98078203|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001366535.2|protein_coding|10/13||NM_001366535.2:c.885del|NP_001353464.1:p.Met295IlefsTer15|942/5160|885/1434|295/477|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9797095|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_001366536.2|protein_coding|9/12||NM_001366536.2:c.795del|NP_001353465.1:p.Met265IlefsTer15|852/5070|795/1344|265/447|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9856574|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_144596.4|protein_coding|11/15||NM_144596.4:c.915del|NP_653197.2:p.Met305IlefsTer15|972/2183|915/1548|305/515|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9619866|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_198309.3|protein_coding|11/15||NM_198309.3:c.885del|NP_938051.1:p.Met295IlefsTer15|1081/2300|885/1518|295/505|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9801349|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|TTC8|123016|Transcript|NM_198310.3|protein_coding|10/14||NM_198310.3:c.795del|NP_938052.1:p.Met265IlefsTer15|991/2210|795/1428|265/475|M/X|atG/at|rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.9853147|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p|,-|non_coding_transcript_exon_variant|MODIFIER|TTC8|123016|Transcript|NR_159362.2|misc_RNA|11/15||NR_159362.2:n.1002del||1002/5304|||||rs1431207606|1||1|||EntrezGene||||||||||||||||||18|-4|-9|-4|0.00|0.16|0.00|0.00|TTC8|VUS|0.10411882|HP:0000951||AR|LP||||14:89336408-89336409|1.19537e-05|0|P|filter&vkgl&exit_p| GT 1|0 0/0 1|0 0/0 0/0 0/1 1/0 1|0 0|1 0/0 1/0 0|0 0|1 0|1 1|0 0|0 1|0 0|0 0|1 0|0 0|0 0/0 1/1 1/1 0/0 0|1 0|1 0/0 0/0 0/0 0/0 1|0 0|0 1|0 0|1 0/1 1/0 0|0 0|1 0|1 0|1 0/0 1|0 1|0 1/0 0|0 0/0 1/1 0/0 1|0 1|1 0/0 0/0 1/1 1/0 1/0 0/1 1/0 1/1 0|0 1|1 1|1 0/0 0|1 1/1 0|1 0/1 1|0 1/1 1/0 1/0 1|0 0|1 0|1 1/0 1|0 0|0 1/1 0/1 1|0 0|0 1|1 0|1 0|1 0|1 1/1 0|1 0|1 1|0 0|0 0/1 0|1 1/1 1|0 1/0 1|0 1|0 1/1 0/1 0/0
83
- 14 105167860 . T G . PASS CSQ=G|missense_variant|MODERATE|INF2|64423|Transcript|NM_001031714.4|protein_coding|2/22||NM_001031714.4:c.158T>G|NP_001026884.3:p.Leu53Arg|289/7566|158/3723|53/1240|L/R|cTg/cGg||1||1|||EntrezGene|||||0|0.999||||||||||||-28|-2|37|-2|0.00|0.00|0.00|0.00|INF2|VUS|0.9012849|||AD|LP|||||||P|filter&vkgl&exit_p|,G|missense_variant|MODERATE|INF2|64423|Transcript|NM_022489.4|protein_coding|2/23||NM_022489.4:c.158T>G|NP_071934.3:p.Leu53Arg|289/7623|158/3750|53/1249|L/R|cTg/cGg||1||1||1|EntrezGene|||||0|0.999||||||||||||-28|-2|37|-2|0.00|0.00|0.00|0.00|INF2|VUS|0.9012849|||AD|LP|||||||P|filter&vkgl&exit_p|,G|missense_variant|MODERATE|INF2|64423|Transcript|NM_032714.3|protein_coding|2/5||NM_032714.3:c.158T>G|NP_116103.1:p.Leu53Arg|289/1692|158/705|53/234|L/R|cTg/cGg||1||1|||EntrezGene|||||0|0.999||||||||||||-28|-2|37|-2|0.00|0.00|0.00|0.00|INF2|VUS|0.9012849|||AD|LP|||||||P|filter&vkgl&exit_p|,G|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001573054|open_chromatin_region|||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 0/1 0|0 1|1 0/1 0/0 0/0 0|1 0|0 0/1 1/1 1/0 0|0 1|0 0|0 0/1 0/1 1|1 0|0 1/0 0|1 1/1 1|0 0|0 1/0 0|0 0|1 0/1 1|0 0/0 1|0 1|0 0/0 0|0 1|1 0/0 1/0 0|0 0/1 0/0 0/0 0/1 0|0 0/1 1/0 1/0 1|0 1|1 0|0 1|0 0/1 0|0 0|0 0|1 0/1 0/0 0/0 0/1 1/0 1|0 0|0 0/0 1/1 0|0 0/1 1|0 1|1 0|0 1/1 0/1 1|0 0/0 0/0 1|0 0|0 1/1 1|1 0|0 0|0 0/1 1|1 0|1 0/1 1|1 0|0 0|0 0|1 1/0 1|0 0|1 0|1 0|0 0/1 0|0 1/0 1|1 0/0 0/0 1|1 0/0 0|1
84
- 17 29556064 . AC A . PASS CSQ=-|frameshift_variant|HIGH|NF1|4763|Transcript|NM_000267.3|protein_coding|21/57||NM_000267.3:c.2433del|NP_000258.1:p.Ile812LeufsTer9|2816/12362|2433/8457|811/2818|T/X|acC/ac||1||1|||EntrezGene|||||||1|||||||||||-22|-11|12|25|0.00|0.00|0.00|0.00|NF1|VUS|0.9913782|HP:0000951|1|AD|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|NF1|4763|Transcript|NM_001042492.3|protein_coding|21/58||NM_001042492.3:c.2433del|NP_001035957.1:p.Ile812LeufsTer9|2766/12373|2433/8520|811/2839|T/X|acC/ac||1||1||1|EntrezGene|||||||1|||||||||||-22|-11|12|25|0.00|0.00|0.00|0.00|NF1|VUS|0.9913782|HP:0000951|1|AD|LP|||||||P|filter&vkgl&exit_p| GT 0|1 1|0 0|0 0|1 1/0 0/1 1/0 0|0 1/1 0/0 0|0 0/0 1/0 0|0 0/1 0|1 0/0 1/0 1|0 0/0 1/1 0/0 1|1 0/0 1/0 0|0 1/0 1|0 1|1 1|1 0|0 1/1 0|0 0|0 1/1 0|0 0/1 1/0 1|0 0|0 0/1 0/1 0/1 0|0 0/0 1|1 0/0 0|0 0|0 0|0 0|0 0/0 1|0 0/1 0|1 0|0 0|0 0/0 1|0 0|0 0|1 0|1 0/0 0|0 0|0 0/1 0|0 0/1 1/1 1|0 0|1 1|0 0|0 0/0 0/1 1/1 1|0 0|0 0/0 1|0 1/1 0/0 0|1 0/1 0|1 0|0 1|1 1|1 1/0 0/1 0|0 0|1 0/0 0|0 1|1 0/0 0/0 1/0 0/0 0|0
85
- 17 29663879 . T G . PASS CSQ=G|missense_variant|MODERATE|NF1|4763|Transcript|NM_000267.3|protein_coding|41/57||NM_000267.3:c.6311T>G|NP_000258.1:p.Leu2104Arg|6694/12362|6311/8457|2104/2818|L/R|cTg/cGg|CM141499&CM143458|1||1|||EntrezGene|||||0|0.994||||1&1||||||||-42|41|-34|8|0.00|0.00|0.00|0.00|NF1|VUS|0.8564539|HP:0000951|1|AD|LP|||||||P|filter&vkgl&exit_p|,G|missense_variant|MODERATE|NF1|4763|Transcript|NM_001042492.3|protein_coding|42/58||NM_001042492.3:c.6374T>G|NP_001035957.1:p.Leu2125Arg|6707/12373|6374/8520|2125/2839|L/R|cTg/cGg|CM141499&CM143458|1||1||1|EntrezGene|||||0|0.993||||1&1||||||||-42|41|-34|8|0.00|0.00|0.00|0.00|NF1|VUS|0.8564539|HP:0000951|1|AD|LP|||||||P|filter&vkgl&exit_p| GT 0|1 0/0 1/0 0|0 0|0 0|0 1/0 1/1 1|0 0/1 0|1 0|0 0|0 1|1 0|1 0|1 0|1 0/0 0/0 0/1 0|0 0|0 0/1 1|0 1/0 1/0 0/0 1|1 1/1 0/1 1|0 0|1 0/1 1/0 0/0 1|1 0|0 0/1 0|0 1/1 0|0 1/0 1/1 0/1 0|0 1/1 0|0 0|0 1/0 0|1 0|1 0|0 0|1 0|0 0|1 1/0 1|1 0|0 0|0 1/0 0|0 1/0 0/1 0|1 0/1 0|0 0|1 0/1 0/1 0/0 0/1 0|0 0|0 0/0 0|0 1/0 0|1 0|0 1|0 1|0 0|0 0|1 1/0 0|1 0|0 0|1 0|0 1|1 0/0 0|1 0|0 0|0 0|0 0/0 1/1 0|1 1/0 0/1 0/1 0/0
86
- 19 11216146 . C G . PASS CSQ=G|stop_gained|HIGH|LDLR|3949|Transcript|NM_000527.5|protein_coding|4/18||NM_000527.5:c.564C>G|NP_000518.1:p.Tyr188Ter|650/5173|564/2583|188/860|Y/*|taC/taG|rs121908034&CM920416&COSV99370340|1||1||1|EntrezGene||||||||pathogenic/likely_pathogenic&pathogenic|0&0&1|1&1&1|25741868&27765764&17142622&8882879&1734722&10422803|||||||1|11|0|-14|0.00|0.00|0.00|0.00|LDLR|VUS|0.97590667|HP:0000951||AD&AR|LP|||||||P|filter&vkgl&exit_p|,G|stop_gained|HIGH|LDLR|3949|Transcript|NM_001195798.2|protein_coding|4/18||NM_001195798.2:c.564C>G|NP_001182727.1:p.Tyr188Ter|650/5167|564/2577|188/858|Y/*|taC/taG|rs121908034&CM920416&COSV99370340|1||1|||EntrezGene||||||||pathogenic/likely_pathogenic&pathogenic|0&0&1|1&1&1|25741868&27765764&17142622&8882879&1734722&10422803|||||||1|11|0|-14|0.00|0.00|0.00|0.00|LDLR|VUS|0.97590667|HP:0000951||AD&AR|LP|||||||P|filter&vkgl&exit_p|,G|stop_gained|HIGH|LDLR|3949|Transcript|NM_001195799.2|protein_coding|3/17||NM_001195799.2:c.441C>G|NP_001182728.1:p.Tyr147Ter|527/5050|441/2460|147/819|Y/*|taC/taG|rs121908034&CM920416&COSV99370340|1||1|||EntrezGene||||||||pathogenic/likely_pathogenic&pathogenic|0&0&1|1&1&1|25741868&27765764&17142622&8882879&1734722&10422803|||||||1|11|0|-14|0.00|0.00|0.00|0.00|LDLR|VUS|0.9765647|HP:0000951||AD&AR|LP|||||||P|filter&vkgl&exit_p|,G|intron_variant|MODIFIER|LDLR|3949|Transcript|NM_001195800.2|protein_coding||3/15|NM_001195800.2:c.314-1922C>G|||||||rs121908034&CM920416&COSV99370340|1||1|||EntrezGene||||||||pathogenic/likely_pathogenic&pathogenic|0&0&1|1&1&1|25741868&27765764&17142622&8882879&1734722&10422803|||||||1|11|0|-14|0.00|0.00|0.00|0.00|LDLR|VUS|0.0055715204|HP:0000951||AD&AR|LP|||||||P|filter&vkgl&exit_p|,G|intron_variant|MODIFIER|LDLR|3949|Transcript|NM_001195803.2|protein_coding||3/15|NM_001195803.2:c.314-1095C>G|||||||rs121908034&CM920416&COSV99370340|1||1|||EntrezGene||||||||pathogenic/likely_pathogenic&pathogenic|0&0&1|1&1&1|25741868&27765764&17142622&8882879&1734722&10422803|||||||1|11|0|-14|0.00|0.00|0.00|0.00|LDLR|VUS|0.0055715204|HP:0000951||AD&AR|LP|||||||P|filter&vkgl&exit_p| GT 0|1 0/1 0/0 1|1 1|0 0|1 0/1 1|0 1|0 0|0 1/0 0/1 0/1 0/0 0|1 0/0 1|0 0/1 1|1 1|0 1|0 0|1 1/0 0/0 1|1 0/1 1/0 0/0 1|1 1|1 0/1 1|0 0/1 0/1 0|0 0/0 1|1 0/0 0/1 1/0 0/0 0/0 1/0 0|1 1|0 1/1 0/0 0/1 0|0 0|1 1/0 1|0 0|0 1/0 1|1 0/1 0/0 1/0 1/0 1|1 0|1 0|0 1/0 1|1 0/0 0|1 0|1 0|0 1/0 0|0 1|0 0/0 1|0 0/0 0/1 1/0 1/1 0/0 1/1 0|1 1/0 0|1 0|1 0|0 0|1 1/1 1|1 0|0 1|0 0/1 1|0 0/0 1/1 0|1 1/0 0|1 0/1 0|1 0|0 1|0
87
- 19 17451997 . GA G . PASS CSQ=-|frameshift_variant|HIGH|GTPBP3|84705|Transcript|NM_001128855.3|protein_coding|8/9||NM_001128855.3:c.1058del|NP_001122327.1:p.Asn353ThrfsTer26|1117/2503|1058/1416|353/471|N/X|aAc/ac||1||1|||EntrezGene|||||||1|||||||||||34|33|-7|33|0.01|0.00|0.00|0.00|GTPBP3|VUS|0.9804278|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|GTPBP3|84705|Transcript|NM_001195422.1|protein_coding|8/9||NM_001195422.1:c.1187del|NP_001182351.1:p.Asn396ThrfsTer26|1209/2595|1187/1545|396/514|N/X|aAc/ac||1||1|||EntrezGene|||||||1|||||||||||34|33|-7|33|0.01|0.00|0.00|0.00|GTPBP3|VUS|0.98119754|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|GTPBP3|84705|Transcript|NM_032620.4|protein_coding|8/9||NM_032620.4:c.1121del|NP_116009.2:p.Asn374ThrfsTer26|1180/2566|1121/1479|374/492|N/X|aAc/ac||1||1|||EntrezGene|||||||1|||||||||||34|33|-7|33|0.01|0.00|0.00|0.00|GTPBP3|VUS|0.98185974|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|frameshift_variant|HIGH|GTPBP3|84705|Transcript|NM_133644.4|protein_coding|7/8||NM_133644.4:c.1217del|NP_598399.2:p.Asn406ThrfsTer26|1276/2662|1217/1575|406/524|N/X|aAc/ac||1||1||1|EntrezGene|||||||1|||||||||||34|33|-7|33|0.01|0.00|0.00|0.00|GTPBP3|VUS|0.97986597|HP:0000951||AR|LP|||||||P|filter&vkgl&exit_p|,-|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001610216|CTCF_binding_site|||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,-|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001909308|promoter|||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,-|TF_binding_site_variant|MODIFIER|||MotifFeature|ENSM00523665928||||||||||||1||1||||||||||||||||ENSPFM0305|8|N||HOXB2::ELF1||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 0/0 1|0 0|0 0/0 0|1 0/0 0/0 1/0 1/1 1|0 1|1 0/0 1|1 0|1 0|0 0|0 0|0 0/0 0/1 1|1 1|0 0|0 0|1 0|0 0/1 1|0 0/0 1|1 0|0 0|0 1/1 1|1 1/1 1/0 0/1 1/0 0/0 0|1 1/1 0|1 0|0 0/0 0/1 1|0 0/1 0|0 1/1 0|0 1/0 1/1 1|0 0/1 1/0 1/0 0|1 0|1 1|1 0/0 1/0 0|0 0/0 0/1 0|0 1|0 0/0 0|1 1/0 0/0 0|0 0|0 0|1 0/0 0/0 0/0 0|1 0/0 0/1 1|1 0/1 0/1 0|0 0|1 1/0 1|1 0|0 1|0 1|0 1|0 1/1 0|1 1|1 0|0 0/0 1/1 1/1 0|0 1/0 0|1 0/1 1|0
88
- 20 62326992 . C T . PASS CSQ=T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001134758.4|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001267544.3|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001267545.3|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001267546.3|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001267547.3|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001267548.3|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_001267549.3|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|missense_variant|MODERATE|RTEL1|51750|Transcript|NM_001283009.2|protein_coding|34/35||NM_001283009.2:c.3811C>T|NP_001269938.1:p.Arg1271Trp|4136/4615|3811/3903|1271/1300|R/W|Cgg/Tgg|rs993254667|1||1||1|EntrezGene|||||0.16|0.003||||||||||||12|-21|44|11|0.00|0.00|0.00|0.09|RTEL1|VUS|0.010304764|HP:0000951||AD&AR|||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&exit_p|,T|intron_variant|MODIFIER|RTEL1|51750|Transcript|NM_001283010.1|protein_coding||33/33|NM_001283010.1:c.2984-139C>T|||||||rs993254667|1||1|||EntrezGene||||||||||||||||||12|-21|44|11|0.00|0.00|0.00|0.09|RTEL1|VUS|0.0033220313|HP:0000951||AD&AR|||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NM_003224.6|protein_coding||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|upstream_gene_variant|MODIFIER|TNFRSF6B|8771|Transcript|NM_003823.4|protein_coding||||||||||rs993254667|1|1013|1|||EntrezGene|||||||||||||||||||||||||||VUS|0.010661138||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|intron_variant|MODIFIER|RTEL1|51750|Transcript|NM_016434.4|protein_coding||34/34|NM_016434.4:c.3653-139C>T|||||||rs993254667|1||1|||EntrezGene||||||||||||||||||12|-21|44|11|0.00|0.00|0.00|0.09|RTEL1|VUS|0.0033220313|HP:0000951||AD&AR|||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|intron_variant|MODIFIER|RTEL1|51750|Transcript|NM_032957.5|protein_coding||34/34|NM_032957.5:c.3725-139C>T|||||||rs993254667|1||1|||EntrezGene||||||||||||||||||12|-21|44|11|0.00|0.00|0.00|0.09|RTEL1|VUS|0.0033220313|HP:0000951||AD&AR|||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|non_coding_transcript_exon_variant|MODIFIER|RTEL1-TNFRSF6B|100533107|Transcript|NR_037882.1|lncRNA|34/38||NR_037882.1:n.4638C>T||4638/5772|||||rs993254667|1||1|||EntrezGene||||||||||||||||||12|-21|44|11|0.00|0.00|0.00|0.09|RTEL1-TNFRSF6B|VUS|0.06427667||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NR_051954.3|misc_RNA||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NR_051955.3|misc_RNA||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NR_051956.3|misc_RNA||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NR_051957.3|misc_RNA||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|downstream_gene_variant|MODIFIER|ARFRP1|10139|Transcript|NR_051958.3|misc_RNA||||||||||rs993254667|1|3008|-1|||EntrezGene|||||||||||||||||||||||||||VUS|0.030849965||||||||20:62326992-62326992|1.62113e-05|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 0|0 1/0 1/1 1/0 1|0 1|0 1|0 0/0 1/1 1|1 0/0 0|0 1/0 0/0 1/1 0/0 0|1 0/0 0|0 1|0 0/0 1/0 1/0 1/0 0|0 0/0 0/0 0/0 1/0 1/0 0/0 1/1 1/1 0|0 1/1 0/1 1|1 1|0 1|0 1|0 0|0 0|1 1/0 1|0 0/0 0/0 0|0 0/0 1/0 0/0 0/0 0|0 0/0 0|1 1|1 1|1 0/0 0|0 1/1 0/1 1/1 1/0 0|1 1|0 1/0 1|0 1|0 0|0 1/0 1/0 1/0 1|0 1/0 1/1 0|1 0|1 0/0 0/1 1|0 0|1 0|1 0|0 1|0 0|0 0/0 0|0 1|0 0|1 0|0 1/1 0/0 1/1 1/0 0|0 0|0 1/0 0|0 0/1 0/1 1|1
89
- 22 50627593 . C CTG . . CSQ=TG|intron_variant|MODIFIER|TRABD|80305|Transcript|NM_001320484.2|protein_coding||1/9|NM_001320484.2:c.-35+3188_-35+3189insTG||||||||1||1||1|EntrezGene|||||||||||||||||||||||||||VUS|0.008963062|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|intron_variant|MODIFIER|TRABD|80305|Transcript|NM_001320485.2|protein_coding||1/9|NM_001320485.2:c.-35+3188_-35+3189insTG||||||||1||1|||EntrezGene|||||||||||||||||||||||||||VUS|0.008963062|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|upstream_gene_variant|MODIFIER|TRABD|80305|Transcript|NM_001320487.2|protein_coding|||||||||||1|1422|1|||EntrezGene|||||||||||||||||||||||||||VUS|0.2446478|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|upstream_gene_variant|MODIFIER|TRABD|80305|Transcript|NM_001320488.2|protein_coding|||||||||||1|1422|1|||EntrezGene|||||||||||||||||||||||||||VUS|0.2446478|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|intron_variant|MODIFIER|TRABD|80305|Transcript|NM_001378762.1|protein_coding||1/9|NM_001378762.1:c.-35+3119_-35+3120insTG||||||||1||1|||EntrezGene|||||||||||||||||||||||||||VUS|0.008963062|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|intron_variant|MODIFIER|TRABD|80305|Transcript|NM_001378765.1|protein_coding||1/10|NM_001378765.1:c.-35+3159_-35+3160insTG||||||||1||1|||EntrezGene|||||||||||||||||||||||||||VUS|0.008963062|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|intron_variant|MODIFIER|TRABD|80305|Transcript|NM_025204.4|protein_coding||1/9|NM_025204.4:c.-35+3163_-35+3164insTG||||||||1||1|||EntrezGene|||||||||||||||||||||||||||VUS|0.008963062|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|intron_variant&non_coding_transcript_variant|MODIFIER|TRABD|80305|Transcript|NR_135275.2|misc_RNA||1/9|NR_135275.2:n.64+3188_64+3189insTG||||||||1||1|||EntrezGene|||||||||||||||||||||||||||VUS|0.03393742|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,TG|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00000147691|promoter|||||||||||1||||||||||||||||||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 0/0 1|0 0/1 0|1 0|1 1/0 0|0 0|0 0/1 0|0 1|0 0/0 0|1 0|0 0|1 1/1 0/0 1|0 0|1 0|0 1/0 1/0 0|0 0|0 1/0 0|0 1/0 0|0 1|0 0/0 0/0 0/1 0/0 0|1 1|0 0/1 0|1 0|1 0|0 1/0 0|1 1/0 0/0 0/0 1/0 0|1 0|1 0/0 0|0 1/0 0/1 0/0 0/1 0/0 1/1 0|1 0|0 0|1 0|0 0/0 0|1 0|1 0/0 0|1 0|1 0/1 0|1 0|0 0/0 0/0 0/0 0/1 1|0 0|0 0|0 0/0 0|1 1/1 1|0 1|0 0|1 1/0 0/0 0/1 0|0 0|0 0/1 1|1 0|0 0/1 0|1 0|0 0|0 1|0 0/0 1/1 1/1 0|1 0|0 0|1
90
- 22 50721546 . C T . PASS CSQ=T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376864.1|protein_coding|17/37||NM_001376864.1:c.2749G>A|NP_001363793.1:p.Gly917Ser|2881/6611|2749/5754|917/1917|G/S|Ggc/Agc|rs1377653283|1||-1||1|EntrezGene||||||||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.14842245||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&impact&exit_p|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376865.1|protein_coding|18/38||NM_001376865.1:c.2818G>A|NP_001363794.1:p.Gly940Ser|2898/6391|2818/5586|940/1861|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene||||||||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.14842245||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&impact&exit_p|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376866.1|protein_coding|17/37||NM_001376866.1:c.2749G>A|NP_001363795.1:p.Gly917Ser|2909/6402|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376867.1|protein_coding|18/38||NM_001376867.1:c.2749G>A|NP_001363796.1:p.Gly917Ser|2969/6462|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376868.1|protein_coding|18/38||NM_001376868.1:c.2749G>A|NP_001363797.1:p.Gly917Ser|2962/6455|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376869.1|protein_coding|16/36||NM_001376869.1:c.2749G>A|NP_001363798.1:p.Gly917Ser|2856/6349|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376870.1|protein_coding|17/37||NM_001376870.1:c.2749G>A|NP_001363799.1:p.Gly917Ser|2881/6374|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376871.1|protein_coding|17/37||NM_001376871.1:c.2749G>A|NP_001363800.1:p.Gly917Ser|2874/6367|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376872.1|protein_coding|19/39||NM_001376872.1:c.2749G>A|NP_001363801.1:p.Gly917Ser|3066/6559|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376873.1|protein_coding|18/38||NM_001376873.1:c.2749G>A|NP_001363802.1:p.Gly917Ser|3218/6711|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376874.1|protein_coding|18/38||NM_001376874.1:c.2749G>A|NP_001363803.1:p.Gly917Ser|2934/6427|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376875.1|protein_coding|16/36||NM_001376875.1:c.2749G>A|NP_001363804.1:p.Gly917Ser|2933/6426|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376876.1|protein_coding|18/38||NM_001376876.1:c.2749G>A|NP_001363805.1:p.Gly917Ser|2927/6420|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376877.1|protein_coding|18/38||NM_001376877.1:c.2749G>A|NP_001363806.1:p.Gly917Ser|3198/6691|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376878.1|protein_coding|16/36||NM_001376878.1:c.2749G>A|NP_001363807.1:p.Gly917Ser|2821/6314|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376879.1|protein_coding|19/39||NM_001376879.1:c.2749G>A|NP_001363808.1:p.Gly917Ser|3101/6594|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376880.1|protein_coding|17/37||NM_001376880.1:c.2749G>A|NP_001363809.1:p.Gly917Ser|2991/6484|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376881.1|protein_coding|18/38||NM_001376881.1:c.2749G>A|NP_001363810.1:p.Gly917Ser|3046/6539|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376882.1|protein_coding|17/37||NM_001376882.1:c.2749G>A|NP_001363811.1:p.Gly917Ser|3165/6658|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376883.1|protein_coding|17/37||NM_001376883.1:c.2749G>A|NP_001363812.1:p.Gly917Ser|2881/6350|2749/5493|917/1830|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene||||||||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.14842245||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&impact&exit_p|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376884.1|protein_coding|16/36||NM_001376884.1:c.2749G>A|NP_001363813.1:p.Gly917Ser|2821/6236|2749/5439|917/1812|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene||||||||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.14842245||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&impact&exit_p|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376885.1|protein_coding|17/37||NM_001376885.1:c.2749G>A|NP_001363814.1:p.Gly917Ser|2909/6324|2749/5439|917/1812|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene||||||||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.14842245||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&impact&exit_p|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_001376886.1|protein_coding|17/37||NM_001376886.1:c.2656G>A|NP_001363815.1:p.Gly886Ser|2876/6369|2656/5424|886/1807|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene||||||||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.14842245||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&sift&polyphen&impact&exit_p|,T|missense_variant|MODERATE|PLXNB2|23654|Transcript|NM_012401.4|protein_coding|17/37||NM_012401.4:c.2749G>A|NP_036533.2:p.Gly917Ser|2916/6409|2749/5517|917/1838|G/S|Ggc/Agc|rs1377653283|1||-1|||EntrezGene|||||0|1||||||||||||-2|36|-32|-38|0.05|0.00|0.00|0.00|PLXNB2|VUS|0.92206705||||||||22:50721546-50721546|4.49665e-06|0|LP|filter&vkgl&clinVar&gnomad&effect&sift&exit_lp|,T|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001960812|promoter||||||||||rs1377653283|1|||||||||||||||||||||||||||||||||||||||||22:50721546-50721546|4.49665e-06|0|P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 1|1 0|0 1/0 1|0 1|0 1|0 1/1 1|1 0/1 0|0 0|0 1/1 1/1 0|0 1/0 1/0 1|0 0/1 0|0 1/1 1/1 1|0 0/1 0|1 1/1 0/0 1|1 0|0 0|0 0|1 0|1 0|0 0/0 0|1 0|0 0|0 0|1 0/1 1|1 0|0 0/1 0|1 0|1 0|0 1/1 0/1 0|1 0|0 1|1 0/1 1/0 0/0 0|0 1|0 0|1 1/1 0/1 1/0 0|0 1/1 1|0 0|0 1/0 0/1 0|1 0/1 0|0 0|1 0|0 1|0 0|1 0|0 0/0 1/0 0|0 1|0 1/0 0/0 0|0 0|0 0|0 0|0 1|1 1/1 0|0 1|1 1/0 0/0 0|1 0/0 0/0 0|1 0|1 1/1 0|1 0|1 0|0 0|0 0/0 0|1
91
- X 48933021 x_chrom A T . PASS CSQ=T|splice_donor_variant|HIGH|WDR45|11152|Transcript|NM_001029896.2|protein_coding||9/10|NM_001029896.2:c.827+2T>A|||||||CS135341|1||-1|||EntrezGene||||||||||1||||||||27|28|-2|2|0.02|0.00|0.01|0.99|WDR45|VUS|0.9700852|HP:0000951||XL|LP|||||||P|filter&vkgl&exit_p|,T|splice_donor_variant|HIGH|WDR45|11152|Transcript|NM_007075.4|protein_coding||10/11|NM_007075.4:c.830+2T>A|||||||CS135341|1||-1||1|EntrezGene||||||||||1||||||||27|28|-2|2|0.02|0.00|0.01|0.99|WDR45|VUS|0.9700852|HP:0000951||XL|LP|||||||P|filter&vkgl&exit_p|,T|upstream_gene_variant|MODIFIER|PRAF2|11230|Transcript|NM_007213.3|protein_coding||||||||||CS135341|1|1360|-1|||EntrezGene||||||||||1||||||||27|28|-2|2|0.02|0.00|0.01|0.99|WDR45|VUS|0.0149048455|||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&exit_p|,T|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001477865|CTCF_binding_site||||||||||CS135341|1|||||||||||||||1|||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p|,T|regulatory_region_variant|MODIFIER|||RegulatoryFeature|ENSR00001765299|promoter_flanking_region||||||||||CS135341|1|||||||||||||||1|||||||||||||||||||||||||||||P|filter&vkgl&clinVar&gnomad&effect&spliceAI&annotSV&impact&exit_p| GT 0/0 0|0 0/0 0/1 0|0 1|0 0/0 0/0 1/0 0|0 1|1 0/0 1/0 1/1 1/0 1/0 0/0 0|0 0|0 1|1 0/0 1|0 1/1 1|0 0|0 1|1 0/1 0|1 0/0 1|0 1/0 0|1 1|1 1|0 0/0 1|0 1|0 0|0 0|1 1/0 1/0 1/0 1|1 1|0 0/0 1/1 1/0 1|0 0/0 1|1 0/1 1/0 0/1 1|0 1/0 0/0 0|0 0|1 0|0 1/1 0|0 0/1 0|0 0/0 1/0 1/0 1|1 0|0 0|0 0|0 0|1 0/1 0/0 1/1 0/1 0|1 0|0 1|0 1/1 1/1 0/0 0/1 1/0 1/0 0/0 0|0 1|0 1|1 1|0 1/0 1/0 1/0 0/0 0/1 0/1 1/1 0|0 0|1 0|0 1/1
92
- Y 2655641 y_chrom G A . PASS CSQ=A|stop_gained|HIGH|SRY|6736|Transcript|NM_003140.3|protein_coding|1/1||NM_003140.3:c.4C>T|NP_003131.1:p.Gln2Ter|83/828|4/615|2/204|Q/*|Caa/Taa|rs104894977&CM981858|1||-1||1|EntrezGene||||||||pathogenic||1&1|2401216&9443877|||||||-26|-50|2|-4|0.01|0.00|0.00|0.00|SRY|VUS|0.8890525|||||||||||P|filter&vkgl&clinVar&exit_p| GT 1|0 0/1 1|1 0/0 0/0 1/0 0|0 0|1 0/0 1/1 0|1 1|1 0/0 1/1 0/0 1/1 0/0 1/1 0/1 0/1 1/0 1|0 1|1 0|1 1/0 0|0 0|1 0|1 0/1 1|1 0/0 1/0 1|0 0|0 0|0 0/1 0/0 1/0 0/0 0|1 0|1 1|0 1|1 0/0 0|0 0|1 0|1 1/0 0|1 1|0 1|1 0|0 1|0 0|1 0/0 1/1 0/1 0|0 1|0 0|0 0/0 1/0 1|1 1/0 0|1 0/0 0/0 0|0 0|0 1|0 0/0 0|0 0|1 1/1 0|1 1/1 0/0 1|1 1|1 1/0 1|0 0/0 0/0 0|1 1/0 1|0 0/1 0/0 0|0 0/0 0|0 0|0 0|0 0/1 0|1 1|0 1/0 0/0 0/0 0/1
93
- MT 15326 mt_chrom A G . PASS CSQ=G|intergenic_variant|MODIFIER|||||||||||||||rs2853508|1||||1|||||||||benign&likely_pathogenic||1|31267007||||||||||||||||||||||||||||P|filter&vkgl&clinVar&exit_p| GT 0/0 0/1 0/0 0|0 0|1 0/0 0/1 0|1 0/1 1/0 0/1 1|0 1|0 1/0 1/1 0|1 0/1 1/1 1|0 0/0 1/0 1|0 0/0 0|1 0|1 0|1 0|0 1|0 1|0 1/1 0/0 0|1 0/0 1/0 0|1 0/0 0|0 0/0 0|0 1/0 1/1 0/0 0/0 0/0 0/0 1/0 0|0 0/0 1|0 1|0 0|0 0/0 0/0 0|0 0/0 1/1 0/0 1|0 0|1 1/0 0|1 0|0 1|1 0|1 1/0 1|0 0|1 0/0 0|0 0/1 1|1 1|0 0|0 1/0 0/0 0/0 0/0 0|1 0|0 1/1 0|1 1|1 0|0 0|1 0/1 1|0 0|1 0/0 0/1 0/0 0/0 1/1 1|0 0|0 1/1 0/0 0|0 1|0 0/0 0|0
@@ -1,259 +0,0 @@
1
- import {
2
- AppMetadata,
3
- DecisionTree,
4
- HtsFileMetadata,
5
- Item,
6
- LeafNode,
7
- PagedItems,
8
- Params,
9
- Phenotype,
10
- PhenotypicFeature,
11
- Resource,
12
- Sample,
13
- } from "@molgenis/vip-report-api/src/Api";
14
- import { Metadata, Record } from "@molgenis/vip-report-vcf/src/Vcf";
15
- import api from "../Api";
16
- import { Value } from "@molgenis/vip-report-vcf/src/ValueParser";
17
- import { FieldMetadata, NestedFieldMetadata } from "@molgenis/vip-report-vcf/src/MetadataParser";
18
- import { isNumerical } from "./field";
19
- import { createRecordSort, Direction } from "./sortUtils";
20
-
21
- export const EMPTY_PARAMS: Params = {};
22
-
23
- function createEmptyPagedItems(): PagedItems<Resource> {
24
- return {
25
- page: { number: 0, size: 0, totalElements: 0 },
26
- items: [],
27
- total: 0,
28
- };
29
- }
30
-
31
- export const EMPTY_RECORDS_PAGE = createEmptyPagedItems() as PagedItems<Record>;
32
-
33
- export const EMPTY_SAMPLES_PAGE = createEmptyPagedItems() as PagedItems<Sample>;
34
-
35
- const consequenceOrder = [
36
- "transcript_ablation",
37
- "splice_acceptor_variant",
38
- "splice_donor_variant",
39
- "splice_donor_5th_base_variant",
40
- "splice_donor_region_variant",
41
- "splice_polypyrimidine_tract_variant",
42
- "stop_gained",
43
- "frameshift_variant",
44
- "stop_lost",
45
- "start_lost",
46
- "transcript_amplification",
47
- "inframe_insertion",
48
- "inframe_deletion",
49
- "missense_variant",
50
- "protein_altering_variant",
51
- "splice_region_variant",
52
- "incomplete_terminal_codon_variant",
53
- "start_retained_variant",
54
- "stop_retained_variant",
55
- "synonymous_variant",
56
- "coding_sequence_variant",
57
- "mature_miRNA_variant",
58
- "5_prime_UTR_variant",
59
- "3_prime_UTR_variant",
60
- "non_coding_transcript_exon_variant",
61
- "intron_variant",
62
- "NMD_transcript_variant",
63
- "non_coding_transcript_variant",
64
- "upstream_gene_variant",
65
- "downstream_gene_variant",
66
- "TFBS_ablation",
67
- "TFBS_amplification",
68
- "TF_binding_site_variant",
69
- "regulatory_region_ablation",
70
- "regulatory_region_amplification",
71
- "feature_elongation",
72
- "regulatory_region_variant",
73
- "feature_truncation",
74
- "intergenic_variant",
75
- ].reduce((acc: { [key: string]: number }, curr, currIndex) => ((acc[curr] = currIndex), acc), {});
76
-
77
- function getMostSevereConsequenceIndex(value: string[]) {
78
- return value.map((consequence) => consequenceOrder[consequence]).reduce((max, value) => Math.max(max, value));
79
- }
80
-
81
- function compareCsqValue(aValue: number | null, bValue: number | null, direction: string): number {
82
- if (aValue === null) return bValue === null ? 0 : 1;
83
- if (bValue === null) return -1;
84
- return direction === "desc" ? bValue - aValue : aValue - bValue;
85
- }
86
-
87
- function compareCsq(aValueArray: Value[], bValueArray: Value[], field: FieldMetadata, direction: Direction): number {
88
- const parentField = field.parent as FieldMetadata;
89
- const parentItems = (parentField.nested as NestedFieldMetadata).items;
90
-
91
- const index = parentItems.findIndex((item) => item.id === field.id);
92
- if (index === -1) {
93
- throw new Error(`unknown field '${field.id}'`);
94
- }
95
-
96
- const aValue = aValueArray[index] as number | null;
97
- const bValue = bValueArray[index] as number | null;
98
- return compareCsqValue(aValue, bValue, direction);
99
- }
100
-
101
- function compareCsqDefault(aValue: Value[], bValue: Value[], pickIndex: number, consequenceIndex: number): number {
102
- if (pickIndex !== -1) {
103
- if (aValue[pickIndex] === "1") return bValue[pickIndex] === null ? -1 : 0;
104
- if (bValue[pickIndex] === "1") return 1;
105
- }
106
-
107
- if (consequenceIndex !== -1) {
108
- const aIndex = getMostSevereConsequenceIndex(aValue[consequenceIndex] as string[]);
109
- const bIndex = getMostSevereConsequenceIndex(bValue[consequenceIndex] as string[]);
110
- return aIndex - bIndex;
111
- } else {
112
- return 0;
113
- }
114
- }
115
-
116
- export async function fetchRecords(params: Params) {
117
- const [recordsMeta, records] = await Promise.all([api.getRecordsMeta(), api.getRecords(params)]);
118
- if (recordsMeta.info.CSQ === undefined) {
119
- return records;
120
- }
121
-
122
- const orders = createRecordSort(recordsMeta, params.sort).orders.filter(
123
- (order) =>
124
- order.field.parent?.id === "CSQ" &&
125
- isNumerical(order.field) &&
126
- order.field.number.type === "NUMBER" &&
127
- order.field.number.count === 1,
128
- );
129
-
130
- const fieldMetas = (recordsMeta.info.CSQ.nested as NestedFieldMetadata).items;
131
- const consequenceIndex = fieldMetas.findIndex((item) => item.id === "Consequence");
132
- const pickIndex = fieldMetas.findIndex((item) => item.id === "PICK");
133
-
134
- for (const record of records.items) {
135
- const csqArray = record.data.n.CSQ as Value[][] | undefined;
136
- if (csqArray) {
137
- csqArray.sort((aValue, bValue) => {
138
- for (const order of orders) {
139
- const compareValue = compareCsq(aValue, bValue, order.field, order.direction);
140
- if (compareValue !== 0) return compareValue;
141
- }
142
- return compareCsqDefault(aValue, bValue, pickIndex, consequenceIndex);
143
- });
144
- }
145
- }
146
- return records;
147
- }
148
-
149
- export async function fetchRecordsMeta() {
150
- return await api.getRecordsMeta();
151
- }
152
-
153
- export const EMPTY_RECORDS_METADATA: Metadata = {
154
- lines: [],
155
- info: {},
156
- format: {},
157
- samples: [],
158
- };
159
-
160
- export async function fetchDecisionTree() {
161
- return await api.getDecisionTree();
162
- }
163
-
164
- export async function fetchSampleById(id: string) {
165
- return await api.getSampleById(Number(id));
166
- }
167
-
168
- export async function fetchRecordById(id: string) {
169
- return await api.getRecordById(Number(id));
170
- }
171
-
172
- export async function fetchSamples(params: Params) {
173
- return await api.getSamples(params);
174
- }
175
-
176
- export async function fetchPhenotypes(params: Params) {
177
- return await api.getPhenotypes(params);
178
- }
179
-
180
- export const EMPTY_PHENOTYPES = createEmptyPagedItems() as PagedItems<Phenotype>;
181
-
182
- export const EMPTY_DECISION_TREE: DecisionTree = {
183
- rootNode: "root",
184
- nodes: { root: { type: "LEAF", description: "x", class: "x" } as LeafNode },
185
- labels: {},
186
- files: {},
187
- };
188
-
189
- export async function fetchHtsFileMetadata() {
190
- return await api.getHtsFileMetadata();
191
- }
192
-
193
- export async function fetchAppMetadata() {
194
- return await api.getAppMetadata();
195
- }
196
-
197
- export const EMPTY_HTS_FILE_METADATA: HtsFileMetadata = {
198
- htsFormat: "x",
199
- uri: "x",
200
- genomeAssembly: "x",
201
- };
202
-
203
- export const EMPTY_APP_METADATA: AppMetadata = {
204
- name: "x",
205
- version: "x",
206
- args: "x",
207
- };
208
-
209
- export async function fetchPedigreeSamples(sample: Item<Sample>): Promise<PagedItems<Sample>> {
210
- return await api.getSamples({
211
- query: {
212
- operator: "and",
213
- args: [
214
- { selector: ["person", "individualId"], operator: "!=", args: sample.data.person.individualId },
215
- { selector: ["person", "familyId"], operator: "==", args: sample.data.person.familyId },
216
- ],
217
- },
218
- size: Number.MAX_SAFE_INTEGER,
219
- });
220
- }
221
-
222
- export async function fetchPhenotypicFeatures(sample: Item<Sample>): Promise<PhenotypicFeature[]> {
223
- const phenotypes = await fetchPhenotypes({
224
- query: { selector: ["subject", "id"], operator: "==", args: sample.data.person.individualId },
225
- size: Number.MAX_SAFE_INTEGER,
226
- });
227
- return phenotypes.items.map((item) => item.data).flatMap((phenotype) => phenotype.phenotypicFeaturesList);
228
- }
229
-
230
- export function getRecordLabel(item: Item<Record>) {
231
- const record = item.data;
232
- return `${record.c}:${record.p} ${record.a
233
- .map(
234
- (a) =>
235
- `${record.r}>${a !== null ? (a.length > 4 ? a.substring(0, 2) + "\u2026" + a.charAt(a.length - 1) : a) : "."}`,
236
- )
237
- .join(" / ")}`;
238
- }
239
-
240
- export const EMPTY_RECORD_ITEM: Item<Record> = {
241
- id: -1,
242
- data: { c: "", p: -1, i: [], r: "", a: [], q: null, f: [], n: {}, s: [] },
243
- };
244
-
245
- export const EMPTY_SAMPLE_ITEM: Item<Sample> = {
246
- id: -1,
247
- data: {
248
- person: {
249
- familyId: "",
250
- individualId: "",
251
- paternalId: "",
252
- maternalId: "",
253
- sex: "UNKNOWN_SEX",
254
- affectedStatus: "MISSING",
255
- },
256
- index: -1,
257
- proband: false,
258
- },
259
- };
@@ -1,27 +0,0 @@
1
- import { FieldMetadata } from "@molgenis/vip-report-vcf/src/MetadataParser";
2
- import { FieldValue } from "../components/record/field/Field";
3
- import { Value } from "@molgenis/vip-report-vcf/src/ValueParser";
4
-
5
- function is(infoMeta: FieldMetadata, id: string) {
6
- return infoMeta.id === id;
7
- }
8
-
9
- function isCsq(infoMeta: FieldMetadata) {
10
- return infoMeta.parent?.id === "CSQ";
11
- }
12
-
13
- export function isCsqInfo(infoMeta: FieldMetadata, id: string) {
14
- return isCsq(infoMeta) && is(infoMeta, id);
15
- }
16
-
17
- export function isAnyCsqInfo(infoMeta: FieldMetadata, ids: string[]) {
18
- return isCsq(infoMeta) && ids.some((id) => is(infoMeta, id));
19
- }
20
-
21
- export function getCsqInfoIndex(infoMeta: FieldMetadata, id: string): number {
22
- return infoMeta.parent?.nested?.items.findIndex((item) => item.id === id) || -1;
23
- }
24
-
25
- export function getCsqInfo(info: FieldValue, infoIndex: number): Value {
26
- return (info.valueParent as Value[])[infoIndex];
27
- }
@@ -1,14 +0,0 @@
1
- import { Metadata, Record } from "@molgenis/vip-report-vcf/src/Vcf";
2
- import { Item } from "@molgenis/vip-report-api/src/Api";
3
- import { DecisionTreePath } from "../components/tree/DecisionTreePath";
4
- import { getSpecificConsequence } from "./viewUtils";
5
- import { ValueArray } from "@molgenis/vip-report-vcf/src/ValueParser";
6
-
7
- export function getDecisionTreePath(recordsMetadata: Metadata, variant: Item<Record>, csqId: number): DecisionTreePath {
8
- if (recordsMetadata.info.CSQ.nested === undefined) {
9
- throw new Error("Required nested VEP metadata is undefined.");
10
- }
11
- return getSpecificConsequence(variant.data.n.CSQ as ValueArray, csqId)[
12
- recordsMetadata.info.CSQ.nested.items.findIndex((csq) => csq.id === "VIPP")
13
- ] as DecisionTreePath;
14
- }
@@ -1,49 +0,0 @@
1
- import { FieldMetadata } from "@molgenis/vip-report-vcf/src/MetadataParser";
2
- import { FieldMetadataContainer, InfoContainer } from "@molgenis/vip-report-vcf/src/VcfParser";
3
- import { Metadata } from "@molgenis/vip-report-vcf/src/Vcf";
4
- import { SortPath } from "@molgenis/vip-report-api/src/Api";
5
-
6
- const flattenFieldMetadataRec = (fieldMetadata: FieldMetadata): FieldMetadata[] => {
7
- return fieldMetadata.nested ? fieldMetadata.nested.items.flatMap(flattenFieldMetadataRec) : [fieldMetadata];
8
- };
9
-
10
- export const flattenFieldMetadata = (fieldMetadataContainer: FieldMetadataContainer): FieldMetadata[] => {
11
- return Object.values(fieldMetadataContainer).flatMap(flattenFieldMetadataRec);
12
- };
13
-
14
- export const isNumerical = (fieldMetadata: FieldMetadata): boolean => {
15
- return fieldMetadata.type === "FLOAT" || fieldMetadata.type === "INTEGER";
16
- };
17
-
18
- export function getNestedInfoFieldsWithValues(infoFields: FieldMetadataContainer, infoValues: InfoContainer) {
19
- return Object.values(infoFields).filter((infoField) => infoField.nested && infoValues[infoField.id] !== undefined);
20
- }
21
-
22
- export function abbreviateHeader(header: string) {
23
- return header.length > 13 ? header.slice(0, 11) + "\u2026" : header;
24
- }
25
-
26
- class InvalidFieldPathError extends Error {
27
- constructor(path: SortPath) {
28
- super(`invalid path '[${path.join(", ")}]'`);
29
- this.name = "InvalidFieldPathError";
30
- }
31
- }
32
-
33
- export function findInfoField(recordsMetadata: Metadata, path: SortPath): FieldMetadata | undefined {
34
- if (path.length < 2 || path[0] !== "n") throw new InvalidFieldPathError(path);
35
-
36
- let field = recordsMetadata.info[path[1]];
37
- if (field === undefined) throw new InvalidFieldPathError(path);
38
-
39
- for (let i = 2; i < path.length; ++i) {
40
- const fieldIndex = Number(path[i]);
41
- if (!Number.isInteger(fieldIndex) || fieldIndex < 0) throw new InvalidFieldPathError(path);
42
-
43
- const fieldItems = field.nested?.items;
44
- if (fieldItems === undefined || fieldIndex >= fieldItems.length) throw new InvalidFieldPathError(path);
45
-
46
- field = fieldItems[fieldIndex];
47
- }
48
- return field;
49
- }