yfish commited on
Commit
7a7a26c
Β·
verified Β·
1 Parent(s): 1d89704

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -2,4 +2,37 @@
2
  license: mit
3
  ---
4
 
5
- To use the model, download the entire model/ and put it under PriFold folder.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: mit
3
  ---
4
 
5
+ # PriFold
6
+
7
+ ## πŸ“₯ Installation Guide
8
+
9
+ ### Getting the Model
10
+ 1. Download the entire `model/` directory and place it under your `PriFold` folder
11
+
12
+ ### Setting Up Data
13
+ 1. Download `data.tar.gz` and place it under your `PriFold` folder
14
+ 2. Extract the archive:
15
+ ```bash
16
+ tar -zxvf data.tar.gz
17
+ ```
18
+ 3. This will create a `data/` folder containing:
19
+ - bpRNA dataset
20
+ - ArchiveII dataset
21
+ - RNAStrAlign dataset
22
+
23
+ ## πŸ“ Directory Structure
24
+ After setup, your folder structure should look like this:
25
+ ```
26
+ PriFold/
27
+ β”œβ”€β”€ model/
28
+ β”‚ └── [model files]
29
+ β”œβ”€β”€ data/
30
+ β”‚ β”œβ”€β”€ bpRNA/
31
+ β”‚ β”œβ”€β”€ ArchiveII/
32
+ β”‚ └── RNAStrAlign/
33
+ └── data.tar.gz
34
+ ```
35
+
36
+ ## πŸ’» Source Code
37
+ For model implementation, training scripts, and inference code, please visit our [GitHub repository](https://github.com/BEAM-Labs/PriFold).
38
+