@sjcrh/proteinpaint-server 2.44.0 → 2.46.1

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 (82) hide show
  1. package/dataset/clinvar.hg19.js +53 -52
  2. package/dataset/clinvar.hg38.js +74 -73
  3. package/dataset/clinvar.js +164 -47
  4. package/dataset/termdb.test.js +257 -0
  5. package/genome/CriGri.js +1859 -27
  6. package/genome/cgc.js +743 -7
  7. package/genome/danRer10.js +1108 -46
  8. package/genome/dm3.js +71 -44
  9. package/genome/dm6.js +1926 -45
  10. package/genome/galGal5.js +23522 -46
  11. package/genome/galGal6.js +512 -46
  12. package/genome/hg19.js +293 -198
  13. package/genome/hg38.js +472 -105
  14. package/genome/hg38.test.js +406 -40
  15. package/genome/hgvirus.js +45 -20
  16. package/genome/mm10.js +135 -67
  17. package/genome/mm9.js +116 -79
  18. package/genome/rn6.js +1002 -47
  19. package/package.json +31 -35
  20. package/routes/_template_.js +30 -0
  21. package/routes/burden.js +149 -0
  22. package/routes/dataset.js +266 -0
  23. package/routes/dsdata.js +127 -0
  24. package/routes/gdc.maf.js +120 -0
  25. package/routes/gdc.mafBuild.js +106 -0
  26. package/routes/gdc.topMutatedGenes.js +465 -0
  27. package/routes/gene2canonicalisoform.js +41 -0
  28. package/routes/genelookup.js +52 -0
  29. package/routes/genomes.js +144 -0
  30. package/routes/healthcheck.js +30 -0
  31. package/routes/hicdata.js +98 -0
  32. package/routes/hicstat.js +55 -0
  33. package/routes/isoformlst.js +57 -0
  34. package/routes/ntseq.js +43 -0
  35. package/routes/pdomain.js +61 -0
  36. package/routes/snp.js +107 -0
  37. package/routes/termdb.categories.js +209 -0
  38. package/routes/termdb.cluster.js +228 -0
  39. package/routes/termdb.cohort.summary.js +38 -0
  40. package/routes/termdb.cohorts.js +49 -0
  41. package/routes/termdb.config.js +202 -0
  42. package/routes/termdb.getdescrstats.js +102 -0
  43. package/routes/termdb.getnumericcategories.js +92 -0
  44. package/routes/termdb.getpercentile.js +108 -0
  45. package/routes/termdb.getrootterm.js +65 -0
  46. package/routes/termdb.gettermchildren.js +67 -0
  47. package/routes/termdb.singleSampleMutation.js +80 -0
  48. package/routes/termdb.singlecellData.js +46 -0
  49. package/routes/termdb.singlecellSamples.js +160 -0
  50. package/routes/termdb.termsbyids.js +59 -0
  51. package/routes/termdb.topVariablyExpressedGenes.js +171 -0
  52. package/routes/termdb.violin.js +77 -0
  53. package/src/app.js +41500 -0
  54. package/src/serverconfig.js +14 -8
  55. package/start.js +3 -3
  56. package/routes/README.md +0 -84
  57. package/routes/burden.ts +0 -143
  58. package/routes/gdc.maf.ts +0 -195
  59. package/routes/gdc.mafBuild.ts +0 -114
  60. package/routes/gdc.topMutatedGenes.ts +0 -586
  61. package/routes/genelookup.ts +0 -50
  62. package/routes/healthcheck.ts +0 -29
  63. package/routes/hicdata.ts +0 -111
  64. package/routes/hicstat.ts +0 -55
  65. package/routes/termdb.categories.ts +0 -245
  66. package/routes/termdb.cluster.ts +0 -248
  67. package/routes/termdb.getdescrstats.ts +0 -102
  68. package/routes/termdb.getnumericcategories.ts +0 -99
  69. package/routes/termdb.getpercentile.ts +0 -118
  70. package/routes/termdb.getrootterm.ts +0 -73
  71. package/routes/termdb.gettermchildren.ts +0 -82
  72. package/routes/termdb.singleSampleMutation.ts +0 -87
  73. package/routes/termdb.singlecellData.ts +0 -49
  74. package/routes/termdb.singlecellSamples.ts +0 -175
  75. package/routes/termdb.termsbyids.ts +0 -63
  76. package/routes/termdb.topVariablyExpressedGenes.ts +0 -214
  77. package/routes/termdb.violin.ts +0 -77
  78. package/server.js +0 -2
  79. package/server.js.map +0 -1
  80. package/shared/common.js +0 -1080
  81. package/shared/termdb.initbinconfig.js +0 -96
  82. package/shared/vcf.js +0 -629
