The dataset viewer is taking too long to fetch the data. Try to refresh this page.
Error code: ClientConnectionError
Kemmeren 2014
This Dataset is a parsed version of the data provided by the Holstege
lab. Both the original mutant/wt effect (M), and
the effect after removal of an inferred cell cycle signal (Madj), are provided in the
data. The paper describing the entire data set is:
And the paper describing the removal of the cell cycle effect is:
NOTE: There are some loci with multiple probes (multiple_probes == TRUE). One
strategy to deduplicate these is to take the max M, Madj and min pval.
Accessing Data
The examples below require
labretriever
(pip install labretriever) and/or the
HuggingFace Hub client
(pip install huggingface_hub).
Accessing Data with labretriever
This repository is part of a collection configured as a unified database using labretriever.VirtualDB. Download the collection config and use it to query the data directly in Python, or with an AI assistant using the labretriever plugin.
from labretriever.virtual_db import VirtualDB
from labretriever.datacard import DataCard
# Citation and metadata
card = DataCard("BrentLab/kemmeren_2014")
print([c.config_name for c in card.configs]) # list available datasets
info = card.info()
print(info["doi"])
print(info["citation"])
# path to the downloaded brentlab_yeast_collection.yaml
vdb = VirtualDB("/path/to/brentlab_yeast_collection.yaml")
print(vdb.get_dataset_description("kemmeren"))
vdb.query("SELECT * FROM kemmeren LIMIT 5")
Direct parquet access
The repository contains more data than what is exposed through the collection
configuration. Use DataCard.info() to inspect available files, then download
and query with DuckDB.
Most files in this repository are single parquet files and can be read directly:
from huggingface_hub import snapshot_download
import duckdb
repo_path = snapshot_download(
repo_id="BrentLab/kemmeren_2014",
repo_type="dataset",
allow_patterns="kemmeren_2014.parquet",
)
conn = duckdb.connect()
# returns a pandas DataFrame with the first 5 rows
conn.execute(
"SELECT * FROM read_parquet(?) LIMIT 5",
[f"{repo_path}/kemmeren_2014.parquet"],
).df()
Accessing using R
Clone the repository and read parquet files directly with arrow:
# install.packages("arrow")
arrow::read_parquet("kemmeren_2014.parquet")
- Downloads last month
- 110