forked from Novartis/peax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (22 loc) · 1.1 KB
/
Makefile
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
install:
conda env create -f ./environment.yml && conda activate px
cd ui && npm install && npm run build
update:
conda env update
cd ui && npm install && npm run build
build:
cd ui && npm run build
download-example-autoencoders:
cd examples && python download-autoencoders.py
example-3kb:
cd examples && python download-example-3kb.py && cd .. && ./start.py -d -c examples/config-example-3kb.json
example-12kb:
cd examples && python download-example-12kb.py && cd .. && ./start.py -d -c examples/config-example-12kb.json
example-120kb:
cd examples && python download-example-120kb.py && cd .. && ./start.py -d -c examples/config-example-120kb.json
encode-e11-5-limb:
cd examples && python download-encode-e11-5-limb.py && cd .. && ./start.py -d -c examples/config-encode-e11-5-limb.json
encode-e11-5-face-hindbrain:
cd examples && python download-encode-e11-5-face-hindbrain.py && cd .. && ./start.py -d -c examples/config-encode-e11-5-face-hindbrain.json
roadmap-e116-gm12878:
cd examples && python download-roadmap-e116-gm12878.py && cd .. && ./start.py -d -c examples/config-roadmap-e116-gm12878.json