An open API service indexing awesome lists of open source software.

https://github.com/jhsmit/hdxms-datasets

Download and parse curated HDX-MS datasets
https://github.com/jhsmit/hdxms-datasets

Last synced: about 1 month ago
JSON representation

Download and parse curated HDX-MS datasets

Awesome Lists containing this project

README

        

# HDXMS Datasets

* Free software: MIT license

### Installation

```bash
$ pip install hdxms-datasets
```

### HDX-MS database

Currently a beta test database is set up at:
https://github.com/Jhsmit/HDX-MS-datasets

### Example code

```python
from pathlib import Path
from hdxms_datasets import DataVault

# local path the download datasets to
cache_dir = Path('.cache')

# create a vault with local cache dir, set `remote_url` to connect to a different database
vault = DataVault(cache_dir=cache_dir)

# Download a specific HDX dataset
vault.fetch_dataset("20221007_1530_SecA_Krishnamurthy")

# Load the dataset
ds = vault.load_dataset("20221007_1530_SecA_Krishnamurthy")

# Load the FD control of the first 'state' in the dataset.
fd_control = ds.load_peptides(0, "FD_control")

# Load the corresponding experimental peptides.
peptides = ds.load_peptides(0, "experiment")

```