Skip to content

Commit bb044d7

Browse files
authored
Merge pull request #74 from cancervariants/update-gene-normalizer
Update gene normalizer and requirements
2 parents fa98680 + 22d774b commit bb044d7

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ flake8-docstrings==1.6.0
5353
flake8==3.9.0
5454
frozendict==1.2
5555
ga4gh.vrs[extras]==0.6.4
56-
gene-normalizer==0.1.3
56+
gene-normalizer==0.1.4
5757
gffutils==0.10.1
5858
h11==0.12.0; python_version >= '3.6'
5959
hgvs==1.5.1
@@ -117,7 +117,7 @@ pyfaidx==0.5.9.5
117117
pyflakes==2.3.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
118118
pygments==2.8.1; python_version >= '3.5'
119119
pyparsing==2.4.7; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'
120-
pyppeteer==0.2.5; python_full_version >= '3.6.1' and python_full_version < '4.0.0'
120+
pyppeteer==0.2.5; python_version < '4' and python_full_version >= '3.6.1'
121121
pyquery==1.4.3
122122
pyrsistent==0.17.3; python_version >= '3.5'
123123
pysam==0.16.0.1
@@ -147,7 +147,7 @@ tornado==6.1; python_version >= '3.5'
147147
tqdm==4.59.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
148148
traitlets==5.0.5; python_version >= '3.7'
149149
typing-extensions==3.7.4.3
150-
urllib3==1.26.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_full_version < '4.0.0'
150+
urllib3==1.26.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'
151151
uvicorn==0.13.4
152152
uvloop==0.15.2
153153
vcfpy==0.13.3

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fake-useragent==0.1.11
3333
fastapi==0.63.0
3434
frozendict==1.2
3535
ga4gh.vrs[extras]==0.6.4
36-
gene-normalizer==0.1.3
36+
gene-normalizer==0.1.4
3737
gffutils==0.10.1
3838
h11==0.12.0; python_version >= '3.6'
3939
hgvs==1.5.1
@@ -66,7 +66,7 @@ pyee==8.1.0
6666
pyfaidx==0.5.9.5
6767
pygments==2.8.1; python_version >= '3.5'
6868
pyparsing==2.4.7; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'
69-
pyppeteer==0.2.5; python_full_version >= '3.6.1' and python_full_version < '4.0.0'
69+
pyppeteer==0.2.5; python_version < '4' and python_full_version >= '3.6.1'
7070
pyquery==1.4.3
7171
pyrsistent==0.17.3; python_version >= '3.5'
7272
pysam==0.16.0.1
@@ -86,7 +86,7 @@ tabulate==0.8.9
8686
tqdm==4.59.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
8787
traitlets==5.0.5; python_version >= '3.7'
8888
typing-extensions==3.7.4.3
89-
urllib3==1.26.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_full_version < '4.0.0'
89+
urllib3==1.26.4; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'
9090
uvicorn==0.13.4
9191
uvloop==0.15.2
9292
vcfpy==0.13.3

variant/normalize.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def __init__(self):
1414
"""Initialize Normalize class."""
1515
if os.getenv('VARIANT_NORM_PROD'):
1616
environ['GENE_NORM_EB_PROD'] = "true"
17-
environ['GENE_NORM_PROD'] = "true"
1817
self.gene_query_handler = GeneQueryHandler()
1918

2019
def normalize(self, q, validations, amino_acid_cache):

0 commit comments

Comments
 (0)