Back to catalog
Cortexa research tool·structure·ucsc_genome
UCSC Get Sequence
Get DNA sequence from the UCSC Genome Browser for a specified genomic region. Returns the nucleotide sequence for a given chromosome, start, and end position in a genome assembly. Useful for primer design, sequence analysis, and regulatory element inspection. Example: hg38, chr17, start=7668421, end=7668521 returns 100bp of TP53 sequence.
Livelast probed 2026-04-30 23:07Z· 112msCortexa
Status
The most recent probe succeeded. Safe to call from the agent today.
- Last probed
- 1d ago
- Last success
- 1d ago
- Last latency
- 112ms
Schema
JSON Schema the agent (or your API call) must match.
{
"properties": {
"chrom": {
"description": "Chromosome name. Examples: 'chr1', 'chr17', 'chrX', 'chrM'.",
"type": "string"
},
"end": {
"description": "End position (exclusive). Must be > start and span <= 100000 bp. Example: 7668521.",
"type": "integer"
},
"genome": {
"description": "UCSC genome assembly identifier. Examples: 'hg38' (human), 'mm39' (mouse), 'dm6' (fly), 'sacCer3' (yeast).",
"type": "string"
},
"start": {
"description": "0-based start position (inclusive). Example: 7668421.",
"type": "integer"
}
},
"required": [
"genome",
"chrom",
"start",
"end"
],
"type": "object"
}Examples (1)
Default UCSC Get Sequence call
public-safeinput
{
"chrom": "",
"end": 1,
"genome": "",
"start": 1
}Expected response keys: success
Anonymous-safe example. Rate-limited; no sign-in required.
Identifiers
- Catalog ID
- tu_UCSC_get_sequence
- Tool name
- UCSC_get_sequence
- Added
- 2026-04-30 22:47Z
- Tags
- tooluniverse