Spaces:
Running
Running
fuxialexander
commited on
Commit
β’
ecaeb18
1
Parent(s):
8bdf52a
add readme
Browse files- app/README.md +27 -0
app/README.md
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
11 |
+
data
|
12 |
+
βββ sequences
|
13 |
+
β βββ causal
|
14 |
+
β βββ MECP2_TFAP2A
|
15 |
+
β βββ PRDM1_SMAD2
|
16 |
+
β βββ TAF1_ZFX
|
17 |
+
βββ structures
|
18 |
+
βββ causal
|
19 |
+
β βββ MECP2_TFAP2A
|
20 |
+
β βββ PRDM1_SMAD2
|
21 |
+
β βββ TAF1_ZFX
|
22 |
+
βββ homodimer
|
23 |
+
βββ PRDM1
|
24 |
+
βββ SMAD2
|
25 |
+
βββ TAF1
|
26 |
+
βββ ZFX
|
27 |
+
```
|