action monarchinitiative_get_gene_function_associations { label: "Returns function associations for a gene" description: "IMPLEMENTATION DETAILS\n----------------------\n\nNote: currently this is implemented as a query to the GO/AmiGO solr instance.\nThis directly supports IDs such as:\n\n - ZFIN e.g. ZFIN:ZDB-GENE-050417-357\n\nNote that the AmiGO GOlr natively stores MGI annotations to MGI:MGI:nn. However,\nthe standard for biolink is MGI:nnnn, so you should use this (will be transparently\nmapped to legacy ID)\n\nAdditionally, for some species such as Human, GO has the annotation attached to the UniProt ID.\nAgain, this should be transparently handled; e.g. you can use NCBIGene:6469, and this will be\nmapped behind the scenes for querying." provider: monarchinitiative method: GET path: "/bioentity/gene/{id}/function" encoding: json input: { type: "object" properties: { direct: { type: "boolean" } evidence: { type: "string" } exclude_automatic_assertions: { type: "boolean" } facet: { type: "boolean" } facet_fields: { type: "array" items: { type: "string" } } fetch_objects: { type: "boolean" } rows: { type: "integer" } slim: { type: "array" items: { type: "string" } } start: { type: "integer" } unselect_evidence: { type: "boolean" } use_compact_associations: { type: "boolean" } } additionalProperties: false } output: { type: "object" } }