ucsc-conservation-and-tfbs▌
google-deepmind/science-skills · updated Jun 4, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
### Ucsc Conservation And Tfbs
- ›name: "ucsc-conservation-and-tfbs"
- ›description: "Fetch Evolutionary Conservation scores (phyloP, phastCons) and Transcription Factor Binding Sites (TFBS) from the UCSC Genome Browser. Use when analyzing whether genomic variants or regions are evolut..."
| name | ucsc-conservation-and-tfbs |
| description | > Fetch Evolutionary Conservation scores (phyloP, phastCons) and Transcription Factor Binding Sites (TFBS) from the UCSC Genome Browser. Use when analyzing whether genomic variants or regions are evolutionarily conserved, functionally important, or bounded by TF regulators across major projects (ENCODE, JASPAR, ReMap). |
Conservation Scores & TFBS Lookup (UCSC)
This skill provides access to evolutionary constraint scores and conserved
elements from the UCSC Genome Browser. It retrieves scores from the PHAST
package — specifically phastCons (identifying functional blocks) and phyloP
(measuring individual site constraint) — calculated from multiple alignments.
Use this skill to determine if a non-coding variant hits a site that hasn't changed since a common ancestor (which is a strong signal for pathogenicity) or to find conservation peaks across a regulatory element.
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://genome.ucsc.edu/conditions.html and https://genome.ucsc.edu/goldenPath/help/api.html, then (2) create the file recording the notification text and timestamp.
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.
- Large Output Handling: Always pass --output to redirect output to a file. Parse it separately (using jq or your own code).
- Notification: If this skill is used, ensure this is mentioned in the output.
Utility Scripts
This skill includes scripts to query different types of genomic data from UCSC:
scripts/get_conservation.py: For Evolutionary Conservation scores (phyloP, phastCons).scripts/get_tfbs.py: For Transcription Factor Binding Sites (TFBS).scripts/list_tracks.py: For listing available tracks based on search or group constraints.
Always use the hg38 genome assembly by default, unless the user has specified
otherwise.
Fetching Conservation for Specific Variants
To get the evolutionary constraint at a single base, or a list of specific
bases. This is optimal for single nucleotide variants (SNVs). phyloP is the
best metric for individual bases.
uv run scripts/get_conservation.py --coordinates "chr1:215867804" "chr1:215867823" --output /tmp/cons_output.json
Fetching Regions and Conserved Elements
To identify "conservation peaks" across a non-coding regulatory element (like an
enhancer) to see if an ISM-predicted importance peak aligns with evolutionary
history. phastCons is best for functional windows due to HMM smoothing. The
--conserved-elements flag will also retrieve predefined blocks under extreme
constraint.
uv run scripts/get_conservation.py --coordinates "chr8:11748914-11749085" --conserved-elements --output /tmp/region_cons.json
Lineage-Specific Constraints
You can control the evolutionary depth using the --collection flag. The
default (vertebrate) uses the 100-vertebrate Multiz alignment for both
hg38 and hg19, matching the UCSC Genome Browser's default comparative genomics
tracks.
hg38 Collections
vertebrate(default): UCSC 100-vertebrate Multiz alignment. phyloP:phyloP100way, phastCons:phastCons100way.mammal: Hiller Lab 470-way mammalian alignment. phyloP:phyloP470wayBW, phastCons:phastCons470way.primate: UCSC 30-primate Multiz alignment. phyloP:phyloP30way, phastCons:phastCons30way.
hg19 Collections
vertebrate(default): UCSC 100-vertebrate Multiz alignment. phyloP:phyloP100way, phastCons:phastCons100way.vertebrate46: UCSC 46-vertebrate Multiz alignment (legacy). phyloP:phyloP46wayAll, phastCons:phastCons46way.mammal: 46-way placental mammal subset. phyloP:phyloP46wayPlacental, phastCons:phastCons46wayPlacental.primate: 46-way primate subset. phyloP:phyloP46wayPrimates, phastCons:phastCons46wayPrimates.
# hg38 mammal (Hiller 470-way)
uv run scripts/get_conservation.py --coordinates "chr5:1045330-1046172" --collection mammal --output /tmp/mammal_cons.json
# hg19 with legacy 46-vertebrate alignment
uv run scripts/get_conservation.py --coordinates "chr5:1045330-1046172" --genome hg19 --collection vertebrate46 --output /tmp/vert46_cons.json
Analyzing Evolutionary Acceleration
To analyze whether a specific locus is undergoing evolutionary acceleration
(i.e. evolving more rapidly than the neutral drift baseline), use --analyze.
This will compute scalar statistics (mean, min, max) for phyloP scores and
provide a heuristic boolean is_accelerated to simplify your evaluation.
uv run scripts/get_conservation.py --coordinates "chr5:1045330-1046172" --analyze --output /tmp/accelerated_cons.json
Fetching Transcription Factor Binding Sites (TFBS)
To identify transcription factor binding sites for a given genomic interval. This is useful for interpreting non-coding variants that might disrupt TF binding.
Run scripts/get_tfbs.py with --coordinates and --tracks. You can query
multiple tracks at once.
uv run scripts/get_tfbs.py --coordinates "chr11:1001000-1010000" --tracks encRegTfbsClustered --output /tmp/tfbs_encode.json
JASPAR tracks may return very large result sets. Use --tf-filter to keep only
items whose TFName field contains the given substring (case-insensitive):
uv run scripts/get_tfbs.py --coordinates "chr6:36670000-36690000" --tracks jaspar2024 --tf-filter TP53 --output /tmp/tp53_sites.json
Common Verified Tracks (hg38)
- ENCODE:
encRegTfbsClustered(TF Clusters) - JASPAR:
jaspar2026,jaspar2024(Predicted TFBS) - ReMap:
ReMapTFs(ChIP-seq Atlas)
[!CAUTION] Tracks like
jasparorReMapwithout years are often "container" tracks and will fail with a 400 error. Always use the specific subtrack name (e.g.,jaspar2026).
Listing Available Tracks
To list available tracks (such as different versions of JASPAR, or purely to discover what tracks exist for a particular genome assembly):
uv run scripts/list_tracks.py --search "jaspar" --output /tmp/jaspar_tracks.json
You can also filter by functional group:
uv run scripts/list_tracks.py --group "regulation" --output /tmp/regulation_tracks.json
Anti-Patterns
- DON'T query mammalian (
--collection mammal) constraint if you are explicitly looking for deep evolutionary roots across all vertebrates. Use the defaultvertebratecollection. - DON'T use this skill for determining the ancestral state reconstruction of a nucleotide (this skill provides measures of how much sites have changed, not what the ancestral nucleotide was).
- DON'T assume low conservation strictly means neutral/useless sequence; it could also reflect a high local mutation rate which conservation scores alone cannot distinguish.
- DON'T print output on standard out, or run cat on output to files. The output is too large. Use jq or write your own code to parse the output files.
- DON'T use hg19 unless the user has explicitly asked for it. The default should be to always use hg38.
How to use ucsc-conservation-and-tfbs 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 ucsc-conservation-and-tfbs
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches ucsc-conservation-and-tfbs 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 ucsc-conservation-and-tfbs. Access the skill through slash commands (e.g., /ucsc-conservation-and-tfbs) 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.8★★★★★40 reviews- ★★★★★Pratham Ware· Dec 24, 2024
ucsc-conservation-and-tfbs reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Valentina Diallo· Dec 8, 2024
We added ucsc-conservation-and-tfbs from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Mateo Torres· Nov 27, 2024
Keeps context tight: ucsc-conservation-and-tfbs is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Liam Diallo· Oct 18, 2024
ucsc-conservation-and-tfbs is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sakshi Patil· Sep 25, 2024
I recommend ucsc-conservation-and-tfbs for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Hana Harris· Sep 21, 2024
Keeps context tight: ucsc-conservation-and-tfbs is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Liam Harris· Sep 17, 2024
I recommend ucsc-conservation-and-tfbs for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Mateo Rahman· Sep 9, 2024
ucsc-conservation-and-tfbs reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Liam Huang· Aug 28, 2024
Registry listing for ucsc-conservation-and-tfbs matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Chaitanya Patil· Aug 16, 2024
Useful defaults in ucsc-conservation-and-tfbs — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 40