Back to catalog
Cortexa research tool·genomics·dna_tools
DNA Find Orfs
Find open reading frames (ORFs) in a DNA sequence by scanning for ATG start codons followed by stop codons (TAA, TAG, TGA). Returns ORFs sorted by length with positions, strand, and reading frame. Supports forward strand, reverse strand, or both. Use for: gene prediction, identifying protein-coding regions, analyzing synthetic sequences.
Livelast probed 2026-04-30 23:07Z· 106msCortexa
Status
The most recent probe succeeded. Safe to call from the agent today.
- Last probed
- 1d ago
- Last success
- 1d ago
- Last latency
- 106ms
Schema
JSON Schema the agent (or your API call) must match.
{
"properties": {
"min_length": {
"default": 100,
"description": "Minimum ORF length in nucleotides (default: 100 nt = ~33 amino acids)",
"minimum": 1,
"type": "integer"
},
"operation": {
"description": "Operation type",
"enum": [
"find_orfs"
],
"type": "string"
},
"sequence": {
"description": "DNA sequence (A, T, G, C, N only)",
"type": "string"
},
"strand": {
"default": "both",
"description": "Which strand to search: 'forward', 'reverse', or 'both' (default)",
"enum": [
"forward",
"reverse",
"both",
null
],
"type": [
"string",
"null"
]
}
},
"required": [
"operation",
"sequence"
],
"type": "object"
}Examples (1)
Default DNA Find Orfs call
public-safeinput
{
"min_length": 1,
"operation": "",
"sequence": ""
}Expected response keys: success
Anonymous-safe example. Rate-limited; no sign-in required.
Identifiers
- Catalog ID
- tu_DNA_find_orfs
- Tool name
- DNA_find_orfs
- Added
- 2026-04-30 22:47Z
- Tags
- tooluniverse