Queries the UniBind database for experimentally validated transcription factor (TF) binding sites. Use when retrieving direct TF-DNA interaction datasets, downloading binding site coordinates (BED/FASTA) for local analysis, or listing available datasets by species, cell line, or TF name. Don't use to query specific intervals, locations, genes, motif models or expression data.
75
93%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
UniBind is a database of direct TF–DNA interactions across 9 species, integrating ChIP-seq peaks with JASPAR TF binding profiles via the DAMO framework.
uv: Read the uv skill and follow its Setup instructions to ensure
uv is installed and on PATH.Query commands print JSON to stdout by default. Most outputs are small enough to
read directly. For large outputs (list_cell_lines, list_tfs), pipe through
jq to extract only the fields you need.
uv run <SKILL DIR>/scripts/unibind_api.py list_speciesThe download_tfbs command writes BED/FASTA files to --output-dir instead.
You may optionally use --output <path> on any query command to save results to
a file if needed.
list_cell_lines and list_tfs produce large output.
Pipe these through jq to extract specific fields rather than reading the
full output into context.--output <path> when you need to reference the
data later or when processing very large results with jq.--page and --page-size (max 1000) to chunk large
result sets.--order field_name (prefix with - for descending) on
any list command.Replace <SKILL DIR> with the absolute path to this skill's directory.
uv run <SKILL DIR>/scripts/unibind_api.py list_speciesuv run <SKILL DIR>/scripts/unibind_api.py list_collectionsjp)These commands return large datasets. Use uvx --from jmespath jp to extract
only the fields you need.
uv run <SKILL DIR>/scripts/unibind_api.py list_cell_lines | uvx --from jmespath jp "results[].name"
uv run <SKILL DIR>/scripts/unibind_api.py list_tfs | uvx --from jmespath jp "results[].tf_name"Filter datasets using the following arguments:
--species (e.g., "Homo sapiens")--tf-name (e.g., "CTCF")--cell-line (e.g., "mESC")--collection (e.g., Permissive, Robust)--search (a search term)--biological-condition (biological condition or source)--data-source (source of data, e.g., "ENCODE")--has-pvalue ("true" or "false")--identifier (e.g., "GSE60130")--jaspar-id (JASPAR database profile matrix ID)--model (prediction model)--summary (summary filter)--threshold-pvalue (p-value threshold)Use list_datasets for standard datasets, or list_specific_datasets for
profile-specific queries.
uv run <SKILL DIR>/scripts/unibind_api.py list_datasets --species "Homo sapiens" --tf-name "CTCF" --data-source "ENCODE"
uv run <SKILL DIR>/scripts/unibind_api.py list_specific_datasets --species "Mus musculus" --cell-line "mESC"uv run <SKILL DIR>/scripts/unibind_api.py get_dataset "EXP047889.HMLE-Twist-ER_breast_cancer.SMAD3"Downloads all TFBS files for a dataset to a local directory. Use --format bed
(default) or --format fasta.
uv run <SKILL DIR>/scripts/unibind_api.py download_tfbs "EXP047889.HMLE-Twist-ER_breast_cancer.SMAD3" --output-dir /tmp/tfbs --format bedensembl-database as an external check if you're pulling local BED tracks
for offline bedtools intersection.cat to read large JSON output files into context. The output
is too large. Use jq or write your own code to parse the output files.0b42509
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.