@@ -1,54 +1,55 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var clinvar_js_1 = require("./clinvar.js");
4
- exports.default = {
5
- isMds3: true,
6
- dsinfo: [
7
- { k: 'Source', v: '<a href=http://www.ncbi.nlm.nih.gov/clinvar/ target=_blank>NCBI ClinVar</a>' },
8
- { k: 'Data type', v: 'SNV/Indel' },
9
- { k: 'Gene annotation', v: 'VEP version 100' },
10
- { k: 'Download date', v: 'May 2023' }
11
- ],
12
- genome: 'hg19',
13
- queries: {
14
- snvindel: {
15
- forTrack: true,
16
- byrange: {
17
- bcffile: 'hg19/clinvar.hg19.bcf.gz',
18
- infoFields: [
19
- {
20
- name: 'Clinical Significance',
21
- key: 'CLNSIG',
22
- categories: clinvar_js_1.clinsig,
23
- separator: '|'
24
- }
25
- ]
26
- },
27
- ssmUrl: {
28
- base: 'https://www.ncbi.nlm.nih.gov/clinvar/variation/',
29
- namekey: 'vcf_id',
30
- linkText: 'ClinVar',
31
- shownSeparately: true
32
- },
33
- infoUrl: [{ base: 'https://www.ncbi.nlm.nih.gov/snp/rs', key: 'RS' }]
34
- }
35
- }
36
- /*
37
- vcfinfofilter: {
38
- setidx4mclass: 0,
39
- setidx4numeric: 1,
40
- lst: [
41
- {
42
- name: 'Clinical significance',
43
- locusinfo: {
44
- key: 'CLNSIG'
45
- },
46
- categories: clinvar.clinsig
47
- },
48
- clinvar.AF.AF_EXAC,
49
- clinvar.AF.AF_ESP,
50
- clinvar.AF.AF_TGP
1
+ import { clinsig } from "./clinvar.js";
2
+ var clinvar_hg19_default = {
3
+ isMds3: true,
4
+ dsinfo: [
5
+ { k: "Source", v: "<a href=http://www.ncbi.nlm.nih.gov/clinvar/ target=_blank>NCBI ClinVar</a>" },
6
+ { k: "Data type", v: "SNV/Indel" },
7
+ { k: "Gene annotation", v: "VEP version 100" },
8
+ { k: "Download date", v: "May 2023" }
9
+ ],
10
+ genome: "hg19",
11
+ queries: {
12
+ snvindel: {
13
+ forTrack: true,
14
+ byrange: {
15
+ bcffile: "hg19/clinvar.hg19.bcf.gz",
16
+ infoFields: [
17
+ {
18
+ name: "Clinical Significance",
19
+ key: "CLNSIG",
20
+ categories: clinsig,
21
+ separator: "|"
22
+ }
51
23
  ]
52
- },
53
- */
24
+ },
25
+ ssmUrl: {
26
+ base: "https://www.ncbi.nlm.nih.gov/clinvar/variation/",
27
+ namekey: "vcf_id",
28
+ linkText: "ClinVar",
29
+ shownSeparately: true
30
+ },
31
+ infoUrl: [{ base: "https://www.ncbi.nlm.nih.gov/snp/rs", key: "RS" }]
32
+ }
33
+ }
34
+ /*
35
+ vcfinfofilter: {
36
+ setidx4mclass: 0,
37
+ setidx4numeric: 1,
38
+ lst: [
39
+ {
40
+ name: 'Clinical significance',
41
+ locusinfo: {
42
+ key: 'CLNSIG'
43
+ },
44
+ categories: clinvar.clinsig
45
+ },
46
+ clinvar.AF.AF_EXAC,
47
+ clinvar.AF.AF_ESP,
48
+ clinvar.AF.AF_TGP
49
+ ]
50
+ },
51
+ */
52
+ };
53
+ export {
54
+ clinvar_hg19_default as default
54
55
  };
