# Parameter: http://www.cellcycleontology.org/ontology/rdf/CCO#: the default ontology URI # Parameter: CCO_B0002268: the term for which you want the synonyms # Function: returns the synonyms for a given term and their corresponding crossreferences and scopes prefix default_ontology: prefix query_term_id: select ?synonym ?scope ?dbname_syn_xref ?accession_syn_xref where{ query_term_id: default_ontology:synonym ?a. ?a default_ontology:syn ?synonym. optional{?a default_ontology:scope ?scope.} optional{ ?a default_ontology:DbXref ?b. ?b default_ontology:dbname ?dbname_syn_xref. ?b default_ontology:acc ?accession_syn_xref. } }