yeastresources
Collection
Data collected and harmonized for the Brent lab at Washington University • 11 items • Updated • 1
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This Dataset stores resources meant to aid in the exploration of yeast -omic data, curated by the Brent Lab.
Across all datasets in the BrentLab collection, we use the following terms consistently
target_locus_tag would
store the counts over that gene.This repo provides the following:
You can find these by clicking on the files and versions tab. The file format is noted.
locus_tag and symbol across the other datasets in this collection.in_mahendrawada_features is
TRUE if the locus_tag is in the feature set used by Mahendrawada 2025, which is
only protein coding genes which are not labeled dubious. The column promoter_exact_aligns
provides a tally of how many times the promoter sequence aligns exactly from end to end
with no gaps in the genome. Most align only once, which is what we would expect for a
700+ bp sequence. However, there are 12 loci with up to 4 exact alignments. I didn't examine
these beyond confirming the multiple alignments -- I suspect that it is due to repeat regions.
It is noted because it is surprising that such long sequences had multiple perfect alignments.The examples below require the
HuggingFace Hub client
(pip install huggingface_hub).
Currently, we expect that this will be used for its raw files. Download individual files and open them in your preferred tool.
from huggingface_hub import snapshot_download
import duckdb
repo_path = snapshot_download(
repo_id="BrentLab/yeast_genome_resources",
repo_type="dataset",
allow_patterns="brentlab_features.parquet",
)
conn = duckdb.connect()
# returns a pandas DataFrame with the first 5 rows
conn.execute(
"SELECT * FROM read_parquet(?) LIMIT 5",
[f"{repo_path}/brentlab_features.parquet"],
).df()
Clone the repository and read parquet files directly with arrow:
# install.packages("arrow")
arrow::read_parquet("brentlab_features.parquet")