get_guideline_content
Fetch specific GO-CAM guideline content for biological knowledge modeling. Use to retrieve annotation guidelines for gene ontology causal activity models.
Instructions
Fetch specific GO-CAM guideline content.
Args: guideline_name: Name of guideline file (without .md extension). Use list_guidelines() to see available options.
Returns: Dictionary with guideline content or error message
Examples: # Get a specific guideline content = get_guideline_content("E3_ubiquitin_ligases")
# Get transcription factor guidelines
content = get_guideline_content("DNA-binding_transcription_factor_activity_annotation_guidelines")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| guideline_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"guideline_name": {
"type": "string"
}
},
"required": [
"guideline_name"
],
"type": "object"
}