sarahalamdari commited on
Commit
6a94a56
·
verified ·
1 Parent(s): 7322542

Document UniRef50 and singleton MMseqs2 databases

Browse files
Files changed (1) hide show
  1. README.md +19 -10
README.md CHANGED
@@ -29,10 +29,14 @@ fastas/
29
  └── uniref50.fasta.gz
30
 
31
  mmseqs-cpu/
32
- ── gigaref-no-singletons/db/
 
 
33
 
34
  mmseqs-gpu/
35
- ── gigaref-no-singletons/db_gpu/
 
 
36
  ```
37
 
38
  MMseqs can read the `.fasta.gz` files directly.
@@ -43,6 +47,10 @@ MMseqs can read the `.fasta.gz` files directly.
43
  | GigaRef singleton FASTA | 147.28 GB | 147.28 GB compressed | Not applicable | None |
44
  | GigaRef no-singleton FASTA | 211.62 GB | 211.62 GB compressed | Not applicable | None |
45
  | UniRef50 FASTA | 13.27 GB | 13.27 GB compressed | Not applicable | None |
 
 
 
 
46
  | GigaRef no-singleton CPU MMseqs | 279.08 GB | 572.73 GB extracted; allow 647 GB while extracting | 64 GB is a practical starting point with splitting; 600+ GB maximizes throughput | None |
47
  | GigaRef no-singleton GPU MMseqs | 292.13 GB | 586.94 GB extracted; allow 660 GB while extracting | 64 GB is a practical starting point with splitting; 600+ GB maximizes throughput | At least one MMseqs2-GPU-compatible NVIDIA GPU; the database need not fit VRAM |
48
 
@@ -72,8 +80,8 @@ hf download "$REPO" --repo-type dataset --revision "$REV" \
72
  ```
73
 
74
  Valid FASTA targets are `gigaref-full`, `gigaref-singletons`,
75
- `gigaref-no-singletons`, and `uniref50`. Only
76
- `gigaref-no-singletons` currently has CPU and GPU MMseqs databases.
77
 
78
  ## Extract and search
79
 
@@ -96,8 +104,8 @@ find "mmseqs-gpu/$TARGET" -type f -name '*.gz' -print0 |
96
  The resulting target prefixes are:
97
 
98
  ```text
99
- mmseqs-cpu/gigaref-no-singletons/db/db
100
- mmseqs-gpu/gigaref-no-singletons/db_gpu/db_gpu
101
  ```
102
 
103
  For a 64 GB host, use native MMseqs target splitting:
@@ -111,7 +119,8 @@ mmseqs search queryDB TARGET_DB resultDB tmp \
111
 
112
  Omit `--gpu 1` for CPU search.
113
 
114
- The no-singletons FASTA and MMseqs database contain the same
115
- 1.8B-sequence corpus. The FASTA uses
116
- `gr_<source-index>` identifiers, while the existing MMseqs database retains
117
- older `g<part>_<row>` identifiers. We are patching this in a future update but it should have no effect on inference.
 
 
29
  └── uniref50.fasta.gz
30
 
31
  mmseqs-cpu/
32
+ ── gigaref-singletons/db/
33
+ ├── gigaref-no-singletons/db/
34
+ └── uniref50/db/
35
 
36
  mmseqs-gpu/
37
+ ── gigaref-singletons/db_gpu/
38
+ ├── gigaref-no-singletons/db_gpu/
39
+ └── uniref50/db_gpu/
40
  ```
41
 
42
  MMseqs can read the `.fasta.gz` files directly.
 
47
  | GigaRef singleton FASTA | 147.28 GB | 147.28 GB compressed | Not applicable | None |
48
  | GigaRef no-singleton FASTA | 211.62 GB | 211.62 GB compressed | Not applicable | None |
49
  | UniRef50 FASTA | 13.27 GB | 13.27 GB compressed | Not applicable | None |
50
+ | UniRef50 CPU MMseqs | 14.97 GB | approximately 28 GB extracted | 32 GB recommended; lower RAM works with splitting | None |
51
+ | UniRef50 GPU MMseqs | 15.29 GB | approximately 28 GB extracted | 32 GB recommended; lower RAM works with splitting | At least one MMseqs2-GPU-compatible NVIDIA GPU |
52
+ | GigaRef singleton CPU MMseqs | 182.49 GB | approximately 387 GB extracted | 64 GB starting point with splitting; 400+ GB maximizes throughput | None |
53
+ | GigaRef singleton GPU MMseqs | 189.12 GB | approximately 395 GB extracted | 64 GB starting point with splitting; 400+ GB maximizes throughput | At least one MMseqs2-GPU-compatible NVIDIA GPU; the database need not fit VRAM |
54
  | GigaRef no-singleton CPU MMseqs | 279.08 GB | 572.73 GB extracted; allow 647 GB while extracting | 64 GB is a practical starting point with splitting; 600+ GB maximizes throughput | None |
55
  | GigaRef no-singleton GPU MMseqs | 292.13 GB | 586.94 GB extracted; allow 660 GB while extracting | 64 GB is a practical starting point with splitting; 600+ GB maximizes throughput | At least one MMseqs2-GPU-compatible NVIDIA GPU; the database need not fit VRAM |
56
 
 
80
  ```
81
 
82
  Valid FASTA targets are `gigaref-full`, `gigaref-singletons`,
83
+ `gigaref-no-singletons`, and `uniref50`. CPU and GPU MMseqs targets are
84
+ `gigaref-singletons`, `gigaref-no-singletons`, and `uniref50`.
85
 
86
  ## Extract and search
87
 
 
104
  The resulting target prefixes are:
105
 
106
  ```text
107
+ mmseqs-cpu/$TARGET/db/db
108
+ mmseqs-gpu/$TARGET/db_gpu/db_gpu
109
  ```
110
 
111
  For a 64 GB host, use native MMseqs target splitting:
 
119
 
120
  Omit `--gpu 1` for CPU search.
121
 
122
+ The UniRef50 and singleton databases were built directly from their published
123
+ combined FASTAs, so their sequence identifiers match. The no-singletons FASTA
124
+ and MMseqs database contain the same 1.8B-sequence corpus, but the FASTA uses
125
+ `gr_<source-index>` identifiers while the existing MMseqs database retains
126
+ older `g<part>_<row>` identifiers. This difference does not affect inference.