|
--- |
|
license: mit |
|
--- |
|
# DNA Deep Mutational Scans |
|
|
|
This dataset contains DNA deep mutational scans (n=40242) from Adkar et al. 2012, Firnberg et al. 2014, Jacquier et al. 2013, Kelsic et al. 2016, Tsuboyama et al. 2023, and Weeks et al. 2023. |
|
|
|
```python |
|
from datasets import Dataset, Features, Value |
|
|
|
features = Features({ |
|
'species': Value('string'), |
|
'annotation': Value('string'), |
|
'sequence': Value('string'), |
|
'value': Value('float32') |
|
}) |
|
dataset = load_dataset("wanglab/dna_deep_mutational_scans", features=features) |
|
|
|
``` |