fuxialexander commited on
Commit
ecaeb18
β€’
1 Parent(s): 8bdf52a

add readme

Browse files
Files changed (1) hide show
  1. 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
+ ```