Skip to content

Commit 3a73b1f

Browse files
author
Peter J. Freeman
authored
Merge pull request #59 from openvar/requests
Requests
2 parents 28b9254 + d704142 commit 3a73b1f

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

REQUIREMENTS.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
git+https://github.com/openvar/vv_hgvs.git@1.2.5.vv1#egg=vvhgvs
2-
git+https://github.com/openvar/variantValidator@1.0.4#egg=VariantValidator
3-
git+https://github.com/openvar/variantFormatter@1.0.2#egg=VariantFormatter
2+
git+https://github.com/openvar/variantValidator@v1.0.4#egg=VariantValidator
3+
git+https://github.com/openvar/variantFormatter@v1.0.2#egg=VariantFormatter
4+
biopython==1.74
45
flask
56
flask-restplus
67
gunicorn

configuration/docker.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ console = DEBUG
2222
file = ERROR
2323

2424
[Entrez]
25-
email = <YOUR EMAIL ADDRESS>
26-
api_key = <YOUR API KEY>
25+
email = admin@variantvalidator.org
26+
api_key = a991783f8c1e9e1958d1e6bd90b6f4046f08
2727

2828

2929
# <LICENSE>

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@ services:
3737
expose:
3838
- "5000"
3939
- "8000"
40+
4041
volumes:
4142
seqdata:
4243
share:
4344
driver: local
4445
driver_opts:
4546
type: 'none'
4647
o: 'bind'
47-
device: '${HOME}/share'
48+
device: '${HOME}/variantvalidator_data/share'

docs/DOCKER.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ $ git clone https://github.com/openvar/rest_variantValidator
1414
```
1515

1616
Once the repository has been cloned, cd into the rest_variantValidator directory that the clone creates.
17+
1718
```bash
1819
$ cd rest_variantValidator/
1920
```
@@ -44,7 +45,8 @@ $ docker-compose pull
4445

4546
- Create a directory for sharing resources between your computer and the container
4647
```bash
47-
$ mkdir ~/share
48+
$ mkdir ~/variantvalidator_data
49+
$ mkdir ~/variantvalidator_data/share
4850
```
4951
i.e. a directory called share in your home directory
5052

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@
5757
"requests",
5858
"dicttoxml",
5959
"vvhgvs @ git+https://github.com/openvar/vv_hgvs.git@1.2.5.vv1#egg=vvhgvs",
60-
"VariantValidator @ git+https://github.com/openvar/variantValidator.git@1.0.4#egg=VariantValidator",
61-
"VariantFormatter @ git+https://github.com/openvar/variantFormatter.git@1.0.2#egg=VariantFormatter",
60+
"VariantValidator @ git+https://github.com/openvar/variantValidator.git@v1.0.4#egg=VariantValidator",
61+
"VariantFormatter @ git+https://github.com/openvar/variantFormatter.git@v1.0.2#egg=VariantFormatter",
6262
"biocommons.seqrepo>=0.5.1",
63+
"biopython==1.74",
6364
],
6465
setup_requires=[
6566
"setuptools_scm",

0 commit comments

Comments
 (0)