@@ -1,77 +1,78 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var clinvar_js_1 = require("./clinvar.js");
4
- exports.default = {
5
- isMds3: true,
6
- dsinfo: [
7
- { k: 'Source', v: '<a href=http://www.ncbi.nlm.nih.gov/clinvar/ target=_blank>NCBI ClinVar</a>' },
8
- { k: 'Data type', v: 'SNV/Indel' },
9
- { k: 'Gene annotation', v: 'VEP version 100' },
10
- { k: 'Download date', v: 'May 2023' }
11
- ],
12
- genome: 'hg38',
13
- viewModes: [
14
- {
15
- byInfo: 'gnomAD_AF',
16
- inuse: true
17
- },
18
- {
19
- byInfo: 'gnomAD_AF_afr'
20
- }
21
- ],
22
- queries: {
23
- snvindel: {
24
- forTrack: true,
25
- byrange: {
26
- bcffile: 'hg38/clinvar.hg38.bcf.gz',
27
- // list of info fields with special configurations
28
- infoFields: [
29
- {
30
- name: 'Clinical significance',
31
- key: 'CLNSIG',
32
- categories: clinvar_js_1.clinsig,
33
- separator: '|'
34
- },
35
- {
36
- name: 'gnomAD_AF',
37
- key: 'gnomAD_AF'
38
- },
39
- {
40
- name: 'gnomAD_AF_afr',
41
- key: 'gnomAD_AF_afr'
42
- }
43
- ]
44
- },
45
- ssmUrl: {
46
- base: 'https://www.ncbi.nlm.nih.gov/clinvar/variation/',
47
- namekey: 'vcf_id',
48
- linkText: 'ClinVar',
49
- shownSeparately: true
50
- },
51
- infoUrl: [
52
- {
53
- base: 'https://www.ncbi.nlm.nih.gov/snp/rs',
54
- key: 'RS'
55
- }
56
- ]
57
- }
1
+ import { clinsig } from "./clinvar.js";
2
+ var clinvar_hg38_default = {
3
+ isMds3: true,
4
+ dsinfo: [
5
+ { k: "Source", v: "<a href=http://www.ncbi.nlm.nih.gov/clinvar/ target=_blank>NCBI ClinVar</a>" },
6
+ { k: "Data type", v: "SNV/Indel" },
7
+ { k: "Gene annotation", v: "VEP version 100" },
8
+ { k: "Download date", v: "May 2023" }
9
+ ],
10
+ genome: "hg38",
11
+ viewModes: [
12
+ {
13
+ byInfo: "gnomAD_AF",
14
+ inuse: true
15
+ },
16
+ {
17
+ byInfo: "gnomAD_AF_afr"
58
18
  }
59
- /*
60
- vcfinfofilter: {
61
- setidx4mclass: 0,
62
- setidx4numeric: 1,
63
- lst: [
64
- {
65
- name: 'Clinical significance',
66
- locusinfo: {
67
- key: 'CLNSIG'
68
- },
69
- categories: clinvar.clinsig
70
- },
71
- clinvar.AF.AF_EXAC,
72
- clinvar.AF.AF_ESP,
73
- clinvar.AF.AF_TGP
19
+ ],
20
+ queries: {
21
+ snvindel: {
22
+ forTrack: true,
23
+ byrange: {
24
+ bcffile: "hg38/clinvar.hg38.bcf.gz",
25
+ // list of info fields with special configurations
26
+ infoFields: [
27
+ {
28
+ name: "Clinical significance",
29
+ key: "CLNSIG",
30
+ categories: clinsig,
31
+ separator: "|"
32
+ },
33
+ {
34
+ name: "gnomAD_AF",
35
+ key: "gnomAD_AF"
36
+ },
37
+ {
38
+ name: "gnomAD_AF_afr",
39
+ key: "gnomAD_AF_afr"
40
+ }
74
41
  ]
42
+ },
43
+ ssmUrl: {
44
+ base: "https://www.ncbi.nlm.nih.gov/clinvar/variation/",
45
+ namekey: "vcf_id",
46
+ linkText: "ClinVar",
47
+ shownSeparately: true
48
+ },
49
+ infoUrl: [
50
+ {
51
+ base: "https://www.ncbi.nlm.nih.gov/snp/rs",
52
+ key: "RS"
53
+ }
54
+ ]
75
55
  }
76
- */
56
+ }
57
+ /*
58
+ vcfinfofilter: {
59
+ setidx4mclass: 0,
60
+ setidx4numeric: 1,
61
+ lst: [
62
+ {
63
+ name: 'Clinical significance',
64
+ locusinfo: {
65
+ key: 'CLNSIG'
66
+ },
67
+ categories: clinvar.clinsig
68
+ },
69
+ clinvar.AF.AF_EXAC,
70
+ clinvar.AF.AF_ESP,
71
+ clinvar.AF.AF_TGP
72
+ ]
73
+ }
74
+ */
75
+ };
76
+ export {
77
+ clinvar_hg38_default as default
77
78
  };
@@ -1,49 +1,166 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AF = exports.clinsig = void 0;
4
- exports.clinsig = {
5
- Affects: { color: '#ccc', label: 'Affects', desc: "Variants that cause a non-disease phenotype, such as lactose intolerance." },
6
- Benign: { color: '#43ac6a', label: 'Benign', textcolor: 'white', desc: "The variant is reported to be benign." },
7
- 'Benign/Likely_benign': { color: '#43ac6a', label: 'Benign/Likely benign', textcolor: 'white', desc: "The variant is reported to be benign/likely benign by different submitters." },
8
- Likely_benign: { color: '#5bc0de', label: 'Likely benign', textcolor: 'white', desc: "The variant is reported to be likely benign." },
9
- Conflicting_interpretations_of_pathogenicity: { color: '#90C3D4', label: 'Conflicting interpretations of pathogenicity', desc: "The variant has conflicting clinical assertions from different submitters." },
10
- Likely_pathogenic: { color: '#e99002', label: 'Likely pathogenic', textcolor: 'white', desc: "The variant is reported to be likely pathogenic." },
11
- 'Likely_pathogenic,_low_penetrance': { color: '#e99002', label: 'Likely pathogenic/Low penetrance', desc: "The variant is reported to be likely pathogenic with low penetrance." },
12
- 'Likely_pathogenic/Likely_risk_allele': { color: '#e99002', label: 'Likely pathogenic/Likely risk allele', desc: "The variant is reported to be likely pathogenic/likely risk allele by different submitters." },
13
- Likely_risk_allele: { color: '#e99002', label: 'Likely risk allele', desc: "" },
14
- Pathogenic: { color: '#f04124', label: 'Pathogenic', textcolor: 'white', desc: "The variant is reported to be pathogenic." },
15
- 'Likely_pathogenic/Pathogenic,_low_penetrance': { color: '#f04124', label: 'Likely pathogenic/Pathogenic/Low penetrance', desc: "The variant is reported likely pathogenic/pathogenic with low penetrance by different submitters." },
16
- 'Pathogenic/Likely_pathogenic/Pathogenic,_low_penetrance': { color: '#f04124', label: 'Pathogenic/Likely pathogenic/Low penetrance', desc: "The variant is reported likely pathogenic/pathogenic with low penetrance by different submitters." },
17
- 'Pathogenic/Likely_pathogenic': { color: '#f04124', label: 'Pathogenic/Likely pathogenic', textcolor: 'white', desc: "The variant is reported to be pathogenic/likely pathogenic by different submitters." },
18
- 'Pathogenic/Likely_pathogenic/Likely_risk_allele': { color: '#f04124', label: 'Pathogenic/Likely pathogenic/Likely risk allele', desc: "The variant is reported to be pathogenic, likely pathogenic or likely risk allele by different submitters." },
19
- 'Pathogenic/Likely_risk_allele': { color: '#f04124', label: 'Pathogenic/Likely risk allele', desc: "The variant is reported pathogenic/likely risk allele by different submitters." },
20
- 'Pathogenic/Pathogenic,_low_penetrance': { color: '#f04124', label: 'Pathogenic/Low penetrance', desc: "The variant is reported pathogenic with low penetrance." },
21
- Uncertain_risk_allele: { color: '#aaa', label: 'Uncertain risk allele', textcolor: 'white', desc: "A genetic change affecting an allele whose impact on the individual’s disease risk is not yet known." },
22
- Uncertain_significance: { color: '#aaa', label: 'Uncertain significance', textcolor: 'white', desc: "A genetic change whose impact on the individual’s disease risk is not yet known." },
23
- 'Uncertain_significance/Uncertain_risk_allele': { color: '#aaa', label: 'Uncertain significance/Uncertain risk allele', desc: "The variant is reported of uncertain significance/uncertain risk allele by different submitters." },
24
- association: { color: '#ccc', label: 'Association', desc: "Variants identified in a GWAS study and further interpreted for their clinical significance." },
25
- association_not_found: { color: '#ccc', label: 'Association not found', desc: "No significant GWAS association study found." },
26
- confers_sensitivity: { color: '#ccc', label: 'Confers sensitivity', desc: "" },
27
- drug_response: { color: 'gold', label: 'Drug response', textcolor: 'white', desc: "The variant is reported to affect a drug response." },
28
- not_provided: { color: '#ccc', label: 'Not provided', desc: "Clinical significance for the variant has not been provided by the submitter." },
29
- other: { color: '#ccc', label: 'Other', desc: "The variant has some other clinical significance, such as protective, association, confers sensitivity." },
30
- protective: { color: '#ccc', label: 'Protective', desc: "Variants that decrease the risk of a disorder, including infections." },
31
- risk_factor: { color: '#ccc', label: 'Risk factor', desc: "The variant is reported to be a risk factor for a particular disease." },
1
+ const clinsig = {
2
+ Affects: {
3
+ color: "#ccc",
4
+ label: "Affects",
5
+ desc: "Variants that cause a non-disease phenotype, such as lactose intolerance."
6
+ },
7
+ Benign: { color: "#43ac6a", label: "Benign", textcolor: "white", desc: "The variant is reported to be benign." },
8
+ "Benign/Likely_benign": {
9
+ color: "#43ac6a",
10
+ label: "Benign/Likely benign",
11
+ textcolor: "white",
12
+ desc: "The variant is reported to be benign/likely benign by different submitters."
13
+ },
14
+ Likely_benign: {
15
+ color: "#5bc0de",
16
+ label: "Likely benign",
17
+ textcolor: "white",
18
+ desc: "The variant is reported to be likely benign."
19
+ },
20
+ Conflicting_interpretations_of_pathogenicity: {
21
+ color: "#90C3D4",
22
+ label: "Conflicting interpretations of pathogenicity",
23
+ desc: "The variant has conflicting clinical assertions from different submitters."
24
+ },
25
+ Likely_pathogenic: {
26
+ color: "#e99002",
27
+ label: "Likely pathogenic",
28
+ textcolor: "white",
29
+ desc: "The variant is reported to be likely pathogenic."
30
+ },
31
+ "Likely_pathogenic,_low_penetrance": {
32
+ color: "#e99002",
33
+ label: "Likely pathogenic/Low penetrance",
34
+ desc: "The variant is reported to be likely pathogenic with low penetrance."
35
+ },
36
+ "Likely_pathogenic/Likely_risk_allele": {
37
+ color: "#e99002",
38
+ label: "Likely pathogenic/Likely risk allele",
39
+ desc: "The variant is reported to be likely pathogenic/likely risk allele by different submitters."
40
+ },
41
+ Likely_risk_allele: { color: "#e99002", label: "Likely risk allele", desc: "" },
42
+ Pathogenic: {
43
+ color: "#f04124",
44
+ label: "Pathogenic",
45
+ textcolor: "white",
46
+ desc: "The variant is reported to be pathogenic."
47
+ },
48
+ "Likely_pathogenic/Pathogenic,_low_penetrance": {
49
+ color: "#f04124",
50
+ label: "Likely pathogenic/Pathogenic/Low penetrance",
51
+ desc: "The variant is reported likely pathogenic/pathogenic with low penetrance by different submitters."
52
+ },
53
+ "Pathogenic/Likely_pathogenic/Pathogenic,_low_penetrance": {
54
+ color: "#f04124",
55
+ label: "Pathogenic/Likely pathogenic/Low penetrance",
56
+ desc: "The variant is reported likely pathogenic/pathogenic with low penetrance by different submitters."
57
+ },
58
+ "Pathogenic/Likely_pathogenic": {
59
+ color: "#f04124",
60
+ label: "Pathogenic/Likely pathogenic",
61
+ textcolor: "white",
62
+ desc: "The variant is reported to be pathogenic/likely pathogenic by different submitters."
63
+ },
64
+ "Pathogenic/Likely_pathogenic/Likely_risk_allele": {
65
+ color: "#f04124",
66
+ label: "Pathogenic/Likely pathogenic/Likely risk allele",
67
+ desc: "The variant is reported to be pathogenic, likely pathogenic or likely risk allele by different submitters."
68
+ },
69
+ "Pathogenic/Likely_risk_allele": {
70
+ color: "#f04124",
71
+ label: "Pathogenic/Likely risk allele",
72
+ desc: "The variant is reported pathogenic/likely risk allele by different submitters."
73
+ },
74
+ "Pathogenic/Pathogenic,_low_penetrance": {
75
+ color: "#f04124",
76
+ label: "Pathogenic/Low penetrance",
77
+ desc: "The variant is reported pathogenic with low penetrance."
78
+ },
79
+ Uncertain_risk_allele: {
80
+ color: "#aaa",
81
+ label: "Uncertain risk allele",
82
+ textcolor: "white",
83
+ desc: "A genetic change affecting an allele whose impact on the individual\u2019s disease risk is not yet known."
84
+ },
85
+ Uncertain_significance: {
86
+ color: "#aaa",
87
+ label: "Uncertain significance",
88
+ textcolor: "white",
89
+ desc: "A genetic change whose impact on the individual\u2019s disease risk is not yet known."
90
+ },
91
+ "Uncertain_significance/Uncertain_risk_allele": {
92
+ color: "#aaa",
93
+ label: "Uncertain significance/Uncertain risk allele",
94
+ desc: "The variant is reported of uncertain significance/uncertain risk allele by different submitters."
95
+ },
96
+ association: {
97
+ color: "#ccc",
98
+ label: "Association",
99
+ desc: "Variants identified in a GWAS study and further interpreted for their clinical significance."
100
+ },
101
+ association_not_found: {
102
+ color: "#ccc",
103
+ label: "Association not found",
104
+ desc: "No significant GWAS association study found."
105
+ },
106
+ confers_sensitivity: { color: "#ccc", label: "Confers sensitivity", desc: "" },
107
+ drug_response: {
108
+ color: "gold",
109
+ label: "Drug response",
110
+ textcolor: "white",
111
+ desc: "The variant is reported to affect a drug response."
112
+ },
113
+ not_provided: {
114
+ color: "#ccc",
115
+ label: "Not provided",
116
+ desc: "Clinical significance for the variant has not been provided by the submitter."
117
+ },
118
+ other: {
119
+ color: "#ccc",
120
+ label: "Other",
121
+ desc: "The variant has some other clinical significance, such as protective, association, confers sensitivity."
122
+ },
123
+ protective: {
124
+ color: "#ccc",
125
+ label: "Protective",
126
+ desc: "Variants that decrease the risk of a disorder, including infections."
127
+ },
128
+ risk_factor: {
129
+ color: "#ccc",
130
+ label: "Risk factor",
131
+ desc: "The variant is reported to be a risk factor for a particular disease."
132
+ }
32
133
  };
33
- exports.AF = {
34
- AF_EXAC: {
35
- name: 'ExAC frequency',
36
- locusinfo: { key: 'AF_EXAC' },
37
- numericfilter: [{ side: '<', value: 0.0001 }, { side: '<', value: 0.001 }, { side: '<', value: 0.01 }]
38
- },
39
- AF_ESP: {
40
- name: 'GO-ESP frequency',
41
- locusinfo: { key: 'AF_ESP' },
42
- numericfilter: [{ side: '<', value: 0.0001 }, { side: '<', value: 0.001 }, { side: '<', value: 0.01 }]
43
- },
44
- AF_TGP: {
45
- name: '1000 Genomes frequency',
46
- locusinfo: { key: 'AF_TGP' },
47
- numericfilter: [{ side: '<', value: 0.0001 }, { side: '<', value: 0.001 }, { side: '<', value: 0.01 }]
48
- }
134
+ const AF = {
135
+ AF_EXAC: {
136
+ name: "ExAC frequency",
137
+ locusinfo: { key: "AF_EXAC" },
138
+ numericfilter: [
139
+ { side: "<", value: 1e-4 },
140
+ { side: "<", value: 1e-3 },
141
+ { side: "<", value: 0.01 }
142
+ ]
143
+ },
144
+ AF_ESP: {
145
+ name: "GO-ESP frequency",
146
+ locusinfo: { key: "AF_ESP" },
147
+ numericfilter: [
148
+ { side: "<", value: 1e-4 },
149
+ { side: "<", value: 1e-3 },
150
+ { side: "<", value: 0.01 }
151
+ ]
152
+ },
153
+ AF_TGP: {
154
+ name: "1000 Genomes frequency",
155
+ locusinfo: { key: "AF_TGP" },
156
+ numericfilter: [
157
+ { side: "<", value: 1e-4 },
158
+ { side: "<", value: 1e-3 },
159
+ { side: "<", value: 0.01 }
160
+ ]
161
+ }
162
+ };
163
+ export {
164
+ AF,
165
+ clinsig
49
166
  };