unibind-database▌
google-deepmind/science-skills · updated Jun 4, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
### Unibind Database
- ›name: "unibind-database"
- ›description: "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/FAS..."
| name | unibind-database |
| description | >- 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. |
UniBind Database Skill
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.
Prerequisites
uv: Read theuvskill and follow its Setup instructions to ensureuvis installed and on PATH.- User Notification: If LICENSE_NOTIFICATION.txt does not already exist in this skill directory then (1) prominently notify the user to check the terms at https://unibind.uio.no/ and https://unibind.uio.no/api/overview, then (2) create the file recording the notification text and timestamp.
Quick Start
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_species
The 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.
Core Rules
- Use the Wrapper: ALWAYS execute the provided helper scripts to query the database rather than accessing the database directly. The scripts automatically enforce the required rate limit gracefully.
- Output: Query commands print JSON to stdout. Most responses are compact and can be read directly.
- Large Results:
list_cell_linesandlist_tfsproduce large output. Pipe these throughjqto extract specific fields rather than reading the full output into context. - Saving to File: Use
--output <path>when you need to reference the data later or when processing very large results withjq. - Pagination: Use
--pageand--page-size(max 1000) to chunk large result sets. - Ordering: Use
--order field_name(prefix with-for descending) on any list command. - Notification: If this skill is used, ensure this is mentioned in the output.
Utility Scripts
Replace <SKILL DIR> with the absolute path to this skill's directory.
1. List Species
uv run <SKILL DIR>/scripts/unibind_api.py list_species
2. List Collections
uv run <SKILL DIR>/scripts/unibind_api.py list_collections
3. List Cell Lines & TFs (large output — use jp)
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"
4. List and Filter Datasets (and Profile-Specific Datasets)
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"
5. Get Dataset Details
uv run <SKILL DIR>/scripts/unibind_api.py get_dataset "EXP047889.HMLE-Twist-ER_breast_cancer.SMAD3"
6. Download TFBS Files (BED / FASTA)
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 bed
Anti-Patterns
- DON'T attempt to use the UniBind API to query specific genomic intervals, locations, or genes.
- DON'T guess or hallucinate genome coordinates. Always use
ensembl-databaseas an external check if you're pulling local BED tracks for offline bedtools intersection. - DON'T use for motif models (PFMs). Use the jaspar-database skill instead.
- DON'T use for gene expression data. UniBind only stores binding events.
- DON'T assume tissue-specific expression from dataset lists alone.
- DON'T use
catto read large JSON output files into context. The output is too large. Usejqor write your own code to parse the output files.
How to use unibind-database on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add unibind-database
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches unibind-database from GitHub repository google-deepmind/science-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate unibind-database. Access the skill through slash commands (e.g., /unibind-database) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.5★★★★★66 reviews- ★★★★★Layla Li· Dec 28, 2024
unibind-database has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Kabir Sharma· Dec 24, 2024
Solid pick for teams standardizing on skills: unibind-database is focused, and the summary matches what you get after install.
- ★★★★★Fatima Huang· Dec 24, 2024
Registry listing for unibind-database matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Mei Dixit· Dec 24, 2024
Solid pick for teams standardizing on skills: unibind-database is focused, and the summary matches what you get after install.
- ★★★★★Tariq Taylor· Nov 19, 2024
unibind-database fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Aditi Srinivasan· Nov 15, 2024
We added unibind-database from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Chinedu Brown· Nov 15, 2024
We added unibind-database from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Fatima Mensah· Oct 10, 2024
We added unibind-database from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Kaira Chawla· Oct 6, 2024
unibind-database fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Chinedu Wang· Oct 6, 2024
unibind-database fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 66