Ucsc Conservation And Tfbs logo

Ucsc Conservation And Tfbs

OrganizationPopular
google-deepmind
ucsc-conservation-and-tfbs

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).

Overview

Publishergoogle-deepmind
Repositoryscience-skills
Skill nameucsc-conservation-and-tfbs
Stars
3.1K
Forks
349
Bundled files
4
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 4 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by google-deepmind on GitHub. Read the source before you install it.

Installation

Install the Ucsc Conservation And Tfbs AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/google-deepmind/science-skills.git /tmp/science-skills
mkdir -p .claude/skills
cp -r /tmp/science-skills/skills/ucsc_conservation_and_tfbs .claude/skills/ucsc-conservation-and-tfbs
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Ucsc Conservation And Tfbs in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Ucsc Conservation And Tfbs on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Ucsc Conservation And Tfbs is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

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

  1. uv: Read the uv skill and follow its Setup instructions to ensure uv is installed and on PATH.
  2. User Notification: If .licenses/ucsc_conservation_and_tfbs_LICENSE.txt does not already exist in the workspace root 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:

  1. scripts/get_conservation.py: For Evolutionary Conservation scores (phyloP, phastCons).
  2. scripts/get_tfbs.py: For Transcription Factor Binding Sites (TFBS).
  3. 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.

bash
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.

bash
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.
bash
# 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.

bash
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.

bash
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):

bash
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 jaspar or ReMap without 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):

bash
uv run scripts/list_tracks.py --search "jaspar" --output /tmp/jaspar_tracks.json

You can also filter by functional group:

bash
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 default vertebrate collection.
  • 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.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Ucsc Conservation And Tfbs AI skill do?

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).

Why use Ucsc Conservation And Tfbs on TypingMind?

Because you install it once and use it with any model. Ucsc Conservation And Tfbs is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Ucsc Conservation And Tfbs in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/google-deepmind/science-skills/tree/main/skills/ucsc_conservation_and_tfbs. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Ucsc Conservation And Tfbs?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Ucsc Conservation And Tfbs?

As many as you like. As long as a model supports skills, you can use Ucsc Conservation And Tfbs with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Ucsc Conservation And Tfbs AI skill free?

Yes. It is published on GitHub by google-deepmind under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