validate_go_id
Validate the format and existence of a Gene Ontology (GO) identifier to ensure accuracy in ontology-based analysis and gene annotation research.
Instructions
Validate GO identifier format and check if term exists
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | GO identifier to validate |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "GO identifier to validate",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}