Python wrapper for the Ma'ayan Lab Harmonizome API and dataset downloads
Project description
Harmonizome Python Wrapper
A Python wrapper around the Ma'ayan Lab Harmonizome API and download endpoints. The package provides a Python interface for querying Harmonizome entities, downloading Harmonizome datasets, and loading the downloaded artifacts into pandas DataFrames.
Installation
pip install harmonizome
Quick Start
from harmonizome import Harmonizome
# Inspect one gene from the API
gene_info = Harmonizome.get('gene', 'BRCA1')
print(f"Gene: {gene_info['name']}")
# Download one dataset artifact
for filename in Harmonizome.download(['ENCODE']):
print(f"Downloaded: {filename}")
Features
- API Wrapper: Query genes, gene sets, attributes, and datasets from the Ma'ayan Lab Harmonizome API
- Dataset Downloads: Download complete Harmonizome datasets (~30GB total) from the Ma'ayan Lab service
- DataFrame Support: Load data directly as pandas DataFrames
- Sparse Matrix Support: Efficient handling of large sparse datasets
- Python 3.9+ Support: Targets the package minimum version and newer
Quick API Reference
Core Methods
Harmonizome.get(entity, name=None, start_at=None)
Retrieve entities from the Ma'ayan Lab Harmonizome API.
entity: Type of entity ('gene', 'gene_set', 'attribute', etc.)name: Specific entity name (optional)start_at: Cursor position for pagination (optional)
Harmonizome.download(datasets=None, what=None)
Download Harmonizome dataset files from the Ma'ayan Lab service to local directories.
datasets: List of dataset names (defaults to all datasets)what: List of file types to download (defaults to all types)
Harmonizome.download_df(datasets=None, what=None, sparse=False)
Download Harmonizome dataset files and load them as pandas DataFrames.
datasets: List of dataset nameswhat: List of file types to downloadsparse: Use sparse matrices for memory efficiency
Entity Types
DATASET: Dataset informationGENE: Gene informationGENE_SET: Gene set collectionsATTRIBUTE: Gene attributesGENE_FAMILY: Gene family classificationsNAMING_AUTHORITY: Naming authoritiesPROTEIN: Protein informationRESOURCE: Data resources
Examples
Querying Genes
brca1 = Harmonizome.get('gene', 'BRCA1')
print(f"BRCA1 description: {brca1['description']}")
Downloading Datasets
# Download one dataset
for filename in Harmonizome.download(['ENCODE']):
print(f"Downloaded: {filename}")
Working with DataFrames
# Load one dataset into a pandas DataFrame
for df in Harmonizome.download_df(['ENCODE']):
print(f"DataFrame: {df.shape}")
break
Working with Gene Associations as DataFrames
You can fetch all associations for a gene and convert them to a pandas DataFrame:
from harmonizome import Harmonizome
gene = "STAT3"
gene_data = Harmonizome.get_gene_data(gene, use_cache=True)
# Get all associations as a DataFrame
df = gene_data.to_dataframe()
# Filter to one dataset
dataset_df = df[df["dataset"] == "ENCODE Transcription Factor Binding Site Profiles"]
print(dataset_df.head())
API Reference: GeneData.to_dataframe()
gene_data.to_dataframe(dataset: str = None) -> pandas.DataFrame
- Returns a DataFrame with columns: 'gene_set', 'dataset', 'thresholdValue', 'standardizedValue'.
- Optionally filter by dataset name.
File Types
The following file types are available for download:
gene_attribute_matrix.txt.gz: Gene-attribute association matrixgene_list_terms.txt.gz: List of genes with termsattribute_list_entries.txt.gz: List of attributes with entries
Requirements
- Python 3.9+
- numpy >= 1.19.0
- pandas >= 1.3.0
- scipy >= 1.7.0
Development
# Install development dependencies
pip install -e .
# Run tests
pytest
License
This project is licensed under the MIT License.
Data Source and Citation
This wrapper depends on the public Harmonizome resource maintained by the Ma'ayan Lab. If you use this package in your research, cite the Harmonizome resource itself:
Rouillard AD, Gundersen GW, Fernandez NF, Wang Z, Monteiro CD, McDermott MG, Ma'ayan A. The harmonizome: a collection of processed datasets gathered to serve and mine knowledge about genes and proteins. Database (Oxford). 2016 Jul 3;2016:baw100. doi: 10.1093/database/baw100.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file harmonizome-1.0.1.tar.gz.
File metadata
- Download URL: harmonizome-1.0.1.tar.gz
- Upload date:
- Size: 30.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5ab97fe2f3040becf55e17185b06d92ffaa594c5f908bbf2adade6fa979a8cf
|
|
| MD5 |
d93bd48e9119a56f22b21f1104f25072
|
|
| BLAKE2b-256 |
7cc429a4b6c15dc387ec20c596b62af79e0160a95c338f572863a0782d1dd96a
|
File details
Details for the file harmonizome-1.0.1-py3-none-any.whl.
File metadata
- Download URL: harmonizome-1.0.1-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f42256a5a3dee6f19f63759d7365b4e8dbb890343c6f6e79589a108f33b2790
|
|
| MD5 |
bd02d1e44e5b1d8a0cdcd1b4b95623d3
|
|
| BLAKE2b-256 |
e3d12c61a15b627dbf16bf0e1645841eeeafa59572b36e365afdcd675e4c1532
|