Datasets:

Modalities:
Text
Formats:
parquet
Libraries:
Datasets
Dask
License:
andrecornman commited on
Commit
5f82e5e
1 Parent(s): dbb944f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -27,3 +27,37 @@ configs:
27
  - split: train
28
  path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  - split: train
28
  path: data/train-*
29
  ---
30
+
31
+ # Dataset Card for OMG: An Open MetaGenomic Dataset
32
+
33
+ The OMG is a 3.1T base pair metagenomic pretraining dataset, combining EMBL's MGnify and JGI's IMG databases. The combined data is pre-processed into a mixed-modality dataset, with translated amino acids for protein coding sequences, and nucleic acids for intergenic sequences.
34
+
35
+ We make two additional datasets available on the HuggingFace Hub:
36
+ - [`OG`](https://huggingface.co/datasets/tattabio/OG): A subset of OMG consisting of high quality genomes with taxonomic information.
37
+ - [`OMG_prot50`](https://huggingface.co/datasets/tattabio/OMG_prot50): A protein-only dataset generated by clustering OMG at 50% sequence identity, resulting in 207M protein sequences.
38
+
39
+ See [https://github.com/TattaBio/OMG](https://github.com/TattaBio/OMG) for details and example tokenization script.
40
+
41
+ ## Use
42
+
43
+ ```python
44
+ import datasets
45
+
46
+ ds = datasets.load_dataset('tattabio/OMG')
47
+ ```
48
+
49
+ To preview the dataset without downloading, load in streaming mode:
50
+ ```python
51
+ import datasets
52
+
53
+ ds = datasets.load_dataset('tattabio/OMG', streaming=True)['train']
54
+ print(next(iter(ds)))
55
+ ```
56
+
57
+
58
+
59
+ ## Citation
60
+
61
+ **BibTeX:**
62
+
63
+ TODO