@sjcrh/proteinpaint-server 2.44.0 → 2.46.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.
- package/dataset/clinvar.hg19.js +53 -52
- package/dataset/clinvar.hg38.js +74 -73
- package/dataset/clinvar.js +164 -47
- package/dataset/termdb.test.js +257 -0
- package/genome/CriGri.js +1859 -27
- package/genome/cgc.js +743 -7
- package/genome/danRer10.js +1108 -46
- package/genome/dm3.js +71 -44
- package/genome/dm6.js +1926 -45
- package/genome/galGal5.js +23522 -46
- package/genome/galGal6.js +512 -46
- package/genome/hg19.js +293 -198
- package/genome/hg38.js +472 -105
- package/genome/hg38.test.js +406 -40
- package/genome/hgvirus.js +45 -20
- package/genome/mm10.js +135 -67
- package/genome/mm9.js +116 -79
- package/genome/rn6.js +1002 -47
- package/package.json +31 -35
- package/routes/_template_.js +30 -0
- package/routes/burden.js +149 -0
- package/routes/dataset.js +266 -0
- package/routes/dsdata.js +127 -0
- package/routes/gdc.maf.js +120 -0
- package/routes/gdc.mafBuild.js +106 -0
- package/routes/gdc.topMutatedGenes.js +465 -0
- package/routes/gene2canonicalisoform.js +41 -0
- package/routes/genelookup.js +52 -0
- package/routes/genomes.js +144 -0
- package/routes/healthcheck.js +30 -0
- package/routes/hicdata.js +98 -0
- package/routes/hicstat.js +55 -0
- package/routes/isoformlst.js +57 -0
- package/routes/ntseq.js +43 -0
- package/routes/pdomain.js +61 -0
- package/routes/snp.js +107 -0
- package/routes/termdb.categories.js +209 -0
- package/routes/termdb.cluster.js +228 -0
- package/routes/termdb.cohort.summary.js +38 -0
- package/routes/termdb.cohorts.js +49 -0
- package/routes/termdb.config.js +201 -0
- package/routes/termdb.getdescrstats.js +102 -0
- package/routes/termdb.getnumericcategories.js +92 -0
- package/routes/termdb.getpercentile.js +108 -0
- package/routes/termdb.getrootterm.js +65 -0
- package/routes/termdb.gettermchildren.js +67 -0
- package/routes/termdb.singleSampleMutation.js +80 -0
- package/routes/termdb.singlecellData.js +46 -0
- package/routes/termdb.singlecellSamples.js +160 -0
- package/routes/termdb.termsbyids.js +59 -0
- package/routes/termdb.topVariablyExpressedGenes.js +171 -0
- package/routes/termdb.violin.js +77 -0
- package/src/app.js +41498 -0
- package/src/serverconfig.js +14 -8
- package/start.js +3 -3
- package/routes/README.md +0 -84
- package/routes/burden.ts +0 -143
- package/routes/gdc.maf.ts +0 -195
- package/routes/gdc.mafBuild.ts +0 -114
- package/routes/gdc.topMutatedGenes.ts +0 -586
- package/routes/genelookup.ts +0 -50
- package/routes/healthcheck.ts +0 -29
- package/routes/hicdata.ts +0 -111
- package/routes/hicstat.ts +0 -55
- package/routes/termdb.categories.ts +0 -245
- package/routes/termdb.cluster.ts +0 -248
- package/routes/termdb.getdescrstats.ts +0 -102
- package/routes/termdb.getnumericcategories.ts +0 -99
- package/routes/termdb.getpercentile.ts +0 -118
- package/routes/termdb.getrootterm.ts +0 -73
- package/routes/termdb.gettermchildren.ts +0 -82
- package/routes/termdb.singleSampleMutation.ts +0 -87
- package/routes/termdb.singlecellData.ts +0 -49
- package/routes/termdb.singlecellSamples.ts +0 -175
- package/routes/termdb.termsbyids.ts +0 -63
- package/routes/termdb.topVariablyExpressedGenes.ts +0 -214
- package/routes/termdb.violin.ts +0 -77
- package/server.js +0 -2
- package/server.js.map +0 -1
- package/shared/common.js +0 -1080
- package/shared/termdb.initbinconfig.js +0 -96
- package/shared/vcf.js +0 -629
package/dataset/clinvar.hg19.js
CHANGED
|
@@ -1,54 +1,55 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
};
|
package/dataset/clinvar.hg38.js
CHANGED
|
@@ -1,77 +1,78 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
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
|
};
|
package/dataset/clinvar.js
CHANGED
|
@@ -1,49 +1,166 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
};
|