You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If Pathway Commons data and files have been updated since this app's last built and run,
48
-
or you simply want to connect to a different PC2 instance (and set PC_URL environment variable),
49
-
then the file `src/server/graph-generation/generic-physical-entities/generic-physical-entity-map.json`
49
+
or you simply want to connect to a different PC2 instance (don't forget to set PC_URL),
50
+
then the file `src/server/graph-generation/biopax-metadata/generic-physical-entity-map.json`
50
51
needs to be updated. Also, purge the RethinkDb db tables or simply switch the database.
51
52
52
53
The following script downloads and processes physical_entities.json.gz file from Pathway Commons:
53
54
```sh
54
55
cd src/scripts/generic-entity-mapping/
55
56
PC_VERSION=v10 sh update.sh
56
57
```
57
-
(PC_VERSION should be set to the name of a sub-directory in `www.pathwaycommons.org/archives/PC2/`)
58
+
(PC_VERSION should be set to the name of a sub-directory in `www.pathwaycommons.org/archives/PC2/`)
58
59
59
60
## Run targets
60
61
@@ -100,15 +101,15 @@ Notes:
100
101
101
102
### Run image hosted on Docker Hub using Docker Compose
102
103
103
-
Pathway Commons maintains a [Docker Hub](https://hub.docker.com/) image for [app-ui](https://hub.docker.com/r/pathwaycommons/app-ui/) that is automatically built each time a commit is pushed to GitHub.
104
+
Pathway Commons maintains a [Docker Hub](https://hub.docker.com/) image for [app-ui](https://hub.docker.com/r/pathwaycommons/app-ui/) that is automatically built each time a commit is pushed to GitHub.
104
105
105
106
To run the GitHub development branch:
106
107
107
108
```sh
108
109
docker-compose --file docker-compose.yml up --detach
109
110
```
110
111
111
-
Access the app instance at port `9090`.The default configuration declared in `docker-compose.yml` also runs a [rethinkdb](https://hub.docker.com/_/rethinkdb/) image; access the UI at port `8020`.
112
+
Access the app instance at port `9090`.The default configuration declared in `docker-compose.yml` also runs a [rethinkdb](https://hub.docker.com/_/rethinkdb/) image; access the UI at port `8020`.
112
113
113
114
Notes:
114
115
- References:
@@ -159,7 +160,7 @@ Students who work on the repo should follow these instructions for each feature
159
160
1. Using the console: `git checkout name-of-feature`, `git merge development`
160
161
1. Using GitUp:
161
162
1. Make sure your `HEAD` is the newest commit of your feature branch: Right-click the latest commit on `name-of-feature` branch and select `Checkout "name-of-feature" Branch`
162
-
1. Right-click the latest commit of the `development` branch and select `Merge into Current Branch`
163
+
1. Right-click the latest commit of the `development` branch and select `Merge into Current Branch`
163
164
1. Push your commits to GitHub:
164
165
1. Note: You can push as often as you'd like so that your code is backed up on GitHub. You *must* push everything before you make a pull request.
165
166
1. Using the console: `git push`
@@ -180,4 +181,3 @@ Students who work on the repo should follow these instructions for each feature
180
181
1. For a breaking API change, run `npm version major.`
181
182
1. For a specific version number (e.g. 1.2.3), run `npm version 1.2.3`.
0 commit comments