Spaces:
Running
Running
fuxialexander
commited on
Commit
β’
da1abf5
1
Parent(s):
ecaeb18
update readme
Browse files- app/README.md +17 -7
app/README.md
CHANGED
@@ -1,10 +1,3 @@
|
|
1 |
-
# Installation
|
2 |
-
```bash
|
3 |
-
docker pull fuxialexander/getdemo:latest
|
4 |
-
docker run -it -v "/path/to/data:/data" --rm -p 7681:7681 fuxialexander/getdemo
|
5 |
-
```
|
6 |
-
The gradio interface will be available at http://127.0.0.1:7681, a sharable link will be printed in the terminal.
|
7 |
-
|
8 |
# Data preparation
|
9 |
Put the data in the following structure in the root directory of the project.
|
10 |
```bash
|
@@ -24,4 +17,21 @@ data
|
|
24 |
βββ SMAD2
|
25 |
βββ TAF1
|
26 |
βββ ZFX
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Data preparation
|
2 |
Put the data in the following structure in the root directory of the project.
|
3 |
```bash
|
|
|
17 |
βββ SMAD2
|
18 |
βββ TAF1
|
19 |
βββ ZFX
|
20 |
+
```
|
21 |
+
|
22 |
+
# Installation
|
23 |
+
```bash
|
24 |
+
git clone --recursive git@github.com:fuxialexander/getdemo.git
|
25 |
+
cd getdemo
|
26 |
+
docker pull fuxialexander/getdemo:latest
|
27 |
+
docker run -it -v "/path/to/data:/data" --rm -p 7681:7681 fuxialexander/getdemo
|
28 |
+
```
|
29 |
+
The gradio interface will be available at http://127.0.0.1:7681, a sharable link will be printed in the terminal.
|
30 |
+
|
31 |
+
# Build
|
32 |
+
```bash
|
33 |
+
git clone --recursive git@github.com:fuxialexander/getdemo.git
|
34 |
+
cd getdemo
|
35 |
+
docker build -t getdemo .
|
36 |
+
docker run -it -v "/path/to/data:/data" --rm -p 7681:7681 getdemo
|
37 |
```
|