File size: 766 Bytes
ecaeb18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Installation
```bash
docker pull fuxialexander/getdemo:latest
docker run -it -v "/path/to/data:/data" --rm -p 7681:7681 fuxialexander/getdemo
```
The gradio interface will be available at http://127.0.0.1:7681, a sharable link will be printed in the terminal.

# Data preparation
Put the data in the following structure in the root directory of the project.
```bash
data
β”œβ”€β”€ sequences
β”‚   └── causal
β”‚       β”œβ”€β”€ MECP2_TFAP2A
β”‚       β”œβ”€β”€ PRDM1_SMAD2
β”‚       └── TAF1_ZFX
└── structures
    β”œβ”€β”€ causal
    β”‚   β”œβ”€β”€ MECP2_TFAP2A
    β”‚   β”œβ”€β”€ PRDM1_SMAD2
    β”‚   └── TAF1_ZFX
    └── homodimer
        β”œβ”€β”€ PRDM1
        β”œβ”€β”€ SMAD2
        β”œβ”€β”€ TAF1
        └── ZFX
```