### Encode Ccres Database
Works with
name: "encode-ccres-database"
description: "Query the ENCODE Registry of cis-Regulatory Elements (cCREs) via the SCREEN GraphQL API, or make custom queries to the ENCODE Portal REST API for experiments and files (ChIP-seq peaks, etc.). Use when..."
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionencode-ccres-databaseExecute the skills CLI command in your project's root directory to begin installation:
Fetches encode-ccres-database from google-deepmind/science-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate encode-ccres-database. Access via /encode-ccres-database in your agent's command palette.
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 environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
| name | encode-ccres-database |
| description | > Query the ENCODE Registry of cis-Regulatory Elements (cCREs) via the SCREEN GraphQL API, or make custom queries to the ENCODE Portal REST API for experiments and files (ChIP-seq peaks, etc.). Use when you want to query regulatory annotations or raw experimental data across human cell types. |
This skill allows you to query the ENCODE Registry of cCREs (candidate cis-Regulatory Elements) via the SCREEN GraphQL API. It helps identify functional non-coding DNA elements (like Promoters, Enhancers, and insulators) by analyzing biochemical signatures (DNase, H3K4me3, H3K27ac, CTCF).
uv: Read the uv skill and follow its Setup instructions to ensure
uv is installed and on PATH.cat to read the entire JSON output file
into context, as it can be extremely large. You MUST use jq to efficiently
parse and extract relevant fields.# Search cCREs by coordinates
uv run scripts/screen_api.py search --chromosome chr11 \
--start 5205263 --end 5207263 \
--output /tmp/search.json
# Get details for a specific cCRE
uv run scripts/screen_api.py details EH38E2941922 \
--output /tmp/details.json
All subcommands write JSON to disk. Always save output in a temporary location
like /tmp/.
Biosamples in ENCODE are often categorized by their data completeness. "Type A" (or high-confidence) biosamples are those that have experimental data for all four core epigenetic markers: DNase, H3K4me3, H3K27ac, and CTCF.
The biosamples and details commands automatically enrich their output with
an is_type_a boolean flag for each biosample.
Example: Finding high-confidence cell types
uv run scripts/screen_api.py biosamples --output /tmp/biosamples.json
# Use jq to filter for Type A biosamples
jq '.data.ccREBiosampleQuery.biosamples[] | select(.is_type_a == true) | .displayname' /tmp/biosamples.json
Do NOT use cat to read the entire JSON output file into context, as it
can be extremely large. Instead, you MUST use jq to efficiently parse and
extract the relevant fields from the JSON file saved by the script. If jq is
not available on the system, write your own Python filtering code (e.g.,
python3 -c "import json...") to extract the necessary data.
For a complete reference of the JSON structure returned by eachmcommand (so you
know which fields to query with jq), read
references/json_output_structure.md.
search: Search cCREs by coordinates, accessions, or epigenetic signals.
uv run scripts/screen_api.py search \
--chromosome chr11 --start 5205263 --end 5207263 \
--output /tmp/search.json
nearby-genes: Find nearby genes for given cCRE accessions.
uv run scripts/screen_api.py nearby-genes \
EH38E1516972 --output /tmp/nearby.json
details: Get detailed information and biosample-specific max Z-scores for
a specific cCRE.
uv run scripts/screen_api.py details EH38E2941922 \
--output /tmp/details.json
biosamples: Get biosample metadata for an assembly.
uv run scripts/screen_api.py biosamples \
--output /tmp/biosamples.json
orthologs: Get orthologous cCREs in another assembly.
uv run scripts/screen_api.py orthologs EH38E2941922 \
--output /tmp/orthologs.json
linked-genes: Find linked genes via methods like HiC or eQTLs.
uv run scripts/screen_api.py linked-genes \
EH38E1516972 --output /tmp/linked.json
gene-expression: Get gene expression (TPM) across all biosamples for a
named gene. Internally resolves the gene symbol to an Ensembl gene ID, then
queries per-biosample RNA-seq quantifications.
uv run scripts/screen_api.py gene-expression GAPDH \
--output /tmp/gene_expr.json
entex: Get ENTEx data for a cCRE or genomic region.
uv run scripts/screen_api.py entex \
--accession EH38E1310345 \
--output /tmp/entex.json
uv run scripts/screen_api.py entex \
--region chr1:1000068:1000409 \
--output /tmp/entex.json
gwas: Query genome-wide association studies, SNPs, or enrichment data.
uv run scripts/screen_api.py gwas studies \
--output /tmp/gwas.json
uv run scripts/screen_api.py gwas snps --study \
Ahola-Olli_AV-27989323-Eotaxin_levels \
--output /tmp/gwas_snps.json
You can supply the --assembly mm10 or --assembly grch38 flag to explicitly
request a specific assembly for most commands. By default, the script targets
grch38 but will automatically fall back to mm10 if no results are found or
if the query fails.
For accessing raw experiments, ChIP-seq peaks, or other datasets that are not
represented as cCREs in SCREEN, use the scripts/encode_portal_api.py script.
It allows custom queries to the ENCODE Portal REST API.
uv run scripts/encode_portal_api.py search "type=Experiment&target.label=ZNF549" --output /tmp/znf549_experiments.json
When analyzing .bed or .bigBed files downloaded from ENCODE, standard
bioinformatics tools are highly recommended for finding overlaps (e.g., between
gene promoters and peaks):
bedtools: For fast mathematical operations on genomic intervals.bigBedToBed: For converting binary BigBed files to readable BED
format.pybedtools: A Python wrapper for bedtools.Write custom logic if these tools are not pre-installed.
If you need to make a complex GraphQL query that the script does not support,
read references/graphql_schema.md for a reference of available queries,
arguments, and return fields in the SCREEN GraphQL API.
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ 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.
google-deepmind/science-skills
google-deepmind/science-skills
google-deepmind/science-skills
K-Dense-AI/scientific-agent-skills
K-Dense-AI/scientific-agent-skills
K-Dense-AI/scientific-agent-skills
Keeps context tight: encode-ccres-database is the kind of skill you can hand to a new teammate without a long onboarding doc.
encode-ccres-database is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend encode-ccres-database for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: encode-ccres-database is the kind of skill you can hand to a new teammate without a long onboarding doc.
encode-ccres-database has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: encode-ccres-database is the kind of skill you can hand to a new teammate without a long onboarding doc.
encode-ccres-database has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: encode-ccres-database is focused, and the summary matches what you get after install.
I recommend encode-ccres-database for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
encode-ccres-database has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 46