File tree 1 file changed +20
-7
lines changed
1 file changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -46,33 +46,46 @@ git submodule update --init --recursive
46
46
47
47
## Configure your environment
48
48
49
+ ### Make sure you are in the ` docker ` group
50
+
51
+ ``` bash
52
+ usermod -aG docker < username>
53
+ ```
54
+
49
55
### Make the ` seqrepo ` database available locally
50
56
51
57
``` bash
58
+ sudo mkdir -m 777 -p /usr/local/share/seqrepo
52
59
cd seqrepo
53
60
make
54
61
```
55
62
56
- ### Download the harvester resources
57
-
58
- To download the harvester resources you need to have an access token to onkokb as well as for bioontology.
63
+ ### Create a ` .env ` file from the template
59
64
60
65
``` bash
61
- cd g2p-aggregator/data
62
- make
66
+ cp .env.TEMPLATE .env
63
67
```
64
68
65
- Also add the access tokens to your ` .env ` file.
69
+ ### Set proper values in your ` .env ` file.
66
70
67
71
``` bash
72
+ ...
68
73
BIOONTOLOGY_API_KEY=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
69
74
ONCOKB_API_KEY=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
70
75
```
71
76
72
- ### Populate the VEP cache
77
+ ### Download the harvester resources
78
+
79
+ To download the harvester resources you need to have an access token to onkokb as well as for bioontology.
73
80
74
81
``` bash
75
82
./dc_harvester.sh build harvester
83
+ ./dc_harvester.sh run --rm harvester /bin/sh -c ' cd /data; make'
84
+ ```
85
+
86
+ ### Populate the VEP cache
87
+
88
+ ``` bash
76
89
./dc_harvester.sh run --rm harvester /bin/sh -c ' scripts/populate_vep_cache.sh'
77
90
```
78
91
You can’t perform that action at this time.
0 commit comments